rapidfireai 0.0.1__py3-none-any.whl → 0.9.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rapidfireai might be problematic. Click here for more details.
- rapidfireai/__init__.py +11 -5
- rapidfireai/automl/__init__.py +20 -0
- rapidfireai/automl/base.py +48 -0
- rapidfireai/automl/datatypes.py +42 -0
- rapidfireai/automl/grid_search.py +125 -0
- rapidfireai/automl/model_config.py +102 -0
- rapidfireai/automl/random_search.py +145 -0
- rapidfireai/backend/__init__.py +0 -0
- rapidfireai/backend/chunks.py +63 -0
- rapidfireai/backend/controller.py +637 -0
- rapidfireai/backend/scheduler.py +137 -0
- rapidfireai/backend/worker.py +272 -0
- rapidfireai/cli.py +380 -0
- rapidfireai/db/__init__.py +0 -0
- rapidfireai/db/db_interface.py +135 -0
- rapidfireai/db/rf_db.py +694 -0
- rapidfireai/db/tables.sql +64 -0
- rapidfireai/dispatcher/dispatcher.py +391 -0
- rapidfireai/dispatcher/gunicorn.conf.py +25 -0
- rapidfireai/experiment.py +168 -0
- rapidfireai/frontend/build/asset-manifest.json +276 -0
- rapidfireai/frontend/build/favicon.ico +0 -0
- rapidfireai/frontend/build/index.html +1 -0
- rapidfireai/frontend/build/manifest.json +15 -0
- rapidfireai/frontend/build/pdf.worker.js +1 -0
- rapidfireai/frontend/build/report.html +39 -0
- rapidfireai/frontend/build/static/css/1482.3b7bf531.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/2730.3f8937ff.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/318.0def90a7.css +7 -0
- rapidfireai/frontend/build/static/css/4762.9b7b71f7.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/4950.487ecc8b.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/5170.2574ce9d.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6121.4d541986.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6343.dd6979f2.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6534.433c213f.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6920.ffac4b2a.css +2 -0
- rapidfireai/frontend/build/static/css/7246.bf2f0c87.css +9 -0
- rapidfireai/frontend/build/static/css/7367.dd6979f2.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/8690.05d081e5.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/9531.d0910d3c.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/9780.363e4943.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/main~d91a9049.c0be472c.css +1 -0
- rapidfireai/frontend/build/static/js/1000.e5ed264b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1012.ac98ab59.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1079.6c13ac0d.js +1 -0
- rapidfireai/frontend/build/static/js/110.9059f3b8.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1142.872d0010.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1167.9a6da14c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1248.60890b4f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1262.83dc7673.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js.LICENSE.txt +9 -0
- rapidfireai/frontend/build/static/js/1303.7d19305c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1351.45076ff3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1355.b896a592.js +1 -0
- rapidfireai/frontend/build/static/js/1357.02c46a02.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1470.c51d60c6.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1482.23b74f50.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1500.19799d8d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1648.d3b9edc7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1860.7d96e3f9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1909.5b1d9ff4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1928.44245110.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/1928.44245110.chunk.js.LICENSE.txt +11 -0
- rapidfireai/frontend/build/static/js/1933.deba26ca.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/21.aac92802.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2103.0ca12071.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2258.b3b8fab4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2289.9ad51e87.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2323.7dd927d7.js +2 -0
- rapidfireai/frontend/build/static/js/2323.7dd927d7.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/2346.ed99ca72.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2386.0a660834.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2402.465048f9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/243.5a83bbca.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2589.68571e16.js +1 -0
- rapidfireai/frontend/build/static/js/2647.65092bab.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2691.65d4a4e7.js +1 -0
- rapidfireai/frontend/build/static/js/2730.b38dd6f3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2746.ef752da4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2779.580d4491.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2799.fe5993b2.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/2901.ee0c606b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/2956.a393c8cc.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2972.679bed05.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js.LICENSE.txt +51 -0
- rapidfireai/frontend/build/static/js/3093.488df653.js +1 -0
- rapidfireai/frontend/build/static/js/3145.66ee61b9.js +1 -0
- rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/3307.f6fb258c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3325.d5b03d65.js +1 -0
- rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/3387.bb8edad3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3448.438e6579.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3460.735eea87.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3505.7fd3921a.js +2 -0
- rapidfireai/frontend/build/static/js/3505.7fd3921a.js.LICENSE.txt +9 -0
- rapidfireai/frontend/build/static/js/3510.cd167a00.js +2 -0
- rapidfireai/frontend/build/static/js/3510.cd167a00.js.LICENSE.txt +18 -0
- rapidfireai/frontend/build/static/js/3563.cc828e19.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/359.08960b84.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/359.08960b84.chunk.js.LICENSE.txt +4 -0
- rapidfireai/frontend/build/static/js/3608.403b4b79.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3652.cb8add7f.js +1 -0
- rapidfireai/frontend/build/static/js/3775.5230b157.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3817.53555d18.js +2 -0
- rapidfireai/frontend/build/static/js/3817.53555d18.js.LICENSE.txt +18 -0
- rapidfireai/frontend/build/static/js/3835.d9946ff9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3964.874f0297.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3968.275cbc3d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3999.765cbd82.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4020.4452c046.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4138.2f6f6d9f.js +1 -0
- rapidfireai/frontend/build/static/js/4160.f424554c.js +1 -0
- rapidfireai/frontend/build/static/js/4180.50cea095.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4221.b0bba3f5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4250.5bb49278.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4297.15777d8f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4349.c965f2de.js +2 -0
- rapidfireai/frontend/build/static/js/4349.c965f2de.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js +2 -0
- rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/4578.a8124588.js +1 -0
- rapidfireai/frontend/build/static/js/4596.89a97480.js +1 -0
- rapidfireai/frontend/build/static/js/4748.566f435a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4762.928e8a90.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4768.7945be63.js +2 -0
- rapidfireai/frontend/build/static/js/4768.7945be63.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/4804.26b50dd4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4850.62390a45.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4862.a0ccb221.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/491.5dc8ed40.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/492.9262f038.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/492.9262f038.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/4943.6d345fd3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4950.bc182e62.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/5170.0065e96f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5222.35c74a52.js +2 -0
- rapidfireai/frontend/build/static/js/5222.35c74a52.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js.LICENSE.txt +3 -0
- rapidfireai/frontend/build/static/js/5229.7dd42316.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5286.4c1ad26b.js +1 -0
- rapidfireai/frontend/build/static/js/5486.21cff711.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5526.7b368956.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5605.1ee4d87b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5682.40b42d8b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5794.9433d867.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/5862.50f42a0b.js +1 -0
- rapidfireai/frontend/build/static/js/5895.e26742f1.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5919.edd4a5cf.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/598.a0e792ae.js +1 -0
- rapidfireai/frontend/build/static/js/6058.74162bf9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/618.06051134.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/618.06051134.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/6335.9fca442d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6336.e05e1154.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6343.2bcd28ff.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6363.a319b8f2.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6478.344abf25.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6504.1c004564.js +1 -0
- rapidfireai/frontend/build/static/js/6534.ec7e149b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6715.55a5c19c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js.LICENSE.txt +19 -0
- rapidfireai/frontend/build/static/js/6846.67103d0e.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6861.34cf0198.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js.LICENSE.txt +5 -0
- rapidfireai/frontend/build/static/js/6933.8b564944.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/699.d0437920.js +1 -0
- rapidfireai/frontend/build/static/js/7076.4182f63a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7186.42ad86d5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7248.a46635fd.js +1 -0
- rapidfireai/frontend/build/static/js/725.6b15a14a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7266.3575539d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7367.7120474f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7436.8e226055.js +1 -0
- rapidfireai/frontend/build/static/js/7504.ef223844.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7603.ee049fe3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7721.7390b3cc.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7731.5796cced.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7832.7976a3e4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7844.72cc2e81.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7948.48eab032.js +1 -0
- rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8017.a9e7dc5a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8023.75f1f3df.js +2 -0
- rapidfireai/frontend/build/static/js/8023.75f1f3df.js.LICENSE.txt +41 -0
- rapidfireai/frontend/build/static/js/8123.b69db974.js +1 -0
- rapidfireai/frontend/build/static/js/813.065a87e5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/819.2056f122.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/819.2056f122.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8262.04bc17d1.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8300.75adcc4f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8336.b1d3e764.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8365.26cf64ea.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8486.8ec852a7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8497.19378265.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8541.4c55c9f4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8712.a9445fe6.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8763.61761e08.js +1 -0
- rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8867.767462b7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8953.c0f88dea.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9.f4492795.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9.f4492795.chunk.js.LICENSE.txt +12 -0
- rapidfireai/frontend/build/static/js/9079.88a8d2a3.js +1 -0
- rapidfireai/frontend/build/static/js/9082.37c40520.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9133.90ae330d.js +2 -0
- rapidfireai/frontend/build/static/js/9133.90ae330d.js.LICENSE.txt +8 -0
- rapidfireai/frontend/build/static/js/9151.1ac359d5.js +2 -0
- rapidfireai/frontend/build/static/js/9151.1ac359d5.js.LICENSE.txt +8 -0
- rapidfireai/frontend/build/static/js/9168.027bf2fd.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9194.9c5cc548.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9244.026f4aee.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/936.2e02d037.js +2 -0
- rapidfireai/frontend/build/static/js/936.2e02d037.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9369.7d1a0a1d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9427.7c8442e7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/944.55948859.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9499.c53a82da.js +2 -0
- rapidfireai/frontend/build/static/js/9499.c53a82da.js.LICENSE.txt +62 -0
- rapidfireai/frontend/build/static/js/9531.3ce05781.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9620.b6e973a7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9645.6fddfa65.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9669.d38dda6d.js +1 -0
- rapidfireai/frontend/build/static/js/9682.41b6b807.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js.LICENSE.txt +23 -0
- rapidfireai/frontend/build/static/js/9723.d3c7fe9e.js +1 -0
- rapidfireai/frontend/build/static/js/9780.02a27630.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9815.b8db3c5d.js +1 -0
- rapidfireai/frontend/build/static/js/9886.2940b53a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/main~1f912138.fa9d03b1.js +1 -0
- rapidfireai/frontend/build/static/js/main~43dd7041.2e00860d.js +1 -0
- rapidfireai/frontend/build/static/js/main~84781932.68deffff.js +1 -0
- rapidfireai/frontend/build/static/media/404-overflow.fad9a31861b0afba6f921ebb8e769688.svg +32 -0
- rapidfireai/frontend/build/static/media/RapidFire_Square_Bug.27ceb48296314a4bc0d4.png +0 -0
- rapidfireai/frontend/build/static/media/chart-bar.0fd4a63680fba840a7b69fbf07969f79.svg +7 -0
- rapidfireai/frontend/build/static/media/chart-contour.0d4b306f2669f3ad25375568935e3ce3.svg +5 -0
- rapidfireai/frontend/build/static/media/chart-difference.16174216d6f3b7c24f40e3541fe0ca2c.svg +20 -0
- rapidfireai/frontend/build/static/media/chart-image.cc434c4dc50780966344e2385a15f8fe.svg +6 -0
- rapidfireai/frontend/build/static/media/chart-line.0adaa2036bb4eb5956db6d0c7e925a3d.svg +4 -0
- rapidfireai/frontend/build/static/media/chart-parallel.da7dedf539b2af4b654d377c679173e4.svg +7 -0
- rapidfireai/frontend/build/static/media/chart-scatter.69118d0023a6ff3973f7fa913834ac47.svg +9 -0
- rapidfireai/frontend/build/static/media/default-error.f246ddf367c6fbd67942e5a13382a7f1.svg +26 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.1e59d2330b4c6deb84b3.ttf +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.20fd1704ea223900efa9.woff2 +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.8b43027f47b20503057d.eot +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.c1e38fd9e0e74ba58f7a.svg +2671 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.f691f37e57f04c152e23.woff +0 -0
- rapidfireai/frontend/build/static/media/icon-visible-fill.8d34cd35303828fdfc15154f5536e63b.svg +7 -0
- rapidfireai/frontend/build/static/media/no-experiments.0e4f4a114ef73e7d81c09474aba64b6c.svg +22 -0
- rapidfireai/frontend/build/static/media/parallel-chart-placeholder.234ef0c5b220ef2a5a6fa5bafff173f7.svg +16 -0
- rapidfireai/frontend/build/static/media/permission-denied-lock.16036747d57cd663d7df223781a447b2.svg +14 -0
- rapidfireai/frontend/build/static/media/promo-modal-content.e3b2c6c568ac192b9bec54b838b54850.svg +30 -0
- rapidfireai/frontend/build/static/media/registered-model-grey-ok.8274b58d39504c8d1b8c358aa1c9aa35.svg +23 -0
- rapidfireai/frontend/build/static/media/warning.290a3b14118933547965e91ea61c5a61.svg +3 -0
- rapidfireai/frontend/proxy_middleware.py +233 -0
- rapidfireai/frontend/server.py +25 -0
- rapidfireai/ml/__init__.py +0 -0
- rapidfireai/ml/callbacks.py +176 -0
- rapidfireai/ml/checkpoint_utils.py +540 -0
- rapidfireai/ml/trainer.py +309 -0
- rapidfireai/start.sh +634 -0
- rapidfireai/utils/__init__.py +0 -0
- rapidfireai/utils/automl_utils.py +51 -0
- rapidfireai/utils/constants.py +141 -0
- rapidfireai/utils/datapaths.py +69 -0
- rapidfireai/utils/exceptions.py +82 -0
- rapidfireai/utils/experiment_utils.py +370 -0
- rapidfireai/utils/logging.py +87 -0
- rapidfireai/utils/mlflow_manager.py +121 -0
- rapidfireai/utils/serialize.py +15 -0
- rapidfireai/utils/shm_manager.py +469 -0
- rapidfireai/utils/trainer_config.py +23 -0
- rapidfireai/utils/worker_manager.py +219 -0
- rapidfireai/version.py +6 -0
- rapidfireai-0.9.9.dist-info/METADATA +242 -0
- rapidfireai-0.9.9.dist-info/RECORD +318 -0
- rapidfireai-0.9.9.dist-info/entry_points.txt +2 -0
- rapidfireai-0.0.1.dist-info/METADATA +0 -37
- rapidfireai-0.0.1.dist-info/RECORD +0 -6
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.9.dist-info}/WHEEL +0 -0
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.9.dist-info}/licenses/LICENSE +0 -0
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.9.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[1142],{55976:function(e,t,a){var r=a(5153),i=a(62405),n=(0,a(92704).templatedArray)("button",{visible:{valType:"boolean",dflt:!0,editType:"plot",description:"Determines whether or not this button is visible."},step:{valType:"enumerated",values:["month","year","day","hour","minute","second","all"],dflt:"month",editType:"plot",description:["The unit of measurement that the `count` value will set the range by."].join(" ")},stepmode:{valType:"enumerated",values:["backward","todate"],dflt:"backward",editType:"plot",description:["Sets the range update mode.","If *backward*, the range update shifts the start of range","back *count* times *step* milliseconds.","If *todate*, the range update shifts the start of range","back to the first timestamp from *count* times","*step* milliseconds back.","For example, with `step` set to *year* and `count` set to *1*","the range update shifts the start of the range back to","January 01 of the current year.","Month and year *todate* are currently available only","for the built-in (Gregorian) calendar."].join(" ")},count:{valType:"number",min:0,dflt:1,editType:"plot",description:["Sets the number of steps to take to update the range.","Use with `step` to specify the update interval."].join(" ")},label:{valType:"string",editType:"plot",description:"Sets the text label to appear on the button."},editType:"plot",description:["Sets the specifications for each buttons.","By default, a range selector comes with no buttons."].join(" ")});e.exports={visible:{valType:"boolean",editType:"plot",description:["Determines whether or not this range selector is visible.","Note that range selectors are only available for x axes of","`type` set to or auto-typed to *date*."].join(" ")},buttons:n,x:{valType:"number",min:-2,max:3,editType:"plot",description:"Sets the x position (in normalized coordinates) of the range selector."},xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"left",editType:"plot",description:["Sets the range selector's horizontal position anchor.","This anchor binds the `x` position to the *left*, *center*","or *right* of the range selector."].join(" ")},y:{valType:"number",min:-2,max:3,editType:"plot",description:"Sets the y position (in normalized coordinates) of the range selector."},yanchor:{valType:"enumerated",values:["auto","top","middle","bottom"],dflt:"bottom",editType:"plot",description:["Sets the range selector's vertical position anchor","This anchor binds the `y` position to the *top*, *middle*","or *bottom* of the range selector."].join(" ")},font:r({editType:"plot",description:"Sets the font of the range selector button text."}),bgcolor:{valType:"color",dflt:i.lightLine,editType:"plot",description:"Sets the background color of the range selector buttons."},activecolor:{valType:"color",editType:"plot",description:"Sets the background color of the active range selector button."},bordercolor:{valType:"color",dflt:i.defaultLine,editType:"plot",description:"Sets the color of the border enclosing the range selector."},borderwidth:{valType:"number",min:0,dflt:0,editType:"plot",description:"Sets the width (in px) of the border enclosing the range selector."},editType:"plot"}},94316:function(e){e.exports={yPad:.02,minButtonWidth:30,rx:3,ry:3,lightAmount:25,darkAmount:10}},97087:function(e,t,a){var r=a(47401),i=a(31454),n=a(92704),o=a(26800),l=a(55976),s=a(94316);function d(e,t,a,i){var n=i.calendar;function o(a,i){return r.coerce(e,t,l.buttons,a,i)}if(o("visible")){var s=o("step");"all"!==s&&(!n||"gregorian"===n||"month"!==s&&"year"!==s?o("stepmode"):t.stepmode="backward",o("count")),o("label")}}e.exports=function(e,t,a,c,h){var p=e.rangeselector||{},u=n.newContainer(t,"rangeselector");function f(e,t){return r.coerce(p,u,l,e,t)}if(f("visible",o(p,u,{name:"buttons",handleItemDefaults:d,calendar:h}).length>0)){var m=function(e,t,a){for(var r=a.filter((function(a){return t[a].anchor===e._id})),i=0,n=0;n<r.length;n++){var o=t[r[n]].domain;o&&(i=Math.max(o[1],i))}return[e.domain[0],i+s.yPad]}(t,a,c);f("x",m[0]),f("y",m[1]),r.noneOrAll(e,t,["x","y"]),f("xanchor"),f("yanchor"),r.coerceFont(f,"font",a.font);var g=f("bgcolor");f("activecolor",i.contrast(g,s.lightAmount,s.darkAmount)),f("bordercolor"),f("borderwidth")}}},57415:function(e,t,a){var r=a(62258),i=a(62282),n=a(35722),o=a(31454),l=a(41707),s=a(47401),d=s.strTranslate,c=a(43995),h=a(77063),p=a(60482),u=p.LINE_SPACING,f=p.FROM_TL,m=p.FROM_BR,g=a(94316),v=a(33231);function y(e){return e._id}function x(e,t,a){var r=s.ensureSingle(e,"rect","selector-rect",(function(e){e.attr("shape-rendering","crispEdges")}));r.attr({rx:g.rx,ry:g.ry}),r.call(o.stroke,t.bordercolor).call(o.fill,function(e,t){return t._isActive||t._isHovered?e.activecolor:e.bgcolor}(t,a)).style("stroke-width",t.borderwidth+"px")}function b(e,t,a,r){s.ensureSingle(e,"text","selector-text",(function(e){e.attr("text-anchor","middle")})).call(l.font,t.font).text(function(e,t){if(e.label)return t?s.templateString(e.label,t):e.label;return"all"===e.step?"all":e.count+e.step.charAt(0)}(a,r._fullLayout._meta)).call((function(e){c.convertToTspans(e,r)}))}e.exports=function(e){var t=e._fullLayout._infolayer.selectAll(".rangeselector").data(function(e){for(var t=h.list(e,"x",!0),a=[],r=0;r<t.length;r++){var i=t[r];i.rangeselector&&i.rangeselector.visible&&a.push(i)}return a}(e),y);t.enter().append("g").classed("rangeselector",!0),t.exit().remove(),t.style({cursor:"pointer","pointer-events":"all"}),t.each((function(t){var a=r.select(this),o=t,h=o.rangeselector,p=a.selectAll("g.button").data(s.filterVisible(h.buttons));p.enter().append("g").classed("button",!0),p.exit().remove(),p.each((function(t){var a=r.select(this),n=v(o,t);t._isActive=function(e,t,a){if("all"===t.step)return!0===e.autorange;var r=Object.keys(a);return e.range[0]===a[r[0]]&&e.range[1]===a[r[1]]}(o,t,n),a.call(x,h,t),a.call(b,h,t,e),a.on("click",(function(){e._dragged||i.call("_guiRelayout",e,n)})),a.on("mouseover",(function(){t._isHovered=!0,a.call(x,h,t)})),a.on("mouseout",(function(){t._isHovered=!1,a.call(x,h,t)}))})),function(e,t,a,i,o){var h=0,p=0,v=a.borderwidth;t.each((function(){var e=r.select(this).select(".selector-text"),t=a.font.size*u,i=Math.max(t*c.lineCount(e),16)+3;p=Math.max(p,i)})),t.each((function(){var e=r.select(this),t=e.select(".selector-rect"),i=e.select(".selector-text"),n=i.node()&&l.bBox(i.node()).width,o=a.font.size*u,s=c.lineCount(i),f=Math.max(n+10,g.minButtonWidth);e.attr("transform",d(v+h,v)),t.attr({x:0,y:0,width:f,height:p}),c.positionText(i,f/2,p/2-(s-1)*o/2+3),h+=f+5}));var y=e._fullLayout._size,x=y.l+y.w*a.x,b=y.t+y.h*(1-a.y),w="left";s.isRightAnchor(a)&&(x-=h,w="right");s.isCenterAnchor(a)&&(x-=h/2,w="center");var _="top";s.isBottomAnchor(a)&&(b-=p,_="bottom");s.isMiddleAnchor(a)&&(b-=p/2,_="middle");h=Math.ceil(h),p=Math.ceil(p),x=Math.round(x),b=Math.round(b),n.autoMargin(e,i+"-range-selector",{x:a.x,y:a.y,l:h*f[w],r:h*m[w],b:p*m[_],t:p*f[_]}),o.attr("transform",d(x,b))}(e,p,h,o._name,a)}))}},33231:function(e,t,a){var r=a(33119),i=a(47401).titleCase;e.exports=function(e,t){var a=e._name,n={};if("all"===t.step)n[a+".autorange"]=!0;else{var o=function(e,t){var a,n=e.range,o=new Date(e.r2l(n[1])),l=t.step,s=r["utc"+i(l)],d=t.count;switch(t.stepmode){case"backward":a=e.l2r(+s.offset(o,-d));break;case"todate":var c=s.offset(o,-d);a=e.l2r(+s.ceil(c))}var h=n[1];return[a,h]}(e,t);n[a+".range[0]"]=o[0],n[a+".range[1]"]=o[1]}return n}},98869:function(e,t,a){e.exports={moduleType:"component",name:"rangeselector",schema:{subplots:{xaxis:{rangeselector:a(55976)}}},layoutAttributes:a(55976),handleDefaults:a(97087),draw:a(57415)}},14056:function(e,t,a){var r=a(62405);e.exports={bgcolor:{valType:"color",dflt:r.background,editType:"plot",description:"Sets the background color of the range slider."},bordercolor:{valType:"color",dflt:r.defaultLine,editType:"plot",description:"Sets the border color of the range slider."},borderwidth:{valType:"integer",dflt:0,min:0,editType:"plot",description:"Sets the border width of the range slider."},autorange:{valType:"boolean",dflt:!0,editType:"calc",impliedEdits:{"range[0]":void 0,"range[1]":void 0},description:["Determines whether or not the range slider range is","computed in relation to the input data.","If `range` is provided, then `autorange` is set to *false*."].join(" ")},range:{valType:"info_array",items:[{valType:"any",editType:"calc",impliedEdits:{"^autorange":!1}},{valType:"any",editType:"calc",impliedEdits:{"^autorange":!1}}],editType:"calc",impliedEdits:{autorange:!1},description:["Sets the range of the range slider.","If not set, defaults to the full xaxis range.","If the axis `type` is *log*, then you must take the","log of your desired range.","If the axis `type` is *date*, it should be date strings,","like date data, though Date objects and unix milliseconds","will be accepted and converted to strings.","If the axis `type` is *category*, it should be numbers,","using the scale where each category is assigned a serial","number from zero in the order it appears."].join(" ")},thickness:{valType:"number",dflt:.15,min:0,max:1,editType:"plot",description:["The height of the range slider as a fraction of the","total plot area height."].join(" ")},visible:{valType:"boolean",dflt:!0,editType:"calc",description:["Determines whether or not the range slider will be visible.","If visible, perpendicular axes will be set to `fixedrange`"].join(" ")},editType:"calc"}},7327:function(e,t,a){var r=a(77063).list,i=a(9319).getAutoRange,n=a(8204);e.exports=function(e){for(var t=r(e,"x",!0),a=0;a<t.length;a++){var o=t[a],l=o[n.name];l&&l.visible&&l.autorange&&(l._input.autorange=!0,l._input.range=l.range=i(e,o))}}},8204:function(e){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}},28735:function(e,t,a){var r=a(47401),i=a(92704),n=a(77063),o=a(14056),l=a(68793);e.exports=function(e,t,a){var s=e[a],d=t[a];if(s.rangeslider||t._requestRangeslider[d._id]){r.isPlainObject(s.rangeslider)||(s.rangeslider={});var c,h,p=s.rangeslider,u=i.newContainer(d,"rangeslider");if(w("visible")){w("bgcolor",t.plot_bgcolor),w("bordercolor"),w("borderwidth"),w("thickness"),w("autorange",!d.isValidRange(p.range)),w("range");var f=t._subplots;if(f)for(var m=f.cartesian.filter((function(e){return e.substr(0,e.indexOf("y"))===n.name2id(a)})).map((function(e){return e.substr(e.indexOf("y"),e.length)})),g=r.simpleMap(m,n.id2name),v=0;v<g.length;v++){var y=g[v];c=p[y]||{},h=i.newContainer(u,y,"yaxis");var x,b=t[y];c.range&&b.isValidRange(c.range)&&(x="fixed"),"match"!==_("rangemode",x)&&_("range",b.range.slice())}u._input=p}}function w(e,t){return r.coerce(p,u,o,e,t)}function _(e,t){return r.coerce(c,h,l,e,t)}}},43015:function(e,t,a){var r=a(62258),i=a(62282),n=a(35722),o=a(47401),l=o.strTranslate,s=a(41707),d=a(31454),c=a(50075),h=a(66807),p=a(77063),u=a(52783),f=a(82559),m=a(8204);function g(e,t,a,r){var i=o.ensureSingle(e,"rect",m.bgClassName,(function(e){e.attr({x:0,y:0,"shape-rendering":"crispEdges"})})),n=r.borderwidth%2===0?r.borderwidth:r.borderwidth-1,d=-r._offsetShift,c=s.crispRound(t,r.borderwidth);i.attr({width:r._width+n,height:r._height+n,transform:l(d,d),fill:r.bgcolor,stroke:r.bordercolor,"stroke-width":c})}function v(e,t,a,r){var i=t._fullLayout;o.ensureSingleById(i._topdefs,"clipPath",r._clipId,(function(e){e.append("rect").attr({x:0,y:0})})).select("rect").attr({width:r._width,height:r._height})}function y(e,t,a,i){var l,d=t.calcdata,c=e.selectAll("g."+m.rangePlotClassName).data(a._subplotsWith,o.identity);c.enter().append("g").attr("class",(function(e){return m.rangePlotClassName+" "+e})).call(s.setClipUrl,i._clipId,t),c.order(),c.exit().remove(),c.each((function(e,o){var s=r.select(this),c=0===o,u=p.getFromId(t,e,"y"),f=u._name,m=i[f],g={data:[],layout:{xaxis:{type:a.type,domain:[0,1],range:i.range.slice(),calendar:a.calendar},width:i._width,height:i._height,margin:{t:0,b:0,l:0,r:0}},_context:t._context};a.rangebreaks&&(g.layout.xaxis.rangebreaks=a.rangebreaks),g.layout[f]={type:u.type,domain:[0,1],range:"match"!==m.rangemode?m.range.slice():u.range.slice(),calendar:u.calendar},u.rangebreaks&&(g.layout[f].rangebreaks=u.rangebreaks),n.supplyDefaults(g);var v=g._fullLayout.xaxis,y=g._fullLayout[f];v.clearCalc(),v.setScale(),y.clearCalc(),y.setScale();var x={id:e,plotgroup:s,xaxis:v,yaxis:y,isRangePlot:!0};c?l=x:(x.mainplot="xy",x.mainplotinfo=l),h.rangePlot(t,x,function(e,t){for(var a=[],r=0;r<e.length;r++){var i=e[r],n=i[0].trace;n.xaxis+n.yaxis===t&&a.push(i)}return a}(d,e))}))}function x(e,t,a,r,i){(o.ensureSingle(e,"rect",m.maskMinClassName,(function(e){e.attr({x:0,y:0,"shape-rendering":"crispEdges"})})).attr("height",r._height).call(d.fill,m.maskColor),o.ensureSingle(e,"rect",m.maskMaxClassName,(function(e){e.attr({y:0,"shape-rendering":"crispEdges"})})).attr("height",r._height).call(d.fill,m.maskColor),"match"!==i.rangemode)&&(o.ensureSingle(e,"rect",m.maskMinOppAxisClassName,(function(e){e.attr({y:0,"shape-rendering":"crispEdges"})})).attr("width",r._width).call(d.fill,m.maskOppAxisColor),o.ensureSingle(e,"rect",m.maskMaxOppAxisClassName,(function(e){e.attr({y:0,"shape-rendering":"crispEdges"})})).attr("width",r._width).style("border-top",m.maskOppBorder).call(d.fill,m.maskOppAxisColor))}function b(e,t,a,r){t._context.staticPlot||o.ensureSingle(e,"rect",m.slideBoxClassName,(function(e){e.attr({y:0,cursor:m.slideBoxCursor,"shape-rendering":"crispEdges"})})).attr({height:r._height,fill:m.slideBoxFill})}function w(e,t,a,r){var i=o.ensureSingle(e,"g",m.grabberMinClassName),n=o.ensureSingle(e,"g",m.grabberMaxClassName),l={x:0,width:m.handleWidth,rx:m.handleRadius,fill:d.background,stroke:d.defaultLine,"stroke-width":m.handleStrokeWidth,"shape-rendering":"crispEdges"},s={y:Math.round(r._height/4),height:Math.round(r._height/2)};o.ensureSingle(i,"rect",m.handleMinClassName,(function(e){e.attr(l)})).attr(s),o.ensureSingle(n,"rect",m.handleMaxClassName,(function(e){e.attr(l)})).attr(s);var c={width:m.grabAreaWidth,x:0,y:0,fill:m.grabAreaFill,cursor:t._context.staticPlot?void 0:m.grabAreaCursor};o.ensureSingle(i,"rect",m.grabAreaMinClassName,(function(e){e.attr(c)})).attr("height",r._height),o.ensureSingle(n,"rect",m.grabAreaMaxClassName,(function(e){e.attr(c)})).attr("height",r._height)}e.exports=function(e){for(var t=e._fullLayout,a=t._rangeSliderData,n=0;n<a.length;n++){var s=a[n][m.name];s._clipId=s._id+"-"+t._uid}var d=t._infolayer.selectAll("g."+m.containerClassName).data(a,(function(e){return e._name}));d.exit().each((function(e){var a=e[m.name];t._topdefs.select("#"+a._clipId).remove()})).remove(),0!==a.length&&(d.enter().append("g").classed(m.containerClassName,!0).attr("pointer-events","all"),d.each((function(a){var n=r.select(this),s=a[m.name],d=t[p.id2name(a.anchor)],h=s[p.id2name(a.anchor)];if(s.range){var _,T=o.simpleMap(s.range,a.r2l),S=o.simpleMap(a.range,a.r2l);_=S[0]<S[1]?[Math.min(T[0],S[0]),Math.max(T[1],S[1])]:[Math.max(T[0],S[0]),Math.min(T[1],S[1])],s.range=s._input.range=o.simpleMap(_,a.l2r)}a.cleanRange("rangeslider.range");var M=t._size,C=a.domain;s._width=M.w*(C[1]-C[0]);var A=Math.round(M.l+M.w*C[0]),k=Math.round(M.t+M.h*(1-a._counterDomainMin)+("bottom"===a.side?a._depth:0)+s._offsetShift+m.extraPad);n.attr("transform",l(A,k)),s._rl=o.simpleMap(s.range,a.r2l);var L=s._rl[0],I=s._rl[1],N=I-L;if(s.p2d=function(e){return e/s._width*N+L},s.d2p=function(e){return(e-L)/N*s._width},a.rangebreaks){var R=a.locateBreaks(L,I);if(R.length){var O,P,E=0;for(O=0;O<R.length;O++)E+=(P=R[O]).max-P.min;var z=s._width/(I-L-E),D=[-z*L];for(O=0;O<R.length;O++)P=R[O],D.push(D[D.length-1]-z*(P.max-P.min));for(s.d2p=function(e){for(var t=D[0],a=0;a<R.length;a++){var r=R[a];if(e>=r.max)t=D[a+1];else if(e<r.min)break}return t+z*e},O=0;O<R.length;O++)(P=R[O]).pmin=s.d2p(P.min),P.pmax=s.d2p(P.max);s.p2d=function(e){for(var t=D[0],a=0;a<R.length;a++){var r=R[a];if(e>=r.pmax)t=D[a+1];else if(e<r.pmin)break}return(e-t)/z}}}if("match"!==h.rangemode){var B=d.r2l(h.range[0]),H=d.r2l(h.range[1])-B;s.d2pOppAxis=function(e){return(e-B)/H*s._height}}n.call(g,e,a,s).call(v,e,a,s).call(y,e,a,s).call(x,e,a,s,h).call(b,e,a,s).call(w,e,a,s),function(e,t,a,n){if(t._context.staticPlot)return;var l=e.select("rect."+m.slideBoxClassName).node(),s=e.select("rect."+m.grabAreaMinClassName).node(),d=e.select("rect."+m.grabAreaMaxClassName).node();function c(){var c=r.event,h=c.target,p=c.clientX||c.touches[0].clientX,m=p-e.node().getBoundingClientRect().left,g=n.d2p(a._rl[0]),v=n.d2p(a._rl[1]),y=u.coverSlip();function x(e){var c,u,x,b=+(e.clientX||e.touches[0].clientX)-p;switch(h){case l:x="ew-resize",c=g+b,u=v+b;break;case s:x="col-resize",c=g+b,u=v;break;case d:x="col-resize",c=g,u=v+b;break;default:x="ew-resize",c=m,u=m+b}if(u<c){var w=u;u=c,c=w}n._pixelMin=c,n._pixelMax=u,f(r.select(y),x),function(e,t,a,r){function n(e){return a.l2r(o.constrain(e,r._rl[0],r._rl[1]))}var l=n(r.p2d(r._pixelMin)),s=n(r.p2d(r._pixelMax));window.requestAnimationFrame((function(){i.call("_guiRelayout",t,a._name+".range",[l,s])}))}(0,t,a,n)}function b(){y.removeEventListener("mousemove",x),y.removeEventListener("mouseup",b),this.removeEventListener("touchmove",x),this.removeEventListener("touchend",b),o.removeElement(y)}this.addEventListener("touchmove",x),this.addEventListener("touchend",b),y.addEventListener("mousemove",x),y.addEventListener("mouseup",b)}e.on("mousedown",c),e.on("touchstart",c)}(n,e,a,s),function(e,t,a,r,i,n){var s=m.handleWidth/2;function d(e){return o.constrain(e,0,r._width)}function c(e){return o.constrain(e,0,r._height)}function h(e){return o.constrain(e,-s,r._width+s)}var p=d(r.d2p(a._rl[0])),u=d(r.d2p(a._rl[1]));if(e.select("rect."+m.slideBoxClassName).attr("x",p).attr("width",u-p),e.select("rect."+m.maskMinClassName).attr("width",p),e.select("rect."+m.maskMaxClassName).attr("x",u).attr("width",r._width-u),"match"!==n.rangemode){var f=r._height-c(r.d2pOppAxis(i._rl[1])),g=r._height-c(r.d2pOppAxis(i._rl[0]));e.select("rect."+m.maskMinOppAxisClassName).attr("x",p).attr("height",f).attr("width",u-p),e.select("rect."+m.maskMaxOppAxisClassName).attr("x",p).attr("y",g).attr("height",r._height-g).attr("width",u-p),e.select("rect."+m.slideBoxClassName).attr("y",f).attr("height",g-f)}var v=.5,y=Math.round(h(p-s))-v,x=Math.round(h(u-s))+v;e.select("g."+m.grabberMinClassName).attr("transform",l(y,v)),e.select("g."+m.grabberMaxClassName).attr("transform",l(x,v))}(n,0,a,s,d,h),"bottom"===a.side&&c.draw(e,a._id+"title",{propContainer:a,propName:a._name+".title",placeholder:t._dfltTitle.x,attributes:{x:a._offset+a._length/2,y:k+s._height+s._offsetShift+10+1.5*a.title.font.size,"text-anchor":"middle"}})})))}},1184:function(e,t,a){var r=a(77063),i=a(43995),n=a(8204),o=a(60482).LINE_SPACING,l=n.name;function s(e){var t=e&&e[l];return t&&t.visible}t.isVisible=s,t.makeData=function(e){var t=r.list({_fullLayout:e},"x",!0),a=e.margin,i=[];if(!e._has("gl2d"))for(var n=0;n<t.length;n++){var o=t[n];if(s(o)){i.push(o);var d=o[l];d._id=l+o._id,d._height=(e.height-a.b-a.t)*d.thickness,d._offsetShift=Math.floor(d.borderwidth/2)}}e._rangeSliderData=i},t.autoMarginOpts=function(e,t){var a=e._fullLayout,r=t[l],s=t._id.charAt(0),d=0,c=0;"bottom"===t.side&&(d=t._depth,t.title.text!==a._dfltTitle[s]&&(c=1.5*t.title.font.size+10+r._offsetShift,c+=(t.title.text.match(i.BR_TAG_ALL)||[]).length*t.title.font.size*o));return{x:0,y:t._counterDomainMin,l:0,r:0,t:0,b:r._height+d+Math.max(a.margin.b,c),pad:n.extraPad+2*r._offsetShift}}},26805:function(e,t,a){var r=a(47401),i=a(14056),n=a(68793),o=a(1184);e.exports={moduleType:"component",name:"rangeslider",schema:{subplots:{xaxis:{rangeslider:r.extendFlat({},i,{yaxis:n})}}},layoutAttributes:a(14056),handleDefaults:a(28735),calcAutorange:a(7327),draw:a(43015),isVisible:o.isVisible,makeData:o.makeData,autoMarginOpts:o.autoMarginOpts}},68793:function(e){e.exports={_isSubplotObj:!0,rangemode:{valType:"enumerated",values:["auto","fixed","match"],dflt:"match",editType:"calc",description:["Determines whether or not the range of this axis in","the rangeslider use the same value than in the main plot","when zooming in/out.","If *auto*, the autorange will be used.","If *fixed*, the `range` is used.","If *match*, the current range of the corresponding y-axis on the main subplot is used."].join(" ")},range:{valType:"info_array",items:[{valType:"any",editType:"plot"},{valType:"any",editType:"plot"}],editType:"plot",description:["Sets the range of this axis for the rangeslider."].join(" ")},editType:"calc"}},4024:function(e,t,a){var r=a(10494),i=a(47216).line,n=a(34418).T,o=a(87241).extendFlat,l=a(92704).templatedArray,s=a(24729);e.exports=l("shape",{visible:{valType:"boolean",dflt:!0,editType:"calc+arraydraw",description:["Determines whether or not this shape is visible."].join(" ")},type:{valType:"enumerated",values:["circle","rect","path","line"],editType:"calc+arraydraw",description:["Specifies the shape type to be drawn.","If *line*, a line is drawn from (`x0`,`y0`) to (`x1`,`y1`)","with respect to the axes' sizing mode.","If *circle*, a circle is drawn from","((`x0`+`x1`)/2, (`y0`+`y1`)/2))","with radius","(|(`x0`+`x1`)/2 - `x0`|, |(`y0`+`y1`)/2 -`y0`)|)","with respect to the axes' sizing mode.","If *rect*, a rectangle is drawn linking","(`x0`,`y0`), (`x1`,`y0`), (`x1`,`y1`), (`x0`,`y1`), (`x0`,`y0`)","with respect to the axes' sizing mode.","If *path*, draw a custom SVG path using `path`.","with respect to the axes' sizing mode."].join(" ")},layer:{valType:"enumerated",values:["below","above"],dflt:"above",editType:"arraydraw",description:"Specifies whether shapes are drawn below or above traces."},xref:o({},r.xref,{description:["Sets the shape's x coordinate axis.",s.axisRefDescription("x","left","right"),"If the axis `type` is *log*, then you must take the","log of your desired range.","If the axis `type` is *date*, then you must convert","the date to unix time in milliseconds."].join(" ")}),xsizemode:{valType:"enumerated",values:["scaled","pixel"],dflt:"scaled",editType:"calc+arraydraw",description:["Sets the shapes's sizing mode along the x axis.","If set to *scaled*, `x0`, `x1` and x coordinates within `path` refer to","data values on the x axis or a fraction of the plot area's width","(`xref` set to *paper*).","If set to *pixel*, `xanchor` specifies the x position in terms","of data or plot fraction but `x0`, `x1` and x coordinates within `path`","are pixels relative to `xanchor`. This way, the shape can have","a fixed width while maintaining a position relative to data or","plot fraction."].join(" ")},xanchor:{valType:"any",editType:"calc+arraydraw",description:["Only relevant in conjunction with `xsizemode` set to *pixel*.","Specifies the anchor point on the x axis to which `x0`, `x1`","and x coordinates within `path` are relative to.","E.g. useful to attach a pixel sized shape to a certain data value.","No effect when `xsizemode` not set to *pixel*."].join(" ")},x0:{valType:"any",editType:"calc+arraydraw",description:["Sets the shape's starting x position.","See `type` and `xsizemode` for more info."].join(" ")},x1:{valType:"any",editType:"calc+arraydraw",description:["Sets the shape's end x position.","See `type` and `xsizemode` for more info."].join(" ")},yref:o({},r.yref,{description:["Sets the annotation's y coordinate axis.",s.axisRefDescription("y","bottom","top")].join(" ")}),ysizemode:{valType:"enumerated",values:["scaled","pixel"],dflt:"scaled",editType:"calc+arraydraw",description:["Sets the shapes's sizing mode along the y axis.","If set to *scaled*, `y0`, `y1` and y coordinates within `path` refer to","data values on the y axis or a fraction of the plot area's height","(`yref` set to *paper*).","If set to *pixel*, `yanchor` specifies the y position in terms","of data or plot fraction but `y0`, `y1` and y coordinates within `path`","are pixels relative to `yanchor`. This way, the shape can have","a fixed height while maintaining a position relative to data or","plot fraction."].join(" ")},yanchor:{valType:"any",editType:"calc+arraydraw",description:["Only relevant in conjunction with `ysizemode` set to *pixel*.","Specifies the anchor point on the y axis to which `y0`, `y1`","and y coordinates within `path` are relative to.","E.g. useful to attach a pixel sized shape to a certain data value.","No effect when `ysizemode` not set to *pixel*."].join(" ")},y0:{valType:"any",editType:"calc+arraydraw",description:["Sets the shape's starting y position.","See `type` and `ysizemode` for more info."].join(" ")},y1:{valType:"any",editType:"calc+arraydraw",description:["Sets the shape's end y position.","See `type` and `ysizemode` for more info."].join(" ")},path:{valType:"string",editType:"calc+arraydraw",description:["For `type` *path* - a valid SVG path with the pixel values","replaced by data values in `xsizemode`/`ysizemode` being *scaled*","and taken unmodified as pixels relative to `xanchor` and `yanchor`","in case of *pixel* size mode.","There are a few restrictions / quirks","only absolute instructions, not relative. So the allowed segments","are: M, L, H, V, Q, C, T, S, and Z","arcs (A) are not allowed because radius rx and ry are relative.","In the future we could consider supporting relative commands,","but we would have to decide on how to handle date and log axes.","Note that even as is, Q and C Bezier paths that are smooth on","linear axes may not be smooth on log, and vice versa.",'no chained "polybezier" commands - specify the segment type for',"each one.","On category axes, values are numbers scaled to the serial numbers","of categories because using the categories themselves there would","be no way to describe fractional positions","On data axes: because space and T are both normal components of path","strings, we can't use either to separate date from time parts.","Therefore we'll use underscore for this purpose:","2015-02-21_13:45:56.789"].join(" ")},opacity:{valType:"number",min:0,max:1,dflt:1,editType:"arraydraw",description:"Sets the opacity of the shape."},line:{color:o({},i.color,{editType:"arraydraw"}),width:o({},i.width,{editType:"calc+arraydraw"}),dash:o({},n,{editType:"arraydraw"}),editType:"calc+arraydraw"},fillcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"arraydraw",description:["Sets the color filling the shape's interior. Only applies to closed shapes."].join(" ")},fillrule:{valType:"enumerated",values:["evenodd","nonzero"],dflt:"evenodd",editType:"arraydraw",description:["Determines which regions of complex paths constitute the interior.","For more info please visit https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill-rule"].join(" ")},editable:{valType:"boolean",dflt:!1,editType:"calc+arraydraw",description:["Determines whether the shape could be activated for edit or not.","Has no effect when the older editable shapes mode is enabled via","`config.editable` or `config.edits.shapePosition`."].join(" ")},editType:"arraydraw"})},21967:function(e,t,a){var r=a(47401),i=a(37762),n=a(9852),o=a(80464);function l(e){return d(e.line.width,e.xsizemode,e.x0,e.x1,e.path,!1)}function s(e){return d(e.line.width,e.ysizemode,e.y0,e.y1,e.path,!0)}function d(e,t,a,i,l,s){var d=e/2,c=s;if("pixel"===t){var h=l?o.extractPathCoords(l,s?n.paramIsY:n.paramIsX):[a,i],p=r.aggNums(Math.max,null,h),u=r.aggNums(Math.min,null,h),f=u<0?Math.abs(u)+d:d,m=p>0?p+d:d;return{ppad:d,ppadplus:c?f:m,ppadminus:c?m:f}}return{ppad:d}}function c(e,t,a,r,i){var l="category"===e.type||"multicategory"===e.type?e.r2c:e.d2c;if(void 0!==t)return[l(t),l(a)];if(r){var s,d,c,h,p=1/0,u=-1/0,f=r.match(n.segmentRE);for("date"===e.type&&(l=o.decodeDate(l)),s=0;s<f.length;s++)void 0!==(d=i[f[s].charAt(0)].drawn)&&(!(c=f[s].substr(1).match(n.paramRE))||c.length<d||((h=l(c[d]))<p&&(p=h),h>u&&(u=h)));return u>=p?[p,u]:void 0}}e.exports=function(e){var t=e._fullLayout,a=r.filterVisible(t.shapes);if(a.length&&e._fullData.length)for(var o=0;o<a.length;o++){var d,h,p=a[o];p._extremes={};var u=i.getRefType(p.xref),f=i.getRefType(p.yref);if("paper"!==p.xref&&"domain"!==u){var m="pixel"===p.xsizemode?p.xanchor:p.x0,g="pixel"===p.xsizemode?p.xanchor:p.x1;(h=c(d=i.getFromId(e,p.xref),m,g,p.path,n.paramIsX))&&(p._extremes[d._id]=i.findExtremes(d,h,l(p)))}if("paper"!==p.yref&&"domain"!==f){var v="pixel"===p.ysizemode?p.yanchor:p.y0,y="pixel"===p.ysizemode?p.yanchor:p.y1;(h=c(d=i.getFromId(e,p.yref),v,y,p.path,n.paramIsY))&&(p._extremes[d._id]=i.findExtremes(d,h,s(p)))}}}},9852:function(e){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}}},5615:function(e,t,a){var r=a(47401),i=a(37762),n=a(26800),o=a(4024),l=a(80464);function s(e,t,a){function n(a,i){return r.coerce(e,t,o,a,i)}if(n("visible")){var s=n("path"),d=n("type",s?"path":"rect");"path"!==t.type&&delete t.path,n("editable"),n("layer"),n("opacity"),n("fillcolor"),n("fillrule"),n("line.width")&&(n("line.color"),n("line.dash"));for(var c=n("xsizemode"),h=n("ysizemode"),p=["x","y"],u=0;u<2;u++){var f,m,g,v=p[u],y=v+"anchor",x="x"===v?c:h,b={_fullLayout:a},w=i.coerceRef(e,t,b,v,void 0,"paper");if("range"===i.getRefType(w)?((f=i.getFromId(b,w))._shapeIndices.push(t._index),g=l.rangeToShapePosition(f),m=l.shapePositionToRange(f)):m=g=r.identity,"path"!==d){var _=v+"0",T=v+"1",S=e[_],M=e[T];e[_]=m(e[_],!0),e[T]=m(e[T],!0),"pixel"===x?(n(_,0),n(T,10)):(i.coercePosition(t,b,n,w,_,.25),i.coercePosition(t,b,n,w,T,.75)),t[_]=g(t[_]),t[T]=g(t[T]),e[_]=S,e[T]=M}if("pixel"===x){var C=e[y];e[y]=m(e[y],!0),i.coercePosition(t,b,n,w,y,.25),t[y]=g(t[y]),e[y]=C}}"path"===d?n("path"):r.noneOrAll(e,t,["x0","x1","y0","y1"])}}e.exports=function(e,t){n(e,t,{name:"shapes",handleItemDefaults:s})}},80535:function(e,t,a){var r=a(62282),i=a(47401),n=a(37762),o=a(40591).readPaths,l=a(60004),s=a(75152).clearOutlineControllers,d=a(31454),c=a(41707),h=a(92704).arrayEditor,p=a(52783),u=a(82559),f=a(9852),m=a(80464);function g(e){var t=e._fullLayout;for(var a in t._shapeUpperLayer.selectAll("path").remove(),t._shapeLowerLayer.selectAll("path").remove(),t._plots){var r=t._plots[a].shapelayer;r&&r.selectAll("path").remove()}for(var i=0;i<t.shapes.length;i++)t.shapes[i].visible&&x(e,i)}function v(e){return!!e._fullLayout._drawing}function y(e){return!e._context.edits.shapePosition}function x(e,t){e._fullLayout._paperdiv.selectAll('.shapelayer [data-index="'+t+'"]').remove();var a=m.makeOptionsAndPlotinfo(e,t),s=a.options,x=a.plotinfo;if(s._input&&!1!==s.visible)if("below"!==s.layer)S(e._fullLayout._shapeUpperLayer);else if("paper"===s.xref||"paper"===s.yref)S(e._fullLayout._shapeLowerLayer);else{if(x._hadPlotinfo)S((x.mainplotinfo||x).shapelayer);else S(e._fullLayout._shapeLowerLayer)}function S(a){var S=w(e,s),M={"data-index":t,"fill-rule":s.fillrule,d:S},C=s.opacity,A=s.fillcolor,k=s.line.width?s.line.color:"rgba(0,0,0,0)",L=s.line.width,I=s.line.dash;L||!0!==s.editable||(L=5,I="solid");var N="Z"!==S[S.length-1],R=y(e)&&s.editable&&e._fullLayout._activeShapeIndex===t;R&&(A=N?"rgba(0,0,0,0)":e._fullLayout.activeshape.fillcolor,C=e._fullLayout.activeshape.opacity);var O,P=a.append("path").attr(M).style("opacity",C).call(d.stroke,k).call(d.fill,A).call(c.dashLine,I,L);if(b(P,e,s),(R||e._context.edits.shapePosition)&&(O=h(e.layout,"shapes",s)),R){P.style({cursor:"move"});var E={element:P.node(),plotinfo:x,gd:e,editHelpers:O,isActiveShape:!0},z=o(S,e);l(z,P,E)}else e._context.edits.shapePosition?function(e,t,a,o,l,s){var d,h,g,y,x,T,S,M,C,A,k,L,I,N,R,O,P=10,E=10,z="pixel"===a.xsizemode,D="pixel"===a.ysizemode,B="line"===a.type,H="path"===a.type,j=s.modifyItem,W=n.getFromId(e,a.xref),F=n.getRefType(a.xref),V=n.getFromId(e,a.yref),X=n.getRefType(a.yref),G=m.getDataToPixel(e,W,!1,F),Y=m.getDataToPixel(e,V,!0,X),U=m.getPixelToData(e,W,!1,F),Z=m.getPixelToData(e,V,!0,X),Q=K(),q={element:Q.node(),gd:e,prepFn:ee,doneFn:te,clickFn:ae};function K(){return B?J():t}function J(){var e=10,r=Math.max(a.line.width,e),i=l.append("g").attr("data-index",o);i.append("path").attr("d",t.attr("d")).style({cursor:"move","stroke-width":r,"stroke-opacity":"0"});var n={"fill-opacity":"0"},s=Math.max(r/2,e);return i.append("circle").attr({"data-line-point":"start-point",cx:z?G(a.xanchor)+a.x0:G(a.x0),cy:D?Y(a.yanchor)-a.y0:Y(a.y0),r:s}).style(n).classed("cursor-grab",!0),i.append("circle").attr({"data-line-point":"end-point",cx:z?G(a.xanchor)+a.x1:G(a.x1),cy:D?Y(a.yanchor)-a.y1:Y(a.y1),r:s}).style(n).classed("cursor-grab",!0),i}function $(a){if(v(e))O=null;else if(B)O="path"===a.target.tagName?"move":"start-point"===a.target.attributes["data-line-point"].value?"resize-over-start-point":"resize-over-end-point";else{var r=q.element.getBoundingClientRect(),i=r.right-r.left,n=r.bottom-r.top,o=a.clientX-r.left,l=a.clientY-r.top,s=!H&&i>P&&n>E&&!a.shiftKey?p.getCursor(o/i,1-l/n):"move";u(t,s),O=s.split("-")[0]}}function ee(r){v(e)||(z&&(x=G(a.xanchor)),D&&(T=Y(a.yanchor)),"path"===a.type?R=a.path:(d=z?a.x0:G(a.x0),h=D?a.y0:Y(a.y0),g=z?a.x1:G(a.x1),y=D?a.y1:Y(a.y1)),d<g?(C=d,I="x0",A=g,N="x1"):(C=g,I="x1",A=d,N="x0"),!D&&h<y||D&&h>y?(S=h,k="y0",M=y,L="y1"):(S=y,k="y1",M=h,L="y0"),$(r),ne(l,a),le(t,a,e),q.moveFn="move"===O?re:ie,q.altKey=r.altKey)}function te(){v(e)||(u(t),oe(l),b(t,e,a),r.call("_guiRelayout",e,s.getUpdateObj()))}function ae(){v(e)||oe(l)}function re(r,i){if("path"===a.type){var n=function(e){return e},o=n,s=n;z?j("xanchor",a.xanchor=U(x+r)):(o=function(e){return U(G(e)+r)},W&&"date"===W.type&&(o=m.encodeDate(o))),D?j("yanchor",a.yanchor=Z(T+i)):(s=function(e){return Z(Y(e)+i)},V&&"date"===V.type&&(s=m.encodeDate(s))),j("path",a.path=_(R,o,s))}else z?j("xanchor",a.xanchor=U(x+r)):(j("x0",a.x0=U(d+r)),j("x1",a.x1=U(g+r))),D?j("yanchor",a.yanchor=Z(T+i)):(j("y0",a.y0=Z(h+i)),j("y1",a.y1=Z(y+i)));t.attr("d",w(e,a)),ne(l,a)}function ie(r,i){if(H){var n=function(e){return e},o=n,s=n;z?j("xanchor",a.xanchor=U(x+r)):(o=function(e){return U(G(e)+r)},W&&"date"===W.type&&(o=m.encodeDate(o))),D?j("yanchor",a.yanchor=Z(T+i)):(s=function(e){return Z(Y(e)+i)},V&&"date"===V.type&&(s=m.encodeDate(s))),j("path",a.path=_(R,o,s))}else if(B){if("resize-over-start-point"===O){var c=d+r,p=D?h-i:h+i;j("x0",a.x0=z?c:U(c)),j("y0",a.y0=D?p:Z(p))}else if("resize-over-end-point"===O){var u=g+r,f=D?y-i:y+i;j("x1",a.x1=z?u:U(u)),j("y1",a.y1=D?f:Z(f))}}else{var v=function(e){return-1!==O.indexOf(e)},b=v("n"),F=v("s"),X=v("w"),Q=v("e"),q=b?S+i:S,K=F?M+i:M,J=X?C+r:C,$=Q?A+r:A;D&&(b&&(q=S-i),F&&(K=M-i)),(!D&&K-q>E||D&&q-K>E)&&(j(k,a[k]=D?q:Z(q)),j(L,a[L]=D?K:Z(K))),$-J>P&&(j(I,a[I]=z?J:U(J)),j(N,a[N]=z?$:U($)))}t.attr("d",w(e,a)),ne(l,a)}function ne(e,t){function a(){var a="path"!==t.type,r=e.selectAll(".visual-cue").data([0]),n=1;r.enter().append("path").attr({fill:"#fff","fill-rule":"evenodd",stroke:"#000","stroke-width":n}).classed("visual-cue",!0);var o=G(z?t.xanchor:i.midRange(a?[t.x0,t.x1]:m.extractPathCoords(t.path,f.paramIsX))),l=Y(D?t.yanchor:i.midRange(a?[t.y0,t.y1]:m.extractPathCoords(t.path,f.paramIsY)));if(o=m.roundPositionForSharpStrokeRendering(o,n),l=m.roundPositionForSharpStrokeRendering(l,n),z&&D){var s="M"+(o-1-n)+","+(l-1-n)+"h-8v2h8 v8h2v-8 h8v-2h-8 v-8h-2 Z";r.attr("d",s)}else if(z){var d="M"+(o-1-n)+","+(l-9-n)+"v18 h2 v-18 Z";r.attr("d",d)}else{var c="M"+(o-9-n)+","+(l-1-n)+"h18 v2 h-18 Z";r.attr("d",c)}}(z||D)&&a()}function oe(e){e.selectAll(".visual-cue").remove()}function le(e,t,a){var r=t.xref,i=t.yref,o=n.getFromId(a,r),l=n.getFromId(a,i),s="";"paper"===r||o.autorange||(s+=r),"paper"===i||l.autorange||(s+=i),c.setClipUrl(e,s?"clip"+a._fullLayout._uid+s:null,a)}p.init(q),Q.node().onmousemove=$}(e,P,s,t,a,O):!0===s.editable&&P.style("pointer-events",N||d.opacity(A)*C<=.5?"stroke":"all");P.node().addEventListener("click",(function(){return function(e,t){if(!y(e))return;var a=t.node(),r=+a.getAttribute("data-index");if(r>=0){if(r===e._fullLayout._activeShapeIndex)return void T(e);e._fullLayout._activeShapeIndex=r,e._fullLayout._deactivateShape=T,g(e)}}(e,P)}))}}function b(e,t,a){var r=(a.xref+a.yref).replace(/paper/g,"").replace(/[xyz][1-9]* *domain/g,"");c.setClipUrl(e,r?"clip"+t._fullLayout._uid+r:null,t)}function w(e,t){var a,r,o,l,s,d,c,h,p=t.type,u=n.getRefType(t.xref),g=n.getRefType(t.yref),v=n.getFromId(e,t.xref),y=n.getFromId(e,t.yref),x=e._fullLayout._size;if(v?"domain"===u?r=function(e){return v._offset+v._length*e}:(a=m.shapePositionToRange(v),r=function(e){return v._offset+v.r2p(a(e,!0))}):r=function(e){return x.l+x.w*e},y?"domain"===g?l=function(e){return y._offset+y._length*(1-e)}:(o=m.shapePositionToRange(y),l=function(e){return y._offset+y.r2p(o(e,!0))}):l=function(e){return x.t+x.h*(1-e)},"path"===p)return v&&"date"===v.type&&(r=m.decodeDate(r)),y&&"date"===y.type&&(l=m.decodeDate(l)),function(e,t,a){var r=e.path,n=e.xsizemode,o=e.ysizemode,l=e.xanchor,s=e.yanchor;return r.replace(f.segmentRE,(function(e){var r=0,d=e.charAt(0),c=f.paramIsX[d],h=f.paramIsY[d],p=f.numParams[d],u=e.substr(1).replace(f.paramRE,(function(e){return c[r]?e="pixel"===n?t(l)+Number(e):t(e):h[r]&&(e="pixel"===o?a(s)-Number(e):a(e)),++r>p&&(e="X"),e}));return r>p&&(u=u.replace(/[\s,]*X.*/,""),i.log("Ignoring extra params in segment "+e)),d+u}))}(t,r,l);if("pixel"===t.xsizemode){var b=r(t.xanchor);s=b+t.x0,d=b+t.x1}else s=r(t.x0),d=r(t.x1);if("pixel"===t.ysizemode){var w=l(t.yanchor);c=w-t.y0,h=w-t.y1}else c=l(t.y0),h=l(t.y1);if("line"===p)return"M"+s+","+c+"L"+d+","+h;if("rect"===p)return"M"+s+","+c+"H"+d+"V"+h+"H"+s+"Z";var _=(s+d)/2,T=(c+h)/2,S=Math.abs(_-s),M=Math.abs(T-c),C="A"+S+","+M,A=_+S+","+T;return"M"+A+C+" 0 1,1 "+(_+","+(T-M))+C+" 0 0,1 "+A+"Z"}function _(e,t,a){return e.replace(f.segmentRE,(function(e){var r=0,i=e.charAt(0),n=f.paramIsX[i],o=f.paramIsY[i],l=f.numParams[i];return i+e.substr(1).replace(f.paramRE,(function(e){return r>=l||(n[r]?e=t(e):o[r]&&(e=a(e)),r++),e}))}))}function T(e){y(e)&&(e._fullLayout._activeShapeIndex>=0&&(s(e),delete e._fullLayout._activeShapeIndex,g(e)))}e.exports={draw:g,drawOne:x,eraseActiveShape:function(e){if(!y(e))return;s(e);var t=e._fullLayout._activeShapeIndex,a=(e.layout||{}).shapes||[];if(t<a.length){for(var i=[],n=0;n<a.length;n++)n!==t&&i.push(a[n]);delete e._fullLayout._activeShapeIndex,r.call("_guiRelayout",e,{shapes:i})}}}},62453:function(e,t,a){var r=a(34418).T,i=a(87241).extendFlat;e.exports={newshape:{line:{color:{valType:"color",editType:"none",description:["Sets the line color.","By default uses either dark grey or white","to increase contrast with background color."].join(" ")},width:{valType:"number",min:0,dflt:4,editType:"none",description:"Sets the line width (in px)."},dash:i({},r,{dflt:"solid",editType:"none"}),editType:"none"},fillcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"none",description:["Sets the color filling new shapes' interior.","Please note that if using a fillcolor with alpha greater than half,","drag inside the active shape starts moving the shape underneath,","otherwise a new shape could be started over."].join(" ")},fillrule:{valType:"enumerated",values:["evenodd","nonzero"],dflt:"evenodd",editType:"none",description:["Determines the path's interior.","For more info please visit https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill-rule"].join(" ")},opacity:{valType:"number",min:0,max:1,dflt:1,editType:"none",description:"Sets the opacity of new shapes."},layer:{valType:"enumerated",values:["below","above"],dflt:"above",editType:"none",description:"Specifies whether new shapes are drawn below or above traces."},drawdirection:{valType:"enumerated",values:["ortho","horizontal","vertical","diagonal"],dflt:"diagonal",editType:"none",description:["When `dragmode` is set to *drawrect*, *drawline* or *drawcircle*","this limits the drag to be horizontal, vertical or diagonal.","Using *diagonal* there is no limit e.g. in drawing lines in any direction.","*ortho* limits the draw to be either horizontal or vertical.","*horizontal* allows horizontal extend.","*vertical* allows vertical extend."].join(" ")},editType:"none"},activeshape:{fillcolor:{valType:"color",dflt:"rgb(255,0,255)",editType:"none",description:"Sets the color filling the active shape' interior."},opacity:{valType:"number",min:0,max:1,dflt:.5,editType:"none",description:"Sets the opacity of the active shape."},editType:"none"}}},34847:function(e){e.exports={CIRCLE_SIDES:32,i000:0,i090:8,i180:16,i270:24,cos45:Math.cos(Math.PI/4),sin45:Math.sin(Math.PI/4),SQRT2:Math.sqrt(2)}},38722:function(e,t,a){var r=a(31454);e.exports=function(e,t,a){if(a("newshape.drawdirection"),a("newshape.layer"),a("newshape.fillcolor"),a("newshape.fillrule"),a("newshape.opacity"),a("newshape.line.width")){var i=(e||{}).plot_bgcolor||"#FFF";a("newshape.line.color",r.contrast(i)),a("newshape.line.dash")}a("activeshape.fillcolor"),a("activeshape.opacity")}},60004:function(e,t,a){var r=a(52783),i=a(42910).drawMode,n=a(62282),o=a(34847),l=o.i000,s=o.i090,d=o.i180,c=o.i270,h=a(75152).clearOutlineControllers,p=a(40591),u=p.pointsShapeRectangle,f=p.pointsShapeEllipse,m=p.writePaths,g=a(70586);e.exports=function e(t,a,o,p){p||(p=0);var v=o.gd;function y(){e(t,a,o,p++),f(t[0])&&x({redrawing:!0})}function x(e){o.isActiveShape=!1;var t=g(a,o);Object.keys(t).length&&n.call((e||{}).redrawing?"relayout":"_guiRelayout",v,t)}var b,w,_,T,S,M=o.isActiveShape,C=v._fullLayout._zoomlayer,A=o.dragmode;(i(A)?v._fullLayout._drawing=!0:v._fullLayout._activeShapeIndex>=0&&h(v),a.attr("d",m(t)),M&&!p)&&(S=function(e,t){for(var a=0;a<t.length;a++){var r=t[a];e[a]=[];for(var i=0;i<r.length;i++){e[a][i]=[];for(var n=0;n<r[i].length;n++)e[a][i][n]=r[i][n]}}return e}([],t),function(e){b=[];for(var a=0;a<t.length;a++){var i=t[a],n=!u(i)&&f(i);b[a]=[];for(var o=0;o<i.length;o++)if("Z"!==i[o][0]&&(!n||o===l||o===s||o===d||o===c)){var h=i[o][1],p=i[o][2],m=e.append("circle").classed("cursor-grab",!0).attr("data-i",a).attr("data-j",o).attr("cx",h).attr("cy",p).attr("r",4).style({"mix-blend-mode":"luminosity",fill:"black",stroke:"white","stroke-width":1});b[a][o]={element:m.node(),gd:v,prepFn:k,doneFn:I,clickFn:N},r.init(b[a][o])}}}(C.append("g").attr("class","outline-controllers")),function(){if(w=[],!t.length)return;var e=0;w[e]={element:a[0][0],gd:v,prepFn:O,doneFn:P},r.init(w[e])}());function k(e){_=+e.srcElement.getAttribute("data-i"),T=+e.srcElement.getAttribute("data-j"),b[_][T].moveFn=L}function L(e,a){if(t.length){var r=S[_][T][1],i=S[_][T][2],n=t[_],o=n.length;if(u(n)){for(var l=0;l<o;l++)if(l!==T){var s=n[l];s[1]===n[T][1]&&(s[1]=r+e),s[2]===n[T][2]&&(s[2]=i+a)}if(n[T][1]=r+e,n[T][2]=i+a,!u(n))for(var d=0;d<o;d++)for(var c=0;c<n[d].length;c++)n[d][c]=S[_][d][c]}else n[T][1]=r+e,n[T][2]=i+a;y()}}function I(){x()}function N(e,a){if(2===e){_=+a.srcElement.getAttribute("data-i"),T=+a.srcElement.getAttribute("data-j");var r=t[_];u(r)||f(r)||function(){if(t.length&&t[_]&&t[_].length){for(var e=[],a=0;a<t[_].length;a++)a!==T&&e.push(t[_][a]);e.length>1&&(2!==e.length||"Z"!==e[1][0])&&(0===T&&(e[0][0]="M"),t[_]=e,y(),x())}}()}}function R(e,a){!function(e,a){if(t.length)for(var r=0;r<t.length;r++)for(var i=0;i<t[r].length;i++)for(var n=0;n+2<t[r][i].length;n+=2)t[r][i][n+1]=S[r][i][n+1]+e,t[r][i][n+2]=S[r][i][n+2]+a}(e,a),y()}function O(e){(_=+e.srcElement.getAttribute("data-i"))||(_=0),w[_].moveFn=R}function P(){x()}}},40591:function(e,t,a){var r=a(66999),i=a(34847),n=i.CIRCLE_SIDES,o=i.SQRT2,l=a(77942),s=l.p2r,d=l.r2p,c=[0,3,4,5,6,1,2],h=[0,3,4,1,2];function p(e,t){return Math.abs(e-t)<=1e-6}function u(e,t){var a=t[1]-e[1],r=t[2]-e[2];return Math.sqrt(a*a+r*r)}t.writePaths=function(e){var t=e.length;if(!t)return"M0,0Z";for(var a="",r=0;r<t;r++)for(var i=e[r].length,n=0;n<i;n++){var o=e[r][n][0];if("Z"===o)a+="Z";else for(var l=e[r][n].length,s=0;s<l;s++){var d=s;"Q"===o||"S"===o?d=h[s]:"C"===o&&(d=c[s]),a+=e[r][n][d],s>0&&s<l-1&&(a+=",")}}return a},t.readPaths=function(e,t,a,i){var o,l,c,h=r(e),p=[],u=-1,f=0,m=0,g=function(){l=f,c=m};g();for(var v=0;v<h.length;v++){var y,x,b,w,_=[],T=h[v][0],S=T;switch(T){case"M":u++,p[u]=[],f=+h[v][1],m=+h[v][2],_.push([S,f,m]),g();break;case"Q":case"S":y=+h[v][1],b=+h[v][2],f=+h[v][3],m=+h[v][4],_.push([S,f,m,y,b]);break;case"C":y=+h[v][1],b=+h[v][2],x=+h[v][3],w=+h[v][4],f=+h[v][5],m=+h[v][6],_.push([S,f,m,y,b,x,w]);break;case"T":case"L":f=+h[v][1],m=+h[v][2],_.push([S,f,m]);break;case"H":S="L",f=+h[v][1],_.push([S,f,m]);break;case"V":S="L",m=+h[v][1],_.push([S,f,m]);break;case"A":S="L";var M=+h[v][1],C=+h[v][2];+h[v][4]||(M=-M,C=-C);var A=f-M,k=m;for(o=1;o<=n/2;o++){var L=2*Math.PI*o/n;_.push([S,A+M*Math.cos(L),k+C*Math.sin(L)])}break;case"Z":f===l&&m===c||(f=l,m=c,_.push([S,f,m]))}for(var I=(a||{}).domain,N=t._fullLayout._size,R=a&&"pixel"===a.xsizemode,O=a&&"pixel"===a.ysizemode,P=!1===i,E=0;E<_.length;E++){for(o=0;o+2<7;o+=2){var z=_[E][o+1],D=_[E][o+2];void 0!==z&&void 0!==D&&(f=z,m=D,a&&(a.xaxis&&a.xaxis.p2r?(P&&(z-=a.xaxis._offset),z=R?d(a.xaxis,a.xanchor)+z:s(a.xaxis,z)):(P&&(z-=N.l),I?z=I.x[0]+z/N.w:z/=N.w),a.yaxis&&a.yaxis.p2r?(P&&(D-=a.yaxis._offset),D=O?d(a.yaxis,a.yanchor)-D:s(a.yaxis,D)):(P&&(D-=N.t),D=I?I.y[1]-D/N.h:1-D/N.h)),_[E][o+1]=z,_[E][o+2]=D)}p[u].push(_[E].slice())}}return p},t.pointsShapeRectangle=function(e){if(5!==e.length)return!1;for(var t=1;t<3;t++){if(!p(e[0][t]-e[1][t],e[3][t]-e[2][t]))return!1;if(!p(e[0][t]-e[3][t],e[1][t]-e[2][t]))return!1}return!(!p(e[0][1],e[1][1])&&!p(e[0][1],e[3][1]))&&!!(u(e[0],e[1])*u(e[0],e[3]))},t.pointsShapeEllipse=function(e){var t=e.length;if(t!==n+1)return!1;t=n;for(var a=0;a<t;a++){var r=(2*t-a)%t,i=(t/2+r)%t,o=(t/2+a)%t;if(!p(u(e[a],e[o]),u(e[r],e[i])))return!1}return!0},t.handleEllipse=function(e,a,r){if(!e)return[a,r];var i=t.ellipseOver({x0:a[0],y0:a[1],x1:r[0],y1:r[1]}),l=(i.x1+i.x0)/2,s=(i.y1+i.y0)/2,d=(i.x1-i.x0)/2,c=(i.y1-i.y0)/2;d||(d=c/=o),c||(c=d/=o);for(var h=[],p=0;p<n;p++){var u=2*p*Math.PI/n;h.push([l+d*Math.cos(u),s+c*Math.sin(u)])}return h},t.ellipseOver=function(e){var t=e.x0,a=e.y0,r=e.x1,i=e.y1,n=r-t,l=i-a,s=((t-=n)+r)/2,d=((a-=l)+i)/2;return{x0:s-(n*=o),y0:d-(l*=o),x1:s+n,y1:d+l}}},70586:function(e,t,a){var r=a(42910),i=r.drawMode,n=r.openMode,o=a(34847),l=o.i000,s=o.i090,d=o.i180,c=o.i270,h=o.cos45,p=o.sin45,u=a(77942),f=u.p2r,m=u.r2p,g=a(75152).clearSelect,v=a(40591),y=v.readPaths,x=v.writePaths,b=v.ellipseOver;e.exports=function(e,t){if(e.length){var a=e[0][0];if(a){var r=a.getAttribute("d"),o=t.gd,u=o._fullLayout.newshape,v=t.plotinfo,w=v.xaxis,_=v.yaxis,T=!!v.domain||!v.xaxis,S=!!v.domain||!v.yaxis,M=t.isActiveShape,C=t.dragmode,A=(o.layout||{}).shapes||[];if(!i(C)&&void 0!==M){var k=o._fullLayout._activeShapeIndex;if(k<A.length)switch(o._fullLayout.shapes[k].type){case"rect":C="drawrect";break;case"circle":C="drawcircle";break;case"line":C="drawline";break;case"path":var L=A[k].path||"";C="Z"===L[L.length-1]?"drawclosedpath":"drawopenpath"}}var I,N=n(C),R=y(r,o,v,M),O={editable:!0,xref:T?"paper":w._id,yref:S?"paper":_._id,layer:u.layer,opacity:u.opacity,line:{color:u.line.color,width:u.line.width,dash:u.line.dash}};if(N||(O.fillcolor=u.fillcolor,O.fillrule=u.fillrule),1===R.length&&(I=R[0]),I&&"drawrect"===C)O.type="rect",O.x0=I[0][1],O.y0=I[0][2],O.x1=I[2][1],O.y1=I[2][2];else if(I&&"drawline"===C)O.type="line",O.x0=I[0][1],O.y0=I[0][2],O.x1=I[1][1],O.y1=I[1][2];else if(I&&"drawcircle"===C){O.type="circle";var P=I[l][1],E=I[s][1],z=I[d][1],D=I[c][1],B=I[l][2],H=I[s][2],j=I[d][2],W=I[c][2],F=v.xaxis&&("date"===v.xaxis.type||"log"===v.xaxis.type),V=v.yaxis&&("date"===v.yaxis.type||"log"===v.yaxis.type);F&&(P=m(v.xaxis,P),E=m(v.xaxis,E),z=m(v.xaxis,z),D=m(v.xaxis,D)),V&&(B=m(v.yaxis,B),H=m(v.yaxis,H),j=m(v.yaxis,j),W=m(v.yaxis,W));var X=(E+D)/2,G=(B+j)/2,Y=b({x0:X,y0:G,x1:X+(D-E+z-P)/2*h,y1:G+(W-H+j-B)/2*p});F&&(Y.x0=f(v.xaxis,Y.x0),Y.x1=f(v.xaxis,Y.x1)),V&&(Y.y0=f(v.yaxis,Y.y0),Y.y1=f(v.yaxis,Y.y1)),O.x0=Y.x0,O.y0=Y.y0,O.x1=Y.x1,O.y1=Y.y1}else O.type="path",w&&_&&function(e,t,a){var r="date"===t.type,i="date"===a.type;if(!r&&!i)return e;for(var n=0;n<e.length;n++)for(var o=0;o<e[n].length;o++)for(var l=0;l+2<e[n][o].length;l+=2)r&&(e[n][o][l+1]=e[n][o][l+1].replace(" ","_")),i&&(e[n][o][l+2]=e[n][o][l+2].replace(" ","_"))}(R,w,_),O.path=x(R),I=null;g(o);for(var U=t.editHelpers,Z=(U||{}).modifyItem,Q=[],q=0;q<A.length;q++){var K=o._fullLayout.shapes[q];if(Q[q]=K._input,void 0!==M&&q===o._fullLayout._activeShapeIndex){var J=O;switch(K.type){case"line":case"rect":case"circle":Z("x0",J.x0),Z("x1",J.x1),Z("y0",J.y0),Z("y1",J.y1);break;case"path":Z("path",J.path)}}}return void 0===M?(Q.push(O),Q):U?U.getUpdateObj():{}}}}},80464:function(e,t,a){var r=a(9852),i=a(47401);t.rangeToShapePosition=function(e){return"log"===e.type?e.r2d:function(e){return e}},t.shapePositionToRange=function(e){return"log"===e.type?e.d2r:function(e){return e}},t.decodeDate=function(e){return function(t){return t.replace&&(t=t.replace("_"," ")),e(t)}},t.encodeDate=function(e){return function(t){return e(t).replace(" ","_")}},t.extractPathCoords=function(e,t){var a=[];return e.match(r.segmentRE).forEach((function(e){var n=t[e.charAt(0)].drawn;if(void 0!==n){var o=e.substr(1).match(r.paramRE);!o||o.length<n||a.push(i.cleanNumber(o[n]))}})),a},t.getDataToPixel=function(e,a,r,i){var n,o=e._fullLayout._size;if(a)if("domain"===i)n=function(e){return a._length*(r?1-e:e)+a._offset};else{var l=t.shapePositionToRange(a);n=function(e){return a._offset+a.r2p(l(e,!0))},"date"===a.type&&(n=t.decodeDate(n))}else n=r?function(e){return o.t+o.h*(1-e)}:function(e){return o.l+o.w*e};return n},t.getPixelToData=function(e,a,r,i){var n,o=e._fullLayout._size;if(a)if("domain"===i)n=function(e){var t=(e-a._offset)/a._length;return r?1-t:t};else{var l=t.rangeToShapePosition(a);n=function(e){return l(a.p2r(e-a._offset))}}else n=r?function(e){return 1-(e-o.t)/o.h}:function(e){return(e-o.l)/o.w};return n},t.roundPositionForSharpStrokeRendering=function(e,t){var a=1===Math.round(t%2),r=Math.round(e);return a?r+.5:r},t.makeOptionsAndPlotinfo=function(e,t){var a=e._fullLayout.shapes[t]||{},r=e._fullLayout._plots[a.xref+a.yref];return!!r?r._hadPlotinfo=!0:(r={},a.xref&&"paper"!==a.xref&&(r.xaxis=e._fullLayout[a.xref+"axis"]),a.yref&&"paper"!==a.yref&&(r.yaxis=e._fullLayout[a.yref+"axis"])),r.xsizemode=a.xsizemode,r.ysizemode=a.ysizemode,r.xanchor=a.xanchor,r.yanchor=a.yanchor,{options:a,plotinfo:r}}},85189:function(e,t,a){var r=a(80535);e.exports={moduleType:"component",name:"shapes",layoutAttributes:a(4024),supplyLayoutDefaults:a(5615),supplyDrawNewShapeDefaults:a(38722),includeBasePlot:a(11698)("shapes"),calcAutorange:a(21967),draw:r.draw,drawOne:r.drawOne}},14126:function(e,t,a){var r=a(5153),i=a(32915),n=a(87241).extendDeepAll,o=a(17342).overrideAll,l=a(46218),s=a(92704).templatedArray,d=a(61842),c=s("step",{visible:{valType:"boolean",dflt:!0,description:["Determines whether or not this step is included in the slider."].join(" ")},method:{valType:"enumerated",values:["restyle","relayout","animate","update","skip"],dflt:"restyle",description:["Sets the Plotly method to be called when the slider value is changed.","If the `skip` method is used, the API slider will function as normal","but will perform no API calls and will not bind automatically to state","updates. This may be used to create a component interface and attach to","slider events manually via JavaScript."].join(" ")},args:{valType:"info_array",freeLength:!0,items:[{valType:"any"},{valType:"any"},{valType:"any"}],description:["Sets the arguments values to be passed to the Plotly","method set in `method` on slide."].join(" ")},label:{valType:"string",description:"Sets the text label to appear on the slider"},value:{valType:"string",description:["Sets the value of the slider step, used to refer to the step programatically.","Defaults to the slider label if not provided."].join(" ")},execute:{valType:"boolean",dflt:!0,description:["When true, the API method is executed. When false, all other behaviors are the same","and command execution is skipped. This may be useful when hooking into, for example,","the `plotly_sliderchange` method and executing the API command manually without losing","the benefit of the slider automatically binding to the state of the plot through the","specification of `method` and `args`."].join(" ")}});e.exports=o(s("slider",{visible:{valType:"boolean",dflt:!0,description:["Determines whether or not the slider is visible."].join(" ")},active:{valType:"number",min:0,dflt:0,description:["Determines which button (by index starting from 0) is","considered active."].join(" ")},steps:c,lenmode:{valType:"enumerated",values:["fraction","pixels"],dflt:"fraction",description:["Determines whether this slider length","is set in units of plot *fraction* or in *pixels.","Use `len` to set the value."].join(" ")},len:{valType:"number",min:0,dflt:1,description:["Sets the length of the slider","This measure excludes the padding of both ends.","That is, the slider's length is this length minus the","padding on both ends."].join(" ")},x:{valType:"number",min:-2,max:3,dflt:0,description:"Sets the x position (in normalized coordinates) of the slider."},pad:n(i({editType:"arraydraw"}),{description:"Set the padding of the slider component along each side."},{t:{dflt:20}}),xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"left",description:["Sets the slider's horizontal position anchor.","This anchor binds the `x` position to the *left*, *center*","or *right* of the range selector."].join(" ")},y:{valType:"number",min:-2,max:3,dflt:0,description:"Sets the y position (in normalized coordinates) of the slider."},yanchor:{valType:"enumerated",values:["auto","top","middle","bottom"],dflt:"top",description:["Sets the slider's vertical position anchor","This anchor binds the `y` position to the *top*, *middle*","or *bottom* of the range selector."].join(" ")},transition:{duration:{valType:"number",min:0,dflt:150,description:"Sets the duration of the slider transition"},easing:{valType:"enumerated",values:l.transition.easing.values,dflt:"cubic-in-out",description:"Sets the easing function of the slider transition"}},currentvalue:{visible:{valType:"boolean",dflt:!0,description:["Shows the currently-selected value above the slider."].join(" ")},xanchor:{valType:"enumerated",values:["left","center","right"],dflt:"left",description:["The alignment of the value readout relative to the length of the slider."].join(" ")},offset:{valType:"number",dflt:10,description:["The amount of space, in pixels, between the current value label","and the slider."].join(" ")},prefix:{valType:"string",description:"When currentvalue.visible is true, this sets the prefix of the label."},suffix:{valType:"string",description:"When currentvalue.visible is true, this sets the suffix of the label."},font:r({description:"Sets the font of the current value label text."})},font:r({description:"Sets the font of the slider step labels."}),activebgcolor:{valType:"color",dflt:d.gripBgActiveColor,description:["Sets the background color of the slider grip","while dragging."].join(" ")},bgcolor:{valType:"color",dflt:d.railBgColor,description:"Sets the background color of the slider."},bordercolor:{valType:"color",dflt:d.railBorderColor,description:"Sets the color of the border enclosing the slider."},borderwidth:{valType:"number",min:0,dflt:d.railBorderWidth,description:"Sets the width (in px) of the border enclosing the slider."},ticklen:{valType:"number",min:0,dflt:d.tickLength,description:"Sets the length in pixels of step tick marks"},tickcolor:{valType:"color",dflt:d.tickColor,description:"Sets the color of the border enclosing the slider."},tickwidth:{valType:"number",min:0,dflt:1,description:"Sets the tick width (in px)."},minorticklen:{valType:"number",min:0,dflt:d.minorTickLength,description:"Sets the length in pixels of minor step tick marks"}}),"arraydraw","from-root")},61842:function(e){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}},64889:function(e,t,a){var r=a(47401),i=a(26800),n=a(14126),o=a(61842).name,l=n.steps;function s(e,t,a){function o(a,i){return r.coerce(e,t,n,a,i)}for(var l=i(e,t,{name:"steps",handleItemDefaults:d}),s=0,c=0;c<l.length;c++)l[c].visible&&s++;if(s<2?t.visible=!1:o("visible")){t._stepCount=s;var h=t._visibleSteps=r.filterVisible(l);(l[o("active")]||{}).visible||(t.active=h[0]._index),o("x"),o("y"),r.noneOrAll(e,t,["x","y"]),o("xanchor"),o("yanchor"),o("len"),o("lenmode"),o("pad.t"),o("pad.r"),o("pad.b"),o("pad.l"),r.coerceFont(o,"font",a.font),o("currentvalue.visible")&&(o("currentvalue.xanchor"),o("currentvalue.prefix"),o("currentvalue.suffix"),o("currentvalue.offset"),r.coerceFont(o,"currentvalue.font",t.font)),o("transition.duration"),o("transition.easing"),o("bgcolor"),o("activebgcolor"),o("bordercolor"),o("borderwidth"),o("ticklen"),o("tickwidth"),o("tickcolor"),o("minorticklen")}}function d(e,t){function a(a,i){return r.coerce(e,t,l,a,i)}if("skip"===e.method||Array.isArray(e.args)?a("visible"):t.visible=!1){a("method"),a("args");var i=a("label","step-"+t._index);a("value",i),a("execute")}}e.exports=function(e,t){i(e,t,{name:o,handleItemDefaults:s})}},48913:function(e,t,a){var r=a(62258),i=a(35722),n=a(31454),o=a(41707),l=a(47401),s=l.strTranslate,d=a(43995),c=a(92704).arrayEditor,h=a(61842),p=a(60482),u=p.LINE_SPACING,f=p.FROM_TL,m=p.FROM_BR;function g(e){return h.autoMarginIdRoot+e._index}function v(e){return e._index}function y(e,t){var a=o.tester.selectAll("g."+h.labelGroupClass).data(t._visibleSteps);a.enter().append("g").classed(h.labelGroupClass,!0);var n=0,s=0;a.each((function(e){var a=w(r.select(this),{step:e},t).node();if(a){var i=o.bBox(a);s=Math.max(s,i.height),n=Math.max(n,i.width)}})),a.remove();var c=t._dims={};c.inputAreaWidth=Math.max(h.railWidth,h.gripHeight);var p=e._fullLayout._size;c.lx=p.l+p.w*t.x,c.ly=p.t+p.h*(1-t.y),"fraction"===t.lenmode?c.outerLength=Math.round(p.w*t.len):c.outerLength=t.len,c.inputAreaStart=0,c.inputAreaLength=Math.round(c.outerLength-t.pad.l-t.pad.r);var u=(c.inputAreaLength-2*h.stepInset)/(t._stepCount-1),v=n+h.labelPadding;if(c.labelStride=Math.max(1,Math.ceil(v/u)),c.labelHeight=s,c.currentValueMaxWidth=0,c.currentValueHeight=0,c.currentValueTotalHeight=0,c.currentValueMaxLines=1,t.currentvalue.visible){var y=o.tester.append("g");a.each((function(e){var a=x(y,t,e.label),r=a.node()&&o.bBox(a.node())||{width:0,height:0},i=d.lineCount(a);c.currentValueMaxWidth=Math.max(c.currentValueMaxWidth,Math.ceil(r.width)),c.currentValueHeight=Math.max(c.currentValueHeight,Math.ceil(r.height)),c.currentValueMaxLines=Math.max(c.currentValueMaxLines,i)})),c.currentValueTotalHeight=c.currentValueHeight+t.currentvalue.offset,y.remove()}c.height=c.currentValueTotalHeight+h.tickOffset+t.ticklen+h.labelOffset+c.labelHeight+t.pad.t+t.pad.b;var b="left";l.isRightAnchor(t)&&(c.lx-=c.outerLength,b="right"),l.isCenterAnchor(t)&&(c.lx-=c.outerLength/2,b="center");var _="top";l.isBottomAnchor(t)&&(c.ly-=c.height,_="bottom"),l.isMiddleAnchor(t)&&(c.ly-=c.height/2,_="middle"),c.outerLength=Math.ceil(c.outerLength),c.height=Math.ceil(c.height),c.lx=Math.round(c.lx),c.ly=Math.round(c.ly);var T={y:t.y,b:c.height*m[_],t:c.height*f[_]};"fraction"===t.lenmode?(T.l=0,T.xl=t.x-t.len*f[b],T.r=0,T.xr=t.x+t.len*m[b]):(T.x=t.x,T.l=c.outerLength*f[b],T.r=c.outerLength*m[b]),i.autoMargin(e,g(t),T)}function x(e,t,a){if(t.currentvalue.visible){var r,i,n=t._dims;switch(t.currentvalue.xanchor){case"right":r=n.inputAreaLength-h.currentValueInset-n.currentValueMaxWidth,i="left";break;case"center":r=.5*n.inputAreaLength,i="middle";break;default:r=h.currentValueInset,i="left"}var s=l.ensureSingle(e,"text",h.labelClass,(function(e){e.attr({"text-anchor":i,"data-notex":1})})),c=t.currentvalue.prefix?t.currentvalue.prefix:"";if("string"===typeof a)c+=a;else{var p=t.steps[t.active].label,f=t._gd._fullLayout._meta;f&&(p=l.templateString(p,f)),c+=p}t.currentvalue.suffix&&(c+=t.currentvalue.suffix),s.call(o.font,t.currentvalue.font).text(c).call(d.convertToTspans,t._gd);var m=d.lineCount(s),g=(n.currentValueMaxLines+1-m)*t.currentvalue.font.size*u;return d.positionText(s,r,g),s}}function b(e,t,a){l.ensureSingle(e,"rect",h.gripRectClass,(function(r){r.call(M,t,e,a).style("pointer-events","all")})).attr({width:h.gripWidth,height:h.gripHeight,rx:h.gripRadius,ry:h.gripRadius}).call(n.stroke,a.bordercolor).call(n.fill,a.bgcolor).style("stroke-width",a.borderwidth+"px")}function w(e,t,a){var r=l.ensureSingle(e,"text",h.labelClass,(function(e){e.attr({"text-anchor":"middle","data-notex":1})})),i=t.step.label,n=a._gd._fullLayout._meta;return n&&(i=l.templateString(i,n)),r.call(o.font,a.font).text(i).call(d.convertToTspans,a._gd),r}function _(e,t){var a=l.ensureSingle(e,"g",h.labelsClass),i=t._dims,n=a.selectAll("g."+h.labelGroupClass).data(i.labelSteps);n.enter().append("g").classed(h.labelGroupClass,!0),n.exit().remove(),n.each((function(e){var a=r.select(this);a.call(w,e,t),o.setTranslate(a,k(t,e.fraction),h.tickOffset+t.ticklen+t.font.size*u+h.labelOffset+i.currentValueTotalHeight)}))}function T(e,t,a,r,i){var n=Math.round(r*(a._stepCount-1)),o=a._visibleSteps[n]._index;o!==a.active&&S(e,t,a,o,!0,i)}function S(e,t,a,r,n,o){var l=a.active;a.active=r,c(e.layout,h.name,a).applyUpdate("active",r);var s=a.steps[a.active];t.call(A,a,o),t.call(x,a),e.emit("plotly_sliderchange",{slider:a,step:a.steps[a.active],interaction:n,previousActive:l}),s&&s.method&&n&&(t._nextMethod?(t._nextMethod.step=s,t._nextMethod.doCallback=n,t._nextMethod.doTransition=o):(t._nextMethod={step:s,doCallback:n,doTransition:o},t._nextMethodRaf=window.requestAnimationFrame((function(){var a=t._nextMethod.step;a.method&&(a.execute&&i.executeAPICommand(e,a.method,a.args),t._nextMethod=null,t._nextMethodRaf=null)}))))}function M(e,t,a){var i=a.node(),o=r.select(t);function l(){return a.data()[0]}function s(){var e=l();t.emit("plotly_sliderstart",{slider:e});var s=a.select("."+h.gripRectClass);r.event.stopPropagation(),r.event.preventDefault(),s.call(n.fill,e.activebgcolor);var d=L(e,r.mouse(i)[0]);function c(){var e=l(),n=L(e,r.mouse(i)[0]);T(t,a,e,n,!1)}function p(){var e=l();e._dragging=!1,s.call(n.fill,e.bgcolor),o.on("mouseup",null),o.on("mousemove",null),o.on("touchend",null),o.on("touchmove",null),t.emit("plotly_sliderend",{slider:e,step:e.steps[e.active]})}T(t,a,e,d,!0),e._dragging=!0,o.on("mousemove",c),o.on("touchmove",c),o.on("mouseup",p),o.on("touchend",p)}e.on("mousedown",s),e.on("touchstart",s)}function C(e,t){var a=e.selectAll("rect."+h.tickRectClass).data(t._visibleSteps),i=t._dims;a.enter().append("rect").classed(h.tickRectClass,!0),a.exit().remove(),a.attr({width:t.tickwidth+"px","shape-rendering":"crispEdges"}),a.each((function(e,a){var l=a%i.labelStride===0,s=r.select(this);s.attr({height:l?t.ticklen:t.minorticklen}).call(n.fill,t.tickcolor),o.setTranslate(s,k(t,a/(t._stepCount-1))-.5*t.tickwidth,(l?h.tickOffset:h.minorTickOffset)+i.currentValueTotalHeight)}))}function A(e,t,a){for(var r=e.select("rect."+h.gripRectClass),i=0,n=0;n<t._stepCount;n++)if(t._visibleSteps[n]._index===t.active){i=n;break}var o=k(t,i/(t._stepCount-1));if(!t._invokingCommand){var l=r;a&&t.transition.duration>0&&(l=l.transition().duration(t.transition.duration).ease(t.transition.easing)),l.attr("transform",s(o-.5*h.gripWidth,t._dims.currentValueTotalHeight))}}function k(e,t){var a=e._dims;return a.inputAreaStart+h.stepInset+(a.inputAreaLength-2*h.stepInset)*Math.min(1,Math.max(0,t))}function L(e,t){var a=e._dims;return Math.min(1,Math.max(0,(t-h.stepInset-a.inputAreaStart)/(a.inputAreaLength-2*h.stepInset-2*a.inputAreaStart)))}function I(e,t,a){var r=a._dims,i=l.ensureSingle(e,"rect",h.railTouchRectClass,(function(r){r.call(M,t,e,a).style("pointer-events","all")}));i.attr({width:r.inputAreaLength,height:Math.max(r.inputAreaWidth,h.tickOffset+a.ticklen+r.labelHeight)}).call(n.fill,a.bgcolor).attr("opacity",0),o.setTranslate(i,0,r.currentValueTotalHeight)}function N(e,t){var a=t._dims,r=a.inputAreaLength-2*h.railInset,i=l.ensureSingle(e,"rect",h.railRectClass);i.attr({width:r,height:h.railWidth,rx:h.railRadius,ry:h.railRadius,"shape-rendering":"crispEdges"}).call(n.stroke,t.bordercolor).call(n.fill,t.bgcolor).style("stroke-width",t.borderwidth+"px"),o.setTranslate(i,h.railInset,.5*(a.inputAreaWidth-h.railWidth)+a.currentValueTotalHeight)}e.exports=function(e){var t=e._fullLayout,a=function(e,t){for(var a=e[h.name],r=[],i=0;i<a.length;i++){var n=a[i];n.visible&&(n._gd=t,r.push(n))}return r}(t,e),n=t._infolayer.selectAll("g."+h.containerClassName).data(a.length>0?[0]:[]);function l(t){t._commandObserver&&(t._commandObserver.remove(),delete t._commandObserver),i.autoMargin(e,g(t))}if(n.enter().append("g").classed(h.containerClassName,!0).style("cursor","ew-resize"),n.exit().each((function(){r.select(this).selectAll("g."+h.groupClassName).each(l)})).remove(),0!==a.length){var s=n.selectAll("g."+h.groupClassName).data(a,v);s.enter().append("g").classed(h.groupClassName,!0),s.exit().each(l).remove();for(var d=0;d<a.length;d++){var c=a[d];y(e,c)}s.each((function(t){var a=r.select(this);!function(e){var t=e._dims;t.labelSteps=[];for(var a=e._stepCount,r=0;r<a;r+=t.labelStride)t.labelSteps.push({fraction:r/(a-1),step:e._visibleSteps[r]})}(t),i.manageCommandObserver(e,t,t._visibleSteps,(function(t){var r=a.data()[0];r.active!==t.index&&(r._dragging||S(e,a,r,t.index,!1,!0))})),function(e,t,a){(a.steps[a.active]||{}).visible||(a.active=a._visibleSteps[0]._index);t.call(x,a).call(N,a).call(_,a).call(C,a).call(I,e,a).call(b,e,a);var r=a._dims;o.setTranslate(t,r.lx+a.pad.l,r.ly+a.pad.t),t.call(A,a,!1),t.call(x,a)}(e,r.select(this),t)}))}}},2639:function(e,t,a){var r=a(61842);e.exports={moduleType:"component",name:r.name,layoutAttributes:a(14126),supplyLayoutDefaults:a(64889),draw:a(48913)}},50075:function(e,t,a){var r=a(62258),i=a(83491),n=a(35722),o=a(62282),l=a(47401),s=l.strTranslate,d=a(41707),c=a(31454),h=a(43995),p=a(49158),u=a(60482).OPPOSITE_SIDE,f=/ [XY][0-9]* /;e.exports={draw:function(e,t,a){var m,g=a.propContainer,v=a.propName,y=a.placeholder,x=a.traceIndex,b=a.avoid||{},w=a.attributes,_=a.transform,T=a.containerGroup,S=e._fullLayout,M=1,C=!1,A=g.title,k=(A&&A.text?A.text:"").trim(),L=A&&A.font?A.font:{},I=L.family,N=L.size,R=L.color;"title.text"===v?m="titleText":-1!==v.indexOf("axis")?m="axisTitleText":v.indexOf(!0)&&(m="colorbarTitleText");var O=e._context.edits[m];""===k?M=0:k.replace(f," % ")===y.replace(f," % ")&&(M=.2,C=!0,O||(k="")),a._meta?k=l.templateString(k,a._meta):S._meta&&(k=l.templateString(k,S._meta));var P=k||O;T||(T=l.ensureSingle(S._infolayer,"g","g-"+t));var E=T.selectAll("text").data(P?[0]:[]);if(E.enter().append("text"),E.text(k).attr("class",t),E.exit().remove(),!P)return T;function z(e){l.syncOrAsync([D,B],e)}function D(t){var a;return _?(a="",_.rotate&&(a+="rotate("+[_.rotate,w.x,w.y]+")"),_.offset&&(a+=s(0,_.offset))):a=null,t.attr("transform",a),t.style({"font-family":I,"font-size":r.round(N,2)+"px",fill:c.rgb(R),opacity:M*c.opacity(R),"font-weight":n.fontWeight}).attr(w).call(h.convertToTspans,e),n.previousPromises(e)}function B(e){var t=r.select(e.node().parentNode);if(b&&b.selection&&b.side&&k){t.attr("transform",null);var a=u[b.side],n="left"===b.side||"top"===b.side?-1:1,o=i(b.pad)?b.pad:2,c=d.bBox(t.node()),h={left:0,top:0,right:S.width,bottom:S.height},p=b.maxShift||n*(h[b.side]-c[b.side]),f=0;if(p<0)f=p;else{var m=b.offsetLeft||0,g=b.offsetTop||0;c.left-=m,c.right-=m,c.top-=g,c.bottom-=g,b.selection.each((function(){var e=d.bBox(this);l.bBoxIntersect(c,e,o)&&(f=Math.max(f,n*(e[b.side]-c[a])+o))})),f=Math.min(p,f)}if(f>0||p<0){var v={left:[-f,0],right:[f,0],top:[0,-f],bottom:[0,f]}[b.side];t.attr("transform",s(v[0],v[1]))}}}return E.call(z),O&&(k?E.on(".opacity",null):(M=0,C=!0,E.text(y).on("mouseover.opacity",(function(){r.select(this).transition().duration(p.SHOW_PLACEHOLDER).style("opacity",1)})).on("mouseout.opacity",(function(){r.select(this).transition().duration(p.HIDE_PLACEHOLDER).style("opacity",0)}))),E.call(h.makeEditable,{gd:e}).on("edit",(function(t){void 0!==x?o.call("_guiRestyle",e,v,t,x):o.call("_guiRelayout",e,v,t)})).on("cancel",(function(){this.text(this.attr("data-unformatted")).call(z)})).on("input",(function(e){this.text(e||" ").call(h.positionText,w.x,w.y)}))),E.classed("js-placeholder",C),T}}},60829:function(e,t,a){var r=a(5153),i=a(62405),n=a(87241).extendFlat,o=a(17342).overrideAll,l=a(32915),s=a(92704).templatedArray,d=s("button",{visible:{valType:"boolean",description:"Determines whether or not this button is visible."},method:{valType:"enumerated",values:["restyle","relayout","animate","update","skip"],dflt:"restyle",description:["Sets the Plotly method to be called on click.","If the `skip` method is used, the API updatemenu will function as normal","but will perform no API calls and will not bind automatically to state","updates. This may be used to create a component interface and attach to","updatemenu events manually via JavaScript."].join(" ")},args:{valType:"info_array",freeLength:!0,items:[{valType:"any"},{valType:"any"},{valType:"any"}],description:["Sets the arguments values to be passed to the Plotly","method set in `method` on click."].join(" ")},args2:{valType:"info_array",freeLength:!0,items:[{valType:"any"},{valType:"any"},{valType:"any"}],description:["Sets a 2nd set of `args`,","these arguments values are passed to the Plotly","method set in `method` when clicking this button while in the active state.","Use this to create toggle buttons."].join(" ")},label:{valType:"string",dflt:"",description:"Sets the text label to appear on the button."},execute:{valType:"boolean",dflt:!0,description:["When true, the API method is executed. When false, all other behaviors are the same","and command execution is skipped. This may be useful when hooking into, for example,","the `plotly_buttonclicked` method and executing the API command manually without losing","the benefit of the updatemenu automatically binding to the state of the plot through the","specification of `method` and `args`."].join(" ")}});e.exports=o(s("updatemenu",{_arrayAttrRegexps:[/^updatemenus\[(0|[1-9][0-9]+)\]\.buttons/],visible:{valType:"boolean",description:["Determines whether or not the update menu is visible."].join(" ")},type:{valType:"enumerated",values:["dropdown","buttons"],dflt:"dropdown",description:["Determines whether the buttons are accessible via a dropdown menu","or whether the buttons are stacked horizontally or vertically"].join(" ")},direction:{valType:"enumerated",values:["left","right","up","down"],dflt:"down",description:["Determines the direction in which the buttons are laid out, whether","in a dropdown menu or a row/column of buttons. For `left` and `up`,","the buttons will still appear in left-to-right or top-to-bottom order","respectively."].join(" ")},active:{valType:"integer",min:-1,dflt:0,description:["Determines which button (by index starting from 0) is","considered active."].join(" ")},showactive:{valType:"boolean",dflt:!0,description:"Highlights active dropdown item or active button if true."},buttons:d,x:{valType:"number",min:-2,max:3,dflt:-.05,description:"Sets the x position (in normalized coordinates) of the update menu."},xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"right",description:["Sets the update menu's horizontal position anchor.","This anchor binds the `x` position to the *left*, *center*","or *right* of the range selector."].join(" ")},y:{valType:"number",min:-2,max:3,dflt:1,description:"Sets the y position (in normalized coordinates) of the update menu."},yanchor:{valType:"enumerated",values:["auto","top","middle","bottom"],dflt:"top",description:["Sets the update menu's vertical position anchor","This anchor binds the `y` position to the *top*, *middle*","or *bottom* of the range selector."].join(" ")},pad:n(l({editType:"arraydraw"}),{description:"Sets the padding around the buttons or dropdown menu."}),font:r({description:"Sets the font of the update menu button text."}),bgcolor:{valType:"color",description:"Sets the background color of the update menu buttons."},bordercolor:{valType:"color",dflt:i.borderLine,description:"Sets the color of the border enclosing the update menu."},borderwidth:{valType:"number",min:0,dflt:1,editType:"arraydraw",description:"Sets the width (in px) of the border enclosing the update menu."}}),"arraydraw","from-root")},50775:function(e){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"}}},42890:function(e,t,a){var r=a(47401),i=a(26800),n=a(60829),o=a(50775).name,l=n.buttons;function s(e,t,a){function o(a,i){return r.coerce(e,t,n,a,i)}o("visible",i(e,t,{name:"buttons",handleItemDefaults:d}).length>0)&&(o("active"),o("direction"),o("type"),o("showactive"),o("x"),o("y"),r.noneOrAll(e,t,["x","y"]),o("xanchor"),o("yanchor"),o("pad.t"),o("pad.r"),o("pad.b"),o("pad.l"),r.coerceFont(o,"font",a.font),o("bgcolor",a.paper_bgcolor),o("bordercolor"),o("borderwidth"))}function d(e,t){function a(a,i){return r.coerce(e,t,l,a,i)}a("visible","skip"===e.method||Array.isArray(e.args))&&(a("method"),a("args"),a("args2"),a("label"),a("execute"))}e.exports=function(e,t){i(e,t,{name:o,handleItemDefaults:s})}},45886:function(e,t,a){var r=a(62258),i=a(35722),n=a(31454),o=a(41707),l=a(47401),s=a(43995),d=a(92704).arrayEditor,c=a(60482).LINE_SPACING,h=a(50775),p=a(73560);function u(e){return e._index}function f(e,t){return+e.attr(h.menuIndexAttrName)===t._index}function m(e,t,a,r,i,n,o,l){t.active=o,d(e.layout,h.name,t).applyUpdate("active",o),"buttons"===t.type?v(e,r,null,null,t):"dropdown"===t.type&&(i.attr(h.menuIndexAttrName,"-1"),g(e,r,i,n,t),l||v(e,r,i,n,t))}function g(e,t,a,r,i){var n=l.ensureSingle(t,"g",h.headerClassName,(function(e){e.style("pointer-events","all")})),s=i._dims,d=i.active,c=i.buttons[d]||h.blankHeaderOpts,p={y:i.pad.t,yPad:0,x:i.pad.l,xPad:0,index:0},u={width:s.headerWidth,height:s.headerHeight};n.call(y,i,c,e).call(C,i,p,u),l.ensureSingle(t,"text",h.headerArrowClassName,(function(e){e.attr("text-anchor","end").call(o.font,i.font).text(h.arrowSymbol[i.direction])})).attr({x:s.headerWidth-h.arrowOffsetX+i.pad.l,y:s.headerHeight/2+h.textOffsetY+i.pad.t}),n.on("click",(function(){a.call(A,String(f(a,i)?-1:i._index)),v(e,t,a,r,i)})),n.on("mouseover",(function(){n.call(_)})),n.on("mouseout",(function(){n.call(T,i)})),o.setTranslate(t,s.lx,s.ly)}function v(e,t,a,n,o){a||(a=t).attr("pointer-events","all");var s=function(e){return-1===+e.attr(h.menuIndexAttrName)}(a)&&"buttons"!==o.type?[]:o.buttons,d="dropdown"===o.type?h.dropdownButtonClassName:h.buttonClassName,c=a.selectAll("g."+d).data(l.filterVisible(s)),p=c.enter().append("g").classed(d,!0),u=c.exit();"dropdown"===o.type?(p.attr("opacity","0").transition().attr("opacity","1"),u.transition().attr("opacity","0").remove()):u.remove();var f=0,g=0,v=o._dims,x=-1!==["up","down"].indexOf(o.direction);"dropdown"===o.type&&(x?g=v.headerHeight+h.gapButtonHeader:f=v.headerWidth+h.gapButtonHeader),"dropdown"===o.type&&"up"===o.direction&&(g=-h.gapButtonHeader+h.gapButton-v.openHeight),"dropdown"===o.type&&"left"===o.direction&&(f=-h.gapButtonHeader+h.gapButton-v.openWidth);var b={x:v.lx+f+o.pad.l,y:v.ly+g+o.pad.t,yPad:h.gapButton,xPad:h.gapButton,index:0},S={l:b.x+o.borderwidth,t:b.y+o.borderwidth};c.each((function(l,s){var d=r.select(this);d.call(y,o,l,e).call(C,o,b),d.on("click",(function(){r.event.defaultPrevented||(l.execute&&(l.args2&&o.active===s?(m(e,o,0,t,a,n,-1),i.executeAPICommand(e,l.method,l.args2)):(m(e,o,0,t,a,n,s),i.executeAPICommand(e,l.method,l.args))),e.emit("plotly_buttonclicked",{menu:o,button:l,active:o.active}))})),d.on("mouseover",(function(){d.call(_)})),d.on("mouseout",(function(){d.call(T,o),c.call(w,o)}))})),c.call(w,o),x?(S.w=Math.max(v.openWidth,v.headerWidth),S.h=b.y-S.t):(S.w=b.x-S.l,S.h=Math.max(v.openHeight,v.headerHeight)),S.direction=o.direction,n&&(c.size()?function(e,t,a,r,i,n){var o,l,s,d=i.direction,c="up"===d||"down"===d,p=i._dims,u=i.active;if(c)for(l=0,s=0;s<u;s++)l+=p.heights[s]+h.gapButton;else for(o=0,s=0;s<u;s++)o+=p.widths[s]+h.gapButton;r.enable(n,o,l),r.hbar&&r.hbar.attr("opacity","0").transition().attr("opacity","1");r.vbar&&r.vbar.attr("opacity","0").transition().attr("opacity","1")}(0,0,0,n,o,S):function(e){var t=!!e.hbar,a=!!e.vbar;t&&e.hbar.transition().attr("opacity","0").each("end",(function(){t=!1,a||e.disable()}));a&&e.vbar.transition().attr("opacity","0").each("end",(function(){a=!1,t||e.disable()}))}(n))}function y(e,t,a,r){e.call(x,t).call(b,t,a,r)}function x(e,t){l.ensureSingle(e,"rect",h.itemRectClassName,(function(e){e.attr({rx:h.rx,ry:h.ry,"shape-rendering":"crispEdges"})})).call(n.stroke,t.bordercolor).call(n.fill,t.bgcolor).style("stroke-width",t.borderwidth+"px")}function b(e,t,a,r){var i=l.ensureSingle(e,"text",h.itemTextClassName,(function(e){e.attr({"text-anchor":"start","data-notex":1})})),n=a.label,d=r._fullLayout._meta;d&&(n=l.templateString(n,d)),i.call(o.font,t.font).text(n).call(s.convertToTspans,r)}function w(e,t){var a=t.active;e.each((function(e,i){var o=r.select(this);i===a&&t.showactive&&o.select("rect."+h.itemRectClassName).call(n.fill,h.activeColor)}))}function _(e){e.select("rect."+h.itemRectClassName).call(n.fill,h.hoverColor)}function T(e,t){e.select("rect."+h.itemRectClassName).call(n.fill,t.bgcolor)}function S(e,t){var a=t._dims={width1:0,height1:0,heights:[],widths:[],totalWidth:0,totalHeight:0,openWidth:0,openHeight:0,lx:0,ly:0},n=o.tester.selectAll("g."+h.dropdownButtonClassName).data(l.filterVisible(t.buttons));n.enter().append("g").classed(h.dropdownButtonClassName,!0);var d=-1!==["up","down"].indexOf(t.direction);n.each((function(i,n){var l=r.select(this);l.call(y,t,i,e);var p=l.select("."+h.itemTextClassName),u=p.node()&&o.bBox(p.node()).width,f=Math.max(u+h.textPadX,h.minWidth),m=t.font.size*c,g=s.lineCount(p),v=Math.max(m*g,h.minHeight)+h.textOffsetY;v=Math.ceil(v),f=Math.ceil(f),a.widths[n]=f,a.heights[n]=v,a.height1=Math.max(a.height1,v),a.width1=Math.max(a.width1,f),d?(a.totalWidth=Math.max(a.totalWidth,f),a.openWidth=a.totalWidth,a.totalHeight+=v+h.gapButton,a.openHeight+=v+h.gapButton):(a.totalWidth+=f+h.gapButton,a.openWidth+=f+h.gapButton,a.totalHeight=Math.max(a.totalHeight,v),a.openHeight=a.totalHeight)})),d?a.totalHeight-=h.gapButton:a.totalWidth-=h.gapButton,a.headerWidth=a.width1+h.arrowPadX,a.headerHeight=a.height1,"dropdown"===t.type&&(d?(a.width1+=h.arrowPadX,a.totalHeight=a.height1):a.totalWidth=a.width1,a.totalWidth+=h.arrowPadX),n.remove();var p=a.totalWidth+t.pad.l+t.pad.r,u=a.totalHeight+t.pad.t+t.pad.b,f=e._fullLayout._size;a.lx=f.l+f.w*t.x,a.ly=f.t+f.h*(1-t.y);var m="left";l.isRightAnchor(t)&&(a.lx-=p,m="right"),l.isCenterAnchor(t)&&(a.lx-=p/2,m="center");var g="top";l.isBottomAnchor(t)&&(a.ly-=u,g="bottom"),l.isMiddleAnchor(t)&&(a.ly-=u/2,g="middle"),a.totalWidth=Math.ceil(a.totalWidth),a.totalHeight=Math.ceil(a.totalHeight),a.lx=Math.round(a.lx),a.ly=Math.round(a.ly),i.autoMargin(e,M(t),{x:t.x,y:t.y,l:p*({right:1,center:.5}[m]||0),r:p*({left:1,center:.5}[m]||0),b:u*({top:1,middle:.5}[g]||0),t:u*({bottom:1,middle:.5}[g]||0)})}function M(e){return h.autoMarginIdRoot+e._index}function C(e,t,a,r){r=r||{};var i=e.select("."+h.itemRectClassName),n=e.select("."+h.itemTextClassName),l=t.borderwidth,d=a.index,p=t._dims;o.setTranslate(e,l+a.x,l+a.y);var u=-1!==["up","down"].indexOf(t.direction),f=r.height||(u?p.heights[d]:p.height1);i.attr({x:0,y:0,width:r.width||(u?p.width1:p.widths[d]),height:f});var m=t.font.size*c,g=(s.lineCount(n)-1)*m/2;s.positionText(n,h.textOffsetX,f/2-g+h.textOffsetY),u?a.y+=p.heights[d]+a.yPad:a.x+=p.widths[d]+a.xPad,a.index++}function A(e,t){e.attr(h.menuIndexAttrName,t||"-1").selectAll("g."+h.dropdownButtonClassName).remove()}e.exports=function(e){var t=e._fullLayout,a=l.filterVisible(t[h.name]);function n(t){i.autoMargin(e,M(t))}var o=t._menulayer.selectAll("g."+h.containerClassName).data(a.length>0?[0]:[]);if(o.enter().append("g").classed(h.containerClassName,!0).style("cursor","pointer"),o.exit().each((function(){r.select(this).selectAll("g."+h.headerGroupClassName).each(n)})).remove(),0!==a.length){var s=o.selectAll("g."+h.headerGroupClassName).data(a,u);s.enter().append("g").classed(h.headerGroupClassName,!0);for(var d=l.ensureSingle(o,"g",h.dropdownButtonGroupClassName,(function(e){e.style("pointer-events","all")})),c=0;c<a.length;c++){var y=a[c];S(e,y)}var x="updatemenus"+t._uid,b=new p(e,d,x);s.enter().size()&&(d.node().parentNode.appendChild(d.node()),d.call(A)),s.exit().each((function(e){d.call(A),n(e)})).remove(),s.each((function(t){var a=r.select(this),n="dropdown"===t.type?d:null;i.manageCommandObserver(e,t,t.buttons,(function(r){m(e,t,t.buttons[r.index],a,n,b,r.index,!0)})),"dropdown"===t.type?(g(e,a,d,b,t),f(d,t)&&v(e,a,d,b,t)):v(e,a,null,null,t)}))}}},30790:function(e,t,a){var r=a(50775);e.exports={moduleType:"component",name:r.name,layoutAttributes:a(60829),supplyLayoutDefaults:a(42890),draw:a(45886)}},73560:function(e,t,a){e.exports=l;var r=a(62258),i=a(31454),n=a(41707),o=a(47401);function l(e,t,a){this.gd=e,this.container=t,this.id=a,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})}l.barWidth=2,l.barLength=20,l.barRadius=2,l.barPad=1,l.barColor="#808BA4",l.prototype.enable=function(e,t,a){var o=this.gd._fullLayout,s=o.width,d=o.height;this.position=e;var c,h,p,u,f=this.position.l,m=this.position.w,g=this.position.t,v=this.position.h,y=this.position.direction,x="down"===y,b="left"===y,w="up"===y,_=m,T=v;x||b||"right"===y||w||(this.position.direction="down",x=!0),x||w?(h=(c=f)+_,x?(p=g,T=(u=Math.min(p+T,d))-p):T=(u=g+T)-(p=Math.max(u-T,0))):(u=(p=g)+T,b?_=(h=f+_)-(c=Math.max(h-_,0)):(c=f,_=(h=Math.min(c+_,s))-c)),this._box={l:c,t:p,w:_,h:T};var S=m>_,M=l.barLength+2*l.barPad,C=l.barWidth+2*l.barPad,A=f,k=g+v;k+C>d&&(k=d-C);var L=this.container.selectAll("rect.scrollbar-horizontal").data(S?[0]:[]);L.exit().on(".drag",null).remove(),L.enter().append("rect").classed("scrollbar-horizontal",!0).call(i.fill,l.barColor),S?(this.hbar=L.attr({rx:l.barRadius,ry:l.barRadius,x:A,y:k,width:M,height:C}),this._hbarXMin=A+M/2,this._hbarTranslateMax=_-M):(delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax);var I=v>T,N=l.barWidth+2*l.barPad,R=l.barLength+2*l.barPad,O=f+m,P=g;O+N>s&&(O=s-N);var E=this.container.selectAll("rect.scrollbar-vertical").data(I?[0]:[]);E.exit().on(".drag",null).remove(),E.enter().append("rect").classed("scrollbar-vertical",!0).call(i.fill,l.barColor),I?(this.vbar=E.attr({rx:l.barRadius,ry:l.barRadius,x:O,y:P,width:N,height:R}),this._vbarYMin=P+R/2,this._vbarTranslateMax=T-R):(delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax);var z=this.id,D=c-.5,B=I?h+N+.5:h+.5,H=p-.5,j=S?u+C+.5:u+.5,W=o._topdefs.selectAll("#"+z).data(S||I?[0]:[]);if(W.exit().remove(),W.enter().append("clipPath").attr("id",z).append("rect"),S||I?(this._clipRect=W.select("rect").attr({x:Math.floor(D),y:Math.floor(H),width:Math.ceil(B)-Math.floor(D),height:Math.ceil(j)-Math.floor(H)}),this.container.call(n.setClipUrl,z,this.gd),this.bg.attr({x:f,y:g,width:m,height:v})):(this.bg.attr({width:0,height:0}),this.container.on("wheel",null).on(".drag",null).call(n.setClipUrl,null),delete this._clipRect),S||I){var F=r.behavior.drag().on("dragstart",(function(){r.event.sourceEvent.preventDefault()})).on("drag",this._onBoxDrag.bind(this));this.container.on("wheel",null).on("wheel",this._onBoxWheel.bind(this)).on(".drag",null).call(F);var V=r.behavior.drag().on("dragstart",(function(){r.event.sourceEvent.preventDefault(),r.event.sourceEvent.stopPropagation()})).on("drag",this._onBarDrag.bind(this));S&&this.hbar.on(".drag",null).call(V),I&&this.vbar.on(".drag",null).call(V)}this.setTranslate(t,a)},l.prototype.disable=function(){(this.hbar||this.vbar)&&(this.bg.attr({width:0,height:0}),this.container.on("wheel",null).on(".drag",null).call(n.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)},l.prototype._onBoxDrag=function(){var e=this.translateX,t=this.translateY;this.hbar&&(e-=r.event.dx),this.vbar&&(t-=r.event.dy),this.setTranslate(e,t)},l.prototype._onBoxWheel=function(){var e=this.translateX,t=this.translateY;this.hbar&&(e+=r.event.deltaY),this.vbar&&(t+=r.event.deltaY),this.setTranslate(e,t)},l.prototype._onBarDrag=function(){var e=this.translateX,t=this.translateY;if(this.hbar){var a=e+this._hbarXMin,i=a+this._hbarTranslateMax;e=(o.constrain(r.event.x,a,i)-a)/(i-a)*(this.position.w-this._box.w)}if(this.vbar){var n=t+this._vbarYMin,l=n+this._vbarTranslateMax;t=(o.constrain(r.event.y,n,l)-n)/(l-n)*(this.position.h-this._box.h)}this.setTranslate(e,t)},l.prototype.setTranslate=function(e,t){var a=this.position.w-this._box.w,r=this.position.h-this._box.h;if(e=o.constrain(e||0,0,a),t=o.constrain(t||0,0,r),this.translateX=e,this.translateY=t,this.container.call(n.setTranslate,this._box.l-this.position.l-e,this._box.t-this.position.t-t),this._clipRect&&this._clipRect.attr({x:Math.floor(this.position.l+e-.5),y:Math.floor(this.position.t+t-.5)}),this.hbar){var i=e/a;this.hbar.call(n.setTranslate,e+i*this._hbarTranslateMax,t)}if(this.vbar){var l=t/r;this.vbar.call(n.setTranslate,e,t+l*this._vbarTranslateMax)}}},60482:function(e){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"}}},24729:function(e){e.exports={axisRefDescription:function(e,t,a){return["If set to a",e,"axis id (e.g. *"+e+"* or","*"+e+"2*), the `"+e+"` position refers to a",e,"coordinate. If set to *paper*, the `"+e+"`","position refers to the distance from the",t,"of the plotting","area in normalized coordinates where *0* (*1*) corresponds to the",t,"("+a+"). If set to a",e,"axis ID followed by","*domain* (separated by a space), the position behaves like for","*paper*, but refers to the distance in fractions of the domain","length from the",t,"of the domain of that axis: e.g.,","*"+e+"2 domain* refers to the domain of the second",e," axis and a",e,"position of 0.5 refers to the","point between the",t,"and the",a,"of the domain of the","second",e,"axis."].join(" ")}}},7677:function(e){e.exports={INCREASING:{COLOR:"#3D9970",SYMBOL:"\u25b2"},DECREASING:{COLOR:"#FF4136",SYMBOL:"\u25bc"}}},95888:function(e){e.exports={FORMAT_LINK:"https://github.com/d3/d3-format/tree/v1.4.5#d3-format",DATE_FORMAT_LINK:"https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format"}},166:function(e){e.exports={COMPARISON_OPS:["=","!=","<",">=",">","<="],COMPARISON_OPS2:["=","<",">=",">","<="],INTERVAL_OPS:["[]","()","[)","(]","][",")(","](",")["],SET_OPS:["{}","}{"],CONSTRAINT_REDUCTION:{"=":"=","<":"<","<=":"<",">":">",">=":">","[]":"[]","()":"[]","[)":"[]","(]":"[]","][":"][",")(":"][","](":"][",")[":"]["}}},62002:function(e){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]}},82699:function(e){e.exports={circle:"\u25cf","circle-open":"\u25cb",square:"\u25a0","square-open":"\u25a1",diamond:"\u25c6","diamond-open":"\u25c7",cross:"+",x:"\u274c"}},49158:function(e){e.exports={SHOW_PLACEHOLDER:100,HIDE_PLACEHOLDER:1e3,DESELECTDIM:.2}},9405:function(e){e.exports={BADNUM:void 0,FP_SAFE:1e-4*Number.MAX_VALUE,ONEMAXYEAR:316224e5,ONEAVGYEAR:315576e5,ONEMINYEAR:31536e6,ONEMAXQUARTER:79488e5,ONEAVGQUARTER:78894e5,ONEMINQUARTER:76896e5,ONEMAXMONTH:26784e5,ONEAVGMONTH:26298e5,ONEMINMONTH:24192e5,ONEWEEK:6048e5,ONEDAY:864e5,ONEHOUR:36e5,ONEMIN:6e4,ONESEC:1e3,EPOCHJD:2440587.5,ALMOST_EQUAL:.999999,LOG_CLIP:10,MINUS_SIGN:"\u2212"}},6412:function(e,t){t.xmlns="http://www.w3.org/2000/xmlns/",t.svg="http://www.w3.org/2000/svg",t.xlink="http://www.w3.org/1999/xlink",t.svgAttrs={xmlns:t.svg,"xmlns:xlink":t.xlink}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[1167],{31575:function(e,t,r){"use strict";e.exports=r(4536)},4536:function(e,t,r){"use strict";const n=r(62683),a=r(98722),i=r(94947),o=r(76266),s=r(40973),l=r(24120),u=r(88927),c=r(92987),f=r(76081),d=r(70420);function h(e,t){let[r,n,i,o]=t,s=1/(i-r),l=1/(o-n),u=new Array(e.length);for(let c=0,f=e.length/2;c<f;c++)u[2*c]=a((e[2*c]-r)*s,0,1),u[2*c+1]=a((e[2*c+1]-n)*l,0,1);return u}e.exports=function(e,t){t||(t={}),e=u(e,"float64"),t=s(t,{bounds:"range bounds dataBox databox",maxDepth:"depth maxDepth maxdepth level maxLevel maxlevel levels",dtype:"type dtype format out dst output destination"});let r=l(t.maxDepth,255),a=l(t.bounds,o(e,2));a[0]===a[2]&&a[2]++,a[1]===a[3]&&a[3]++;let p,g=h(e,a),v=e.length>>>1;t.dtype||(t.dtype="array"),"string"===typeof t.dtype?p=new(f(t.dtype))(v):t.dtype&&(p=t.dtype,Array.isArray(p)&&(p.length=v));for(let n=0;n<v;++n)p[n]=n;let y=[],m=[],b=[],x=[];!function e(t,n,a,i,o,s){if(!i.length)return null;let l=y[o]||(y[o]=[]),u=b[o]||(b[o]=[]),c=m[o]||(m[o]=[]),f=l.length;if(++o>r||s>1073741824){for(let e=0;e<i.length;e++)l.push(i[e]),u.push(s),c.push(null,null,null,null);return f}if(l.push(i[0]),u.push(s),i.length<=1)return c.push(null,null,null,null),f;let d=.5*a,h=t+d,p=n+d,v=[],x=[],T=[],w=[];for(let r=1,y=i.length;r<y;r++){let e=i[r],t=g[2*e],n=g[2*e+1];t<h?n<p?v.push(e):x.push(e):n<p?T.push(e):w.push(e)}return s<<=2,c.push(e(t,n,d,v,o,s),e(t,p,d,x,o,s+1),e(h,n,d,T,o,s+2),e(h,p,d,w,o,s+3)),f}(0,0,1,p,0,1);let T=0;for(let n=0;n<y.length;n++){let e=y[n];if(p.set)p.set(e,T);else for(let r=0,n=e.length;r<n;r++)p[r+T]=e[r];let t=T+y[n].length;x[n]=[T,t],T=t}return p.range=function(){for(var t=arguments.length,r=new Array(t),o=0;o<t;o++)r[o]=arguments[o];let u;if(c(r[r.length-1])){let e=r.pop();r.length||null==e.x&&null==e.l&&null==e.left||(r=[e],u={}),u=s(e,{level:"level maxLevel",d:"d diam diameter r radius px pxSize pixel pixelSize maxD size minSize",lod:"lod details ranges offsets"})}else u={};r.length||(r=a);let f=i(...r),[p,g,v,T]=[Math.min(f.x,f.x+f.width),Math.min(f.y,f.y+f.height),Math.max(f.x,f.x+f.width),Math.max(f.y,f.y+f.height)],[k,A,_,D]=h([p,g,v,T],a),M=l(u.level,y.length);if(null!=u.d){let e;"number"===typeof u.d?e=[u.d,u.d]:u.d.length&&(e=u.d),M=Math.min(Math.max(Math.ceil(-d(Math.abs(e[0])/(a[2]-a[0]))),Math.ceil(-d(Math.abs(e[1])/(a[3]-a[1])))),M)}if(M=Math.min(M,y.length),u.lod)return function(e,t,r,a,i){let o=[];for(let s=0;s<i;s++){let i=b[s],l=x[s][0],u=w(e,t,s),c=w(r,a,s),f=n.ge(i,u),d=n.gt(i,c,f,i.length-1);o[s]=[f+l,d+l]}return o}(k,A,_,D,M);let j=[];return function t(r,n,a,i,o,s){if(null===o||null===s)return;let l=n+a;if(k>r+a||A>l||_<r||D<n)return;if(i>=M)return;if(o===s)return;let u=y[i];void 0===s&&(s=u.length);for(let y=o;y<s;y++){let t=u[y],r=e[2*t],n=e[2*t+1];r>=p&&r<=v&&n>=g&&n<=T&&j.push(t)}let c=m[i],f=c[4*o+0],d=c[4*o+1],h=c[4*o+2],b=c[4*o+3],x=function(e,t){let r=null,n=0;for(;null===r;)if(r=e[4*t+n],n++,n>e.length)return null;return r}(c,o+1),w=.5*a,P=i+1;t(r,n,w,P,f,d||h||b||x),t(r,n+w,w,P,d,h||b||x),t(r+w,n,w,P,h,b||x),t(r+w,n+w,w,P,b,x)}(0,0,1,0,0,1),j},p;function w(e,t,r){let n=1,a=.5,i=.5,o=.5;for(let s=0;s<r;s++)n<<=2,n+=e<a?t<i?0:1:t<i?2:3,o*=.5,a+=e<a?-o:o,i+=t<i?-o:o;return n}}},94388:function(e,t,r){"use strict";var n=r(37762),a=r(47401),i=r(16545),o=r(90062).z,s=r(9405).BADNUM;t.moduleType="transform",t.name="aggregate";var l=t.attributes={enabled:{valType:"boolean",dflt:!0,editType:"calc",description:["Determines whether this aggregate transform is enabled or disabled."].join(" ")},groups:{valType:"string",strict:!0,noBlank:!0,arrayOk:!0,dflt:"x",editType:"calc",description:["Sets the grouping target to which the aggregation is applied.","Data points with matching group values will be coalesced into","one point, using the supplied aggregation functions to reduce data","in other data arrays.","If a string, `groups` is assumed to be a reference to a data array","in the parent trace object.","To aggregate by nested variables, use *.* to access them.","For example, set `groups` to *marker.color* to aggregate","about the marker color array.","If an array, `groups` is itself the data array by which we aggregate."].join(" ")},aggregations:{_isLinkedToArray:"aggregation",target:{valType:"string",editType:"calc",description:["A reference to the data array in the parent trace to aggregate.","To aggregate by nested variables, use *.* to access them.","For example, set `groups` to *marker.color* to aggregate","over the marker color array.","The referenced array must already exist, unless `func` is *count*,","and each array may only be referenced once."].join(" ")},func:{valType:"enumerated",values:["count","sum","avg","median","mode","rms","stddev","min","max","first","last","change","range"],dflt:"first",editType:"calc",description:["Sets the aggregation function.","All values from the linked `target`, corresponding to the same value","in the `groups` array, are collected and reduced by this function.","*count* is simply the number of values in the `groups` array, so does","not even require the linked array to exist. *first* (*last*) is just","the first (last) linked value.","Invalid values are ignored, so for example in *avg* they do not","contribute to either the numerator or the denominator.","Any data type (numeric, date, category) may be aggregated with any","function, even though in certain cases it is unlikely to make sense,","for example a sum of dates or average of categories.","*median* will return the average of the two central values if there is","an even count. *mode* will return the first value to reach the maximum","count, in case of a tie.","*change* will return the difference between the first and last linked values.","*range* will return the difference between the min and max linked values."].join(" ")},funcmode:{valType:"enumerated",values:["sample","population"],dflt:"sample",editType:"calc",description:["*stddev* supports two formula variants: *sample* (normalize by N-1)","and *population* (normalize by N)."].join(" ")},enabled:{valType:"boolean",dflt:!0,editType:"calc",description:["Determines whether this aggregation function is enabled or disabled."].join(" ")},editType:"calc"},editType:"calc"},u=l.aggregations;function c(e,t,r,i){if(i.enabled){for(var o=i.target,l=a.nestedProperty(t,o),u=l.get(),c=function(e,t){var r=e.func,n=t.d2c,i=t.c2d;switch(r){case"count":return f;case"first":return d;case"last":return h;case"sum":return function(e,t){for(var r=0,a=0;a<t.length;a++){var o=n(e[t[a]]);o!==s&&(r+=o)}return i(r)};case"avg":return function(e,t){for(var r=0,a=0,o=0;o<t.length;o++){var l=n(e[t[o]]);l!==s&&(r+=l,a++)}return a?i(r/a):s};case"min":return function(e,t){for(var r=1/0,a=0;a<t.length;a++){var o=n(e[t[a]]);o!==s&&(r=Math.min(r,o))}return r===1/0?s:i(r)};case"max":return function(e,t){for(var r=-1/0,a=0;a<t.length;a++){var o=n(e[t[a]]);o!==s&&(r=Math.max(r,o))}return r===-1/0?s:i(r)};case"range":return function(e,t){for(var r=1/0,a=-1/0,o=0;o<t.length;o++){var l=n(e[t[o]]);l!==s&&(r=Math.min(r,l),a=Math.max(a,l))}return a===-1/0||r===1/0?s:i(a-r)};case"change":return function(e,t){var r=n(e[t[0]]),a=n(e[t[t.length-1]]);return r===s||a===s?s:i(a-r)};case"median":return function(e,t){for(var r=[],o=0;o<t.length;o++){var l=n(e[t[o]]);l!==s&&r.push(l)}if(!r.length)return s;r.sort(a.sorterAsc);var u=(r.length-1)/2;return i((r[Math.floor(u)]+r[Math.ceil(u)])/2)};case"mode":return function(e,t){for(var r={},a=0,o=s,l=0;l<t.length;l++){var u=n(e[t[l]]);if(u!==s){var c=r[u]=(r[u]||0)+1;c>a&&(a=c,o=u)}}return a?i(o):s};case"rms":return function(e,t){for(var r=0,a=0,o=0;o<t.length;o++){var l=n(e[t[o]]);l!==s&&(r+=l*l,a++)}return a?i(Math.sqrt(r/a)):s};case"stddev":return function(t,r){var a,i=0,o=0,l=1,u=s;for(a=0;a<r.length&&u===s;a++)u=n(t[r[a]]);if(u===s)return s;for(;a<r.length;a++){var c=n(t[r[a]]);if(c!==s){var f=c-u;i+=f,o+=f*f,l++}}var d="sample"===e.funcmode?l-1:l;return d?Math.sqrt((o-i*i/l)/d):0}}}(i,n.getDataConversions(e,t,o,u)),p=new Array(r.length),g=0;g<r.length;g++)p[g]=c(u,r[g]);l.set(p),"count"===i.func&&a.pushUnique(t._arrayAttrs,o)}}function f(e,t){return t.length}function d(e,t){return e[t[0]]}function h(e,t){return e[t[t.length-1]]}t.supplyDefaults=function(e,t){var r,n={};function o(t,r){return a.coerce(e,n,l,t,r)}if(!o("enabled"))return n;var s=i.findArrayAttributes(t),c={};for(r=0;r<s.length;r++)c[s[r]]=1;var f=o("groups");if(!Array.isArray(f)){if(!c[f])return n.enabled=!1,n;c[f]=0}var d,h=e.aggregations||[],p=n.aggregations=new Array(h.length);function g(e,t){return a.coerce(h[r],d,u,e,t)}for(r=0;r<h.length;r++){d={_index:r};var v=g("target"),y=g("func");g("enabled")&&v&&(c[v]||"count"===y&&void 0===c[v])?("stddev"===y&&g("funcmode"),c[v]=0,p[r]=d):p[r]={enabled:!1,_index:r}}for(r=0;r<s.length;r++)c[s[r]]&&p.push({target:s[r],func:u.func.dflt,enabled:!0,_index:-1});return n},t.calcTransform=function(e,t,r){if(r.enabled){var n=r.groups,i=a.getTargetArray(t,{target:n});if(i){var s,l,u,f,d={},h={},p=[],g=o(t.transforms,r),v=i.length;for(t._length&&(v=Math.min(v,t._length)),s=0;s<v;s++)void 0===(u=d[l=i[s]])?(d[l]=p.length,f=[s],p.push(f),h[d[l]]=g(s)):(p[u].push(s),h[d[l]]=(h[d[l]]||[]).concat(g(s)));r._indexToPoints=h;var y=r.aggregations;for(s=0;s<y.length;s++)c(e,t,p,y[s]);"string"===typeof n&&c(e,t,p,{target:n,func:"first",enabled:!0}),t._length=p.length}}}},3217:function(e,t,r){"use strict";var n=r(47401),a=r(62282),i=r(37762),o=r(90062).z,s=r(166),l=s.COMPARISON_OPS,u=s.INTERVAL_OPS,c=s.SET_OPS;t.moduleType="transform",t.name="filter",t.attributes={enabled:{valType:"boolean",dflt:!0,editType:"calc",description:["Determines whether this filter transform is enabled or disabled."].join(" ")},target:{valType:"string",strict:!0,noBlank:!0,arrayOk:!0,dflt:"x",editType:"calc",description:["Sets the filter target by which the filter is applied.","If a string, `target` is assumed to be a reference to a data array","in the parent trace object.","To filter about nested variables, use *.* to access them.","For example, set `target` to *marker.color* to filter","about the marker color array.","If an array, `target` is then the data array by which the filter is applied."].join(" ")},operation:{valType:"enumerated",values:[].concat(l).concat(u).concat(c),dflt:"=",editType:"calc",description:["Sets the filter operation.","*=* keeps items equal to `value`","*!=* keeps items not equal to `value`","*<* keeps items less than `value`","*<=* keeps items less than or equal to `value`","*>* keeps items greater than `value`","*>=* keeps items greater than or equal to `value`","*[]* keeps items inside `value[0]` to `value[1]` including both bounds","*()* keeps items inside `value[0]` to `value[1]` excluding both bounds","*[)* keeps items inside `value[0]` to `value[1]` including `value[0]` but excluding `value[1]","*(]* keeps items inside `value[0]` to `value[1]` excluding `value[0]` but including `value[1]","*][* keeps items outside `value[0]` to `value[1]` and equal to both bounds","*)(* keeps items outside `value[0]` to `value[1]`","*](* keeps items outside `value[0]` to `value[1]` and equal to `value[0]`","*)[* keeps items outside `value[0]` to `value[1]` and equal to `value[1]`","*{}* keeps items present in a set of values","*}{* keeps items not present in a set of values"].join(" ")},value:{valType:"any",dflt:0,editType:"calc",description:["Sets the value or values by which to filter.","Values are expected to be in the same type as the data linked","to `target`.","When `operation` is set to one of","the comparison values ("+l+")","`value` is expected to be a number or a string.","When `operation` is set to one of the interval values","("+u+")","`value` is expected to be 2-item array where the first item","is the lower bound and the second item is the upper bound.","When `operation`, is set to one of the set values","("+c+")","`value` is expected to be an array with as many items as","the desired set elements."].join(" ")},preservegaps:{valType:"boolean",dflt:!1,editType:"calc",description:["Determines whether or not gaps in data arrays produced by the filter operation","are preserved.","Setting this to *true* might be useful when plotting a line chart","with `connectgaps` set to *false*."].join(" ")},editType:"calc"},t.supplyDefaults=function(e){var r={};function i(a,i){return n.coerce(e,r,t.attributes,a,i)}if(i("enabled")){var o=i("target");if(n.isArrayOrTypedArray(o)&&0===o.length)return r.enabled=!1,r;i("preservegaps"),i("operation"),i("value");var s=a.getComponentMethod("calendars","handleDefaults");s(e,r,"valuecalendar",null),s(e,r,"targetcalendar",null)}return r},t.calcTransform=function(e,t,r){if(r.enabled){var a=n.getTargetArray(t,r);if(a){var s=r.target,f=a.length;t._length&&(f=Math.min(f,t._length));var d=r.targetcalendar,h=t._arrayAttrs,p=r.preservegaps;if("string"===typeof s){var g=n.nestedProperty(t,s+"calendar").get();g&&(d=g)}var v,y,m=function(e,t,r){var n=e.operation,a=e.value,i=Array.isArray(a);function o(e){return-1!==e.indexOf(n)}var s,f=function(r){return t(r,0,e.valuecalendar)},d=function(e){return t(e,0,r)};o(l)?s=f(i?a[0]:a):o(u)?s=i?[f(a[0]),f(a[1])]:[f(a),f(a)]:o(c)&&(s=i?a.map(f):[f(a)]);switch(n){case"=":return function(e){return d(e)===s};case"!=":return function(e){return d(e)!==s};case"<":return function(e){return d(e)<s};case"<=":return function(e){return d(e)<=s};case">":return function(e){return d(e)>s};case">=":return function(e){return d(e)>=s};case"[]":return function(e){var t=d(e);return t>=s[0]&&t<=s[1]};case"()":return function(e){var t=d(e);return t>s[0]&&t<s[1]};case"[)":return function(e){var t=d(e);return t>=s[0]&&t<s[1]};case"(]":return function(e){var t=d(e);return t>s[0]&&t<=s[1]};case"][":return function(e){var t=d(e);return t<=s[0]||t>=s[1]};case")(":return function(e){var t=d(e);return t<s[0]||t>s[1]};case"](":return function(e){var t=d(e);return t<=s[0]||t>s[1]};case")[":return function(e){var t=d(e);return t<s[0]||t>=s[1]};case"{}":return function(e){return-1!==s.indexOf(d(e))};case"}{":return function(e){return-1===s.indexOf(d(e))}}}(r,i.getDataToCoordFunc(e,t,s,a),d),b={},x={},T=0;p?(v=function(e){b[e.astr]=n.extendDeep([],e.get()),e.set(new Array(f))},y=function(e,t){var r=b[e.astr][t];e.get()[t]=r}):(v=function(e){b[e.astr]=n.extendDeep([],e.get()),e.set([])},y=function(e,t){var r=b[e.astr][t];e.get().push(r)}),A(v);for(var w=o(t.transforms,r),k=0;k<f;k++){m(a[k])?(A(y,k),x[T++]=w(k)):p&&T++}r._indexToPoints=x,t._length=T}}function A(e,r){for(var a=0;a<h.length;a++){e(n.nestedProperty(t,h[a]),r)}}}},71493:function(e,t,r){"use strict";var n=r(47401),a=r(16545),i=r(35722),o=r(90062).z;function s(e,t){var r,s,l,u,c,f,d,h,p,g,v=t.transform,y=t.transformIndex,m=e.transforms[y].groups,b=o(e.transforms,v);if(!n.isArrayOrTypedArray(m)||0===m.length)return[e];var x=n.filterUnique(m),T=new Array(x.length),w=m.length,k=a.findArrayAttributes(e),A=v.styles||[],_={};for(r=0;r<A.length;r++)_[A[r].target]=A[r].value;v.styles&&(g=n.keyedContainer(v,"styles","target","value.name"));var D={},M={};for(r=0;r<x.length;r++){D[f=x[r]]=r,M[f]=0,(d=T[r]=n.extendDeepNoArrays({},e))._group=f,d.transforms[y]._indexToPoints={};var j=null;for(g&&(j=g.get(f)),d.name=j||""===j?j:n.templateString(v.nameformat,{trace:e.name,group:f}),h=d.transforms,d.transforms=[],s=0;s<h.length;s++)d.transforms[s]=n.extendDeepNoArrays({},h[s]);for(s=0;s<k.length;s++)n.nestedProperty(d,k[s]).set([])}for(l=0;l<k.length;l++){for(u=k[l],s=0,p=[];s<x.length;s++)p[s]=n.nestedProperty(T[s],u).get();for(c=n.nestedProperty(e,u).get(),s=0;s<w;s++)p[D[m[s]]].push(c[s])}for(s=0;s<w;s++){(d=T[D[m[s]]]).transforms[y]._indexToPoints[M[m[s]]]=b(s),M[m[s]]++}for(r=0;r<x.length;r++)f=x[r],d=T[r],i.clearExpandedTraceDefaultColors(d),d=n.extendDeepNoArrays(d,_[f]||{});return T}t.moduleType="transform",t.name="groupby",t.attributes={enabled:{valType:"boolean",dflt:!0,editType:"calc",description:["Determines whether this group-by transform is enabled or disabled."].join(" ")},groups:{valType:"data_array",dflt:[],editType:"calc",description:["Sets the groups in which the trace data will be split.","For example, with `x` set to *[1, 2, 3, 4]* and","`groups` set to *['a', 'b', 'a', 'b']*,","the groupby transform with split in one trace","with `x` [1, 3] and one trace with `x` [2, 4]."].join(" ")},nameformat:{valType:"string",editType:"calc",description:["Pattern by which grouped traces are named. If only one trace is present,",'defaults to the group name (`"%{group}"`), otherwise defaults to the group name','with trace name (`"%{group} (%{trace})"`). Available escape sequences are `%{group}`, which',"inserts the group name, and `%{trace}`, which inserts the trace name. If grouping","GDP data by country when more than one trace is present, for example, the",'default "%{group} (%{trace})" would return "Monaco (GDP per capita)".'].join(" ")},styles:{_isLinkedToArray:"style",target:{valType:"string",editType:"calc",description:["The group value which receives these styles."].join(" ")},value:{valType:"any",dflt:{},editType:"calc",description:["Sets each group styles.","For example, with `groups` set to *['a', 'b', 'a', 'b']*","and `styles` set to *[{target: 'a', value: { marker: { color: 'red' } }}]","marker points in group *'a'* will be drawn in red."].join(" "),_compareAsJSON:!0},editType:"calc"},editType:"calc"},t.supplyDefaults=function(e,r,a){var i,o={};function s(r,a){return n.coerce(e,o,t.attributes,r,a)}if(!s("enabled"))return o;s("groups"),s("nameformat",a._dataLength>1?"%{group} (%{trace})":"%{group}");var l=e.styles,u=o.styles=[];if(l)for(i=0;i<l.length;i++){var c=u[i]={};n.coerce(l[i],u[i],t.attributes.styles,"target");var f=n.coerce(l[i],u[i],t.attributes.styles,"value");n.isPlainObject(f)?c.value=n.extendDeep({},f):f&&delete c.value}return o},t.transform=function(e,t){var r,n,a,i=[];for(n=0;n<e.length;n++)for(r=s(e[n],t),a=0;a<r.length;a++)i.push(r[a]);return i}},90062:function(e,t){"use strict";t.z=function(e,t){for(var r,n,a=0;a<e.length&&(r=e[a])!==t;a++)r._indexToPoints&&!1!==r.enabled&&(n=r._indexToPoints);var i=n?function(e){return n[e]}:function(e){return[e]};return i}},94751:function(e,t,r){"use strict";var n=r(47401),a=r(37762),i=r(90062).z,o=r(9405).BADNUM;t.moduleType="transform",t.name="sort",t.attributes={enabled:{valType:"boolean",dflt:!0,editType:"calc",description:["Determines whether this sort transform is enabled or disabled."].join(" ")},target:{valType:"string",strict:!0,noBlank:!0,arrayOk:!0,dflt:"x",editType:"calc",description:["Sets the target by which the sort transform is applied.","If a string, *target* is assumed to be a reference to a data array","in the parent trace object.","To sort about nested variables, use *.* to access them.","For example, set `target` to *marker.size* to sort","about the marker size array.","If an array, *target* is then the data array by which","the sort transform is applied."].join(" ")},order:{valType:"enumerated",values:["ascending","descending"],dflt:"ascending",editType:"calc",description:["Sets the sort transform order."].join(" ")},editType:"calc"},t.supplyDefaults=function(e){var r={};function a(a,i){return n.coerce(e,r,t.attributes,a,i)}return a("enabled")&&(a("target"),a("order")),r},t.calcTransform=function(e,t,r){if(r.enabled){var s=n.getTargetArray(t,r);if(s){var l=r.target,u=s.length;t._length&&(u=Math.min(u,t._length));var c,f,d=t._arrayAttrs,h=function(e,t,r,n){var a,i=new Array(n),s=new Array(n);for(a=0;a<n;a++)i[a]={v:t[a],i:a};for(i.sort(function(e,t){switch(e.order){case"ascending":return function(e,r){var n=t(e.v),a=t(r.v);return n===o?1:a===o?-1:n-a};case"descending":return function(e,r){var n=t(e.v),a=t(r.v);return n===o?1:a===o?-1:a-n}}}(e,r)),a=0;a<n;a++)s[a]=i[a].i;return s}(r,s,a.getDataToCoordFunc(e,t,l,s),u),p=i(t.transforms,r),g={};for(c=0;c<d.length;c++){var v=n.nestedProperty(t,d[c]),y=v.get(),m=new Array(u);for(f=0;f<u;f++)m[f]=y[h[f]];v.set(m)}for(f=0;f<u;f++)g[f]=p(h[f]);r._indexToPoints=g,t._length=u}}}},20817:function(e,t){"use strict";t.version="2.5.1"},50169:function(e){"use strict";function t(e,t,r,n,a,i){var o=["function ",e,"(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?t.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(",t,"){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 r(e,r,n,a){return new Function([t("A","x"+e+"y",r,["y"],!1,a),t("B","x"+e+"y",r,["y"],!0,a),t("P","c(x,y)"+e+"0",r,["y","c"],!1,a),t("Q","c(x,y)"+e+"0",r,["y","c"],!0,a),"function dispatchBsearch",n,"(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",n].join(""))()}e.exports={ge:r(">=",!1,"GE"),gt:r(">",!1,"GT"),lt:r("<",!0,"LT"),le:r("<=",!0,"LE"),eq:r("-",!0,"EQ",!0)}},66532:function(e,t,r){e.exports=function(e){for(var t=e.length,r=[],i=[],s=0;s<t;++s)for(var c=e[s],f=c.length,d=f-1,h=0;h<f;d=h++){var p=c[d],g=c[h];p[0]===g[0]?i.push([p,g]):r.push([p,g])}if(0===r.length)return 0===i.length?u:(v=l(i),function(e){return v(e[0],e[1])?0:1});var v;var y=a(r),m=function(e,t){return function(r){var a=o.le(t,r[0]);if(a<0)return 1;var i=e[a];if(!i){if(!(a>0&&t[a]===r[0]))return 1;i=e[a-1]}for(var s=1;i;){var l=i.key,u=n(r,l[0],l[1]);if(l[0][0]<l[1][0])if(u<0)i=i.left;else{if(!(u>0))return 0;s=-1,i=i.right}else if(u>0)i=i.left;else{if(!(u<0))return 0;s=1,i=i.right}}return s}}(y.slabs,y.coordinates);return 0===i.length?m:function(e,t){return function(r){return e(r[0],r[1])?0:t(r)}}(l(i),m)};var n=r(30223)[3],a=r(47752),i=r(44965),o=r(50169);function s(){return!0}function l(e){for(var t={},r=0;r<e.length;++r){var n=e[r],a=n[0][0],o=n[0][1],l=n[1][1],u=[Math.min(o,l),Math.max(o,l)];a in t?t[a].push(u):t[a]=[u]}var c={},f=Object.keys(t);for(r=0;r<f.length;++r){var d=t[f[r]];c[f[r]]=i(d)}return function(e){return function(t,r){var n=e[t];return!!n&&!!n.queryPoint(r,s)}}(c)}function u(e){return 1}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[1248],{45854:function(e,t,n){"use strict";e.exports=function(e,t){"object"===typeof t&&null!==t||(t={});return r(e,t.canvas||i,t.context||a,t)};var r=n(5439),i=null,a=null;"undefined"!==typeof document&&((i=document.createElement("canvas")).width=8192,i.height=1024,a=i.getContext("2d"))},5439:function(e,t,n){e.exports=function(e,t,n,r){var a=64,s=1.25,o={breaklines:!1,bolds:!1,italics:!1,subscripts:!1,superscripts:!1};r&&(r.size&&r.size>0&&(a=r.size),r.lineSpacing&&r.lineSpacing>0&&(s=r.lineSpacing),r.styletags&&r.styletags.breaklines&&(o.breaklines=!!r.styletags.breaklines),r.styletags&&r.styletags.bolds&&(o.bolds=!!r.styletags.bolds),r.styletags&&r.styletags.italics&&(o.italics=!!r.styletags.italics),r.styletags&&r.styletags.subscripts&&(o.subscripts=!!r.styletags.subscripts),r.styletags&&r.styletags.superscripts&&(o.superscripts=!!r.styletags.superscripts));return n.font=[r.fontStyle,r.fontVariant,r.fontWeight,a+"px",r.font].filter((function(e){return e})).join(" "),n.textAlign="start",n.textBaseline="alphabetic",n.direction="ltr",O(function(e,t,n,r,a,s){n=n.replace(/\n/g,""),n=!0===s.breaklines?n.replace(/\<br\>/g,"\n"):n.replace(/\<br\>/g," ");var o="",l=[];for(k=0;k<n.length;++k)l[k]=o;!0===s.bolds&&(l=_(c,u,n,l));!0===s.italics&&(l=_(f,p,n,l));!0===s.superscripts&&(l=_(g,h,n,l));!0===s.subscripts&&(l=_(d,y,n,l));var x=[],w="";for(k=0;k<n.length;++k)null!==l[k]&&(w+=n[k],x.push(l[k]));var O,k,j,m,M,P=w.split("\n"),A=P.length,z=Math.round(a*r),W=r,E=2*r,H=0,S=A*z+E;e.height<S&&(e.height=S);t.fillStyle="#000",t.fillRect(0,0,e.width,e.height),t.fillStyle="#fff";var I=0,N="";function B(){if(""!==N){var e=t.measureText(N).width;t.fillText(N,W+j,E+m),j+=e}}function T(){return Math.round(M)+"px "}function U(e,n){var r=""+t.font;if(!0===s.subscripts){var i=e.indexOf(v),a=n.indexOf(v),o=i>-1?parseInt(e[1+i]):0,l=a>-1?parseInt(n[1+a]):0;o!==l&&(r=r.replace(T(),"?px "),M*=Math.pow(.75,l-o),r=r.replace("?px ",T())),m+=.25*z*(l-o)}if(!0===s.superscripts){var c=e.indexOf(b),f=n.indexOf(b),g=c>-1?parseInt(e[1+c]):0,h=f>-1?parseInt(n[1+f]):0;g!==h&&(r=r.replace(T(),"?px "),M*=Math.pow(.75,h-g),r=r.replace("?px ",T())),m-=.25*z*(h-g)}if(!0===s.bolds){var d=e.indexOf(u)>-1,y=n.indexOf(u)>-1;!d&&y&&(r=_?r.replace("italic ","italic bold "):"bold "+r),d&&!y&&(r=r.replace("bold ",""))}if(!0===s.italics){var _=e.indexOf(p)>-1,x=n.indexOf(p)>-1;!_&&x&&(r="italic "+r),_&&!x&&(r=r.replace("italic ",""))}t.font=r}for(O=0;O<A;++O){var C=P[O]+"\n";for(j=0,m=O*z,M=r,N="",k=0;k<C.length;++k){var R=k+I<x.length?x[k+I]:x[x.length-1];o===R?N+=C[k]:(B(),N=C[k],void 0!==R&&(U(o,R),o=R))}B(),I+=C.length;var V=0|Math.round(j+2*W);H<V&&(H=V)}var D=H,F=E+z*A;return i(t.getImageData(0,0,D,F).data,[F,D,4]).pick(-1,-1,0).transpose(1,0)}(t,n,e,a,s,o),r,a)},e.exports.processPixels=O;var r=n(80590),i=n(75501),a=n(15735),s=n(91295),o=n(21581),l=n(30926),c="b",u="b|",f="i",p="i|",g="sup",b="+",h="+1",d="sub",v="-",y="-1";function _(e,t,n,r){for(var i="<"+e+">",a="</"+e+">",s=i.length,o=a.length,l=t[0]===b||t[0]===v,c=0,u=-o;c>-1&&-1!==(c=n.indexOf(i,c))&&-1!==(u=n.indexOf(a,c+s))&&!(u<=c);){for(var f=c;f<u+o;++f)if(f<c+s||f>=u)r[f]=null,n=n.substr(0,f)+" "+n.substr(f+1);else if(null!==r[f]){var p=r[f].indexOf(t[0]);-1===p?r[f]+=t:l&&(r[f]=r[f].substr(0,p+1)+(1+parseInt(r[f][p+1]))+r[f].substr(p+2))}var g=c+s,h=n.substr(g,u-g).indexOf(i);c=-1!==h?h:u+o}return r}function x(e,t){var n=r(e,128);return t?a(n.cells,n.positions,.25):{edges:n.cells,positions:n.positions}}function w(e,t,n,r){var i=x(e,r),a=function(e,t,n){for(var r=t.textAlign||"start",i=t.textBaseline||"alphabetic",a=[1<<30,1<<30],s=[0,0],o=e.length,l=0;l<o;++l)for(var c=e[l],u=0;u<2;++u)a[u]=0|Math.min(a[u],c[u]),s[u]=0|Math.max(s[u],c[u]);var f=0;switch(r){case"center":f=-.5*(a[0]+s[0]);break;case"right":case"end":f=-s[0];break;case"left":case"start":f=-a[0];break;default:throw new Error("vectorize-text: Unrecognized textAlign: '"+r+"'")}var p=0;switch(i){case"hanging":case"top":p=-a[1];break;case"middle":p=-.5*(a[1]+s[1]);break;case"alphabetic":case"ideographic":p=-3*n;break;case"bottom":p=-s[1];break;default:throw new Error("vectorize-text: Unrecoginized textBaseline: '"+i+"'")}var g=1/n;return"lineHeight"in t?g*=+t.lineHeight:"width"in t?g=t.width/(s[0]-a[0]):"height"in t&&(g=t.height/(s[1]-a[1])),e.map((function(e){return[g*(e[0]+f),g*(e[1]+p)]}))}(i.positions,t,n),c=i.edges,u="ccw"===t.orientation;if(s(a,c),t.polygons||t.polygon||t.polyline){for(var f=l(c,a),p=new Array(f.length),g=0;g<f.length;++g){for(var b=f[g],h=new Array(b.length),d=0;d<b.length;++d){for(var v=b[d],y=new Array(v.length),_=0;_<v.length;++_)y[_]=a[v[_]].slice();u&&y.reverse(),h[d]=y}p[g]=h}return p}return t.triangles||t.triangulate||t.triangle?{cells:o(a,c,{delaunay:!1,exterior:!1,interior:!0}),positions:a}:{edges:c,positions:a}}function O(e,t,n){try{return w(e,t,n,!0)}catch(r){}try{return w(e,t,n,!1)}catch(r){}return t.polygons||t.polyline||t.polygon?[]:t.triangles||t.triangulate||t.triangle?{cells:[],positions:[]}:{edges:[],positions:[]}}},31825:function(e){!function(){"use strict";if("undefined"===typeof ses||!ses.ok||ses.ok()){"undefined"!==typeof ses&&(ses.weakMapPermitHostObjects=d);var t=!1;if("function"===typeof WeakMap){var n=WeakMap;if("undefined"!==typeof navigator&&/Firefox/.test(navigator.userAgent));else{var r=new n,i=Object.freeze({});if(r.set(i,1),1===r.get(i))return void(e.exports=WeakMap);t=!0}}Object.prototype.hasOwnProperty;var a=Object.getOwnPropertyNames,s=Object.defineProperty,o=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),f=new Uint8Array(u);crypto.getRandomValues(f),c=l+"rand:"+Array.prototype.map.call(f,(function(e){return(e%36).toString(36)})).join("")+"___"}if(s(Object,"getOwnPropertyNames",{value:function(e){return a(e).filter(v)}}),"getPropertyNames"in Object){var p=Object.getPropertyNames;s(Object,"getPropertyNames",{value:function(e){return p(e).filter(v)}})}!function(){var e=Object.freeze;s(Object,"freeze",{value:function(t){return y(t),e(t)}});var t=Object.seal;s(Object,"seal",{value:function(e){return y(e),t(e)}});var n=Object.preventExtensions;s(Object,"preventExtensions",{value:function(e){return y(e),n(e)}})}();var g=!1,b=0,h=function(){this instanceof h||x();var e=[],t=[],n=b++;return Object.create(h.prototype,{get___:{value:_((function(r,i){var a,s=y(r);return s?n in s?s[n]:i:(a=e.indexOf(r))>=0?t[a]:i}))},has___:{value:_((function(t){var r=y(t);return r?n in r:e.indexOf(t)>=0}))},set___:{value:_((function(r,i){var a,s=y(r);return s?s[n]=i:(a=e.indexOf(r))>=0?t[a]=i:(a=e.length,t[a]=i,e[a]=r),this}))},delete___:{value:_((function(r){var i,a,s=y(r);return s?n in s&&delete s[n]:!((i=e.indexOf(r))<0)&&(a=e.length-1,e[i]=void 0,t[i]=t[a],e[i]=e[a],e.length=a,t.length=a,!0)}))}})};h.prototype=Object.create(Object.prototype,{get:{value:function(e,t){return this.get___(e,t)},writable:!0,configurable:!0},has:{value:function(e){return this.has___(e)},writable:!0,configurable:!0},set:{value:function(e,t){return this.set___(e,t)},writable:!0,configurable:!0},delete:{value:function(e){return this.delete___(e)},writable:!0,configurable:!0}}),"function"===typeof n?function(){function r(){this instanceof h||x();var e,r=new n,i=void 0,a=!1;return e=t?function(e,t){return r.set(e,t),r.has(e)||(i||(i=new h),i.set(e,t)),this}:function(e,t){if(a)try{r.set(e,t)}catch(n){i||(i=new h),i.set___(e,t)}else r.set(e,t);return this},Object.create(h.prototype,{get___:{value:_((function(e,t){return i?r.has(e)?r.get(e):i.get___(e,t):r.get(e,t)}))},has___:{value:_((function(e){return r.has(e)||!!i&&i.has___(e)}))},set___:{value:_(e)},delete___:{value:_((function(e){var t=!!r.delete(e);return i&&i.delete___(e)||t}))},permitHostObjects___:{value:_((function(e){if(e!==d)throw new Error("bogus call to permitHostObjects___");a=!0}))}})}t&&"undefined"!==typeof Proxy&&(Proxy=void 0),r.prototype=h.prototype,e.exports=r,Object.defineProperty(WeakMap.prototype,"constructor",{value:WeakMap,enumerable:!1,configurable:!0,writable:!0})}():("undefined"!==typeof Proxy&&(Proxy=void 0),e.exports=h)}function d(e){e.permitHostObjects___&&e.permitHostObjects___(d)}function v(e){return!(e.substr(0,8)==l&&"___"===e.substr(e.length-3))}function y(e){if(e!==Object(e))throw new TypeError("Not an object: "+e);var t=e[c];if(t&&t.key===e)return t;if(o(e)){t={key:e};try{return s(e,c,{value:t,writable:!1,enumerable:!1,configurable:!1}),t}catch(n){return}}}function _(e){return e.prototype=null,Object.freeze(e)}function x(){g||"undefined"===typeof console||(g=!0,console.warn("WeakMap should be invoked as new WeakMap(), not WeakMap(). This will be an error in the future."))}}()}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[1262],{13941:function(e,t,r){var i=r(47216),o=r(97451),a=r(20184).axisHoverFormat,s=r(4216).r,n=r(4216).a,l=r(42837),h=r(62002),c=r(82699),d=r(87241).extendFlat,p=r(17342).overrideAll,u=r(73314),f=i.line,x=i.marker,y=x.line,m=d({width:f.width,dash:{valType:"enumerated",values:u(h),dflt:"solid",description:"Sets the dash style of the lines."}},o("line"));function v(e){return{show:{valType:"boolean",dflt:!1,description:["Sets whether or not projections are shown along the",e,"axis."].join(" ")},opacity:{valType:"number",min:0,max:1,dflt:1,description:"Sets the projection color."},scale:{valType:"number",min:0,max:10,dflt:2/3,description:["Sets the scale factor determining the size of the","projection marker points."].join(" ")}}}var g=e.exports=p({x:i.x,y:i.y,z:{valType:"data_array",description:"Sets the z coordinates."},text:d({},i.text,{description:["Sets text elements associated with each (x,y,z) triplet.","If a single string, the same string appears over","all the data points.","If an array of string, the items are mapped in order to the","this trace's (x,y,z) coordinates.","If trace `hoverinfo` contains a *text* flag and *hovertext* is not set,","these elements will be seen in the hover labels."].join(" ")}),texttemplate:n({},{}),hovertext:d({},i.hovertext,{description:["Sets text elements associated with each (x,y,z) triplet.","If a single string, the same string appears over","all the data points.","If an array of string, the items are mapped in order to the","this trace's (x,y,z) coordinates.","To be seen, trace `hoverinfo` must contain a *text* flag."].join(" ")}),hovertemplate:s(),xhoverformat:a("x"),yhoverformat:a("y"),zhoverformat:a("z"),mode:d({},i.mode,{dflt:"lines+markers"}),surfaceaxis:{valType:"enumerated",values:[-1,0,1,2],dflt:-1,description:["If *-1*, the scatter points are not fill with a surface","If *0*, *1*, *2*, the scatter points are filled with","a Delaunay surface about the x, y, z respectively."].join(" ")},surfacecolor:{valType:"color",description:"Sets the surface fill color."},projection:{x:v("x"),y:v("y"),z:v("z")},connectgaps:i.connectgaps,line:m,marker:d({symbol:{valType:"enumerated",values:u(c),dflt:"circle",arrayOk:!0,description:"Sets the marker symbol type."},size:d({},x.size,{dflt:8}),sizeref:x.sizeref,sizemin:x.sizemin,sizemode:x.sizemode,opacity:d({},x.opacity,{arrayOk:!1,description:["Sets the marker opacity.","Note that the marker opacity for scatter3d traces","must be a scalar value for performance reasons.","To set a blending opacity value","(i.e. which is not transparent), set *marker.color*","to an rgba color and use its alpha channel."].join(" ")}),colorbar:x.colorbar,line:d({width:d({},y.width,{arrayOk:!1})},o("marker.line"))},o("marker")),textposition:d({},i.textposition,{dflt:"top center"}),textfont:{color:i.textfont.color,size:i.textfont.size,family:d({},i.textfont.family,{arrayOk:!1})},hoverinfo:d({},l.hoverinfo)},"calc","nested");g.x.editType=g.y.editType=g.z.editType="calc+clearAxisTypes"},8809:function(e,t,r){var i=r(79475),o=r(54952);e.exports=function(e,t){var r=[{x:!1,y:!1,trace:t,t:{}}];return i(r,t),o(e,t),r}},26919:function(e,t,r){var i=r(62282);function o(e,t,r,o){if(!t||!t.visible)return null;for(var a=i.getComponentMethod("errorbars","makeComputeError")(t),s=new Array(e.length),n=0;n<e.length;n++){var l=a(+e[n],n);if("log"===o.type){var h=o.c2l(e[n]),c=e[n]-l[0],d=e[n]+l[1];if(s[n]=[(o.c2l(c,!0)-h)*r,(o.c2l(d,!0)-h)*r],c>0){var p=o.c2l(c);o._lowerLogErrorBound||(o._lowerLogErrorBound=p),o._lowerErrorBound=Math.min(o._lowerLogErrorBound,p)}}else s[n]=[-l[0]*r,l[1]*r]}return s}e.exports=function(e,t,r){var i=[o(e.x,e.error_x,t[0],r.xaxis),o(e.y,e.error_y,t[1],r.yaxis),o(e.z,e.error_z,t[2],r.zaxis)],a=function(e){for(var t=0;t<e.length;t++)if(e[t])return e[t].length;return 0}(i);if(0===a)return null;for(var s=new Array(a),n=0;n<a;n++){for(var l=[[0,0,0],[0,0,0]],h=0;h<3;h++)if(i[h])for(var c=0;c<2;c++)l[c][h]=i[h][n][c];s[n]=l}return s}},17253:function(e,t,r){var i=r(29977),o=r(40021),a=r(92232),s=r(14144),n=r(94419),l=r(47401),h=r(42770),c=r(63750).formatColor,d=r(69407),p=r(62002),u=r(82699),f=r(37762),x=r(14904).appendArrayPointValue,y=r(26919);function m(e,t){this.scene=e,this.uid=t,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 v=m.prototype;function g(e){return null===e||void 0===e?0:e.indexOf("left")>-1?-1:e.indexOf("right")>-1?1:0}function z(e){return null===e||void 0===e?0:e.indexOf("top")>-1?-1:e.indexOf("bottom")>-1?1:0}function b(e,t){return t(4*e)}function k(e){return u[e]}function M(e,t,r,i,o){var a=null;if(l.isArrayOrTypedArray(e)){a=[];for(var s=0;s<t;s++)void 0===e[s]?a[s]=i:a[s]=r(e[s],o)}else a=r(e,l.identity);return a}function P(e,t){var r,i,o,a,s,n,p=[],u=e.fullSceneLayout,m=e.dataScale,v=u.xaxis,P=u.yaxis,j=u.zaxis,w=t.marker,S=t.line,A=t.x||[],_=t.y||[],L=t.z||[],C=A.length,T=t.xcalendar,B=t.ycalendar,O=t.zcalendar;for(s=0;s<C;s++)r=v.d2l(A[s],0,T)*m[0],i=P.d2l(_[s],0,B)*m[1],o=j.d2l(L[s],0,O)*m[2],p[s]=[r,i,o];if(Array.isArray(t.text))n=t.text;else if(void 0!==t.text)for(n=new Array(C),s=0;s<C;s++)n[s]=t.text;function W(e,t){var r=u[e];return f.tickText(r,r.d2l(t),!0).text}var D=t.texttemplate;if(D){var I=e.fullLayout._d3locale,F=Array.isArray(D),N=F?Math.min(D.length,C):C,E=F?function(e){return D[e]}:function(){return D};for(n=new Array(N),s=0;s<N;s++){var G={x:A[s],y:_[s],z:L[s]},H={xLabel:W("xaxis",A[s]),yLabel:W("yaxis",_[s]),zLabel:W("zaxis",L[s])},V={};x(V,t,s);var q=t._meta||{};n[s]=l.texttemplateString(E(s),H,I,V,G,q)}}if(a={position:p,mode:t.mode,text:n},"line"in t&&(a.lineColor=c(S,1,C),a.lineWidth=S.width,a.lineDashes=S.dash),"marker"in t){var J=d(t);a.scatterColor=c(w,1,C),a.scatterSize=M(w.size,C,b,20,J),a.scatterMarker=M(w.symbol,C,k,"\u25cf"),a.scatterLineWidth=w.line.width,a.scatterLineColor=c(w.line,1,C),a.scatterAngle=0}"textposition"in t&&(a.textOffset=function(e){var t=[0,0];if(Array.isArray(e))for(var r=0;r<e.length;r++)t[r]=[0,0],e[r]&&(t[r][0]=g(e[r]),t[r][1]=z(e[r]));else t[0]=g(e),t[1]=z(e);return t}(t.textposition),a.textColor=c(t.textfont,1,C),a.textSize=M(t.textfont.size,C,l.identity,12),a.textFont=t.textfont.family,a.textAngle=0);var K=["x","y","z"];for(a.project=[!1,!1,!1],a.projectScale=[1,1,1],a.projectOpacity=[1,1,1],s=0;s<3;++s){var Q=t.projection[K[s]];(a.project[s]=Q.show)&&(a.projectOpacity[s]=Q.opacity,a.projectScale[s]=Q.scale)}a.errorBounds=y(t,m,u);var R=function(e){for(var t=[0,0,0],r=[[0,0,0],[0,0,0],[0,0,0]],i=[1,1,1],o=0;o<3;o++){var a=e[o];a&&!1!==a.copy_zstyle&&!1!==e[2].visible&&(a=e[2]),a&&a.visible&&(t[o]=a.width/2,r[o]=h(a.color),i[o]=a.thickness)}return{capSize:t,color:r,lineWidth:i}}([t.error_x,t.error_y,t.error_z]);return a.errorColor=R.color,a.errorLineWidth=R.lineWidth,a.errorCapSize=R.capSize,a.delaunayAxis=t.surfaceaxis,a.delaunayColor=h(t.surfacecolor),a}function j(e){if(l.isArrayOrTypedArray(e)){var t=e[0];return l.isArrayOrTypedArray(t)&&(e=t),"rgb("+e.slice(0,3).map((function(e){return Math.round(255*e)}))+")"}return null}function w(e){return l.isArrayOrTypedArray(e)?4===e.length&&"number"===typeof e[0]?j(e):e.map(j):null}v.handlePick=function(e){if(e.object&&(e.object===this.linePlot||e.object===this.delaunayMesh||e.object===this.textMarkers||e.object===this.scatterPlot)){var t=e.index=e.data.index;return e.object.highlight&&e.object.highlight(null),this.scatterPlot&&(e.object=this.scatterPlot,this.scatterPlot.highlight(e.data)),e.textLabel="",this.textLabels&&(Array.isArray(this.textLabels)?(this.textLabels[t]||0===this.textLabels[t])&&(e.textLabel=this.textLabels[t]):e.textLabel=this.textLabels),e.traceCoordinate=[this.data.x[t],this.data.y[t],this.data.z[t]],!0}},v.update=function(e){var t,r,l,h,c=this.scene.glplot.gl,d=p.solid;this.data=e;var u=P(this.scene,e);"mode"in u&&(this.mode=u.mode),"lineDashes"in u&&u.lineDashes in p&&(d=p[u.lineDashes]),this.color=w(u.scatterColor)||w(u.lineColor),this.dataPoints=u.position,t={gl:this.scene.glplot.gl,position:u.position,color:u.lineColor,lineWidth:u.lineWidth||1,dashes:d[0],dashScale:d[1],opacity:e.opacity,connectGaps:e.connectgaps},-1!==this.mode.indexOf("lines")?this.linePlot?this.linePlot.update(t):(this.linePlot=i(t),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 f=e.opacity;if(e.marker&&e.marker.opacity&&(f*=e.marker.opacity),r={gl:this.scene.glplot.gl,position:u.position,color:u.scatterColor,size:u.scatterSize,glyph:u.scatterMarker,opacity:f,orthographic:!0,lineWidth:u.scatterLineWidth,lineColor:u.scatterLineColor,project:u.project,projectScale:u.projectScale,projectOpacity:u.projectOpacity},-1!==this.mode.indexOf("markers")?this.scatterPlot?this.scatterPlot.update(r):(this.scatterPlot=o(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),h={gl:this.scene.glplot.gl,position:u.position,glyph:u.text,color:u.textColor,size:u.textSize,angle:u.textAngle,alignment:u.textOffset,font:u.textFont,orthographic:!0,lineWidth:0,project:!1,opacity:e.opacity},this.textLabels=e.hovertext||e.text,-1!==this.mode.indexOf("text")?this.textMarkers?this.textMarkers.update(h):(this.textMarkers=o(h),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:u.position,color:u.errorColor,error:u.errorBounds,lineWidth:u.errorLineWidth,capSize:u.errorCapSize,opacity:e.opacity},this.errorBars?u.errorBounds?this.errorBars.update(l):(this.scene.glplot.remove(this.errorBars),this.errorBars.dispose(),this.errorBars=null):u.errorBounds&&(this.errorBars=a(l),this.errorBars._trace=this,this.scene.glplot.add(this.errorBars)),u.delaunayAxis>=0){var x=function(e,t,r){var i,o=(r+1)%3,a=(r+2)%3,s=[],l=[];for(i=0;i<e.length;++i){var h=e[i];!isNaN(h[o])&&isFinite(h[o])&&!isNaN(h[a])&&isFinite(h[a])&&(s.push([h[o],h[a]]),l.push(i))}var c=n(s);for(i=0;i<c.length;++i)for(var d=c[i],p=0;p<d.length;++p)d[p]=l[d[p]];return{positions:e,cells:c,meshColor:t}}(u.position,u.delaunayColor,u.delaunayAxis);x.opacity=e.opacity,this.delaunayMesh?this.delaunayMesh.update(x):(x.gl=c,this.delaunayMesh=s(x),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)},v.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(e,t){var r=new m(e,t.uid);return r.update(t),r}},66210:function(e,t,r){var i=r(62282),o=r(47401),a=r(77638),s=r(47008),n=r(99144),l=r(60039),h=r(13941);e.exports=function(e,t,r,c){function d(r,i){return o.coerce(e,t,h,r,i)}var p=function(e,t,r,o){var a=0,s=r("x"),n=r("y"),l=r("z");i.getComponentMethod("calendars","handleTraceDefaults")(e,t,["x","y","z"],o),s&&n&&l&&(a=Math.min(s.length,n.length,l.length),t._length=t._xlength=t._ylength=t._zlength=a);return a}(e,t,d,c);if(p){d("text"),d("hovertext"),d("hovertemplate"),d("xhoverformat"),d("yhoverformat"),d("zhoverformat"),d("mode"),a.hasLines(t)&&(d("connectgaps"),n(e,t,r,c,d)),a.hasMarkers(t)&&s(e,t,r,c,d,{noSelect:!0}),a.hasText(t)&&(d("texttemplate"),l(e,t,c,d,{noSelect:!0}));var u=(t.line||{}).color,f=(t.marker||{}).color;d("surfaceaxis")>=0&&d("surfacecolor",u||f);for(var x=["x","y","z"],y=0;y<3;++y){var m="projection."+x[y];d(m+".show")&&(d(m+".opacity"),d(m+".scale"))}var v=i.getComponentMethod("errorbars","supplyDefaults");v(e,t,u||f||r,{axis:"z"}),v(e,t,u||f||r,{axis:"y",inherit:"z"}),v(e,t,u||f||r,{axis:"x",inherit:"z"})}else t.visible=!1}},41262:function(e,t,r){e.exports={plot:r(17253),attributes:r(13941),markerSymbols:r(82699),supplyDefaults:r(66210),colorbar:[{container:"marker",min:"cmin",max:"cmax"},{container:"line",min:"cmin",max:"cmax"}],calc:r(8809),moduleType:"trace",name:"scatter3d",basePlotModule:r(6727),categories:["gl3d","symbols","showLegend","scatter-like"],meta:{hrName:"scatter_3d",description:["The data visualized as scatter point or lines in 3D dimension","is set in `x`, `y`, `z`.","Text (appearing either on the chart or on hover only) is via `text`.","Bubble charts are achieved by setting `marker.size` and/or `marker.color`","Projections are achieved via `projection`.","Surface fills are achieved via `surfaceaxis`."].join(" ")}}}}]);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see 1273.56da3e13.chunk.js.LICENSE.txt */
|
|
2
|
+
(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[1273],{5586:function(t){"use strict";function e(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}t.exports=e;var n=e.prototype;Object.defineProperty(n,"length",{get:function(){return this.roots.length}}),n.makeSet=function(){var t=this.roots.length;return this.roots.push(t),this.ranks.push(0),t},n.find=function(t){for(var e=t,n=this.roots;n[t]!==t;)t=n[t];for(;n[e]!==t;){var r=n[e];n[e]=t,e=r}return t},n.link=function(t,e){var n=this.find(t),r=this.find(e);if(n!==r){var o=this.ranks,i=this.roots,u=o[n],c=o[r];u<c?i[n]=r:c<u?i[r]=n:(i[r]=n,++o[n])}}},66869:function(t){"use strict";t.exports=function(t,e,n){return 0===t.length?t:e?(n||t.sort(e),function(t,e){for(var n=1,r=t.length,o=t[0],i=t[0],u=1;u<r;++u)if(i=o,e(o=t[u],i)){if(u===n){n++;continue}t[n++]=o}return t.length=n,t}(t,e)):(n||t.sort(),function(t){for(var e=1,n=t.length,r=t[0],o=t[0],i=1;i<n;++i,o=r)if(o=r,(r=t[i])!==o){if(i===e){e++;continue}t[e++]=r}return t.length=e,t}(t))}},12908:function(t){var e=/[\'\"]/;t.exports=function(t){return t?(e.test(t.charAt(0))&&(t=t.substr(1)),e.test(t.charAt(t.length-1))&&(t=t.substr(0,t.length-1)),t):""}},98162:function(t){"use strict";t.exports=function(t,e,n){Array.isArray(n)||(n=[].slice.call(arguments,2));for(var r=0,o=n.length;r<o;r++){var i=n[r];for(var u in i)if((void 0===e[u]||Array.isArray(e[u])||t[u]!==e[u])&&u in e){var c;if(!0===i[u])c=e[u];else{if(!1===i[u])continue;if("function"===typeof i[u]&&void 0===(c=i[u](e[u],t,e)))continue}t[u]=c}}return t}},17953:function(t,e,n){"use strict";var r=n(31014);var o="function"===typeof Object.is?Object.is:function(t,e){return t===e&&(0!==t||1/t===1/e)||t!==t&&e!==e},i=r.useState,u=r.useEffect,c=r.useLayoutEffect,s=r.useDebugValue;function f(t){var e=t.getSnapshot;t=t.value;try{var n=e();return!o(t,n)}catch(r){return!0}}var a="undefined"===typeof window||"undefined"===typeof window.document||"undefined"===typeof window.document.createElement?function(t,e){return e()}:function(t,e){var n=e(),r=i({inst:{value:n,getSnapshot:e}}),o=r[0].inst,a=r[1];return c((function(){o.value=n,o.getSnapshot=e,f(o)&&a({inst:o})}),[t,n,e]),u((function(){return f(o)&&a({inst:o}),t((function(){f(o)&&a({inst:o})}))}),[t]),s(n),n};e.useSyncExternalStore=void 0!==r.useSyncExternalStore?r.useSyncExternalStore:a},18930:function(t,e,n){"use strict";t.exports=n(17953)},66437:function(t,e,n){function r(t){try{if(!n.g.localStorage)return!1}catch(r){return!1}var e=n.g.localStorage[t];return null!=e&&"true"===String(e).toLowerCase()}t.exports=function(t,e){if(r("noDeprecation"))return t;var n=!1;return function(){if(!n){if(r("throwDeprecation"))throw new Error(e);r("traceDeprecation")?console.trace(e):console.warn(e),n=!0}return t.apply(this,arguments)}}},63316:function(t){"function"===typeof Object.create?t.exports=function(t,e){t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}})}:t.exports=function(t,e){t.super_=e;var n=function(){};n.prototype=e.prototype,t.prototype=new n,t.prototype.constructor=t}},3893:function(t){t.exports=function(t){return t&&"object"===typeof t&&"function"===typeof t.copy&&"function"===typeof t.fill&&"function"===typeof t.readUInt8}},42367:function(t,e,n){var r=/%[sdj%]/g;e.format=function(t){if(!d(t)){for(var e=[],n=0;n<arguments.length;n++)e.push(u(arguments[n]));return e.join(" ")}n=1;for(var o=arguments,i=o.length,c=String(t).replace(r,(function(t){if("%%"===t)return"%";if(n>=i)return t;switch(t){case"%s":return String(o[n++]);case"%d":return Number(o[n++]);case"%j":try{return JSON.stringify(o[n++])}catch(e){return"[Circular]"}default:return t}})),s=o[n];n<i;s=o[++n])g(s)||!S(s)?c+=" "+s:c+=" "+u(s);return c},e.deprecate=function(t,r){if(v(n.g.process))return function(){return e.deprecate(t,r).apply(this,arguments)};if(!0===process.noDeprecation)return t;var o=!1;return function(){if(!o){if(process.throwDeprecation)throw new Error(r);process.traceDeprecation?console.trace(r):console.error(r),o=!0}return t.apply(this,arguments)}};var o,i={};function u(t,n){var r={seen:[],stylize:s};return arguments.length>=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),y(n)?r.showHidden=n:n&&e._extend(r,n),v(r.showHidden)&&(r.showHidden=!1),v(r.depth)&&(r.depth=2),v(r.colors)&&(r.colors=!1),v(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=c),f(r,t,r.depth)}function c(t,e){var n=u.styles[e];return n?"\x1b["+u.colors[n][0]+"m"+t+"\x1b["+u.colors[n][1]+"m":t}function s(t,e){return t}function f(t,n,r){if(t.customInspect&&n&&E(n.inspect)&&n.inspect!==e.inspect&&(!n.constructor||n.constructor.prototype!==n)){var o=n.inspect(r,t);return d(o)||(o=f(t,o,r)),o}var i=function(t,e){if(v(e))return t.stylize("undefined","undefined");if(d(e)){var n="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(n,"string")}if(h(e))return t.stylize(""+e,"number");if(y(e))return t.stylize(""+e,"boolean");if(g(e))return t.stylize("null","null")}(t,n);if(i)return i;var u=Object.keys(n),c=function(t){var e={};return t.forEach((function(t,n){e[t]=!0})),e}(u);if(t.showHidden&&(u=Object.getOwnPropertyNames(n)),w(n)&&(u.indexOf("message")>=0||u.indexOf("description")>=0))return a(n);if(0===u.length){if(E(n)){var s=n.name?": "+n.name:"";return t.stylize("[Function"+s+"]","special")}if(b(n))return t.stylize(RegExp.prototype.toString.call(n),"regexp");if(m(n))return t.stylize(Date.prototype.toString.call(n),"date");if(w(n))return a(n)}var S,O="",x=!1,_=["{","}"];(p(n)&&(x=!0,_=["[","]"]),E(n))&&(O=" [Function"+(n.name?": "+n.name:"")+"]");return b(n)&&(O=" "+RegExp.prototype.toString.call(n)),m(n)&&(O=" "+Date.prototype.toUTCString.call(n)),w(n)&&(O=" "+a(n)),0!==u.length||x&&0!=n.length?r<0?b(n)?t.stylize(RegExp.prototype.toString.call(n),"regexp"):t.stylize("[Object]","special"):(t.seen.push(n),S=x?function(t,e,n,r,o){for(var i=[],u=0,c=e.length;u<c;++u)j(e,String(u))?i.push(l(t,e,n,r,String(u),!0)):i.push("");return o.forEach((function(o){o.match(/^\d+$/)||i.push(l(t,e,n,r,o,!0))})),i}(t,n,r,c,u):u.map((function(e){return l(t,n,r,c,e,x)})),t.seen.pop(),function(t,e,n){var r=t.reduce((function(t,e){return e.indexOf("\n")>=0&&0,t+e.replace(/\u001b\[\d\d?m/g,"").length+1}),0);if(r>60)return n[0]+(""===e?"":e+"\n ")+" "+t.join(",\n ")+" "+n[1];return n[0]+e+" "+t.join(", ")+" "+n[1]}(S,O,_)):_[0]+O+_[1]}function a(t){return"["+Error.prototype.toString.call(t)+"]"}function l(t,e,n,r,o,i){var u,c,s;if((s=Object.getOwnPropertyDescriptor(e,o)||{value:e[o]}).get?c=s.set?t.stylize("[Getter/Setter]","special"):t.stylize("[Getter]","special"):s.set&&(c=t.stylize("[Setter]","special")),j(r,o)||(u="["+o+"]"),c||(t.seen.indexOf(s.value)<0?(c=g(n)?f(t,s.value,null):f(t,s.value,n-1)).indexOf("\n")>-1&&(c=i?c.split("\n").map((function(t){return" "+t})).join("\n").substr(2):"\n"+c.split("\n").map((function(t){return" "+t})).join("\n")):c=t.stylize("[Circular]","special")),v(u)){if(i&&o.match(/^\d+$/))return c;(u=JSON.stringify(""+o)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(u=u.substr(1,u.length-2),u=t.stylize(u,"name")):(u=u.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),u=t.stylize(u,"string"))}return u+": "+c}function p(t){return Array.isArray(t)}function y(t){return"boolean"===typeof t}function g(t){return null===t}function h(t){return"number"===typeof t}function d(t){return"string"===typeof t}function v(t){return void 0===t}function b(t){return S(t)&&"[object RegExp]"===O(t)}function S(t){return"object"===typeof t&&null!==t}function m(t){return S(t)&&"[object Date]"===O(t)}function w(t){return S(t)&&("[object Error]"===O(t)||t instanceof Error)}function E(t){return"function"===typeof t}function O(t){return Object.prototype.toString.call(t)}function x(t){return t<10?"0"+t.toString(10):t.toString(10)}e.debuglog=function(t){if(v(o)&&(o={NODE_ENV:"production",PUBLIC_URL:"",WDS_SOCKET_HOST:void 0,WDS_SOCKET_PATH:void 0,WDS_SOCKET_PORT:void 0,FAST_REFRESH:!0,REACT_APP_RAPIDFIRE_API_URL:"http://localhost",REACT_APP_GA_MEASUREMENT_ID:""}.NODE_DEBUG||""),t=t.toUpperCase(),!i[t])if(new RegExp("\\b"+t+"\\b","i").test(o)){var n=process.pid;i[t]=function(){var r=e.format.apply(e,arguments);console.error("%s %d: %s",t,n,r)}}else i[t]=function(){};return i[t]},e.inspect=u,u.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]},u.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},e.isArray=p,e.isBoolean=y,e.isNull=g,e.isNullOrUndefined=function(t){return null==t},e.isNumber=h,e.isString=d,e.isSymbol=function(t){return"symbol"===typeof t},e.isUndefined=v,e.isRegExp=b,e.isObject=S,e.isDate=m,e.isError=w,e.isFunction=E,e.isPrimitive=function(t){return null===t||"boolean"===typeof t||"number"===typeof t||"string"===typeof t||"symbol"===typeof t||"undefined"===typeof t},e.isBuffer=n(3893);var _=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function j(t,e){return Object.prototype.hasOwnProperty.call(t,e)}e.log=function(){console.log("%s - %s",function(){var t=new Date,e=[x(t.getHours()),x(t.getMinutes()),x(t.getSeconds())].join(":");return[t.getDate(),_[t.getMonth()],e].join(" ")}(),e.format.apply(e,arguments))},e.inherits=n(63316),e._extend=function(t,e){if(!e||!S(e))return t;for(var n=Object.keys(e),r=n.length;r--;)t[n[r]]=e[n[r]];return t}}}]);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license React
|
|
3
|
+
* use-sync-external-store-shim.production.min.js
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the MIT license found in the
|
|
8
|
+
* LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|