diff --git a/.gitignore b/.gitignore index 894a44c..a609af7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# Folders for cluster / local results +examples/icml_2018_experiments/CAVE_reports +examples/icml_2018_experiments/log + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] diff --git a/examples/icml_2018_experiments/bnn.ipynb b/examples/icml_2018_experiments/bnn.ipynb index fed010f..2c450a4 100644 --- a/examples/icml_2018_experiments/bnn.ipynb +++ b/examples/icml_2018_experiments/bnn.ipynb @@ -11,7 +11,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "In this series of notebooks, we will replicate and analyze the ICML 2018 experiments that where used for benchmarking in BOHB (Falkner et al. 2018).\n", + "In this series of notebooks, we will replicate and analyze the ICML 2018 experiments that were used for benchmarking in BOHB (Falkner et al. 2018).\n", "In addition to HpBandSter, we will use CAVE to analyze and visualize the optimization process." ] }, @@ -19,7 +19,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## About the frameworks\n", + "## About this experiment\n", "\n", "### Bayesian Neural Networks (BNN)\n", "\n", @@ -42,53 +42,13 @@ "## Run the experiment\n" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# We deactivate logging to ensure readability\n", - "import logging\n", - "logging.basicConfig(level=logging.ERROR)\n", - "# Also, we suppress warnings.\n", - "# If there are problems for you executing this notebook, you might want to comment this out.\n", - "import warnings\n", - "warnings.filterwarnings(\"ignore\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### 1.1) References\n", - "*Worker*: We need a Worker to define the kind of computation we want to optimize. The worker used for the experiments is located in `workers/bnn_worker.py`\n", - "\n", - "\n", - "\n", - "*ConfigSpace*: Every problem needs a description of the search space to be complete. In HpBandSter, a ConfigurationSpace-object defines all hyperparameters, their ranges and dependencies between them.\n", - "\n", - "In our example here, the search space consists of the hyperparameters:\n", - "\n", - "\n", - "| Name | Type | Values |\n", - "|:---------:|:-------:|:------------:|\n", - "| burn_in | float | [0.0, 0.8] |\n", - "| l_rate | float | [1e-06, 0.1] |\n", - "| mdecay | float | [0.0, 1.0] |\n", - "| n_units_1 | float | [16, 512] |\n", - "| n_units_2 | float | [16, 512] |" - ] - }, { "cell_type": "markdown", "metadata": { "scrolled": false }, "source": [ - "### 1.3) Setting up the experiment and running the optimizer(s)\n", - "\n", - "Please note that the execution of the experiment with all datasets might take up to a few days, depending on your hardware. You can also skip this step and process with the precomputed results saved in `opt_results/bnn`." + "This examples ships with all the code necessary to reproduce the experiment. Because it takes a few days to generate the data, the results of the optimization are provided in `examples/icml_2018_experiments/opt_results/`. If you want to generate the data (from examples/icml_2018_experiments), just run:" ] }, { @@ -99,79 +59,16 @@ }, "outputs": [], "source": [ - "import os\n", - "from itertools import product\n", - "import numpy as np\n", - "\n", - "import hpbandster.core.nameserver as hpns\n", - "import hpbandster.core.result as hpres\n", - "from hpbandster.optimizers import BOHB, RandomSearch, HyperBand\n", - "\n", - "from workers.bnn_worker import BNNWorker\n", - "\n", - "# Run the experiment, evaluate each dataset on each optimizer\n", - "\n", - "datasets = ['toyfunction', 'bostonhousing', 'proteinstructure']\n", - "opt_methods = [\"smac\", \"bohb\", \"randomsearch\", \"hyperband\"]\n", - "num_iterations = 4\n", - "min_budget = 300\n", - "max_budget = 10000\n", - "\n", - "eta = 3\n", - "\n", - "for dataset, opt_method in product(datasets, opt_methods):\n", - "\n", - " print(dataset, opt_method)\n", - " \n", - " output_dir = \"opt_results/bnn/{}/{}\".format(dataset, opt_method)\n", - " if not os.path.exists(output_dir):\n", - " os.makedirs(output_dir)\n", - "\n", - " run_id = '0' # Every run has to have a unique (at runtime) id.\n", - " \n", - " # create a worker\n", - " worker = BNNWorker(dataset=dataset, measure_test_loss=False, run_id=run_id, max_budget=max_budget)\n", - " configspace = worker.configspace\n", - "\n", - " if opt_method in ['randomsearch', 'bohb', 'hyperband']:\n", - " # setup a nameserver\n", - " NS = hpns.NameServer(run_id=run_id, host='localhost', port=0, working_directory=output_dir)\n", - " ns_host, ns_port = NS.start()\n", - "\n", - " worker.load_nameserver_credentials(output_dir)\n", - " worker.run(background=True)\n", - "\n", - " # instantiate and run optimizer\n", - " opt = RandomSearch if opt_method == 'randomsearch' else BOHB if opt_method == 'bohb' else HyperBand\n", - "\n", - " result_logger = hpres.json_result_logger(directory=output_dir, overwrite=True)\n", - "\n", - " opt = opt(configspace, eta=3,\n", - " working_directory=output_dir,\n", - " run_id=run_id,\n", - " min_budget=min_budget, max_budget=max_budget,\n", - " host=ns_host,\n", - " nameserver=ns_host,\n", - " nameserver_port = ns_port,\n", - " ping_interval=3600,\n", - " result_logger=result_logger)\n", - "\n", - " result = opt.run(n_iterations=num_iterations)\n", - " \n", - " # **NOTE:** Unfortunately, the configuration space is *not yet saved automatically* to file\n", - " # but this step is mandatory for the analysis with CAVE. \n", - " # We recommend to save the configuration space every time you use BOHB.\n", - " # We do this by using the ConfigSpace-to-json-writer.\n", - "\n", - " from ConfigSpace.read_and_write import pcs_new\n", - " with open(os.path.join(output_dir, 'configspace.pcs'), 'w') as fh:\n", - " fh.write(pcs_new.write(opt.config_generator.configspace))\n", - " \n", - " else:\n", - " # the number of iterations for the blackbox optimizers must be increased so they have comparable total budgets\n", - " bb_iterations = int(num_iterations * (1+(np.log(max_budget) - np.log(min_budget))/np.log(eta)))\n", - " if opt_method == 'smac':\n", - " result = worker.run_smac(bb_iterations, deterministic=True, working_directory=output_dir)" + "%%capture\n", + "! python scripts/run_experiment.py --exp_name bnn --num_iterations 4 --min_budget 300 --max_budget 1000 --n_workers 1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can use this script to generate the optimization data for a variety of optimizers, the results will (by default) be stored in `examples/icml_2018_experiments/EXPERIMENT/DATASET/OPTIMIZER`. Use `python run_experiment --help` to see how to use the script.\n", + "If you have access to a cluster, take a look at the scripts provided for cluster computation on a SLURM cluster at `examples/icml_2018_experiments/scripts/cluster/`." ] }, { @@ -182,12 +79,12 @@ "\n", "### Instantiate CAVE\n", "\n", - "Analyzing the optimization results with CAVE is very straight-forward. If you want to use CAVE interactively in a notebook, set `show_jupyter=True`. Specify which optimization you want to analyze via the `folders` argument and specify `file_format==SMAC3` or `file_format==BOHB`, depending on which optimizer was used for the results. To analyze how BOHB optimized on the *bostenhousing* dataset, run:" + "Analyzing the optimization results with CAVE is very straight-forward. If you want to use CAVE interactively in a notebook, set `show_jupyter=True`. Specify which optimization you want to analyze via the `folders` argument and specify `file_format==SMAC3` or `file_format==BOHB`, depending on which optimizer was used for the results. To analyze how BOHB optimized the bnn-problem for the bostonhousing dataset, run:" ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": { "scrolled": false }, @@ -213,19 +110,11 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/shuki/Repos/BOHBsCAVE/.ve_BOHBsCAVE/lib/python3.6/site-packages/numpy/core/fromnumeric.py:2389: FutureWarning: Method .ptp is deprecated and will be removed in a future version. Use numpy.ptp instead.\n", - " return ptp(axis=axis, out=out, **kwargs)\n" - ] - } - ], + "outputs": [], "source": [ + "%%capture\n", "cave.analyze()\n", "! firefox CAVE_reports/bnn_notebook/report.html" ] @@ -234,474 +123,29 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "CAVE is fully compatible with Jupyter notebooks. You can invoke the individual analysis methods as follows.\n", + "CAVE is fully compatible with Jupyter notebooks. You can invoke the individual analysis methods.\n", "\n", "The most interesting plot for BOHB might be a visualization of the learning curves:" ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"14224\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"14224\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '14224' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"14224\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"14224\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"14224\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '14224' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"14224\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"29192e80-202c-4814-8944-ba76b9d398e9\":{\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"14231\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"14353\",\"type\":\"Column\"}]},\"id\":\"14354\",\"type\":\"Row\"},{\"attributes\":{},\"id\":\"14252\",\"type\":\"ResetTool\"},{\"attributes\":{\"ticker\":{\"id\":\"14239\",\"type\":\"BasicTicker\"}},\"id\":\"14242\",\"type\":\"Grid\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14310\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14311\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"14308\",\"type\":\"CDSView\"}},\"id\":\"14312\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"14250\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14277\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14278\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"14275\",\"type\":\"CDSView\"}},\"id\":\"14279\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"bounds\":\"auto\",\"callback\":null,\"end\":10962.962962962964,\"start\":-592.5925925925926},\"id\":\"14229\",\"type\":\"Range1d\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"14287\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"2\"},\"id\":\"14300\",\"type\":\"GroupFilter\"},{\"attributes\":{\"overlay\":{\"id\":\"14472\",\"type\":\"BoxAnnotation\"}},\"id\":\"14251\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14277\",\"type\":\"Circle\"},{\"attributes\":{\"filters\":[{\"id\":\"14300\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"}},\"id\":\"14301\",\"type\":\"CDSView\"},{\"attributes\":{\"high\":31586347444678.41,\"low\":4.992416977283878,\"palette\":[\"#5e4fa2\",\"#3288bd\",\"#66c2a5\",\"#abdda4\",\"#e6f598\",\"#ffffbf\",\"#fee08b\",\"#fdae61\",\"#f46d43\",\"#d53e4f\",\"#9e0142\"]},\"id\":\"14228\",\"type\":\"LinearColorMapper\"},{\"attributes\":{\"data_source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14303\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14304\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"14301\",\"type\":\"CDSView\"}},\"id\":\"14305\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"14239\",\"type\":\"BasicTicker\"},{\"attributes\":{\"filters\":[{\"id\":\"14266\",\"type\":\"GroupFilter\"},{\"id\":\"14267\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14268\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14311\",\"type\":\"CircleX\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"14274\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14304\",\"type\":\"MultiLine\"},{\"attributes\":{},\"id\":\"14475\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"0\"},\"id\":\"14266\",\"type\":\"GroupFilter\"},{\"attributes\":{\"text\":\"\"},\"id\":\"14467\",\"type\":\"Title\"},{\"attributes\":{\"bounds\":\"auto\",\"callback\":null,\"end\":63172694889351.83,\"start\":4.493175279555491},\"id\":\"14230\",\"type\":\"Range1d\"},{\"attributes\":{\"filters\":[{\"id\":\"14260\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"}},\"id\":\"14261\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"14293\",\"type\":\"GroupFilter\"},{\"id\":\"14294\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14295\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"14249\",\"type\":\"PanTool\"},{\"attributes\":{\"filters\":[{\"id\":\"14320\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"}},\"id\":\"14321\",\"type\":\"CDSView\"},{\"attributes\":{\"below\":[{\"id\":\"14238\",\"type\":\"LinearAxis\"}],\"center\":[{\"id\":\"14242\",\"type\":\"Grid\"},{\"id\":\"14247\",\"type\":\"Grid\"}],\"left\":[{\"id\":\"14243\",\"type\":\"LogAxis\"}],\"plot_height\":500,\"renderers\":[{\"id\":\"14265\",\"type\":\"GlyphRenderer\"},{\"id\":\"14272\",\"type\":\"GlyphRenderer\"},{\"id\":\"14279\",\"type\":\"GlyphRenderer\"},{\"id\":\"14285\",\"type\":\"GlyphRenderer\"},{\"id\":\"14292\",\"type\":\"GlyphRenderer\"},{\"id\":\"14299\",\"type\":\"GlyphRenderer\"},{\"id\":\"14305\",\"type\":\"GlyphRenderer\"},{\"id\":\"14312\",\"type\":\"GlyphRenderer\"},{\"id\":\"14319\",\"type\":\"GlyphRenderer\"},{\"id\":\"14325\",\"type\":\"GlyphRenderer\"},{\"id\":\"14332\",\"type\":\"GlyphRenderer\"},{\"id\":\"14339\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"14467\",\"type\":\"Title\"},\"toolbar\":{\"id\":\"14253\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"14229\",\"type\":\"Range1d\"},\"x_scale\":{\"id\":\"14234\",\"type\":\"LinearScale\"},\"y_range\":{\"id\":\"14230\",\"type\":\"Range1d\"},\"y_scale\":{\"id\":\"14236\",\"type\":\"LogScale\"}},\"id\":\"14231\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"14234\",\"type\":\"LinearScale\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"3\"},\"id\":\"14320\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14317\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14318\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"14315\",\"type\":\"CDSView\"}},\"id\":\"14319\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14270\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14271\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"14268\",\"type\":\"CDSView\"}},\"id\":\"14272\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14278\",\"type\":\"Circle\"},{\"attributes\":{\"filters\":[{\"id\":\"14313\",\"type\":\"GroupFilter\"},{\"id\":\"14314\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14315\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"14294\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"14476\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"14314\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14324\",\"type\":\"MultiLine\"},{\"attributes\":{\"axis_label\":\"Cost\",\"formatter\":{\"id\":\"14469\",\"type\":\"LogTickFormatter\"},\"ticker\":{\"id\":\"14244\",\"type\":\"LogTicker\"}},\"id\":\"14243\",\"type\":\"LogAxis\"},{\"attributes\":{\"data_source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14263\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14264\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"14261\",\"type\":\"CDSView\"}},\"id\":\"14265\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14298\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14297\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14284\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14271\",\"type\":\"CircleX\"},{\"attributes\":{},\"id\":\"14248\",\"type\":\"SaveTool\"},{\"attributes\":{\"filters\":[{\"id\":\"14280\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"}},\"id\":\"14281\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14317\",\"type\":\"Circle\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"14225\",\"type\":\"HoverTool\"},{\"id\":\"14248\",\"type\":\"SaveTool\"},{\"id\":\"14249\",\"type\":\"PanTool\"},{\"id\":\"14250\",\"type\":\"WheelZoomTool\"},{\"id\":\"14251\",\"type\":\"BoxZoomTool\"},{\"id\":\"14252\",\"type\":\"ResetTool\"}]},\"id\":\"14253\",\"type\":\"Toolbar\"},{\"attributes\":{\"data_source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14323\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14324\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"14321\",\"type\":\"CDSView\"}},\"id\":\"14325\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"14307\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14283\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14284\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"14281\",\"type\":\"CDSView\"}},\"id\":\"14285\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"0\"},\"id\":\"14273\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14264\",\"type\":\"MultiLine\"},{\"attributes\":{\"filters\":[{\"id\":\"14306\",\"type\":\"GroupFilter\"},{\"id\":\"14307\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14308\",\"type\":\"CDSView\"},{\"attributes\":{\"axis_label\":\"Time\",\"formatter\":{\"id\":\"14471\",\"type\":\"BasicTickFormatter\"},\"ticker\":{\"id\":\"14239\",\"type\":\"BasicTicker\"}},\"id\":\"14238\",\"type\":\"LinearAxis\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14291\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14323\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14270\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14303\",\"type\":\"MultiLine\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14290\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14291\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"14288\",\"type\":\"CDSView\"}},\"id\":\"14292\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14273\",\"type\":\"GroupFilter\"},{\"id\":\"14274\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14275\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14290\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14318\",\"type\":\"Circle\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"2\"},\"id\":\"14306\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"2\"},\"id\":\"14313\",\"type\":\"GroupFilter\"},{\"attributes\":{\"dimension\":1,\"ticker\":{\"id\":\"14244\",\"type\":\"LogTicker\"}},\"id\":\"14247\",\"type\":\"Grid\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14310\",\"type\":\"CircleX\"},{\"attributes\":{},\"id\":\"14474\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14297\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14298\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"14295\",\"type\":\"CDSView\"}},\"id\":\"14299\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"3\"},\"id\":\"14326\",\"type\":\"GroupFilter\"},{\"attributes\":{\"num_minor_ticks\":10},\"id\":\"14244\",\"type\":\"LogTicker\"},{\"attributes\":{},\"id\":\"14236\",\"type\":\"LogScale\"},{\"attributes\":{\"filters\":[{\"id\":\"14286\",\"type\":\"GroupFilter\"},{\"id\":\"14287\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14288\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"14267\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"1\"},\"id\":\"14280\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"0\"},\"id\":\"14260\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"1\"},\"id\":\"14286\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"1\"},\"id\":\"14293\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14283\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14263\",\"type\":\"MultiLine\"},{\"attributes\":{\"callback\":{\"id\":\"14344\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"None\"},\"id\":\"14345\",\"type\":\"Button\"},{\"attributes\":{\"args\":{\"cm\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"},\"source_multiline\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"},\"source_scatter\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"code\":\"\\n var data_multiline = source_multiline.data;\\n var data_scatter = source_scatter.data;\\n var min_perf = 4.992416977283878;\\n var max_perf = 31586347444678.41;\\n var min_iter = 0;\\n var max_iter = 3;\\n if (cb_obj.value == 'performance') {\\n data_multiline['colors'] = data_multiline['colors_performance'];\\n data_scatter['colors'] = data_scatter['colors_performance'];\\n cm.low = min_perf;\\n cm.high = max_perf;\\n } else {\\n data_multiline['colors'] = data_multiline['colors_iteration'];\\n data_scatter['colors'] = data_scatter['colors_iteration'];\\n cm.low = min_iter;\\n cm.high = max_iter;\\n }\\n source.change.emit();\\n \"},\"id\":\"14346\",\"type\":\"CustomJS\"},{\"attributes\":{\"children\":[{\"id\":\"14348\",\"type\":\"WidgetBox\"},{\"id\":\"14351\",\"type\":\"Row\"},{\"id\":\"14352\",\"type\":\"WidgetBox\"}]},\"id\":\"14353\",\"type\":\"Column\"},{\"attributes\":{},\"id\":\"14471\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14337\",\"type\":\"Circle\"},{\"attributes\":{\"active\":[0,1,2,3],\"callback\":{\"id\":\"14340\",\"type\":\"CustomJS\"},\"labels\":[\"0\",\"1\",\"2\",\"3\"]},\"id\":\"14341\",\"type\":\"CheckboxButtonGroup\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"14341\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"14265\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"14272\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"14332\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"14339\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"14279\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"14285\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"14292\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"14299\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"14305\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"14312\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"14319\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"14325\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = []; checkbox.active = labels;len_labels = 4;glyph_renderers = [[glyph_renderer0,glyph_renderer1,glyph_renderer2],[glyph_renderer3,glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7,glyph_renderer8],[glyph_renderer9,glyph_renderer10,glyph_renderer11]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"14344\",\"type\":\"CustomJS\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"14472\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"callback\":null,\"data\":{\"HB_iteration\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"3\",\"3\",\"3\",\"3\"],\"burn_in\":[0.06095411756804747,0.4074427106852323,0.34424088646527784,0.04199917180247406,0.3060289375823493,0.4614938906314672,0.0116923509310994,0.03843441810140034,0.16837108101621034,0.31823932597992305,0.22534614767267647,0.40614914276269265,0.19103566832105667,0.34515349463529454,0.4430283433889736,0.34193909728758665,0.389663720030231,0.16459742441935532,0.3255599665428288,0.4453681293440747,0.4380896816607307,0.3341405680866985,0.36047458233549146,0.05379283110893349,0.017833969985921794,0.7498043706606659,0.01461295313831932,0.24302860840616028,0.019702503024473652,0.008166622451853173,0.013240078967514002,0.4560762540143012,0.6682810162705316,0.22839236467681667,0.02306597975800245,0.017235501865167764,0.2407582604885267,0.740831610943143],\"colors\":[8126523712.410647,92.1190843508471,923265531.1907222,1182571224052.1929,116813.71699039967,183.45244805187122,1833165926.0922399,61323717594.65915,16987492248.744675,941172.7315917765,71.50995971438292,147940.15003155934,5.96969148921447,111.9687271569748,2814958.95439984,25.190966275269364,63.058303967041866,1823730219581.9102,31586347444678.41,331.1375951170983,323.38408072559514,89.00514995263889,1016936218.5988941,4.992416977283878,10.534444774305072,327.3827614301445,6.108546463596852,252312.05848280012,13.782956736985716,8.962410877546489,46.41401526951137,286.10193136985674,6497781657.7368355,595622.5093315999,8.922508535347308,14.509830468904234,5.591206028987351,861.0095402770886],\"colors_iteration\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3],\"colors_performance\":[8126523712.410647,92.1190843508471,923265531.1907222,1182571224052.1929,116813.71699039967,183.45244805187122,1833165926.0922399,61323717594.65915,16987492248.744675,941172.7315917765,71.50995971438292,147940.15003155934,5.96969148921447,111.9687271569748,2814958.95439984,25.190966275269364,63.058303967041866,1823730219581.9102,31586347444678.41,331.1375951170983,323.38408072559514,89.00514995263889,1016936218.5988941,4.992416977283878,10.534444774305072,327.3827614301445,6.108546463596852,252312.05848280012,13.782956736985716,8.962410877546489,46.41401526951137,286.10193136985674,6497781657.7368355,595622.5093315999,8.922508535347308,14.509830468904234,5.591206028987351,861.0095402770886],\"config_id\":[\"(0, 0, 0)\",\"(0, 0, 2)\",\"(0, 0, 3)\",\"(0, 0, 5)\",\"(0, 0, 6)\",\"(0, 0, 9)\",\"(0, 0, 13)\",\"(0, 0, 14)\",\"(0, 0, 15)\",\"(0, 0, 16)\",\"(0, 0, 18)\",\"(0, 0, 19)\",\"(0, 0, 20)\",\"(0, 0, 21)\",\"(0, 0, 22)\",\"(0, 0, 23)\",\"(0, 0, 24)\",\"(0, 0, 25)\",\"(0, 0, 26)\",\"(1, 0, 0)\",\"(1, 0, 1)\",\"(1, 0, 2)\",\"(1, 0, 3)\",\"(1, 0, 4)\",\"(1, 0, 5)\",\"(1, 0, 6)\",\"(1, 0, 7)\",\"(1, 0, 8)\",\"(2, 0, 0)\",\"(2, 0, 1)\",\"(2, 0, 2)\",\"(2, 0, 3)\",\"(2, 0, 4)\",\"(2, 0, 5)\",\"(3, 0, 0)\",\"(3, 0, 1)\",\"(3, 0, 2)\",\"(3, 0, 3)\"],\"config_info\":[\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\"],\"duration\":[7.6938440799713135,16.564640522003174,16.35780358314514,6.996684551239014,7.061639785766602,9.905347347259521,8.862849235534668,7.642619371414185,7.507568120956421,7.737980842590332,12.54138970375061,12.185478210449219,53.77648377418518,7.459357023239136,11.915100336074829,14.534762144088745,9.749106168746948,7.048174619674683,7.358259677886963,13.081866025924683,21.88615345954895,10.72812032699585,12.673344135284424,26.280138969421387,13.161278486251831,10.1319100856781,10.025325298309326,7.401020288467407,30.784112453460693,25.05366611480713,11.423469305038452,10.458523511886597,23.09608554840088,68.74622178077698,20.208162307739258,28.296211004257202,36.82288098335266,17.343097448349],\"l_rate\":[1.3140974150295323e-05,0.016155413975493874,5.886622133632225e-05,1.562302425925469e-06,0.0009693701218491181,0.01930430219941507,4.63426031506052e-05,8.218636648622262e-06,4.231006670769454e-05,0.08855636723219577,0.020701751107567005,0.055679466924544604,0.0911866225591426,0.003764111315013184,0.03877880710009469,0.03267167704481297,0.02974141600383611,5.308241206255325e-06,1.113473241471851e-06,0.026186183366574363,0.03901038193546873,0.015422361937275902,2.2071066471092935e-05,0.06953447315355575,0.06877680681703875,0.013232184419079087,0.0667009633233298,0.0005797639839531642,0.027124415967214835,0.05868181462547929,0.04218746992189643,0.0030944655662799264,3.554616454872997e-06,2.7429889775972168e-05,0.06598368111508776,0.03487282754907394,0.0792659340152397,0.0034016132586180696],\"losses\":[[8126523712.410647],[5166.833282404354,18.464774895042613,92.1190843508471],[923265531.1907222],[1182571224052.1929],[116813.71699039967],[3645.415100329818,183.45244805187122],[1833165926.0922399],[61323717594.65915],[16987492248.744675],[941172.7315917765],[71.2204115907396,71.50995971438292],[13446.48791221115,147940.15003155934],[41480.809349168405,7.3214562942797,6.833470265291953,5.96969148921447],[4581.801228897738,111.9687271569748],[1375.6557411067704,2814958.95439984],[53.35353916048118,13.323349627001694,25.190966275269364],[39.162171797014246,63.058303967041866],[1823730219581.9102],[31586347444678.41],[331.1375951170983],[323.38408072559514],[89.00514995263889],[1016936218.5988941],[5.413061037708961,5.851258943427435,4.992416977283878],[16.12825121356125,10.534444774305072],[327.3827614301445],[28.14092589036999,6.108546463596852],[252312.05848280012],[34.35457197765142,13.782956736985716],[6.332600975445937,8.962410877546489],[46.41401526951137],[286.10193136985674],[6497781657.7368355],[595622.5093315999],[8.922508535347308],[14.509830468904234],[5.591206028987351],[861.0095402770886]],\"mdecay\":[0.6085942693370233,0.9552476693037883,0.6934225820967883,0.24717389794301636,0.14880855373871982,0.5381734081457205,0.5916637069751063,0.3753824880536981,0.7994935341759952,0.2414742383738761,0.24381621169879536,0.021837510517321357,0.23596990879050056,0.11692038084800203,0.05909502727073661,0.5747606389122023,0.32880127706797024,0.5854839967595509,0.6131932145061313,0.3309551130561821,0.2649050681581515,0.44012322937234094,0.964126285901498,0.5863021854362127,0.3095762923033933,0.6153477536804737,0.3617267080409091,0.4471707601112981,0.8817407352537541,0.2447068090128678,0.3820254234979106,0.661038131085342,0.1690960017403682,0.06071205674502145,0.09953494272876998,0.2502467932411652,0.29460712740739303,0.6629709112103371],\"n_units_1\":[27,40,288,22,36,214,470,302,17,312,354,443,352,25,207,33,67,56,194,105,168,50,337,228,122,44,40,36,276,33,78,56,59,360,20,21,264,30],\"n_units_2\":[409,313,504,54,42,48,58,19,416,30,55,35,52,27,85,271,184,24,18,232,410,286,60,24,58,295,40,17,30,207,52,37,320,288,172,380,46,59],\"times\":[[370.3703703703703],[370.3703703703703,1111.111111111111,3333.333333333333],[370.3703703703703],[370.3703703703703],[370.3703703703703],[370.3703703703703,1111.111111111111],[370.3703703703703],[370.3703703703703],[370.3703703703703],[370.3703703703703],[370.3703703703703,1111.111111111111],[370.3703703703703,1111.111111111111],[370.3703703703703,1111.111111111111,3333.333333333333,10000.0],[370.3703703703703,1111.111111111111],[370.3703703703703,1111.111111111111],[370.3703703703703,1111.111111111111,3333.333333333333],[370.3703703703703,1111.111111111111],[370.3703703703703],[370.3703703703703],[1111.111111111111],[1111.111111111111],[1111.111111111111],[1111.111111111111],[1111.111111111111,3333.333333333333,10000.0],[1111.111111111111,3333.333333333333],[1111.111111111111],[1111.111111111111,3333.333333333333],[1111.111111111111],[3333.333333333333,10000.0],[3333.333333333333,10000.0],[3333.333333333333],[3333.333333333333],[3333.333333333333],[3333.333333333333],[10000.0],[10000.0],[10000.0],[10000.0]]},\"selected\":{\"id\":\"14473\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"14474\",\"type\":\"UnionRenderers\"}},\"id\":\"14226\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"3\"},\"id\":\"14333\",\"type\":\"GroupFilter\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"14341\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"14265\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"14272\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"14332\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"14339\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"14279\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"14285\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"14292\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"14299\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"14305\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"14312\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"14319\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"14325\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = [0, 1, 2, 3]; checkbox.active = labels;len_labels = 4;glyph_renderers = [[glyph_renderer0,glyph_renderer1,glyph_renderer2],[glyph_renderer3,glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7,glyph_renderer8],[glyph_renderer9,glyph_renderer10,glyph_renderer11]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"14342\",\"type\":\"CustomJS\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14338\",\"type\":\"Circle\"},{\"attributes\":{\"children\":[{\"id\":\"14343\",\"type\":\"Button\"}],\"width\":50},\"id\":\"14349\",\"type\":\"WidgetBox\"},{\"attributes\":{\"filters\":[{\"id\":\"14326\",\"type\":\"GroupFilter\"},{\"id\":\"14327\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14328\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"14334\",\"type\":\"GroupFilter\"},{\"attributes\":{\"children\":[{\"id\":\"14341\",\"type\":\"CheckboxButtonGroup\"}],\"width\":400},\"id\":\"14348\",\"type\":\"WidgetBox\"},{\"attributes\":{\"callback\":null,\"data\":{\"HB_iteration\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"3\",\"3\",\"3\",\"3\"],\"burn_in\":[0.06095411756804747,0.4074427106852323,0.4074427106852323,0.4074427106852323,0.34424088646527784,0.04199917180247406,0.3060289375823493,0.4614938906314672,0.4614938906314672,0.0116923509310994,0.03843441810140034,0.16837108101621034,0.31823932597992305,0.22534614767267647,0.22534614767267647,0.40614914276269265,0.40614914276269265,0.19103566832105667,0.19103566832105667,0.19103566832105667,0.19103566832105667,0.34515349463529454,0.34515349463529454,0.4430283433889736,0.4430283433889736,0.34193909728758665,0.34193909728758665,0.34193909728758665,0.389663720030231,0.389663720030231,0.16459742441935532,0.3255599665428288,0.4453681293440747,0.4380896816607307,0.3341405680866985,0.36047458233549146,0.05379283110893349,0.05379283110893349,0.05379283110893349,0.017833969985921794,0.017833969985921794,0.7498043706606659,0.01461295313831932,0.01461295313831932,0.24302860840616028,0.019702503024473652,0.019702503024473652,0.008166622451853173,0.008166622451853173,0.013240078967514002,0.4560762540143012,0.6682810162705316,0.22839236467681667,0.02306597975800245,0.017235501865167764,0.2407582604885267,0.740831610943143],\"colors\":[8126523712.410647,92.1190843508471,92.1190843508471,92.1190843508471,923265531.1907222,1182571224052.1929,116813.71699039967,183.45244805187122,183.45244805187122,1833165926.0922399,61323717594.65915,16987492248.744675,941172.7315917765,71.50995971438292,71.50995971438292,147940.15003155934,147940.15003155934,5.96969148921447,5.96969148921447,5.96969148921447,5.96969148921447,111.9687271569748,111.9687271569748,2814958.95439984,2814958.95439984,25.190966275269364,25.190966275269364,25.190966275269364,63.058303967041866,63.058303967041866,1823730219581.9102,31586347444678.41,331.1375951170983,323.38408072559514,89.00514995263889,1016936218.5988941,4.992416977283878,4.992416977283878,4.992416977283878,10.534444774305072,10.534444774305072,327.3827614301445,6.108546463596852,6.108546463596852,252312.05848280012,13.782956736985716,13.782956736985716,8.962410877546489,8.962410877546489,46.41401526951137,286.10193136985674,6497781657.7368355,595622.5093315999,8.922508535347308,14.509830468904234,5.591206028987351,861.0095402770886],\"colors_iteration\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,3],\"colors_performance\":[8126523712.410647,92.1190843508471,92.1190843508471,92.1190843508471,923265531.1907222,1182571224052.1929,116813.71699039967,183.45244805187122,183.45244805187122,1833165926.0922399,61323717594.65915,16987492248.744675,941172.7315917765,71.50995971438292,71.50995971438292,147940.15003155934,147940.15003155934,5.96969148921447,5.96969148921447,5.96969148921447,5.96969148921447,111.9687271569748,111.9687271569748,2814958.95439984,2814958.95439984,25.190966275269364,25.190966275269364,25.190966275269364,63.058303967041866,63.058303967041866,1823730219581.9102,31586347444678.41,331.1375951170983,323.38408072559514,89.00514995263889,1016936218.5988941,4.992416977283878,4.992416977283878,4.992416977283878,10.534444774305072,10.534444774305072,327.3827614301445,6.108546463596852,6.108546463596852,252312.05848280012,13.782956736985716,13.782956736985716,8.962410877546489,8.962410877546489,46.41401526951137,286.10193136985674,6497781657.7368355,595622.5093315999,8.922508535347308,14.509830468904234,5.591206028987351,861.0095402770886],\"config_id\":[\"(0, 0, 0)\",\"(0, 0, 2)\",\"(0, 0, 2)\",\"(0, 0, 2)\",\"(0, 0, 3)\",\"(0, 0, 5)\",\"(0, 0, 6)\",\"(0, 0, 9)\",\"(0, 0, 9)\",\"(0, 0, 13)\",\"(0, 0, 14)\",\"(0, 0, 15)\",\"(0, 0, 16)\",\"(0, 0, 18)\",\"(0, 0, 18)\",\"(0, 0, 19)\",\"(0, 0, 19)\",\"(0, 0, 20)\",\"(0, 0, 20)\",\"(0, 0, 20)\",\"(0, 0, 20)\",\"(0, 0, 21)\",\"(0, 0, 21)\",\"(0, 0, 22)\",\"(0, 0, 22)\",\"(0, 0, 23)\",\"(0, 0, 23)\",\"(0, 0, 23)\",\"(0, 0, 24)\",\"(0, 0, 24)\",\"(0, 0, 25)\",\"(0, 0, 26)\",\"(1, 0, 0)\",\"(1, 0, 1)\",\"(1, 0, 2)\",\"(1, 0, 3)\",\"(1, 0, 4)\",\"(1, 0, 4)\",\"(1, 0, 4)\",\"(1, 0, 5)\",\"(1, 0, 5)\",\"(1, 0, 6)\",\"(1, 0, 7)\",\"(1, 0, 7)\",\"(1, 0, 8)\",\"(2, 0, 0)\",\"(2, 0, 0)\",\"(2, 0, 1)\",\"(2, 0, 1)\",\"(2, 0, 2)\",\"(2, 0, 3)\",\"(2, 0, 4)\",\"(2, 0, 5)\",\"(3, 0, 0)\",\"(3, 0, 1)\",\"(3, 0, 2)\",\"(3, 0, 3)\"],\"config_info\":[\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\"],\"duration\":[7.6938440799713135,16.564640522003174,16.564640522003174,16.564640522003174,16.35780358314514,6.996684551239014,7.061639785766602,9.905347347259521,9.905347347259521,8.862849235534668,7.642619371414185,7.507568120956421,7.737980842590332,12.54138970375061,12.54138970375061,12.185478210449219,12.185478210449219,53.77648377418518,53.77648377418518,53.77648377418518,53.77648377418518,7.459357023239136,7.459357023239136,11.915100336074829,11.915100336074829,14.534762144088745,14.534762144088745,14.534762144088745,9.749106168746948,9.749106168746948,7.048174619674683,7.358259677886963,13.081866025924683,21.88615345954895,10.72812032699585,12.673344135284424,26.280138969421387,26.280138969421387,26.280138969421387,13.161278486251831,13.161278486251831,10.1319100856781,10.025325298309326,10.025325298309326,7.401020288467407,30.784112453460693,30.784112453460693,25.05366611480713,25.05366611480713,11.423469305038452,10.458523511886597,23.09608554840088,68.74622178077698,20.208162307739258,28.296211004257202,36.82288098335266,17.343097448349],\"l_rate\":[1.3140974150295323e-05,0.016155413975493874,0.016155413975493874,0.016155413975493874,5.886622133632225e-05,1.562302425925469e-06,0.0009693701218491181,0.01930430219941507,0.01930430219941507,4.63426031506052e-05,8.218636648622262e-06,4.231006670769454e-05,0.08855636723219577,0.020701751107567005,0.020701751107567005,0.055679466924544604,0.055679466924544604,0.0911866225591426,0.0911866225591426,0.0911866225591426,0.0911866225591426,0.003764111315013184,0.003764111315013184,0.03877880710009469,0.03877880710009469,0.03267167704481297,0.03267167704481297,0.03267167704481297,0.02974141600383611,0.02974141600383611,5.308241206255325e-06,1.113473241471851e-06,0.026186183366574363,0.03901038193546873,0.015422361937275902,2.2071066471092935e-05,0.06953447315355575,0.06953447315355575,0.06953447315355575,0.06877680681703875,0.06877680681703875,0.013232184419079087,0.0667009633233298,0.0667009633233298,0.0005797639839531642,0.027124415967214835,0.027124415967214835,0.05868181462547929,0.05868181462547929,0.04218746992189643,0.0030944655662799264,3.554616454872997e-06,2.7429889775972168e-05,0.06598368111508776,0.03487282754907394,0.0792659340152397,0.0034016132586180696],\"losses\":[8126523712.410647,5166.833282404354,18.464774895042613,92.1190843508471,923265531.1907222,1182571224052.1929,116813.71699039967,3645.415100329818,183.45244805187122,1833165926.0922399,61323717594.65915,16987492248.744675,941172.7315917765,71.2204115907396,71.50995971438292,13446.48791221115,147940.15003155934,41480.809349168405,7.3214562942797,6.833470265291953,5.96969148921447,4581.801228897738,111.9687271569748,1375.6557411067704,2814958.95439984,53.35353916048118,13.323349627001694,25.190966275269364,39.162171797014246,63.058303967041866,1823730219581.9102,31586347444678.41,331.1375951170983,323.38408072559514,89.00514995263889,1016936218.5988941,5.413061037708961,5.851258943427435,4.992416977283878,16.12825121356125,10.534444774305072,327.3827614301445,28.14092589036999,6.108546463596852,252312.05848280012,34.35457197765142,13.782956736985716,6.332600975445937,8.962410877546489,46.41401526951137,286.10193136985674,6497781657.7368355,595622.5093315999,8.922508535347308,14.509830468904234,5.591206028987351,861.0095402770886],\"mdecay\":[0.6085942693370233,0.9552476693037883,0.9552476693037883,0.9552476693037883,0.6934225820967883,0.24717389794301636,0.14880855373871982,0.5381734081457205,0.5381734081457205,0.5916637069751063,0.3753824880536981,0.7994935341759952,0.2414742383738761,0.24381621169879536,0.24381621169879536,0.021837510517321357,0.021837510517321357,0.23596990879050056,0.23596990879050056,0.23596990879050056,0.23596990879050056,0.11692038084800203,0.11692038084800203,0.05909502727073661,0.05909502727073661,0.5747606389122023,0.5747606389122023,0.5747606389122023,0.32880127706797024,0.32880127706797024,0.5854839967595509,0.6131932145061313,0.3309551130561821,0.2649050681581515,0.44012322937234094,0.964126285901498,0.5863021854362127,0.5863021854362127,0.5863021854362127,0.3095762923033933,0.3095762923033933,0.6153477536804737,0.3617267080409091,0.3617267080409091,0.4471707601112981,0.8817407352537541,0.8817407352537541,0.2447068090128678,0.2447068090128678,0.3820254234979106,0.661038131085342,0.1690960017403682,0.06071205674502145,0.09953494272876998,0.2502467932411652,0.29460712740739303,0.6629709112103371],\"n_units_1\":[27,40,40,40,288,22,36,214,214,470,302,17,312,354,354,443,443,352,352,352,352,25,25,207,207,33,33,33,67,67,56,194,105,168,50,337,228,228,228,122,122,44,40,40,36,276,276,33,33,78,56,59,360,20,21,264,30],\"n_units_2\":[409,313,313,313,504,54,42,48,48,58,19,416,30,55,55,35,35,52,52,52,52,27,27,85,85,271,271,271,184,184,24,18,232,410,286,60,24,24,24,58,58,295,40,40,17,30,30,207,207,52,37,320,288,172,380,46,59],\"times\":[370.3703703703703,370.3703703703703,1111.111111111111,3333.333333333333,370.3703703703703,370.3703703703703,370.3703703703703,370.3703703703703,1111.111111111111,370.3703703703703,370.3703703703703,370.3703703703703,370.3703703703703,370.3703703703703,1111.111111111111,370.3703703703703,1111.111111111111,370.3703703703703,1111.111111111111,3333.333333333333,10000.0,370.3703703703703,1111.111111111111,370.3703703703703,1111.111111111111,370.3703703703703,1111.111111111111,3333.333333333333,370.3703703703703,1111.111111111111,370.3703703703703,370.3703703703703,1111.111111111111,1111.111111111111,1111.111111111111,1111.111111111111,1111.111111111111,3333.333333333333,10000.0,1111.111111111111,3333.333333333333,1111.111111111111,1111.111111111111,3333.333333333333,1111.111111111111,3333.333333333333,10000.0,3333.333333333333,10000.0,3333.333333333333,3333.333333333333,3333.333333333333,3333.333333333333,10000.0,10000.0,10000.0,10000.0]},\"selected\":{\"id\":\"14475\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"14476\",\"type\":\"UnionRenderers\"}},\"id\":\"14227\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"children\":[{\"id\":\"14347\",\"type\":\"Select\"}],\"width\":200},\"id\":\"14352\",\"type\":\"WidgetBox\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14330\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14331\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"14328\",\"type\":\"CDSView\"}},\"id\":\"14332\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14337\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14338\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"14335\",\"type\":\"CDSView\"}},\"id\":\"14339\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"ticker\":null},\"id\":\"14469\",\"type\":\"LogTickFormatter\"},{\"attributes\":{},\"id\":\"14473\",\"type\":\"Selection\"},{\"attributes\":{\"callback\":{\"id\":\"14346\",\"type\":\"CustomJS\"},\"options\":[\"performance\",\"iteration\"],\"title\":\"Select colors\",\"value\":\"performance\"},\"id\":\"14347\",\"type\":\"Select\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14330\",\"type\":\"CircleX\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"config_id\",\"@config_id\"],[\"config_info\",\"@config_info\"],[\"losses\",\"@losses\"],[\"HB_iteration\",\"@HB_iteration\"],[\"duration (sec)\",\"@duration\"],[\"Configuration\",\" \"],[\"burn_in\",\"@burn_in\"],[\"l_rate\",\"@l_rate\"],[\"mdecay\",\"@mdecay\"],[\"n_units_1\",\"@n_units_1\"],[\"n_units_2\",\"@n_units_2\"]]},\"id\":\"14225\",\"type\":\"HoverTool\"},{\"attributes\":{\"callback\":{\"id\":\"14342\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"All\"},\"id\":\"14343\",\"type\":\"Button\"},{\"attributes\":{\"children\":[{\"id\":\"14345\",\"type\":\"Button\"}],\"width\":50},\"id\":\"14350\",\"type\":\"WidgetBox\"},{\"attributes\":{\"filters\":[{\"id\":\"14333\",\"type\":\"GroupFilter\"},{\"id\":\"14334\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14335\",\"type\":\"CDSView\"},{\"attributes\":{\"children\":[{\"id\":\"14349\",\"type\":\"WidgetBox\"},{\"id\":\"14350\",\"type\":\"WidgetBox\"}]},\"id\":\"14351\",\"type\":\"Row\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"14327\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14331\",\"type\":\"CircleX\"},{\"attributes\":{\"args\":{\"glyph_renderer0\":{\"id\":\"14265\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"14272\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"14332\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"14339\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"14279\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"14285\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"14292\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"14299\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"14305\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"14312\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"14319\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"14325\",\"type\":\"GlyphRenderer\"}},\"code\":\"len_labels = 4;glyph_renderers = [[glyph_renderer0,glyph_renderer1,glyph_renderer2],[glyph_renderer3,glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7,glyph_renderer8],[glyph_renderer9,glyph_renderer10,glyph_renderer11]];\\n for (i = 0; i < len_labels; i++) {\\n if (cb_obj.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"14340\",\"type\":\"CustomJS\"}],\"root_ids\":[\"14354\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"29192e80-202c-4814-8944-ba76b9d398e9\",\"roots\":{\"14354\":\"3e9cee61-b4fe-4729-a422-b5509a4b3ffb\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "14354" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.bohb_learning_curves();" ] }, { "cell_type": "code", - "execution_count": 17, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
# aggregated parallel BOHB runs1
# parameters5
Deterministic target algorithmTrue
Optimized run objectivequality
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
budget 370.4budget 1111.1budget 3333.3budget 10000
Total time spent evaluating configurations156.08 sec196.55 sec231.21 sec238.56 sec
Average time per configuration (mean / std)8.21 sec (± 2.00)10.92 sec (± 3.19)19.27 sec (± 15.45)29.82 sec (± 10.66)
# evaluated configurations1918128
# changed parameters (default to incumbent)5555
Configuration originsAcquisition Function : 11, Random : 8Acquisition Function : 14, Random : 4Acquisition Function : 8, Random : 4Acquisition Function : 7, Random : 1
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.overview_table();" ] @@ -715,78 +159,11 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
budget 370.4budget 1111.1budget 3333.3budget 10000
burn_in0.3896640.05379280.05379280.0537928
l_rate0.02974140.06953450.06953450.0695345
mdecay0.3288010.5863020.5863020.586302
n_units_167228228228
n_units_2184242424
Cost39.1625.4135.8514.992
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.bohb_incumbents_per_budget();" ] @@ -807,129 +184,22 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
-------------------- Single importance: ----------------------------------------
l_rate59.6515 +/- 46.4956
burn_in28.4864 +/- 43.246
mdecay7.1975 +/- 24.2353
n_units_21.3038 +/- 3.8476
n_units_10.4141 +/- 1.579
-------------------- Pairwise importance: ----------------------------------------
burn_in & mdecay1.9159 +/- 7.4185
l_rate & n_units_20.6959 +/- 1.8439
l_rate & n_units_10.2079 +/- 0.7715
l_rate & burn_in0.1036 +/- 0.2745
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "\"Plot\n", - "\"Plot\n", - "\"Plot\n", - "

\n", - "
\n", - "\"Plot\n", - "\"Plot\n", - "\"Plot\n", - "

\n", - "
\n", - "\"Plot\n", - "\"Plot\n", - "\"Plot\n", - "

\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.cave_fanova(run='budget_10000');" ] }, { "cell_type": "code", - "execution_count": 21, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\"Plot\n", - "\"Plot\n", - "\"Plot\n", - "

\n", - "
\n", - "\"Plot\n", - "\"Plot\n", - "

\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.local_parameter_importance(run='budget_10000');" ] @@ -943,375 +213,9 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"14033\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"14033\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '14033' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"14033\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"14033\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"14033\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '14033' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"14033\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"551ccf55-e190-4029-8f29-b21dfa5f6f16\":{\"roots\":{\"references\":[{\"attributes\":{\"columns\":[{\"id\":\"14035\",\"type\":\"TableColumn\"},{\"id\":\"14036\",\"type\":\"TableColumn\"},{\"id\":\"14037\",\"type\":\"TableColumn\"},{\"id\":\"14038\",\"type\":\"TableColumn\"},{\"id\":\"14039\",\"type\":\"TableColumn\"},{\"id\":\"14040\",\"type\":\"TableColumn\"}],\"height\":170,\"index_position\":null,\"source\":{\"id\":\"14034\",\"type\":\"ColumnDataSource\"},\"view\":{\"id\":\"14042\",\"type\":\"CDSView\"}},\"id\":\"14041\",\"type\":\"DataTable\"},{\"attributes\":{},\"id\":\"14152\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"14140\",\"type\":\"StringFormatter\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"14147\",\"type\":\"StringEditor\"},\"field\":\"fANOVA\",\"formatter\":{\"id\":\"14146\",\"type\":\"StringFormatter\"},\"title\":\"fANOVA\",\"width\":100},\"id\":\"14038\",\"type\":\"TableColumn\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"14145\",\"type\":\"StringEditor\"},\"field\":\"LPI\",\"formatter\":{\"id\":\"14144\",\"type\":\"StringFormatter\"},\"title\":\"LPI\",\"width\":100},\"id\":\"14037\",\"type\":\"TableColumn\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"14151\",\"type\":\"StringEditor\"},\"field\":\"LPI\",\"formatter\":{\"id\":\"14150\",\"type\":\"StringFormatter\"},\"title\":\"LPI\",\"width\":100},\"id\":\"14040\",\"type\":\"TableColumn\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"14141\",\"type\":\"StringEditor\"},\"field\":\"Parameters\",\"formatter\":{\"id\":\"14140\",\"type\":\"StringFormatter\"},\"sortable\":false,\"title\":\"Parameters\",\"width\":150},\"id\":\"14035\",\"type\":\"TableColumn\"},{\"attributes\":{},\"id\":\"14151\",\"type\":\"StringEditor\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"14149\",\"type\":\"StringEditor\"},\"field\":\"fANOVA\",\"formatter\":{\"id\":\"14148\",\"type\":\"StringFormatter\"},\"title\":\"fANOVA\",\"width\":100},\"id\":\"14039\",\"type\":\"TableColumn\"},{\"attributes\":{},\"id\":\"14141\",\"type\":\"StringEditor\"},{\"attributes\":{\"source\":{\"id\":\"14034\",\"type\":\"ColumnDataSource\"}},\"id\":\"14042\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"14153\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"callback\":null,\"data\":{\"LPI\":[\"LPI\",\"LPI\",\"LPI\",\"LPI\"],\"Parameters\":[\"l_rate\",\"burn_in\",\"mdecay\",\"n_units_1\",\"n_units_2\"],\"fANOVA\":[\"fANOVA\",\"fANOVA\",\"fANOVA\",\"fANOVA\",\"fANOVA\",\"fANOVA\",\"fANOVA\",\"fANOVA\",\"fANOVA\"]},\"selected\":{\"id\":\"14152\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"14153\",\"type\":\"UnionRenderers\"}},\"id\":\"14034\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"14146\",\"type\":\"StringFormatter\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"14143\",\"type\":\"StringEditor\"},\"field\":\"fANOVA\",\"formatter\":{\"id\":\"14142\",\"type\":\"StringFormatter\"},\"title\":\"fANOVA\",\"width\":100},\"id\":\"14036\",\"type\":\"TableColumn\"},{\"attributes\":{},\"id\":\"14144\",\"type\":\"StringFormatter\"},{\"attributes\":{},\"id\":\"14148\",\"type\":\"StringFormatter\"},{\"attributes\":{},\"id\":\"14147\",\"type\":\"StringEditor\"},{\"attributes\":{},\"id\":\"14150\",\"type\":\"StringFormatter\"},{\"attributes\":{},\"id\":\"14145\",\"type\":\"StringEditor\"},{\"attributes\":{},\"id\":\"14142\",\"type\":\"StringFormatter\"},{\"attributes\":{},\"id\":\"14143\",\"type\":\"StringEditor\"},{\"attributes\":{},\"id\":\"14149\",\"type\":\"StringEditor\"}],\"root_ids\":[\"14041\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"551ccf55-e190-4029-8f29-b21dfa5f6f16\",\"roots\":{\"14041\":\"cbb12c10-9b3f-41d1-9037-e3f6c9771188\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "14041" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.pimp_comparison_table(run='budget_10000');" ] @@ -1325,801 +229,36 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"18151\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"18151\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '18151' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"18151\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"18151\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"18151\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '18151' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"18151\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"75290f88-a0c2-42ce-96cd-331b5cd94b81\":{\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"17880\",\"type\":\"Column\"},{\"id\":\"17888\",\"type\":\"Column\"}]},\"id\":\"17889\",\"type\":\"Row\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15240\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17341\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15224\",\"type\":\"GroupFilter\"},{\"id\":\"15225\",\"type\":\"GroupFilter\"},{\"id\":\"15226\",\"type\":\"GroupFilter\"},{\"id\":\"15227\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15228\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17348\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15229\",\"type\":\"GroupFilter\"},{\"id\":\"15230\",\"type\":\"GroupFilter\"},{\"id\":\"15231\",\"type\":\"GroupFilter\"},{\"id\":\"15232\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15233\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17325\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17328\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15230\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17350\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15232\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17361\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15227\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17366\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15234\",\"type\":\"GroupFilter\"},{\"id\":\"15235\",\"type\":\"GroupFilter\"},{\"id\":\"15236\",\"type\":\"GroupFilter\"},{\"id\":\"15237\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15238\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17376\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15219\",\"type\":\"GroupFilter\"},{\"id\":\"15220\",\"type\":\"GroupFilter\"},{\"id\":\"15221\",\"type\":\"GroupFilter\"},{\"id\":\"15222\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15223\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17343\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15237\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17323\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17354\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17353\",\"type\":\"GroupFilter\"},{\"id\":\"17354\",\"type\":\"GroupFilter\"},{\"id\":\"17355\",\"type\":\"GroupFilter\"},{\"id\":\"17356\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17357\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15247\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15222\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17364\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17346\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15236\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17326\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17370\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15245\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15235\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17381\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17368\",\"type\":\"GroupFilter\"},{\"id\":\"17369\",\"type\":\"GroupFilter\"},{\"id\":\"17370\",\"type\":\"GroupFilter\"},{\"id\":\"17371\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17372\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15225\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17349\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17333\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15244\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17331\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17356\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17335\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15241\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15234\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17318\",\"type\":\"GroupFilter\"},{\"id\":\"17319\",\"type\":\"GroupFilter\"},{\"id\":\"17320\",\"type\":\"GroupFilter\"},{\"id\":\"17321\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17322\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"17378\",\"type\":\"GroupFilter\"},{\"id\":\"17379\",\"type\":\"GroupFilter\"},{\"id\":\"17380\",\"type\":\"GroupFilter\"},{\"id\":\"17381\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17382\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15231\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17333\",\"type\":\"GroupFilter\"},{\"id\":\"17334\",\"type\":\"GroupFilter\"},{\"id\":\"17335\",\"type\":\"GroupFilter\"},{\"id\":\"17336\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17337\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17368\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15246\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17330\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17343\",\"type\":\"GroupFilter\"},{\"id\":\"17344\",\"type\":\"GroupFilter\"},{\"id\":\"17345\",\"type\":\"GroupFilter\"},{\"id\":\"17346\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17347\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17363\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15250\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17348\",\"type\":\"GroupFilter\"},{\"id\":\"17349\",\"type\":\"GroupFilter\"},{\"id\":\"17350\",\"type\":\"GroupFilter\"},{\"id\":\"17351\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17352\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15239\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17324\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17375\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17374\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17340\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17379\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17353\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17365\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17329\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17359\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17338\",\"type\":\"GroupFilter\"},{\"id\":\"17339\",\"type\":\"GroupFilter\"},{\"id\":\"17340\",\"type\":\"GroupFilter\"},{\"id\":\"17341\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17342\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"14844\",\"type\":\"GlyphRenderer\"},{\"id\":\"14848\",\"type\":\"GlyphRenderer\"},{\"id\":\"14852\",\"type\":\"GlyphRenderer\"},{\"id\":\"14856\",\"type\":\"GlyphRenderer\"},{\"id\":\"14860\",\"type\":\"GlyphRenderer\"},{\"id\":\"14864\",\"type\":\"GlyphRenderer\"},{\"id\":\"14868\",\"type\":\"GlyphRenderer\"},{\"id\":\"14872\",\"type\":\"GlyphRenderer\"},{\"id\":\"14876\",\"type\":\"GlyphRenderer\"},{\"id\":\"14880\",\"type\":\"GlyphRenderer\"},{\"id\":\"14884\",\"type\":\"GlyphRenderer\"},{\"id\":\"14888\",\"type\":\"GlyphRenderer\"},{\"id\":\"14892\",\"type\":\"GlyphRenderer\"},{\"id\":\"14896\",\"type\":\"GlyphRenderer\"},{\"id\":\"14900\",\"type\":\"GlyphRenderer\"},{\"id\":\"14904\",\"type\":\"GlyphRenderer\"},{\"id\":\"14908\",\"type\":\"GlyphRenderer\"},{\"id\":\"14912\",\"type\":\"GlyphRenderer\"},{\"id\":\"14916\",\"type\":\"GlyphRenderer\"},{\"id\":\"14920\",\"type\":\"GlyphRenderer\"},{\"id\":\"14924\",\"type\":\"GlyphRenderer\"},{\"id\":\"14928\",\"type\":\"GlyphRenderer\"},{\"id\":\"14932\",\"type\":\"GlyphRenderer\"},{\"id\":\"14936\",\"type\":\"GlyphRenderer\"},{\"id\":\"14940\",\"type\":\"GlyphRenderer\"},{\"id\":\"14944\",\"type\":\"GlyphRenderer\"},{\"id\":\"14948\",\"type\":\"GlyphRenderer\"},{\"id\":\"14952\",\"type\":\"GlyphRenderer\"},{\"id\":\"14956\",\"type\":\"GlyphRenderer\"},{\"id\":\"14960\",\"type\":\"GlyphRenderer\"},{\"id\":\"14964\",\"type\":\"GlyphRenderer\"},{\"id\":\"14968\",\"type\":\"GlyphRenderer\"},{\"id\":\"14972\",\"type\":\"GlyphRenderer\"},{\"id\":\"14976\",\"type\":\"GlyphRenderer\"},{\"id\":\"14980\",\"type\":\"GlyphRenderer\"},{\"id\":\"14984\",\"type\":\"GlyphRenderer\"},{\"id\":\"14988\",\"type\":\"GlyphRenderer\"},{\"id\":\"14992\",\"type\":\"GlyphRenderer\"},{\"id\":\"14996\",\"type\":\"GlyphRenderer\"},{\"id\":\"15000\",\"type\":\"GlyphRenderer\"},{\"id\":\"15004\",\"type\":\"GlyphRenderer\"},{\"id\":\"15008\",\"type\":\"GlyphRenderer\"},{\"id\":\"15012\",\"type\":\"GlyphRenderer\"},{\"id\":\"15016\",\"type\":\"GlyphRenderer\"},{\"id\":\"15020\",\"type\":\"GlyphRenderer\"},{\"id\":\"15024\",\"type\":\"GlyphRenderer\"},{\"id\":\"15028\",\"type\":\"GlyphRenderer\"},{\"id\":\"15032\",\"type\":\"GlyphRenderer\"},{\"id\":\"15457\",\"type\":\"GlyphRenderer\"},{\"id\":\"15461\",\"type\":\"GlyphRenderer\"},{\"id\":\"15465\",\"type\":\"GlyphRenderer\"},{\"id\":\"15469\",\"type\":\"GlyphRenderer\"},{\"id\":\"15473\",\"type\":\"GlyphRenderer\"},{\"id\":\"15477\",\"type\":\"GlyphRenderer\"},{\"id\":\"15481\",\"type\":\"GlyphRenderer\"},{\"id\":\"15485\",\"type\":\"GlyphRenderer\"},{\"id\":\"15489\",\"type\":\"GlyphRenderer\"},{\"id\":\"15493\",\"type\":\"GlyphRenderer\"},{\"id\":\"15497\",\"type\":\"GlyphRenderer\"},{\"id\":\"15501\",\"type\":\"GlyphRenderer\"},{\"id\":\"15505\",\"type\":\"GlyphRenderer\"},{\"id\":\"15509\",\"type\":\"GlyphRenderer\"},{\"id\":\"15513\",\"type\":\"GlyphRenderer\"},{\"id\":\"15517\",\"type\":\"GlyphRenderer\"},{\"id\":\"15521\",\"type\":\"GlyphRenderer\"},{\"id\":\"15525\",\"type\":\"GlyphRenderer\"},{\"id\":\"15529\",\"type\":\"GlyphRenderer\"},{\"id\":\"15533\",\"type\":\"GlyphRenderer\"},{\"id\":\"15537\",\"type\":\"GlyphRenderer\"},{\"id\":\"15541\",\"type\":\"GlyphRenderer\"},{\"id\":\"15545\",\"type\":\"GlyphRenderer\"},{\"id\":\"15549\",\"type\":\"GlyphRenderer\"},{\"id\":\"15553\",\"type\":\"GlyphRenderer\"},{\"id\":\"15557\",\"type\":\"GlyphRenderer\"},{\"id\":\"15561\",\"type\":\"GlyphRenderer\"},{\"id\":\"15565\",\"type\":\"GlyphRenderer\"},{\"id\":\"15569\",\"type\":\"GlyphRenderer\"},{\"id\":\"15573\",\"type\":\"GlyphRenderer\"},{\"id\":\"15577\",\"type\":\"GlyphRenderer\"},{\"id\":\"15581\",\"type\":\"GlyphRenderer\"},{\"id\":\"15585\",\"type\":\"GlyphRenderer\"},{\"id\":\"15589\",\"type\":\"GlyphRenderer\"},{\"id\":\"15593\",\"type\":\"GlyphRenderer\"},{\"id\":\"15597\",\"type\":\"GlyphRenderer\"},{\"id\":\"15601\",\"type\":\"GlyphRenderer\"},{\"id\":\"15605\",\"type\":\"GlyphRenderer\"},{\"id\":\"15609\",\"type\":\"GlyphRenderer\"},{\"id\":\"15613\",\"type\":\"GlyphRenderer\"},{\"id\":\"15617\",\"type\":\"GlyphRenderer\"},{\"id\":\"15621\",\"type\":\"GlyphRenderer\"},{\"id\":\"15625\",\"type\":\"GlyphRenderer\"},{\"id\":\"15629\",\"type\":\"GlyphRenderer\"},{\"id\":\"15633\",\"type\":\"GlyphRenderer\"},{\"id\":\"15637\",\"type\":\"GlyphRenderer\"},{\"id\":\"15641\",\"type\":\"GlyphRenderer\"},{\"id\":\"15645\",\"type\":\"GlyphRenderer\"},{\"id\":\"16090\",\"type\":\"GlyphRenderer\"},{\"id\":\"16094\",\"type\":\"GlyphRenderer\"},{\"id\":\"16098\",\"type\":\"GlyphRenderer\"},{\"id\":\"16102\",\"type\":\"GlyphRenderer\"},{\"id\":\"16106\",\"type\":\"GlyphRenderer\"},{\"id\":\"16110\",\"type\":\"GlyphRenderer\"},{\"id\":\"16114\",\"type\":\"GlyphRenderer\"},{\"id\":\"16118\",\"type\":\"GlyphRenderer\"},{\"id\":\"16122\",\"type\":\"GlyphRenderer\"},{\"id\":\"16126\",\"type\":\"GlyphRenderer\"},{\"id\":\"16130\",\"type\":\"GlyphRenderer\"},{\"id\":\"16134\",\"type\":\"GlyphRenderer\"},{\"id\":\"16138\",\"type\":\"GlyphRenderer\"},{\"id\":\"16142\",\"type\":\"GlyphRenderer\"},{\"id\":\"16146\",\"type\":\"GlyphRenderer\"},{\"id\":\"16150\",\"type\":\"GlyphRenderer\"},{\"id\":\"16154\",\"type\":\"GlyphRenderer\"},{\"id\":\"16158\",\"type\":\"GlyphRenderer\"},{\"id\":\"16162\",\"type\":\"GlyphRenderer\"},{\"id\":\"16166\",\"type\":\"GlyphRenderer\"},{\"id\":\"16170\",\"type\":\"GlyphRenderer\"},{\"id\":\"16174\",\"type\":\"GlyphRenderer\"},{\"id\":\"16178\",\"type\":\"GlyphRenderer\"},{\"id\":\"16182\",\"type\":\"GlyphRenderer\"},{\"id\":\"16186\",\"type\":\"GlyphRenderer\"},{\"id\":\"16190\",\"type\":\"GlyphRenderer\"},{\"id\":\"16194\",\"type\":\"GlyphRenderer\"},{\"id\":\"16198\",\"type\":\"GlyphRenderer\"},{\"id\":\"16202\",\"type\":\"GlyphRenderer\"},{\"id\":\"16206\",\"type\":\"GlyphRenderer\"},{\"id\":\"16210\",\"type\":\"GlyphRenderer\"},{\"id\":\"16214\",\"type\":\"GlyphRenderer\"},{\"id\":\"16218\",\"type\":\"GlyphRenderer\"},{\"id\":\"16222\",\"type\":\"GlyphRenderer\"},{\"id\":\"16226\",\"type\":\"GlyphRenderer\"},{\"id\":\"16230\",\"type\":\"GlyphRenderer\"},{\"id\":\"16234\",\"type\":\"GlyphRenderer\"},{\"id\":\"16238\",\"type\":\"GlyphRenderer\"},{\"id\":\"16242\",\"type\":\"GlyphRenderer\"},{\"id\":\"16246\",\"type\":\"GlyphRenderer\"},{\"id\":\"16250\",\"type\":\"GlyphRenderer\"},{\"id\":\"16254\",\"type\":\"GlyphRenderer\"},{\"id\":\"16258\",\"type\":\"GlyphRenderer\"},{\"id\":\"16262\",\"type\":\"GlyphRenderer\"},{\"id\":\"16266\",\"type\":\"GlyphRenderer\"},{\"id\":\"16270\",\"type\":\"GlyphRenderer\"},{\"id\":\"16274\",\"type\":\"GlyphRenderer\"},{\"id\":\"16278\",\"type\":\"GlyphRenderer\"},{\"id\":\"16743\",\"type\":\"GlyphRenderer\"},{\"id\":\"16747\",\"type\":\"GlyphRenderer\"},{\"id\":\"16751\",\"type\":\"GlyphRenderer\"},{\"id\":\"16755\",\"type\":\"GlyphRenderer\"},{\"id\":\"16759\",\"type\":\"GlyphRenderer\"},{\"id\":\"16763\",\"type\":\"GlyphRenderer\"},{\"id\":\"16767\",\"type\":\"GlyphRenderer\"},{\"id\":\"16771\",\"type\":\"GlyphRenderer\"},{\"id\":\"16775\",\"type\":\"GlyphRenderer\"},{\"id\":\"16779\",\"type\":\"GlyphRenderer\"},{\"id\":\"16783\",\"type\":\"GlyphRenderer\"},{\"id\":\"16787\",\"type\":\"GlyphRenderer\"},{\"id\":\"16791\",\"type\":\"GlyphRenderer\"},{\"id\":\"16795\",\"type\":\"GlyphRenderer\"},{\"id\":\"16799\",\"type\":\"GlyphRenderer\"},{\"id\":\"16803\",\"type\":\"GlyphRenderer\"},{\"id\":\"16807\",\"type\":\"GlyphRenderer\"},{\"id\":\"16811\",\"type\":\"GlyphRenderer\"},{\"id\":\"16815\",\"type\":\"GlyphRenderer\"},{\"id\":\"16819\",\"type\":\"GlyphRenderer\"},{\"id\":\"16823\",\"type\":\"GlyphRenderer\"},{\"id\":\"16827\",\"type\":\"GlyphRenderer\"},{\"id\":\"16831\",\"type\":\"GlyphRenderer\"},{\"id\":\"16835\",\"type\":\"GlyphRenderer\"},{\"id\":\"16839\",\"type\":\"GlyphRenderer\"},{\"id\":\"16843\",\"type\":\"GlyphRenderer\"},{\"id\":\"16847\",\"type\":\"GlyphRenderer\"},{\"id\":\"16851\",\"type\":\"GlyphRenderer\"},{\"id\":\"16855\",\"type\":\"GlyphRenderer\"},{\"id\":\"16859\",\"type\":\"GlyphRenderer\"},{\"id\":\"16863\",\"type\":\"GlyphRenderer\"},{\"id\":\"16867\",\"type\":\"GlyphRenderer\"},{\"id\":\"16871\",\"type\":\"GlyphRenderer\"},{\"id\":\"16875\",\"type\":\"GlyphRenderer\"},{\"id\":\"16879\",\"type\":\"GlyphRenderer\"},{\"id\":\"16883\",\"type\":\"GlyphRenderer\"},{\"id\":\"16887\",\"type\":\"GlyphRenderer\"},{\"id\":\"16891\",\"type\":\"GlyphRenderer\"},{\"id\":\"16895\",\"type\":\"GlyphRenderer\"},{\"id\":\"16899\",\"type\":\"GlyphRenderer\"},{\"id\":\"16903\",\"type\":\"GlyphRenderer\"},{\"id\":\"16907\",\"type\":\"GlyphRenderer\"},{\"id\":\"16911\",\"type\":\"GlyphRenderer\"},{\"id\":\"16915\",\"type\":\"GlyphRenderer\"},{\"id\":\"16919\",\"type\":\"GlyphRenderer\"},{\"id\":\"16923\",\"type\":\"GlyphRenderer\"},{\"id\":\"16927\",\"type\":\"GlyphRenderer\"},{\"id\":\"16931\",\"type\":\"GlyphRenderer\"},{\"id\":\"17416\",\"type\":\"GlyphRenderer\"},{\"id\":\"17420\",\"type\":\"GlyphRenderer\"},{\"id\":\"17424\",\"type\":\"GlyphRenderer\"},{\"id\":\"17428\",\"type\":\"GlyphRenderer\"},{\"id\":\"17432\",\"type\":\"GlyphRenderer\"},{\"id\":\"17436\",\"type\":\"GlyphRenderer\"},{\"id\":\"17440\",\"type\":\"GlyphRenderer\"},{\"id\":\"17444\",\"type\":\"GlyphRenderer\"},{\"id\":\"17448\",\"type\":\"GlyphRenderer\"},{\"id\":\"17452\",\"type\":\"GlyphRenderer\"},{\"id\":\"17456\",\"type\":\"GlyphRenderer\"},{\"id\":\"17460\",\"type\":\"GlyphRenderer\"},{\"id\":\"17464\",\"type\":\"GlyphRenderer\"},{\"id\":\"17468\",\"type\":\"GlyphRenderer\"},{\"id\":\"17472\",\"type\":\"GlyphRenderer\"},{\"id\":\"17476\",\"type\":\"GlyphRenderer\"},{\"id\":\"17480\",\"type\":\"GlyphRenderer\"},{\"id\":\"17484\",\"type\":\"GlyphRenderer\"},{\"id\":\"17488\",\"type\":\"GlyphRenderer\"},{\"id\":\"17492\",\"type\":\"GlyphRenderer\"},{\"id\":\"17496\",\"type\":\"GlyphRenderer\"},{\"id\":\"17500\",\"type\":\"GlyphRenderer\"},{\"id\":\"17504\",\"type\":\"GlyphRenderer\"},{\"id\":\"17508\",\"type\":\"GlyphRenderer\"},{\"id\":\"17512\",\"type\":\"GlyphRenderer\"},{\"id\":\"17516\",\"type\":\"GlyphRenderer\"},{\"id\":\"17520\",\"type\":\"GlyphRenderer\"},{\"id\":\"17524\",\"type\":\"GlyphRenderer\"},{\"id\":\"17528\",\"type\":\"GlyphRenderer\"},{\"id\":\"17532\",\"type\":\"GlyphRenderer\"},{\"id\":\"17536\",\"type\":\"GlyphRenderer\"},{\"id\":\"17540\",\"type\":\"GlyphRenderer\"},{\"id\":\"17544\",\"type\":\"GlyphRenderer\"},{\"id\":\"17548\",\"type\":\"GlyphRenderer\"},{\"id\":\"17552\",\"type\":\"GlyphRenderer\"},{\"id\":\"17556\",\"type\":\"GlyphRenderer\"},{\"id\":\"17560\",\"type\":\"GlyphRenderer\"},{\"id\":\"17564\",\"type\":\"GlyphRenderer\"},{\"id\":\"17568\",\"type\":\"GlyphRenderer\"},{\"id\":\"17572\",\"type\":\"GlyphRenderer\"},{\"id\":\"17576\",\"type\":\"GlyphRenderer\"},{\"id\":\"17580\",\"type\":\"GlyphRenderer\"},{\"id\":\"17584\",\"type\":\"GlyphRenderer\"},{\"id\":\"17588\",\"type\":\"GlyphRenderer\"},{\"id\":\"17592\",\"type\":\"GlyphRenderer\"},{\"id\":\"17596\",\"type\":\"GlyphRenderer\"},{\"id\":\"17600\",\"type\":\"GlyphRenderer\"},{\"id\":\"17604\",\"type\":\"GlyphRenderer\"}],\"tooltips\":[[\"type\",\"@type\"],[\"origin\",\"@origin\"],[\"runs\",\"@runs\"],[\"burn_in\",\"@p_burn_in\"],[\"l_rate\",\"@p_l_rate\"],[\"mdecay\",\"@p_mdecay\"],[\"n_units_1\",\"@p_n_units_1\"],[\"n_units_2\",\"@p_n_units_2\"]]},\"id\":\"17866\",\"type\":\"HoverTool\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17360\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17338\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17355\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17339\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17358\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17363\",\"type\":\"GroupFilter\"},{\"id\":\"17364\",\"type\":\"GroupFilter\"},{\"id\":\"17365\",\"type\":\"GroupFilter\"},{\"id\":\"17366\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17367\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17344\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17378\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"white\"],\"origin\":[\"Random\",\"Random\"],\"p_burn_in\":[0.06095411756804747,0.34424088646527784],\"p_l_rate\":[1.3140974150295323e-05,5.886622133632225e-05],\"p_mdecay\":[0.6085942693370233,0.6934225820967883],\"p_n_units_1\":[27,288],\"p_n_units_2\":[409,504],\"runs\":[1,1],\"size\":[12.0,12.0],\"type\":[\"Incumbent\",\"Candidate\"],\"x\":{\"__ndarray__\":\"jPLiqERy979q1fKBIRzxvw==\",\"dtype\":\"float64\",\"shape\":[2]},\"y\":{\"__ndarray__\":\"m4VOa/RK4b+Gg2nOPPLsvw==\",\"dtype\":\"float64\",\"shape\":[2]},\"zorder\":[\"0\",\"0\"]},\"selected\":{\"id\":\"15049\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15050\",\"type\":\"UnionRenderers\"}},\"id\":\"14543\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17384\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17336\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17328\",\"type\":\"GroupFilter\"},{\"id\":\"17329\",\"type\":\"GroupFilter\"},{\"id\":\"17330\",\"type\":\"GroupFilter\"},{\"id\":\"17331\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17332\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15221\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15242\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15226\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17383\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15229\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17380\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15224\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17373\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15244\",\"type\":\"GroupFilter\"},{\"id\":\"15245\",\"type\":\"GroupFilter\"},{\"id\":\"15246\",\"type\":\"GroupFilter\"},{\"id\":\"15247\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15248\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"17323\",\"type\":\"GroupFilter\"},{\"id\":\"17324\",\"type\":\"GroupFilter\"},{\"id\":\"17325\",\"type\":\"GroupFilter\"},{\"id\":\"17326\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17327\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17334\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17351\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17369\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17371\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15249\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15239\",\"type\":\"GroupFilter\"},{\"id\":\"15240\",\"type\":\"GroupFilter\"},{\"id\":\"15241\",\"type\":\"GroupFilter\"},{\"id\":\"15242\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15243\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"17373\",\"type\":\"GroupFilter\"},{\"id\":\"17374\",\"type\":\"GroupFilter\"},{\"id\":\"17375\",\"type\":\"GroupFilter\"},{\"id\":\"17376\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17377\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17345\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17358\",\"type\":\"GroupFilter\"},{\"id\":\"17359\",\"type\":\"GroupFilter\"},{\"id\":\"17360\",\"type\":\"GroupFilter\"},{\"id\":\"17361\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17362\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17176\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17179\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17178\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17175\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17173\",\"type\":\"GroupFilter\"},{\"id\":\"17174\",\"type\":\"GroupFilter\"},{\"id\":\"17175\",\"type\":\"GroupFilter\"},{\"id\":\"17176\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17177\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16710\",\"type\":\"GroupFilter\"},{\"id\":\"16711\",\"type\":\"GroupFilter\"},{\"id\":\"16712\",\"type\":\"GroupFilter\"},{\"id\":\"16713\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16714\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16708\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16713\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16712\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16716\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16703\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16700\",\"type\":\"GroupFilter\"},{\"id\":\"16701\",\"type\":\"GroupFilter\"},{\"id\":\"16702\",\"type\":\"GroupFilter\"},{\"id\":\"16703\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16704\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16710\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16715\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16711\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16707\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16705\",\"type\":\"GroupFilter\"},{\"id\":\"16706\",\"type\":\"GroupFilter\"},{\"id\":\"16707\",\"type\":\"GroupFilter\"},{\"id\":\"16708\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16709\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16120\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16706\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16717\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16701\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16705\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16702\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16700\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16027\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17590\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14796\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15432\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15437\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"17629\",\"type\":\"Selection\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17586\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15431\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"16010\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14797\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17583\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16009\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14798\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15419\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16012\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17578\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15410\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17582\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17583\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17387\",\"type\":\"CDSView\"}},\"id\":\"17584\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14799\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16020\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14796\",\"type\":\"GroupFilter\"},{\"id\":\"14797\",\"type\":\"GroupFilter\"},{\"id\":\"14798\",\"type\":\"GroupFilter\"},{\"id\":\"14799\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14800\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16017\",\"type\":\"GroupFilter\"},{\"id\":\"16018\",\"type\":\"GroupFilter\"},{\"id\":\"16019\",\"type\":\"GroupFilter\"},{\"id\":\"16020\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16021\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14801\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16023\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17579\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16013\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14802\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14803\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16032\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16039\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14804\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15430\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16029\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14801\",\"type\":\"GroupFilter\"},{\"id\":\"14802\",\"type\":\"GroupFilter\"},{\"id\":\"14803\",\"type\":\"GroupFilter\"},{\"id\":\"14804\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14805\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15429\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16007\",\"type\":\"GroupFilter\"},{\"id\":\"16008\",\"type\":\"GroupFilter\"},{\"id\":\"16009\",\"type\":\"GroupFilter\"},{\"id\":\"16010\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16011\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17598\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14806\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15427\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17578\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17579\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17382\",\"type\":\"CDSView\"}},\"id\":\"17580\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15429\",\"type\":\"GroupFilter\"},{\"id\":\"15430\",\"type\":\"GroupFilter\"},{\"id\":\"15431\",\"type\":\"GroupFilter\"},{\"id\":\"15432\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15433\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16018\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17595\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14807\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15434\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16019\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17587\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16022\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17590\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17591\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17397\",\"type\":\"CDSView\"}},\"id\":\"17592\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14808\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16037\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17591\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14809\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15436\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16033\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14806\",\"type\":\"GroupFilter\"},{\"id\":\"14807\",\"type\":\"GroupFilter\"},{\"id\":\"14808\",\"type\":\"GroupFilter\"},{\"id\":\"14809\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14810\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17599\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15411\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14811\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16032\",\"type\":\"GroupFilter\"},{\"id\":\"16033\",\"type\":\"GroupFilter\"},{\"id\":\"16034\",\"type\":\"GroupFilter\"},{\"id\":\"16035\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16036\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14812\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15406\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16015\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15409\",\"type\":\"GroupFilter\"},{\"id\":\"15410\",\"type\":\"GroupFilter\"},{\"id\":\"15411\",\"type\":\"GroupFilter\"},{\"id\":\"15412\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15413\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14813\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15425\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16017\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17594\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17595\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17402\",\"type\":\"CDSView\"}},\"id\":\"17596\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15421\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14814\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15417\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16012\",\"type\":\"GroupFilter\"},{\"id\":\"16013\",\"type\":\"GroupFilter\"},{\"id\":\"16014\",\"type\":\"GroupFilter\"},{\"id\":\"16015\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16016\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15435\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14811\",\"type\":\"GroupFilter\"},{\"id\":\"14812\",\"type\":\"GroupFilter\"},{\"id\":\"14813\",\"type\":\"GroupFilter\"},{\"id\":\"14814\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14815\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15414\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15416\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14816\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15412\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17598\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17599\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17407\",\"type\":\"CDSView\"}},\"id\":\"17600\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"16022\",\"type\":\"GroupFilter\"},{\"id\":\"16023\",\"type\":\"GroupFilter\"},{\"id\":\"16024\",\"type\":\"GroupFilter\"},{\"id\":\"16025\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16026\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17603\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14817\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15415\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16025\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"16030\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14818\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17594\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15420\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17586\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17587\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17392\",\"type\":\"CDSView\"}},\"id\":\"17588\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"16027\",\"type\":\"GroupFilter\"},{\"id\":\"16028\",\"type\":\"GroupFilter\"},{\"id\":\"16029\",\"type\":\"GroupFilter\"},{\"id\":\"16030\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16031\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15422\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14819\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17602\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17603\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17412\",\"type\":\"CDSView\"}},\"id\":\"17604\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14816\",\"type\":\"GroupFilter\"},{\"id\":\"14817\",\"type\":\"GroupFilter\"},{\"id\":\"14818\",\"type\":\"GroupFilter\"},{\"id\":\"14819\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14820\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15409\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14821\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16024\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15404\",\"type\":\"GroupFilter\"},{\"id\":\"15405\",\"type\":\"GroupFilter\"},{\"id\":\"15406\",\"type\":\"GroupFilter\"},{\"id\":\"15407\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15408\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14822\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15424\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15414\",\"type\":\"GroupFilter\"},{\"id\":\"15415\",\"type\":\"GroupFilter\"},{\"id\":\"15416\",\"type\":\"GroupFilter\"},{\"id\":\"15417\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15418\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14823\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16008\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15419\",\"type\":\"GroupFilter\"},{\"id\":\"15420\",\"type\":\"GroupFilter\"},{\"id\":\"15421\",\"type\":\"GroupFilter\"},{\"id\":\"15422\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15423\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17582\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14824\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"17630\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"filters\":[{\"id\":\"15424\",\"type\":\"GroupFilter\"},{\"id\":\"15425\",\"type\":\"GroupFilter\"},{\"id\":\"15426\",\"type\":\"GroupFilter\"},{\"id\":\"15427\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15428\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"14821\",\"type\":\"GroupFilter\"},{\"id\":\"14822\",\"type\":\"GroupFilter\"},{\"id\":\"14823\",\"type\":\"GroupFilter\"},{\"id\":\"14824\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14825\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17602\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15426\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16014\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14826\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15407\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16028\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16034\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14827\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16038\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16035\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16773\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16774\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16544\",\"type\":\"CDSView\"}},\"id\":\"16775\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16778\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16789\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16766\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16757\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16758\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16524\",\"type\":\"CDSView\"}},\"id\":\"16759\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16777\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16778\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16549\",\"type\":\"CDSView\"}},\"id\":\"16779\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16785\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16781\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16785\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16786\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16559\",\"type\":\"CDSView\"}},\"id\":\"16787\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16762\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16774\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16782\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16765\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16758\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16765\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16766\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16534\",\"type\":\"CDSView\"}},\"id\":\"16767\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16761\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16762\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16529\",\"type\":\"CDSView\"}},\"id\":\"16763\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17248\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16781\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16782\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16554\",\"type\":\"CDSView\"}},\"id\":\"16783\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17296\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16786\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16865\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16761\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16865\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16866\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16659\",\"type\":\"CDSView\"}},\"id\":\"16867\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17249\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16866\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16777\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16721\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17311\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17225\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17221\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17246\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17231\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17224\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17240\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17226\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17218\",\"type\":\"GroupFilter\"},{\"id\":\"17219\",\"type\":\"GroupFilter\"},{\"id\":\"17220\",\"type\":\"GroupFilter\"},{\"id\":\"17221\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17222\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17241\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17228\",\"type\":\"GroupFilter\"},{\"id\":\"17229\",\"type\":\"GroupFilter\"},{\"id\":\"17230\",\"type\":\"GroupFilter\"},{\"id\":\"17231\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17232\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"17233\",\"type\":\"GroupFilter\"},{\"id\":\"17234\",\"type\":\"GroupFilter\"},{\"id\":\"17235\",\"type\":\"GroupFilter\"},{\"id\":\"17236\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17237\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17220\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17235\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17223\",\"type\":\"GroupFilter\"},{\"id\":\"17224\",\"type\":\"GroupFilter\"},{\"id\":\"17225\",\"type\":\"GroupFilter\"},{\"id\":\"17226\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17227\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17233\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17230\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17238\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17223\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17238\",\"type\":\"GroupFilter\"},{\"id\":\"17239\",\"type\":\"GroupFilter\"},{\"id\":\"17240\",\"type\":\"GroupFilter\"},{\"id\":\"17241\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17242\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17245\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17234\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17229\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17243\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17236\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17228\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17239\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17243\",\"type\":\"GroupFilter\"},{\"id\":\"17244\",\"type\":\"GroupFilter\"},{\"id\":\"17245\",\"type\":\"GroupFilter\"},{\"id\":\"17246\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17247\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17244\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14632\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16232\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16233\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16031\",\"type\":\"CDSView\"}},\"id\":\"16234\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16252\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16253\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16056\",\"type\":\"CDSView\"}},\"id\":\"16254\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14633\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14634\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14631\",\"type\":\"GroupFilter\"},{\"id\":\"14632\",\"type\":\"GroupFilter\"},{\"id\":\"14633\",\"type\":\"GroupFilter\"},{\"id\":\"14634\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14635\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14636\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14637\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16244\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14638\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14639\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14636\",\"type\":\"GroupFilter\"},{\"id\":\"14637\",\"type\":\"GroupFilter\"},{\"id\":\"14638\",\"type\":\"GroupFilter\"},{\"id\":\"14639\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14640\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16240\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14641\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17310\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16236\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16237\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16036\",\"type\":\"CDSView\"}},\"id\":\"16238\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14642\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16237\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16264\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16265\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16071\",\"type\":\"CDSView\"}},\"id\":\"16266\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14643\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16233\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14644\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16264\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14641\",\"type\":\"GroupFilter\"},{\"id\":\"14642\",\"type\":\"GroupFilter\"},{\"id\":\"14643\",\"type\":\"GroupFilter\"},{\"id\":\"14644\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14645\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14646\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16249\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16256\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16244\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16245\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16046\",\"type\":\"CDSView\"}},\"id\":\"16246\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14647\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16245\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14648\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14649\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16256\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16257\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16061\",\"type\":\"CDSView\"}},\"id\":\"16258\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14646\",\"type\":\"GroupFilter\"},{\"id\":\"14647\",\"type\":\"GroupFilter\"},{\"id\":\"14648\",\"type\":\"GroupFilter\"},{\"id\":\"14649\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14650\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16248\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14651\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14652\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14653\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16248\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16249\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16051\",\"type\":\"CDSView\"}},\"id\":\"16250\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14654\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14651\",\"type\":\"GroupFilter\"},{\"id\":\"14652\",\"type\":\"GroupFilter\"},{\"id\":\"14653\",\"type\":\"GroupFilter\"},{\"id\":\"14654\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14655\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16261\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16253\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14656\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16240\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16241\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16041\",\"type\":\"CDSView\"}},\"id\":\"16242\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14657\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16252\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16241\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14658\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16257\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16265\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14659\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16236\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14656\",\"type\":\"GroupFilter\"},{\"id\":\"14657\",\"type\":\"GroupFilter\"},{\"id\":\"14658\",\"type\":\"GroupFilter\"},{\"id\":\"14659\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14660\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16260\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14661\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14662\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14663\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14664\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16260\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16261\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16066\",\"type\":\"CDSView\"}},\"id\":\"16262\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15375\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15364\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16545\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16540\",\"type\":\"GroupFilter\"},{\"id\":\"16541\",\"type\":\"GroupFilter\"},{\"id\":\"16542\",\"type\":\"GroupFilter\"},{\"id\":\"16543\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16544\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16551\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16541\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16560\",\"type\":\"GroupFilter\"},{\"id\":\"16561\",\"type\":\"GroupFilter\"},{\"id\":\"16562\",\"type\":\"GroupFilter\"},{\"id\":\"16563\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16564\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15345\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16555\",\"type\":\"GroupFilter\"},{\"id\":\"16556\",\"type\":\"GroupFilter\"},{\"id\":\"16557\",\"type\":\"GroupFilter\"},{\"id\":\"16558\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16559\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16545\",\"type\":\"GroupFilter\"},{\"id\":\"16546\",\"type\":\"GroupFilter\"},{\"id\":\"16547\",\"type\":\"GroupFilter\"},{\"id\":\"16548\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16549\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15361\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15344\",\"type\":\"GroupFilter\"},{\"id\":\"15345\",\"type\":\"GroupFilter\"},{\"id\":\"15346\",\"type\":\"GroupFilter\"},{\"id\":\"15347\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15348\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16563\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15369\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16537\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15349\",\"type\":\"GroupFilter\"},{\"id\":\"15350\",\"type\":\"GroupFilter\"},{\"id\":\"15351\",\"type\":\"GroupFilter\"},{\"id\":\"15352\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15353\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16566\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16757\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16538\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15366\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15362\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15643\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16562\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15359\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15360\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15347\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16552\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16548\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15356\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16546\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15357\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16553\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15354\",\"type\":\"GroupFilter\"},{\"id\":\"15355\",\"type\":\"GroupFilter\"},{\"id\":\"15356\",\"type\":\"GroupFilter\"},{\"id\":\"15357\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15358\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16565\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15346\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16543\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15643\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15644\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15453\",\"type\":\"CDSView\"}},\"id\":\"15645\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15365\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16542\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15640\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16769\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15369\",\"type\":\"GroupFilter\"},{\"id\":\"15370\",\"type\":\"GroupFilter\"},{\"id\":\"15371\",\"type\":\"GroupFilter\"},{\"id\":\"15372\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15373\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16547\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15351\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15371\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16561\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15644\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15354\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16560\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16535\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15370\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16536\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"15665\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16557\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15374\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"15664\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16556\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15367\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16558\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15639\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15352\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16555\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16121\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15639\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15640\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15448\",\"type\":\"CDSView\"}},\"id\":\"15641\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15372\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16550\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15355\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16550\",\"type\":\"GroupFilter\"},{\"id\":\"16551\",\"type\":\"GroupFilter\"},{\"id\":\"16552\",\"type\":\"GroupFilter\"},{\"id\":\"16553\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16554\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15349\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15350\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15364\",\"type\":\"GroupFilter\"},{\"id\":\"15365\",\"type\":\"GroupFilter\"},{\"id\":\"15366\",\"type\":\"GroupFilter\"},{\"id\":\"15367\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15368\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15359\",\"type\":\"GroupFilter\"},{\"id\":\"15360\",\"type\":\"GroupFilter\"},{\"id\":\"15361\",\"type\":\"GroupFilter\"},{\"id\":\"15362\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15363\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16540\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16535\",\"type\":\"GroupFilter\"},{\"id\":\"16536\",\"type\":\"GroupFilter\"},{\"id\":\"16537\",\"type\":\"GroupFilter\"},{\"id\":\"16538\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16539\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15344\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14986\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16080\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16221\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15401\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14987\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15386\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16082\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14986\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14987\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14785\",\"type\":\"CDSView\"}},\"id\":\"14988\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15385\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16083\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15387\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16092\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15397\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16598\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15011\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15400\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16078\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15010\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15011\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14815\",\"type\":\"CDSView\"}},\"id\":\"15012\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16089\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15384\",\"type\":\"GroupFilter\"},{\"id\":\"15385\",\"type\":\"GroupFilter\"},{\"id\":\"15386\",\"type\":\"GroupFilter\"},{\"id\":\"15387\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15388\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"15044\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15405\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15014\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15015\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15374\",\"type\":\"GroupFilter\"},{\"id\":\"15375\",\"type\":\"GroupFilter\"},{\"id\":\"15376\",\"type\":\"GroupFilter\"},{\"id\":\"15377\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15378\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15014\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15015\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14820\",\"type\":\"CDSView\"}},\"id\":\"15016\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15392\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"15043\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15390\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15018\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15379\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15019\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15394\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16079\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16082\",\"type\":\"GroupFilter\"},{\"id\":\"16083\",\"type\":\"GroupFilter\"},{\"id\":\"16084\",\"type\":\"GroupFilter\"},{\"id\":\"16085\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16086\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15404\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15018\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15019\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14825\",\"type\":\"CDSView\"}},\"id\":\"15020\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15399\",\"type\":\"GroupFilter\"},{\"id\":\"15400\",\"type\":\"GroupFilter\"},{\"id\":\"15401\",\"type\":\"GroupFilter\"},{\"id\":\"15402\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15403\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16097\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15379\",\"type\":\"GroupFilter\"},{\"id\":\"15380\",\"type\":\"GroupFilter\"},{\"id\":\"15381\",\"type\":\"GroupFilter\"},{\"id\":\"15382\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15383\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"15042\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16092\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16093\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15856\",\"type\":\"CDSView\"}},\"id\":\"16094\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15399\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15022\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16077\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16096\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16097\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15861\",\"type\":\"CDSView\"}},\"id\":\"16098\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15023\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15384\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15022\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15023\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14830\",\"type\":\"CDSView\"}},\"id\":\"15024\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"15041\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15381\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16077\",\"type\":\"GroupFilter\"},{\"id\":\"16078\",\"type\":\"GroupFilter\"},{\"id\":\"16079\",\"type\":\"GroupFilter\"},{\"id\":\"16080\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16081\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15026\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15027\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16072\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15026\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15027\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14835\",\"type\":\"CDSView\"}},\"id\":\"15028\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15389\",\"type\":\"GroupFilter\"},{\"id\":\"15390\",\"type\":\"GroupFilter\"},{\"id\":\"15391\",\"type\":\"GroupFilter\"},{\"id\":\"15392\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15393\",\"type\":\"CDSView\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"15040\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16088\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16089\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15851\",\"type\":\"CDSView\"}},\"id\":\"16090\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15030\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15380\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16075\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16093\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15031\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15030\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15031\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14840\",\"type\":\"CDSView\"}},\"id\":\"15032\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16085\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16074\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16084\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15377\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16067\",\"type\":\"GroupFilter\"},{\"id\":\"16068\",\"type\":\"GroupFilter\"},{\"id\":\"16069\",\"type\":\"GroupFilter\"},{\"id\":\"16070\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16071\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15389\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16073\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15402\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16072\",\"type\":\"GroupFilter\"},{\"id\":\"16073\",\"type\":\"GroupFilter\"},{\"id\":\"16074\",\"type\":\"GroupFilter\"},{\"id\":\"16075\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16076\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15395\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16120\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16121\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15891\",\"type\":\"CDSView\"}},\"id\":\"16122\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15396\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15376\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15394\",\"type\":\"GroupFilter\"},{\"id\":\"15395\",\"type\":\"GroupFilter\"},{\"id\":\"15396\",\"type\":\"GroupFilter\"},{\"id\":\"15397\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15398\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16096\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16088\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15382\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15391\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14726\",\"type\":\"GroupFilter\"},{\"id\":\"14727\",\"type\":\"GroupFilter\"},{\"id\":\"14728\",\"type\":\"GroupFilter\"},{\"id\":\"14729\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14730\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16675\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16690\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16680\",\"type\":\"GroupFilter\"},{\"id\":\"16681\",\"type\":\"GroupFilter\"},{\"id\":\"16682\",\"type\":\"GroupFilter\"},{\"id\":\"16683\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16684\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14731\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14732\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16686\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14733\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14734\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16695\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14731\",\"type\":\"GroupFilter\"},{\"id\":\"14732\",\"type\":\"GroupFilter\"},{\"id\":\"14733\",\"type\":\"GroupFilter\"},{\"id\":\"14734\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14735\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14736\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16671\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16715\",\"type\":\"GroupFilter\"},{\"id\":\"16716\",\"type\":\"GroupFilter\"},{\"id\":\"16717\",\"type\":\"GroupFilter\"},{\"id\":\"16718\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16719\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16685\",\"type\":\"GroupFilter\"},{\"id\":\"16686\",\"type\":\"GroupFilter\"},{\"id\":\"16687\",\"type\":\"GroupFilter\"},{\"id\":\"16688\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16689\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14737\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16677\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16690\",\"type\":\"GroupFilter\"},{\"id\":\"16691\",\"type\":\"GroupFilter\"},{\"id\":\"16692\",\"type\":\"GroupFilter\"},{\"id\":\"16693\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16694\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14738\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14739\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16691\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16720\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14736\",\"type\":\"GroupFilter\"},{\"id\":\"14737\",\"type\":\"GroupFilter\"},{\"id\":\"14738\",\"type\":\"GroupFilter\"},{\"id\":\"14739\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14740\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16692\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14741\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16688\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16697\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14742\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16696\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14743\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16675\",\"type\":\"GroupFilter\"},{\"id\":\"16676\",\"type\":\"GroupFilter\"},{\"id\":\"16677\",\"type\":\"GroupFilter\"},{\"id\":\"16678\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16679\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16665\",\"type\":\"GroupFilter\"},{\"id\":\"16666\",\"type\":\"GroupFilter\"},{\"id\":\"16667\",\"type\":\"GroupFilter\"},{\"id\":\"16668\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16669\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14744\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14741\",\"type\":\"GroupFilter\"},{\"id\":\"14742\",\"type\":\"GroupFilter\"},{\"id\":\"14743\",\"type\":\"GroupFilter\"},{\"id\":\"14744\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14745\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14746\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16685\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14747\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16682\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16676\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14748\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16681\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14749\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14746\",\"type\":\"GroupFilter\"},{\"id\":\"14747\",\"type\":\"GroupFilter\"},{\"id\":\"14748\",\"type\":\"GroupFilter\"},{\"id\":\"14749\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14750\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16680\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16678\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14751\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16683\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14752\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14753\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14754\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16670\",\"type\":\"GroupFilter\"},{\"id\":\"16671\",\"type\":\"GroupFilter\"},{\"id\":\"16672\",\"type\":\"GroupFilter\"},{\"id\":\"16673\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16674\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16718\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14751\",\"type\":\"GroupFilter\"},{\"id\":\"14752\",\"type\":\"GroupFilter\"},{\"id\":\"14753\",\"type\":\"GroupFilter\"},{\"id\":\"14754\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14755\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16698\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16695\",\"type\":\"GroupFilter\"},{\"id\":\"16696\",\"type\":\"GroupFilter\"},{\"id\":\"16697\",\"type\":\"GroupFilter\"},{\"id\":\"16698\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16699\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14756\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16668\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14757\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16670\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16687\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14758\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14759\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16672\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14756\",\"type\":\"GroupFilter\"},{\"id\":\"14757\",\"type\":\"GroupFilter\"},{\"id\":\"14758\",\"type\":\"GroupFilter\"},{\"id\":\"14759\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14760\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16693\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14761\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14762\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16673\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15539\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15532\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15571\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15572\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15363\",\"type\":\"CDSView\"}},\"id\":\"15573\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16597\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15877\",\"type\":\"GroupFilter\"},{\"id\":\"15878\",\"type\":\"GroupFilter\"},{\"id\":\"15879\",\"type\":\"GroupFilter\"},{\"id\":\"15880\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15881\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15531\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15524\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15536\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15519\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15520\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15298\",\"type\":\"CDSView\"}},\"id\":\"15521\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15543\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15544\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15328\",\"type\":\"CDSView\"}},\"id\":\"15545\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15523\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15524\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15303\",\"type\":\"CDSView\"}},\"id\":\"15525\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15540\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15528\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15575\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15576\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15368\",\"type\":\"CDSView\"}},\"id\":\"15577\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15515\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15516\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15293\",\"type\":\"CDSView\"}},\"id\":\"15517\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15535\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15882\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15580\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15535\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15536\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15318\",\"type\":\"CDSView\"}},\"id\":\"15537\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15520\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15539\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15540\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15323\",\"type\":\"CDSView\"}},\"id\":\"15541\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15575\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15519\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15515\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15544\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15523\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15543\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15579\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15527\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15528\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15308\",\"type\":\"CDSView\"}},\"id\":\"15529\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15531\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15532\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15313\",\"type\":\"CDSView\"}},\"id\":\"15533\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15576\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15527\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15516\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14899\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15309\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16630\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14898\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14899\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14675\",\"type\":\"CDSView\"}},\"id\":\"14900\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15309\",\"type\":\"GroupFilter\"},{\"id\":\"15310\",\"type\":\"GroupFilter\"},{\"id\":\"15311\",\"type\":\"GroupFilter\"},{\"id\":\"15312\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15313\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15007\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14918\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15299\",\"type\":\"GroupFilter\"},{\"id\":\"15300\",\"type\":\"GroupFilter\"},{\"id\":\"15301\",\"type\":\"GroupFilter\"},{\"id\":\"15302\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15303\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14919\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15300\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14918\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14919\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14700\",\"type\":\"CDSView\"}},\"id\":\"14920\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15297\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15006\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15301\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14922\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15294\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14923\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14922\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14923\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14705\",\"type\":\"CDSView\"}},\"id\":\"14924\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15304\",\"type\":\"GroupFilter\"},{\"id\":\"15305\",\"type\":\"GroupFilter\"},{\"id\":\"15306\",\"type\":\"GroupFilter\"},{\"id\":\"15307\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15308\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"15046\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"filters\":[{\"id\":\"15294\",\"type\":\"GroupFilter\"},{\"id\":\"15295\",\"type\":\"GroupFilter\"},{\"id\":\"15296\",\"type\":\"GroupFilter\"},{\"id\":\"15297\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15298\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14926\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15312\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14927\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15299\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14926\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14927\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14710\",\"type\":\"CDSView\"}},\"id\":\"14928\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15302\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15286\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15002\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15003\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14805\",\"type\":\"CDSView\"}},\"id\":\"15004\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15289\",\"type\":\"GroupFilter\"},{\"id\":\"15290\",\"type\":\"GroupFilter\"},{\"id\":\"15291\",\"type\":\"GroupFilter\"},{\"id\":\"15292\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15293\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14930\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14931\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15304\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15284\",\"type\":\"GroupFilter\"},{\"id\":\"15285\",\"type\":\"GroupFilter\"},{\"id\":\"15286\",\"type\":\"GroupFilter\"},{\"id\":\"15287\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15288\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14930\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14931\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14715\",\"type\":\"CDSView\"}},\"id\":\"14932\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15307\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15003\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14934\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14935\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14934\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14935\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14720\",\"type\":\"CDSView\"}},\"id\":\"14936\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15002\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14938\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15296\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15305\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14939\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15295\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15291\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14938\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14939\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14725\",\"type\":\"CDSView\"}},\"id\":\"14940\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15285\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15311\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"15047\",\"type\":\"Selection\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15287\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15310\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15885\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14942\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14943\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15306\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14942\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14943\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14730\",\"type\":\"CDSView\"}},\"id\":\"14944\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15292\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14998\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14999\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14800\",\"type\":\"CDSView\"}},\"id\":\"15000\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16631\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15289\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16632\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14946\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16633\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14947\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"16630\",\"type\":\"GroupFilter\"},{\"id\":\"16631\",\"type\":\"GroupFilter\"},{\"id\":\"16632\",\"type\":\"GroupFilter\"},{\"id\":\"16633\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16634\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14946\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14947\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14735\",\"type\":\"CDSView\"}},\"id\":\"14948\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15314\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15284\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16635\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14999\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15290\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16503\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16518\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15282\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15254\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16520\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15264\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16517\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15270\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16510\",\"type\":\"GroupFilter\"},{\"id\":\"16511\",\"type\":\"GroupFilter\"},{\"id\":\"16512\",\"type\":\"GroupFilter\"},{\"id\":\"16513\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16514\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16505\",\"type\":\"GroupFilter\"},{\"id\":\"16506\",\"type\":\"GroupFilter\"},{\"id\":\"16507\",\"type\":\"GroupFilter\"},{\"id\":\"16508\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16509\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16525\",\"type\":\"GroupFilter\"},{\"id\":\"16526\",\"type\":\"GroupFilter\"},{\"id\":\"16527\",\"type\":\"GroupFilter\"},{\"id\":\"16528\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16529\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15267\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15275\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16530\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15252\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15266\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15280\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16515\",\"type\":\"GroupFilter\"},{\"id\":\"16516\",\"type\":\"GroupFilter\"},{\"id\":\"16517\",\"type\":\"GroupFilter\"},{\"id\":\"16518\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16519\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15265\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16521\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15279\",\"type\":\"GroupFilter\"},{\"id\":\"15280\",\"type\":\"GroupFilter\"},{\"id\":\"15281\",\"type\":\"GroupFilter\"},{\"id\":\"15282\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15283\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15262\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16522\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15277\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16527\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15264\",\"type\":\"GroupFilter\"},{\"id\":\"15265\",\"type\":\"GroupFilter\"},{\"id\":\"15266\",\"type\":\"GroupFilter\"},{\"id\":\"15267\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15268\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16516\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15251\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15249\",\"type\":\"GroupFilter\"},{\"id\":\"15250\",\"type\":\"GroupFilter\"},{\"id\":\"15251\",\"type\":\"GroupFilter\"},{\"id\":\"15252\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15253\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15274\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15259\",\"type\":\"GroupFilter\"},{\"id\":\"15260\",\"type\":\"GroupFilter\"},{\"id\":\"15261\",\"type\":\"GroupFilter\"},{\"id\":\"15262\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15263\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16502\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15269\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16523\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16512\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15271\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15259\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16511\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16520\",\"type\":\"GroupFilter\"},{\"id\":\"16521\",\"type\":\"GroupFilter\"},{\"id\":\"16522\",\"type\":\"GroupFilter\"},{\"id\":\"16523\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16524\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15279\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16510\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16526\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16525\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15272\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16531\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15261\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16507\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16505\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15276\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15257\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16506\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15269\",\"type\":\"GroupFilter\"},{\"id\":\"15270\",\"type\":\"GroupFilter\"},{\"id\":\"15271\",\"type\":\"GroupFilter\"},{\"id\":\"15272\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15273\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16513\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15256\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16501\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15260\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16500\",\"type\":\"GroupFilter\"},{\"id\":\"16501\",\"type\":\"GroupFilter\"},{\"id\":\"16502\",\"type\":\"GroupFilter\"},{\"id\":\"16503\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16504\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15281\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15255\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16528\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15254\",\"type\":\"GroupFilter\"},{\"id\":\"15255\",\"type\":\"GroupFilter\"},{\"id\":\"15256\",\"type\":\"GroupFilter\"},{\"id\":\"15257\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15258\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16508\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16532\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16515\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15274\",\"type\":\"GroupFilter\"},{\"id\":\"15275\",\"type\":\"GroupFilter\"},{\"id\":\"15276\",\"type\":\"GroupFilter\"},{\"id\":\"15277\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15278\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":{\"id\":\"17874\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"None\"},\"id\":\"17875\",\"type\":\"Button\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14828\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14829\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14826\",\"type\":\"GroupFilter\"},{\"id\":\"14827\",\"type\":\"GroupFilter\"},{\"id\":\"14828\",\"type\":\"GroupFilter\"},{\"id\":\"14829\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14830\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14831\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14832\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14833\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14834\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14831\",\"type\":\"GroupFilter\"},{\"id\":\"14832\",\"type\":\"GroupFilter\"},{\"id\":\"14833\",\"type\":\"GroupFilter\"},{\"id\":\"14834\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14835\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14836\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14837\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14838\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14839\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14836\",\"type\":\"GroupFilter\"},{\"id\":\"14837\",\"type\":\"GroupFilter\"},{\"id\":\"14838\",\"type\":\"GroupFilter\"},{\"id\":\"14839\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14840\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14842\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14843\",\"type\":\"Scatter\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"17869\",\"type\":\"CheckboxButtonGroup\"},\"glyph0\":{\"id\":\"14844\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"14848\",\"type\":\"GlyphRenderer\"},\"glyph10\":{\"id\":\"14884\",\"type\":\"GlyphRenderer\"},\"glyph100\":{\"id\":\"16106\",\"type\":\"GlyphRenderer\"},\"glyph101\":{\"id\":\"16110\",\"type\":\"GlyphRenderer\"},\"glyph102\":{\"id\":\"16114\",\"type\":\"GlyphRenderer\"},\"glyph103\":{\"id\":\"16118\",\"type\":\"GlyphRenderer\"},\"glyph104\":{\"id\":\"16122\",\"type\":\"GlyphRenderer\"},\"glyph105\":{\"id\":\"16126\",\"type\":\"GlyphRenderer\"},\"glyph106\":{\"id\":\"16130\",\"type\":\"GlyphRenderer\"},\"glyph107\":{\"id\":\"16134\",\"type\":\"GlyphRenderer\"},\"glyph108\":{\"id\":\"16138\",\"type\":\"GlyphRenderer\"},\"glyph109\":{\"id\":\"16142\",\"type\":\"GlyphRenderer\"},\"glyph11\":{\"id\":\"14888\",\"type\":\"GlyphRenderer\"},\"glyph110\":{\"id\":\"16146\",\"type\":\"GlyphRenderer\"},\"glyph111\":{\"id\":\"16150\",\"type\":\"GlyphRenderer\"},\"glyph112\":{\"id\":\"16154\",\"type\":\"GlyphRenderer\"},\"glyph113\":{\"id\":\"16158\",\"type\":\"GlyphRenderer\"},\"glyph114\":{\"id\":\"16162\",\"type\":\"GlyphRenderer\"},\"glyph115\":{\"id\":\"16166\",\"type\":\"GlyphRenderer\"},\"glyph116\":{\"id\":\"16170\",\"type\":\"GlyphRenderer\"},\"glyph117\":{\"id\":\"16174\",\"type\":\"GlyphRenderer\"},\"glyph118\":{\"id\":\"16178\",\"type\":\"GlyphRenderer\"},\"glyph119\":{\"id\":\"16182\",\"type\":\"GlyphRenderer\"},\"glyph12\":{\"id\":\"14892\",\"type\":\"GlyphRenderer\"},\"glyph120\":{\"id\":\"16186\",\"type\":\"GlyphRenderer\"},\"glyph121\":{\"id\":\"16190\",\"type\":\"GlyphRenderer\"},\"glyph122\":{\"id\":\"16194\",\"type\":\"GlyphRenderer\"},\"glyph123\":{\"id\":\"16198\",\"type\":\"GlyphRenderer\"},\"glyph124\":{\"id\":\"16202\",\"type\":\"GlyphRenderer\"},\"glyph125\":{\"id\":\"16206\",\"type\":\"GlyphRenderer\"},\"glyph126\":{\"id\":\"16210\",\"type\":\"GlyphRenderer\"},\"glyph127\":{\"id\":\"16214\",\"type\":\"GlyphRenderer\"},\"glyph128\":{\"id\":\"16218\",\"type\":\"GlyphRenderer\"},\"glyph129\":{\"id\":\"16222\",\"type\":\"GlyphRenderer\"},\"glyph13\":{\"id\":\"14896\",\"type\":\"GlyphRenderer\"},\"glyph130\":{\"id\":\"16226\",\"type\":\"GlyphRenderer\"},\"glyph131\":{\"id\":\"16230\",\"type\":\"GlyphRenderer\"},\"glyph132\":{\"id\":\"16234\",\"type\":\"GlyphRenderer\"},\"glyph133\":{\"id\":\"16238\",\"type\":\"GlyphRenderer\"},\"glyph134\":{\"id\":\"16242\",\"type\":\"GlyphRenderer\"},\"glyph135\":{\"id\":\"16246\",\"type\":\"GlyphRenderer\"},\"glyph136\":{\"id\":\"16250\",\"type\":\"GlyphRenderer\"},\"glyph137\":{\"id\":\"16254\",\"type\":\"GlyphRenderer\"},\"glyph138\":{\"id\":\"16258\",\"type\":\"GlyphRenderer\"},\"glyph139\":{\"id\":\"16262\",\"type\":\"GlyphRenderer\"},\"glyph14\":{\"id\":\"14900\",\"type\":\"GlyphRenderer\"},\"glyph140\":{\"id\":\"16266\",\"type\":\"GlyphRenderer\"},\"glyph141\":{\"id\":\"16270\",\"type\":\"GlyphRenderer\"},\"glyph142\":{\"id\":\"16274\",\"type\":\"GlyphRenderer\"},\"glyph143\":{\"id\":\"16278\",\"type\":\"GlyphRenderer\"},\"glyph144\":{\"id\":\"16743\",\"type\":\"GlyphRenderer\"},\"glyph145\":{\"id\":\"16747\",\"type\":\"GlyphRenderer\"},\"glyph146\":{\"id\":\"16751\",\"type\":\"GlyphRenderer\"},\"glyph147\":{\"id\":\"16755\",\"type\":\"GlyphRenderer\"},\"glyph148\":{\"id\":\"16759\",\"type\":\"GlyphRenderer\"},\"glyph149\":{\"id\":\"16763\",\"type\":\"GlyphRenderer\"},\"glyph15\":{\"id\":\"14904\",\"type\":\"GlyphRenderer\"},\"glyph150\":{\"id\":\"16767\",\"type\":\"GlyphRenderer\"},\"glyph151\":{\"id\":\"16771\",\"type\":\"GlyphRenderer\"},\"glyph152\":{\"id\":\"16775\",\"type\":\"GlyphRenderer\"},\"glyph153\":{\"id\":\"16779\",\"type\":\"GlyphRenderer\"},\"glyph154\":{\"id\":\"16783\",\"type\":\"GlyphRenderer\"},\"glyph155\":{\"id\":\"16787\",\"type\":\"GlyphRenderer\"},\"glyph156\":{\"id\":\"16791\",\"type\":\"GlyphRenderer\"},\"glyph157\":{\"id\":\"16795\",\"type\":\"GlyphRenderer\"},\"glyph158\":{\"id\":\"16799\",\"type\":\"GlyphRenderer\"},\"glyph159\":{\"id\":\"16803\",\"type\":\"GlyphRenderer\"},\"glyph16\":{\"id\":\"14908\",\"type\":\"GlyphRenderer\"},\"glyph160\":{\"id\":\"16807\",\"type\":\"GlyphRenderer\"},\"glyph161\":{\"id\":\"16811\",\"type\":\"GlyphRenderer\"},\"glyph162\":{\"id\":\"16815\",\"type\":\"GlyphRenderer\"},\"glyph163\":{\"id\":\"16819\",\"type\":\"GlyphRenderer\"},\"glyph164\":{\"id\":\"16823\",\"type\":\"GlyphRenderer\"},\"glyph165\":{\"id\":\"16827\",\"type\":\"GlyphRenderer\"},\"glyph166\":{\"id\":\"16831\",\"type\":\"GlyphRenderer\"},\"glyph167\":{\"id\":\"16835\",\"type\":\"GlyphRenderer\"},\"glyph168\":{\"id\":\"16839\",\"type\":\"GlyphRenderer\"},\"glyph169\":{\"id\":\"16843\",\"type\":\"GlyphRenderer\"},\"glyph17\":{\"id\":\"14912\",\"type\":\"GlyphRenderer\"},\"glyph170\":{\"id\":\"16847\",\"type\":\"GlyphRenderer\"},\"glyph171\":{\"id\":\"16851\",\"type\":\"GlyphRenderer\"},\"glyph172\":{\"id\":\"16855\",\"type\":\"GlyphRenderer\"},\"glyph173\":{\"id\":\"16859\",\"type\":\"GlyphRenderer\"},\"glyph174\":{\"id\":\"16863\",\"type\":\"GlyphRenderer\"},\"glyph175\":{\"id\":\"16867\",\"type\":\"GlyphRenderer\"},\"glyph176\":{\"id\":\"16871\",\"type\":\"GlyphRenderer\"},\"glyph177\":{\"id\":\"16875\",\"type\":\"GlyphRenderer\"},\"glyph178\":{\"id\":\"16879\",\"type\":\"GlyphRenderer\"},\"glyph179\":{\"id\":\"16883\",\"type\":\"GlyphRenderer\"},\"glyph18\":{\"id\":\"14916\",\"type\":\"GlyphRenderer\"},\"glyph180\":{\"id\":\"16887\",\"type\":\"GlyphRenderer\"},\"glyph181\":{\"id\":\"16891\",\"type\":\"GlyphRenderer\"},\"glyph182\":{\"id\":\"16895\",\"type\":\"GlyphRenderer\"},\"glyph183\":{\"id\":\"16899\",\"type\":\"GlyphRenderer\"},\"glyph184\":{\"id\":\"16903\",\"type\":\"GlyphRenderer\"},\"glyph185\":{\"id\":\"16907\",\"type\":\"GlyphRenderer\"},\"glyph186\":{\"id\":\"16911\",\"type\":\"GlyphRenderer\"},\"glyph187\":{\"id\":\"16915\",\"type\":\"GlyphRenderer\"},\"glyph188\":{\"id\":\"16919\",\"type\":\"GlyphRenderer\"},\"glyph189\":{\"id\":\"16923\",\"type\":\"GlyphRenderer\"},\"glyph19\":{\"id\":\"14920\",\"type\":\"GlyphRenderer\"},\"glyph190\":{\"id\":\"16927\",\"type\":\"GlyphRenderer\"},\"glyph191\":{\"id\":\"16931\",\"type\":\"GlyphRenderer\"},\"glyph192\":{\"id\":\"17416\",\"type\":\"GlyphRenderer\"},\"glyph193\":{\"id\":\"17420\",\"type\":\"GlyphRenderer\"},\"glyph194\":{\"id\":\"17424\",\"type\":\"GlyphRenderer\"},\"glyph195\":{\"id\":\"17428\",\"type\":\"GlyphRenderer\"},\"glyph196\":{\"id\":\"17432\",\"type\":\"GlyphRenderer\"},\"glyph197\":{\"id\":\"17436\",\"type\":\"GlyphRenderer\"},\"glyph198\":{\"id\":\"17440\",\"type\":\"GlyphRenderer\"},\"glyph199\":{\"id\":\"17444\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"14852\",\"type\":\"GlyphRenderer\"},\"glyph20\":{\"id\":\"14924\",\"type\":\"GlyphRenderer\"},\"glyph200\":{\"id\":\"17448\",\"type\":\"GlyphRenderer\"},\"glyph201\":{\"id\":\"17452\",\"type\":\"GlyphRenderer\"},\"glyph202\":{\"id\":\"17456\",\"type\":\"GlyphRenderer\"},\"glyph203\":{\"id\":\"17460\",\"type\":\"GlyphRenderer\"},\"glyph204\":{\"id\":\"17464\",\"type\":\"GlyphRenderer\"},\"glyph205\":{\"id\":\"17468\",\"type\":\"GlyphRenderer\"},\"glyph206\":{\"id\":\"17472\",\"type\":\"GlyphRenderer\"},\"glyph207\":{\"id\":\"17476\",\"type\":\"GlyphRenderer\"},\"glyph208\":{\"id\":\"17480\",\"type\":\"GlyphRenderer\"},\"glyph209\":{\"id\":\"17484\",\"type\":\"GlyphRenderer\"},\"glyph21\":{\"id\":\"14928\",\"type\":\"GlyphRenderer\"},\"glyph210\":{\"id\":\"17488\",\"type\":\"GlyphRenderer\"},\"glyph211\":{\"id\":\"17492\",\"type\":\"GlyphRenderer\"},\"glyph212\":{\"id\":\"17496\",\"type\":\"GlyphRenderer\"},\"glyph213\":{\"id\":\"17500\",\"type\":\"GlyphRenderer\"},\"glyph214\":{\"id\":\"17504\",\"type\":\"GlyphRenderer\"},\"glyph215\":{\"id\":\"17508\",\"type\":\"GlyphRenderer\"},\"glyph216\":{\"id\":\"17512\",\"type\":\"GlyphRenderer\"},\"glyph217\":{\"id\":\"17516\",\"type\":\"GlyphRenderer\"},\"glyph218\":{\"id\":\"17520\",\"type\":\"GlyphRenderer\"},\"glyph219\":{\"id\":\"17524\",\"type\":\"GlyphRenderer\"},\"glyph22\":{\"id\":\"14932\",\"type\":\"GlyphRenderer\"},\"glyph220\":{\"id\":\"17528\",\"type\":\"GlyphRenderer\"},\"glyph221\":{\"id\":\"17532\",\"type\":\"GlyphRenderer\"},\"glyph222\":{\"id\":\"17536\",\"type\":\"GlyphRenderer\"},\"glyph223\":{\"id\":\"17540\",\"type\":\"GlyphRenderer\"},\"glyph224\":{\"id\":\"17544\",\"type\":\"GlyphRenderer\"},\"glyph225\":{\"id\":\"17548\",\"type\":\"GlyphRenderer\"},\"glyph226\":{\"id\":\"17552\",\"type\":\"GlyphRenderer\"},\"glyph227\":{\"id\":\"17556\",\"type\":\"GlyphRenderer\"},\"glyph228\":{\"id\":\"17560\",\"type\":\"GlyphRenderer\"},\"glyph229\":{\"id\":\"17564\",\"type\":\"GlyphRenderer\"},\"glyph23\":{\"id\":\"14936\",\"type\":\"GlyphRenderer\"},\"glyph230\":{\"id\":\"17568\",\"type\":\"GlyphRenderer\"},\"glyph231\":{\"id\":\"17572\",\"type\":\"GlyphRenderer\"},\"glyph232\":{\"id\":\"17576\",\"type\":\"GlyphRenderer\"},\"glyph233\":{\"id\":\"17580\",\"type\":\"GlyphRenderer\"},\"glyph234\":{\"id\":\"17584\",\"type\":\"GlyphRenderer\"},\"glyph235\":{\"id\":\"17588\",\"type\":\"GlyphRenderer\"},\"glyph236\":{\"id\":\"17592\",\"type\":\"GlyphRenderer\"},\"glyph237\":{\"id\":\"17596\",\"type\":\"GlyphRenderer\"},\"glyph238\":{\"id\":\"17600\",\"type\":\"GlyphRenderer\"},\"glyph239\":{\"id\":\"17604\",\"type\":\"GlyphRenderer\"},\"glyph24\":{\"id\":\"14940\",\"type\":\"GlyphRenderer\"},\"glyph25\":{\"id\":\"14944\",\"type\":\"GlyphRenderer\"},\"glyph26\":{\"id\":\"14948\",\"type\":\"GlyphRenderer\"},\"glyph27\":{\"id\":\"14952\",\"type\":\"GlyphRenderer\"},\"glyph28\":{\"id\":\"14956\",\"type\":\"GlyphRenderer\"},\"glyph29\":{\"id\":\"14960\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"14856\",\"type\":\"GlyphRenderer\"},\"glyph30\":{\"id\":\"14964\",\"type\":\"GlyphRenderer\"},\"glyph31\":{\"id\":\"14968\",\"type\":\"GlyphRenderer\"},\"glyph32\":{\"id\":\"14972\",\"type\":\"GlyphRenderer\"},\"glyph33\":{\"id\":\"14976\",\"type\":\"GlyphRenderer\"},\"glyph34\":{\"id\":\"14980\",\"type\":\"GlyphRenderer\"},\"glyph35\":{\"id\":\"14984\",\"type\":\"GlyphRenderer\"},\"glyph36\":{\"id\":\"14988\",\"type\":\"GlyphRenderer\"},\"glyph37\":{\"id\":\"14992\",\"type\":\"GlyphRenderer\"},\"glyph38\":{\"id\":\"14996\",\"type\":\"GlyphRenderer\"},\"glyph39\":{\"id\":\"15000\",\"type\":\"GlyphRenderer\"},\"glyph4\":{\"id\":\"14860\",\"type\":\"GlyphRenderer\"},\"glyph40\":{\"id\":\"15004\",\"type\":\"GlyphRenderer\"},\"glyph41\":{\"id\":\"15008\",\"type\":\"GlyphRenderer\"},\"glyph42\":{\"id\":\"15012\",\"type\":\"GlyphRenderer\"},\"glyph43\":{\"id\":\"15016\",\"type\":\"GlyphRenderer\"},\"glyph44\":{\"id\":\"15020\",\"type\":\"GlyphRenderer\"},\"glyph45\":{\"id\":\"15024\",\"type\":\"GlyphRenderer\"},\"glyph46\":{\"id\":\"15028\",\"type\":\"GlyphRenderer\"},\"glyph47\":{\"id\":\"15032\",\"type\":\"GlyphRenderer\"},\"glyph48\":{\"id\":\"15457\",\"type\":\"GlyphRenderer\"},\"glyph49\":{\"id\":\"15461\",\"type\":\"GlyphRenderer\"},\"glyph5\":{\"id\":\"14864\",\"type\":\"GlyphRenderer\"},\"glyph50\":{\"id\":\"15465\",\"type\":\"GlyphRenderer\"},\"glyph51\":{\"id\":\"15469\",\"type\":\"GlyphRenderer\"},\"glyph52\":{\"id\":\"15473\",\"type\":\"GlyphRenderer\"},\"glyph53\":{\"id\":\"15477\",\"type\":\"GlyphRenderer\"},\"glyph54\":{\"id\":\"15481\",\"type\":\"GlyphRenderer\"},\"glyph55\":{\"id\":\"15485\",\"type\":\"GlyphRenderer\"},\"glyph56\":{\"id\":\"15489\",\"type\":\"GlyphRenderer\"},\"glyph57\":{\"id\":\"15493\",\"type\":\"GlyphRenderer\"},\"glyph58\":{\"id\":\"15497\",\"type\":\"GlyphRenderer\"},\"glyph59\":{\"id\":\"15501\",\"type\":\"GlyphRenderer\"},\"glyph6\":{\"id\":\"14868\",\"type\":\"GlyphRenderer\"},\"glyph60\":{\"id\":\"15505\",\"type\":\"GlyphRenderer\"},\"glyph61\":{\"id\":\"15509\",\"type\":\"GlyphRenderer\"},\"glyph62\":{\"id\":\"15513\",\"type\":\"GlyphRenderer\"},\"glyph63\":{\"id\":\"15517\",\"type\":\"GlyphRenderer\"},\"glyph64\":{\"id\":\"15521\",\"type\":\"GlyphRenderer\"},\"glyph65\":{\"id\":\"15525\",\"type\":\"GlyphRenderer\"},\"glyph66\":{\"id\":\"15529\",\"type\":\"GlyphRenderer\"},\"glyph67\":{\"id\":\"15533\",\"type\":\"GlyphRenderer\"},\"glyph68\":{\"id\":\"15537\",\"type\":\"GlyphRenderer\"},\"glyph69\":{\"id\":\"15541\",\"type\":\"GlyphRenderer\"},\"glyph7\":{\"id\":\"14872\",\"type\":\"GlyphRenderer\"},\"glyph70\":{\"id\":\"15545\",\"type\":\"GlyphRenderer\"},\"glyph71\":{\"id\":\"15549\",\"type\":\"GlyphRenderer\"},\"glyph72\":{\"id\":\"15553\",\"type\":\"GlyphRenderer\"},\"glyph73\":{\"id\":\"15557\",\"type\":\"GlyphRenderer\"},\"glyph74\":{\"id\":\"15561\",\"type\":\"GlyphRenderer\"},\"glyph75\":{\"id\":\"15565\",\"type\":\"GlyphRenderer\"},\"glyph76\":{\"id\":\"15569\",\"type\":\"GlyphRenderer\"},\"glyph77\":{\"id\":\"15573\",\"type\":\"GlyphRenderer\"},\"glyph78\":{\"id\":\"15577\",\"type\":\"GlyphRenderer\"},\"glyph79\":{\"id\":\"15581\",\"type\":\"GlyphRenderer\"},\"glyph8\":{\"id\":\"14876\",\"type\":\"GlyphRenderer\"},\"glyph80\":{\"id\":\"15585\",\"type\":\"GlyphRenderer\"},\"glyph81\":{\"id\":\"15589\",\"type\":\"GlyphRenderer\"},\"glyph82\":{\"id\":\"15593\",\"type\":\"GlyphRenderer\"},\"glyph83\":{\"id\":\"15597\",\"type\":\"GlyphRenderer\"},\"glyph84\":{\"id\":\"15601\",\"type\":\"GlyphRenderer\"},\"glyph85\":{\"id\":\"15605\",\"type\":\"GlyphRenderer\"},\"glyph86\":{\"id\":\"15609\",\"type\":\"GlyphRenderer\"},\"glyph87\":{\"id\":\"15613\",\"type\":\"GlyphRenderer\"},\"glyph88\":{\"id\":\"15617\",\"type\":\"GlyphRenderer\"},\"glyph89\":{\"id\":\"15621\",\"type\":\"GlyphRenderer\"},\"glyph9\":{\"id\":\"14880\",\"type\":\"GlyphRenderer\"},\"glyph90\":{\"id\":\"15625\",\"type\":\"GlyphRenderer\"},\"glyph91\":{\"id\":\"15629\",\"type\":\"GlyphRenderer\"},\"glyph92\":{\"id\":\"15633\",\"type\":\"GlyphRenderer\"},\"glyph93\":{\"id\":\"15637\",\"type\":\"GlyphRenderer\"},\"glyph94\":{\"id\":\"15641\",\"type\":\"GlyphRenderer\"},\"glyph95\":{\"id\":\"15645\",\"type\":\"GlyphRenderer\"},\"glyph96\":{\"id\":\"16090\",\"type\":\"GlyphRenderer\"},\"glyph97\":{\"id\":\"16094\",\"type\":\"GlyphRenderer\"},\"glyph98\":{\"id\":\"16098\",\"type\":\"GlyphRenderer\"},\"glyph99\":{\"id\":\"16102\",\"type\":\"GlyphRenderer\"},\"time_slider\":{\"id\":\"17868\",\"type\":\"Slider\"}},\"code\":\"checkbox.active = [0, 1, 2, 3];var glyphs = [glyph0, glyph1, glyph2, glyph3, glyph4, glyph5, glyph6, glyph7, glyph8, glyph9, glyph10, glyph11, glyph12, glyph13, glyph14, glyph15, glyph16, glyph17, glyph18, glyph19, glyph20, glyph21, glyph22, glyph23, glyph24, glyph25, glyph26, glyph27, glyph28, glyph29, glyph30, glyph31, glyph32, glyph33, glyph34, glyph35, glyph36, glyph37, glyph38, glyph39, glyph40, glyph41, glyph42, glyph43, glyph44, glyph45, glyph46, glyph47, glyph48, glyph49, glyph50, glyph51, glyph52, glyph53, glyph54, glyph55, glyph56, glyph57, glyph58, glyph59, glyph60, glyph61, glyph62, glyph63, glyph64, glyph65, glyph66, glyph67, glyph68, glyph69, glyph70, glyph71, glyph72, glyph73, glyph74, glyph75, glyph76, glyph77, glyph78, glyph79, glyph80, glyph81, glyph82, glyph83, glyph84, glyph85, glyph86, glyph87, glyph88, glyph89, glyph90, glyph91, glyph92, glyph93, glyph94, glyph95, glyph96, glyph97, glyph98, glyph99, glyph100, glyph101, glyph102, glyph103, glyph104, glyph105, glyph106, glyph107, glyph108, glyph109, glyph110, glyph111, glyph112, glyph113, glyph114, glyph115, glyph116, glyph117, glyph118, glyph119, glyph120, glyph121, glyph122, glyph123, glyph124, glyph125, glyph126, glyph127, glyph128, glyph129, glyph130, glyph131, glyph132, glyph133, glyph134, glyph135, glyph136, glyph137, glyph138, glyph139, glyph140, glyph141, glyph142, glyph143, glyph144, glyph145, glyph146, glyph147, glyph148, glyph149, glyph150, glyph151, glyph152, glyph153, glyph154, glyph155, glyph156, glyph157, glyph158, glyph159, glyph160, glyph161, glyph162, glyph163, glyph164, glyph165, glyph166, glyph167, glyph168, glyph169, glyph170, glyph171, glyph172, glyph173, glyph174, glyph175, glyph176, glyph177, glyph178, glyph179, glyph180, glyph181, glyph182, glyph183, glyph184, glyph185, glyph186, glyph187, glyph188, glyph189, glyph190, glyph191, glyph192, glyph193, glyph194, glyph195, glyph196, glyph197, glyph198, glyph199, glyph200, glyph201, glyph202, glyph203, glyph204, glyph205, glyph206, glyph207, glyph208, glyph209, glyph210, glyph211, glyph212, glyph213, glyph214, glyph215, glyph216, glyph217, glyph218, glyph219, glyph220, glyph221, glyph222, glyph223, glyph224, glyph225, glyph226, glyph227, glyph228, glyph229, glyph230, glyph231, glyph232, glyph233, glyph234, glyph235, glyph236, glyph237, glyph238, glyph239];var overtime = [[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191],[192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239]];var runs = [[0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236],[1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237],[2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238],[3,7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83,87,91,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,163,167,171,175,179,183,187,191,195,199,203,207,211,215,219,223,227,231,235,239]];\\n glyphs.forEach(function(g) {\\n g.visible = false;\\n })\\n // union function\\n function union_arrays(x, y) {\\n var obj = {};\\n for (var i = x.length-1; i >= 0; -- i)\\n obj[x[i]] = x[i];\\n for (var i = y.length-1; i >= 0; -- i)\\n obj[y[i]] = y[i];\\n var res = []\\n for (var k in obj) {\\n if (obj.hasOwnProperty(k)) // <-- optional\\n res.push(obj[k]);\\n }\\n return res;\\n }\\n console.log(\\\"Timeslider: \\\" + time_slider.value);\\n console.log(\\\"Checkbox: \\\" + checkbox.active);var slider_labels = ['39.12', '53.78', '126.60', '323.54', '895.87'];console.log(\\\"Detected slider_labels: \\\" + slider_labels);time_slider.title = \\\"Until wallclocktime \\\" + slider_labels[time_slider.value - 1] + \\\". Step no.\\\"; \\n var activate = [];\\n // if we want multiple checkboxes at the same time, we need to combine the arrays\\n checkbox.active.forEach(function(c) {\\n activate = union_arrays(activate, runs[c]);\\n })\\n // now the intersection of timeslider-activated and checkbox-activated\\n activate = activate.filter(value => -1 !== overtime[time_slider.value - 1].indexOf(value));\\n activate.forEach(function(idx) {\\n glyphs[idx].visible = true;\\n })\\n \"},\"id\":\"17872\",\"type\":\"CustomJS\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14842\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14843\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14605\",\"type\":\"CDSView\"}},\"id\":\"14844\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14914\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14915\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14695\",\"type\":\"CDSView\"}},\"id\":\"14916\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14846\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14847\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14846\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14847\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14610\",\"type\":\"CDSView\"}},\"id\":\"14848\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14915\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14850\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14851\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14850\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14851\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14615\",\"type\":\"CDSView\"}},\"id\":\"14852\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"text\":\"Showing only configurations evaluated in:\"},\"id\":\"17871\",\"type\":\"Div\"},{\"attributes\":{\"active\":[0,1,2,3],\"callback\":{\"id\":\"17870\",\"type\":\"CustomJS\"},\"labels\":[\"budget 370.4\",\"budget 1111.1\",\"budget 3333.3\",\"budget 10000\"]},\"id\":\"17869\",\"type\":\"CheckboxButtonGroup\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14914\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17868\",\"type\":\"Slider\"}]},\"id\":\"17879\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14854\",\"type\":\"Scatter\"},{\"attributes\":{\"callback\":{\"id\":\"17872\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"All\"},\"id\":\"17873\",\"type\":\"Button\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14855\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14854\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14855\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14620\",\"type\":\"CDSView\"}},\"id\":\"14856\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15006\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15007\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14810\",\"type\":\"CDSView\"}},\"id\":\"15008\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"17869\",\"type\":\"CheckboxButtonGroup\"},\"glyph0\":{\"id\":\"14844\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"14848\",\"type\":\"GlyphRenderer\"},\"glyph10\":{\"id\":\"14884\",\"type\":\"GlyphRenderer\"},\"glyph100\":{\"id\":\"16106\",\"type\":\"GlyphRenderer\"},\"glyph101\":{\"id\":\"16110\",\"type\":\"GlyphRenderer\"},\"glyph102\":{\"id\":\"16114\",\"type\":\"GlyphRenderer\"},\"glyph103\":{\"id\":\"16118\",\"type\":\"GlyphRenderer\"},\"glyph104\":{\"id\":\"16122\",\"type\":\"GlyphRenderer\"},\"glyph105\":{\"id\":\"16126\",\"type\":\"GlyphRenderer\"},\"glyph106\":{\"id\":\"16130\",\"type\":\"GlyphRenderer\"},\"glyph107\":{\"id\":\"16134\",\"type\":\"GlyphRenderer\"},\"glyph108\":{\"id\":\"16138\",\"type\":\"GlyphRenderer\"},\"glyph109\":{\"id\":\"16142\",\"type\":\"GlyphRenderer\"},\"glyph11\":{\"id\":\"14888\",\"type\":\"GlyphRenderer\"},\"glyph110\":{\"id\":\"16146\",\"type\":\"GlyphRenderer\"},\"glyph111\":{\"id\":\"16150\",\"type\":\"GlyphRenderer\"},\"glyph112\":{\"id\":\"16154\",\"type\":\"GlyphRenderer\"},\"glyph113\":{\"id\":\"16158\",\"type\":\"GlyphRenderer\"},\"glyph114\":{\"id\":\"16162\",\"type\":\"GlyphRenderer\"},\"glyph115\":{\"id\":\"16166\",\"type\":\"GlyphRenderer\"},\"glyph116\":{\"id\":\"16170\",\"type\":\"GlyphRenderer\"},\"glyph117\":{\"id\":\"16174\",\"type\":\"GlyphRenderer\"},\"glyph118\":{\"id\":\"16178\",\"type\":\"GlyphRenderer\"},\"glyph119\":{\"id\":\"16182\",\"type\":\"GlyphRenderer\"},\"glyph12\":{\"id\":\"14892\",\"type\":\"GlyphRenderer\"},\"glyph120\":{\"id\":\"16186\",\"type\":\"GlyphRenderer\"},\"glyph121\":{\"id\":\"16190\",\"type\":\"GlyphRenderer\"},\"glyph122\":{\"id\":\"16194\",\"type\":\"GlyphRenderer\"},\"glyph123\":{\"id\":\"16198\",\"type\":\"GlyphRenderer\"},\"glyph124\":{\"id\":\"16202\",\"type\":\"GlyphRenderer\"},\"glyph125\":{\"id\":\"16206\",\"type\":\"GlyphRenderer\"},\"glyph126\":{\"id\":\"16210\",\"type\":\"GlyphRenderer\"},\"glyph127\":{\"id\":\"16214\",\"type\":\"GlyphRenderer\"},\"glyph128\":{\"id\":\"16218\",\"type\":\"GlyphRenderer\"},\"glyph129\":{\"id\":\"16222\",\"type\":\"GlyphRenderer\"},\"glyph13\":{\"id\":\"14896\",\"type\":\"GlyphRenderer\"},\"glyph130\":{\"id\":\"16226\",\"type\":\"GlyphRenderer\"},\"glyph131\":{\"id\":\"16230\",\"type\":\"GlyphRenderer\"},\"glyph132\":{\"id\":\"16234\",\"type\":\"GlyphRenderer\"},\"glyph133\":{\"id\":\"16238\",\"type\":\"GlyphRenderer\"},\"glyph134\":{\"id\":\"16242\",\"type\":\"GlyphRenderer\"},\"glyph135\":{\"id\":\"16246\",\"type\":\"GlyphRenderer\"},\"glyph136\":{\"id\":\"16250\",\"type\":\"GlyphRenderer\"},\"glyph137\":{\"id\":\"16254\",\"type\":\"GlyphRenderer\"},\"glyph138\":{\"id\":\"16258\",\"type\":\"GlyphRenderer\"},\"glyph139\":{\"id\":\"16262\",\"type\":\"GlyphRenderer\"},\"glyph14\":{\"id\":\"14900\",\"type\":\"GlyphRenderer\"},\"glyph140\":{\"id\":\"16266\",\"type\":\"GlyphRenderer\"},\"glyph141\":{\"id\":\"16270\",\"type\":\"GlyphRenderer\"},\"glyph142\":{\"id\":\"16274\",\"type\":\"GlyphRenderer\"},\"glyph143\":{\"id\":\"16278\",\"type\":\"GlyphRenderer\"},\"glyph144\":{\"id\":\"16743\",\"type\":\"GlyphRenderer\"},\"glyph145\":{\"id\":\"16747\",\"type\":\"GlyphRenderer\"},\"glyph146\":{\"id\":\"16751\",\"type\":\"GlyphRenderer\"},\"glyph147\":{\"id\":\"16755\",\"type\":\"GlyphRenderer\"},\"glyph148\":{\"id\":\"16759\",\"type\":\"GlyphRenderer\"},\"glyph149\":{\"id\":\"16763\",\"type\":\"GlyphRenderer\"},\"glyph15\":{\"id\":\"14904\",\"type\":\"GlyphRenderer\"},\"glyph150\":{\"id\":\"16767\",\"type\":\"GlyphRenderer\"},\"glyph151\":{\"id\":\"16771\",\"type\":\"GlyphRenderer\"},\"glyph152\":{\"id\":\"16775\",\"type\":\"GlyphRenderer\"},\"glyph153\":{\"id\":\"16779\",\"type\":\"GlyphRenderer\"},\"glyph154\":{\"id\":\"16783\",\"type\":\"GlyphRenderer\"},\"glyph155\":{\"id\":\"16787\",\"type\":\"GlyphRenderer\"},\"glyph156\":{\"id\":\"16791\",\"type\":\"GlyphRenderer\"},\"glyph157\":{\"id\":\"16795\",\"type\":\"GlyphRenderer\"},\"glyph158\":{\"id\":\"16799\",\"type\":\"GlyphRenderer\"},\"glyph159\":{\"id\":\"16803\",\"type\":\"GlyphRenderer\"},\"glyph16\":{\"id\":\"14908\",\"type\":\"GlyphRenderer\"},\"glyph160\":{\"id\":\"16807\",\"type\":\"GlyphRenderer\"},\"glyph161\":{\"id\":\"16811\",\"type\":\"GlyphRenderer\"},\"glyph162\":{\"id\":\"16815\",\"type\":\"GlyphRenderer\"},\"glyph163\":{\"id\":\"16819\",\"type\":\"GlyphRenderer\"},\"glyph164\":{\"id\":\"16823\",\"type\":\"GlyphRenderer\"},\"glyph165\":{\"id\":\"16827\",\"type\":\"GlyphRenderer\"},\"glyph166\":{\"id\":\"16831\",\"type\":\"GlyphRenderer\"},\"glyph167\":{\"id\":\"16835\",\"type\":\"GlyphRenderer\"},\"glyph168\":{\"id\":\"16839\",\"type\":\"GlyphRenderer\"},\"glyph169\":{\"id\":\"16843\",\"type\":\"GlyphRenderer\"},\"glyph17\":{\"id\":\"14912\",\"type\":\"GlyphRenderer\"},\"glyph170\":{\"id\":\"16847\",\"type\":\"GlyphRenderer\"},\"glyph171\":{\"id\":\"16851\",\"type\":\"GlyphRenderer\"},\"glyph172\":{\"id\":\"16855\",\"type\":\"GlyphRenderer\"},\"glyph173\":{\"id\":\"16859\",\"type\":\"GlyphRenderer\"},\"glyph174\":{\"id\":\"16863\",\"type\":\"GlyphRenderer\"},\"glyph175\":{\"id\":\"16867\",\"type\":\"GlyphRenderer\"},\"glyph176\":{\"id\":\"16871\",\"type\":\"GlyphRenderer\"},\"glyph177\":{\"id\":\"16875\",\"type\":\"GlyphRenderer\"},\"glyph178\":{\"id\":\"16879\",\"type\":\"GlyphRenderer\"},\"glyph179\":{\"id\":\"16883\",\"type\":\"GlyphRenderer\"},\"glyph18\":{\"id\":\"14916\",\"type\":\"GlyphRenderer\"},\"glyph180\":{\"id\":\"16887\",\"type\":\"GlyphRenderer\"},\"glyph181\":{\"id\":\"16891\",\"type\":\"GlyphRenderer\"},\"glyph182\":{\"id\":\"16895\",\"type\":\"GlyphRenderer\"},\"glyph183\":{\"id\":\"16899\",\"type\":\"GlyphRenderer\"},\"glyph184\":{\"id\":\"16903\",\"type\":\"GlyphRenderer\"},\"glyph185\":{\"id\":\"16907\",\"type\":\"GlyphRenderer\"},\"glyph186\":{\"id\":\"16911\",\"type\":\"GlyphRenderer\"},\"glyph187\":{\"id\":\"16915\",\"type\":\"GlyphRenderer\"},\"glyph188\":{\"id\":\"16919\",\"type\":\"GlyphRenderer\"},\"glyph189\":{\"id\":\"16923\",\"type\":\"GlyphRenderer\"},\"glyph19\":{\"id\":\"14920\",\"type\":\"GlyphRenderer\"},\"glyph190\":{\"id\":\"16927\",\"type\":\"GlyphRenderer\"},\"glyph191\":{\"id\":\"16931\",\"type\":\"GlyphRenderer\"},\"glyph192\":{\"id\":\"17416\",\"type\":\"GlyphRenderer\"},\"glyph193\":{\"id\":\"17420\",\"type\":\"GlyphRenderer\"},\"glyph194\":{\"id\":\"17424\",\"type\":\"GlyphRenderer\"},\"glyph195\":{\"id\":\"17428\",\"type\":\"GlyphRenderer\"},\"glyph196\":{\"id\":\"17432\",\"type\":\"GlyphRenderer\"},\"glyph197\":{\"id\":\"17436\",\"type\":\"GlyphRenderer\"},\"glyph198\":{\"id\":\"17440\",\"type\":\"GlyphRenderer\"},\"glyph199\":{\"id\":\"17444\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"14852\",\"type\":\"GlyphRenderer\"},\"glyph20\":{\"id\":\"14924\",\"type\":\"GlyphRenderer\"},\"glyph200\":{\"id\":\"17448\",\"type\":\"GlyphRenderer\"},\"glyph201\":{\"id\":\"17452\",\"type\":\"GlyphRenderer\"},\"glyph202\":{\"id\":\"17456\",\"type\":\"GlyphRenderer\"},\"glyph203\":{\"id\":\"17460\",\"type\":\"GlyphRenderer\"},\"glyph204\":{\"id\":\"17464\",\"type\":\"GlyphRenderer\"},\"glyph205\":{\"id\":\"17468\",\"type\":\"GlyphRenderer\"},\"glyph206\":{\"id\":\"17472\",\"type\":\"GlyphRenderer\"},\"glyph207\":{\"id\":\"17476\",\"type\":\"GlyphRenderer\"},\"glyph208\":{\"id\":\"17480\",\"type\":\"GlyphRenderer\"},\"glyph209\":{\"id\":\"17484\",\"type\":\"GlyphRenderer\"},\"glyph21\":{\"id\":\"14928\",\"type\":\"GlyphRenderer\"},\"glyph210\":{\"id\":\"17488\",\"type\":\"GlyphRenderer\"},\"glyph211\":{\"id\":\"17492\",\"type\":\"GlyphRenderer\"},\"glyph212\":{\"id\":\"17496\",\"type\":\"GlyphRenderer\"},\"glyph213\":{\"id\":\"17500\",\"type\":\"GlyphRenderer\"},\"glyph214\":{\"id\":\"17504\",\"type\":\"GlyphRenderer\"},\"glyph215\":{\"id\":\"17508\",\"type\":\"GlyphRenderer\"},\"glyph216\":{\"id\":\"17512\",\"type\":\"GlyphRenderer\"},\"glyph217\":{\"id\":\"17516\",\"type\":\"GlyphRenderer\"},\"glyph218\":{\"id\":\"17520\",\"type\":\"GlyphRenderer\"},\"glyph219\":{\"id\":\"17524\",\"type\":\"GlyphRenderer\"},\"glyph22\":{\"id\":\"14932\",\"type\":\"GlyphRenderer\"},\"glyph220\":{\"id\":\"17528\",\"type\":\"GlyphRenderer\"},\"glyph221\":{\"id\":\"17532\",\"type\":\"GlyphRenderer\"},\"glyph222\":{\"id\":\"17536\",\"type\":\"GlyphRenderer\"},\"glyph223\":{\"id\":\"17540\",\"type\":\"GlyphRenderer\"},\"glyph224\":{\"id\":\"17544\",\"type\":\"GlyphRenderer\"},\"glyph225\":{\"id\":\"17548\",\"type\":\"GlyphRenderer\"},\"glyph226\":{\"id\":\"17552\",\"type\":\"GlyphRenderer\"},\"glyph227\":{\"id\":\"17556\",\"type\":\"GlyphRenderer\"},\"glyph228\":{\"id\":\"17560\",\"type\":\"GlyphRenderer\"},\"glyph229\":{\"id\":\"17564\",\"type\":\"GlyphRenderer\"},\"glyph23\":{\"id\":\"14936\",\"type\":\"GlyphRenderer\"},\"glyph230\":{\"id\":\"17568\",\"type\":\"GlyphRenderer\"},\"glyph231\":{\"id\":\"17572\",\"type\":\"GlyphRenderer\"},\"glyph232\":{\"id\":\"17576\",\"type\":\"GlyphRenderer\"},\"glyph233\":{\"id\":\"17580\",\"type\":\"GlyphRenderer\"},\"glyph234\":{\"id\":\"17584\",\"type\":\"GlyphRenderer\"},\"glyph235\":{\"id\":\"17588\",\"type\":\"GlyphRenderer\"},\"glyph236\":{\"id\":\"17592\",\"type\":\"GlyphRenderer\"},\"glyph237\":{\"id\":\"17596\",\"type\":\"GlyphRenderer\"},\"glyph238\":{\"id\":\"17600\",\"type\":\"GlyphRenderer\"},\"glyph239\":{\"id\":\"17604\",\"type\":\"GlyphRenderer\"},\"glyph24\":{\"id\":\"14940\",\"type\":\"GlyphRenderer\"},\"glyph25\":{\"id\":\"14944\",\"type\":\"GlyphRenderer\"},\"glyph26\":{\"id\":\"14948\",\"type\":\"GlyphRenderer\"},\"glyph27\":{\"id\":\"14952\",\"type\":\"GlyphRenderer\"},\"glyph28\":{\"id\":\"14956\",\"type\":\"GlyphRenderer\"},\"glyph29\":{\"id\":\"14960\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"14856\",\"type\":\"GlyphRenderer\"},\"glyph30\":{\"id\":\"14964\",\"type\":\"GlyphRenderer\"},\"glyph31\":{\"id\":\"14968\",\"type\":\"GlyphRenderer\"},\"glyph32\":{\"id\":\"14972\",\"type\":\"GlyphRenderer\"},\"glyph33\":{\"id\":\"14976\",\"type\":\"GlyphRenderer\"},\"glyph34\":{\"id\":\"14980\",\"type\":\"GlyphRenderer\"},\"glyph35\":{\"id\":\"14984\",\"type\":\"GlyphRenderer\"},\"glyph36\":{\"id\":\"14988\",\"type\":\"GlyphRenderer\"},\"glyph37\":{\"id\":\"14992\",\"type\":\"GlyphRenderer\"},\"glyph38\":{\"id\":\"14996\",\"type\":\"GlyphRenderer\"},\"glyph39\":{\"id\":\"15000\",\"type\":\"GlyphRenderer\"},\"glyph4\":{\"id\":\"14860\",\"type\":\"GlyphRenderer\"},\"glyph40\":{\"id\":\"15004\",\"type\":\"GlyphRenderer\"},\"glyph41\":{\"id\":\"15008\",\"type\":\"GlyphRenderer\"},\"glyph42\":{\"id\":\"15012\",\"type\":\"GlyphRenderer\"},\"glyph43\":{\"id\":\"15016\",\"type\":\"GlyphRenderer\"},\"glyph44\":{\"id\":\"15020\",\"type\":\"GlyphRenderer\"},\"glyph45\":{\"id\":\"15024\",\"type\":\"GlyphRenderer\"},\"glyph46\":{\"id\":\"15028\",\"type\":\"GlyphRenderer\"},\"glyph47\":{\"id\":\"15032\",\"type\":\"GlyphRenderer\"},\"glyph48\":{\"id\":\"15457\",\"type\":\"GlyphRenderer\"},\"glyph49\":{\"id\":\"15461\",\"type\":\"GlyphRenderer\"},\"glyph5\":{\"id\":\"14864\",\"type\":\"GlyphRenderer\"},\"glyph50\":{\"id\":\"15465\",\"type\":\"GlyphRenderer\"},\"glyph51\":{\"id\":\"15469\",\"type\":\"GlyphRenderer\"},\"glyph52\":{\"id\":\"15473\",\"type\":\"GlyphRenderer\"},\"glyph53\":{\"id\":\"15477\",\"type\":\"GlyphRenderer\"},\"glyph54\":{\"id\":\"15481\",\"type\":\"GlyphRenderer\"},\"glyph55\":{\"id\":\"15485\",\"type\":\"GlyphRenderer\"},\"glyph56\":{\"id\":\"15489\",\"type\":\"GlyphRenderer\"},\"glyph57\":{\"id\":\"15493\",\"type\":\"GlyphRenderer\"},\"glyph58\":{\"id\":\"15497\",\"type\":\"GlyphRenderer\"},\"glyph59\":{\"id\":\"15501\",\"type\":\"GlyphRenderer\"},\"glyph6\":{\"id\":\"14868\",\"type\":\"GlyphRenderer\"},\"glyph60\":{\"id\":\"15505\",\"type\":\"GlyphRenderer\"},\"glyph61\":{\"id\":\"15509\",\"type\":\"GlyphRenderer\"},\"glyph62\":{\"id\":\"15513\",\"type\":\"GlyphRenderer\"},\"glyph63\":{\"id\":\"15517\",\"type\":\"GlyphRenderer\"},\"glyph64\":{\"id\":\"15521\",\"type\":\"GlyphRenderer\"},\"glyph65\":{\"id\":\"15525\",\"type\":\"GlyphRenderer\"},\"glyph66\":{\"id\":\"15529\",\"type\":\"GlyphRenderer\"},\"glyph67\":{\"id\":\"15533\",\"type\":\"GlyphRenderer\"},\"glyph68\":{\"id\":\"15537\",\"type\":\"GlyphRenderer\"},\"glyph69\":{\"id\":\"15541\",\"type\":\"GlyphRenderer\"},\"glyph7\":{\"id\":\"14872\",\"type\":\"GlyphRenderer\"},\"glyph70\":{\"id\":\"15545\",\"type\":\"GlyphRenderer\"},\"glyph71\":{\"id\":\"15549\",\"type\":\"GlyphRenderer\"},\"glyph72\":{\"id\":\"15553\",\"type\":\"GlyphRenderer\"},\"glyph73\":{\"id\":\"15557\",\"type\":\"GlyphRenderer\"},\"glyph74\":{\"id\":\"15561\",\"type\":\"GlyphRenderer\"},\"glyph75\":{\"id\":\"15565\",\"type\":\"GlyphRenderer\"},\"glyph76\":{\"id\":\"15569\",\"type\":\"GlyphRenderer\"},\"glyph77\":{\"id\":\"15573\",\"type\":\"GlyphRenderer\"},\"glyph78\":{\"id\":\"15577\",\"type\":\"GlyphRenderer\"},\"glyph79\":{\"id\":\"15581\",\"type\":\"GlyphRenderer\"},\"glyph8\":{\"id\":\"14876\",\"type\":\"GlyphRenderer\"},\"glyph80\":{\"id\":\"15585\",\"type\":\"GlyphRenderer\"},\"glyph81\":{\"id\":\"15589\",\"type\":\"GlyphRenderer\"},\"glyph82\":{\"id\":\"15593\",\"type\":\"GlyphRenderer\"},\"glyph83\":{\"id\":\"15597\",\"type\":\"GlyphRenderer\"},\"glyph84\":{\"id\":\"15601\",\"type\":\"GlyphRenderer\"},\"glyph85\":{\"id\":\"15605\",\"type\":\"GlyphRenderer\"},\"glyph86\":{\"id\":\"15609\",\"type\":\"GlyphRenderer\"},\"glyph87\":{\"id\":\"15613\",\"type\":\"GlyphRenderer\"},\"glyph88\":{\"id\":\"15617\",\"type\":\"GlyphRenderer\"},\"glyph89\":{\"id\":\"15621\",\"type\":\"GlyphRenderer\"},\"glyph9\":{\"id\":\"14880\",\"type\":\"GlyphRenderer\"},\"glyph90\":{\"id\":\"15625\",\"type\":\"GlyphRenderer\"},\"glyph91\":{\"id\":\"15629\",\"type\":\"GlyphRenderer\"},\"glyph92\":{\"id\":\"15633\",\"type\":\"GlyphRenderer\"},\"glyph93\":{\"id\":\"15637\",\"type\":\"GlyphRenderer\"},\"glyph94\":{\"id\":\"15641\",\"type\":\"GlyphRenderer\"},\"glyph95\":{\"id\":\"15645\",\"type\":\"GlyphRenderer\"},\"glyph96\":{\"id\":\"16090\",\"type\":\"GlyphRenderer\"},\"glyph97\":{\"id\":\"16094\",\"type\":\"GlyphRenderer\"},\"glyph98\":{\"id\":\"16098\",\"type\":\"GlyphRenderer\"},\"glyph99\":{\"id\":\"16102\",\"type\":\"GlyphRenderer\"},\"time_slider\":{\"id\":\"17868\",\"type\":\"Slider\"}},\"code\":\"checkbox.active = [];var glyphs = [glyph0, glyph1, glyph2, glyph3, glyph4, glyph5, glyph6, glyph7, glyph8, glyph9, glyph10, glyph11, glyph12, glyph13, glyph14, glyph15, glyph16, glyph17, glyph18, glyph19, glyph20, glyph21, glyph22, glyph23, glyph24, glyph25, glyph26, glyph27, glyph28, glyph29, glyph30, glyph31, glyph32, glyph33, glyph34, glyph35, glyph36, glyph37, glyph38, glyph39, glyph40, glyph41, glyph42, glyph43, glyph44, glyph45, glyph46, glyph47, glyph48, glyph49, glyph50, glyph51, glyph52, glyph53, glyph54, glyph55, glyph56, glyph57, glyph58, glyph59, glyph60, glyph61, glyph62, glyph63, glyph64, glyph65, glyph66, glyph67, glyph68, glyph69, glyph70, glyph71, glyph72, glyph73, glyph74, glyph75, glyph76, glyph77, glyph78, glyph79, glyph80, glyph81, glyph82, glyph83, glyph84, glyph85, glyph86, glyph87, glyph88, glyph89, glyph90, glyph91, glyph92, glyph93, glyph94, glyph95, glyph96, glyph97, glyph98, glyph99, glyph100, glyph101, glyph102, glyph103, glyph104, glyph105, glyph106, glyph107, glyph108, glyph109, glyph110, glyph111, glyph112, glyph113, glyph114, glyph115, glyph116, glyph117, glyph118, glyph119, glyph120, glyph121, glyph122, glyph123, glyph124, glyph125, glyph126, glyph127, glyph128, glyph129, glyph130, glyph131, glyph132, glyph133, glyph134, glyph135, glyph136, glyph137, glyph138, glyph139, glyph140, glyph141, glyph142, glyph143, glyph144, glyph145, glyph146, glyph147, glyph148, glyph149, glyph150, glyph151, glyph152, glyph153, glyph154, glyph155, glyph156, glyph157, glyph158, glyph159, glyph160, glyph161, glyph162, glyph163, glyph164, glyph165, glyph166, glyph167, glyph168, glyph169, glyph170, glyph171, glyph172, glyph173, glyph174, glyph175, glyph176, glyph177, glyph178, glyph179, glyph180, glyph181, glyph182, glyph183, glyph184, glyph185, glyph186, glyph187, glyph188, glyph189, glyph190, glyph191, glyph192, glyph193, glyph194, glyph195, glyph196, glyph197, glyph198, glyph199, glyph200, glyph201, glyph202, glyph203, glyph204, glyph205, glyph206, glyph207, glyph208, glyph209, glyph210, glyph211, glyph212, glyph213, glyph214, glyph215, glyph216, glyph217, glyph218, glyph219, glyph220, glyph221, glyph222, glyph223, glyph224, glyph225, glyph226, glyph227, glyph228, glyph229, glyph230, glyph231, glyph232, glyph233, glyph234, glyph235, glyph236, glyph237, glyph238, glyph239];var overtime = [[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191],[192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239]];var runs = [[0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236],[1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237],[2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238],[3,7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83,87,91,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,163,167,171,175,179,183,187,191,195,199,203,207,211,215,219,223,227,231,235,239]];\\n glyphs.forEach(function(g) {\\n g.visible = false;\\n })\\n // union function\\n function union_arrays(x, y) {\\n var obj = {};\\n for (var i = x.length-1; i >= 0; -- i)\\n obj[x[i]] = x[i];\\n for (var i = y.length-1; i >= 0; -- i)\\n obj[y[i]] = y[i];\\n var res = []\\n for (var k in obj) {\\n if (obj.hasOwnProperty(k)) // <-- optional\\n res.push(obj[k]);\\n }\\n return res;\\n }\\n console.log(\\\"Timeslider: \\\" + time_slider.value);\\n console.log(\\\"Checkbox: \\\" + checkbox.active);var slider_labels = ['39.12', '53.78', '126.60', '323.54', '895.87'];console.log(\\\"Detected slider_labels: \\\" + slider_labels);time_slider.title = \\\"Until wallclocktime \\\" + slider_labels[time_slider.value - 1] + \\\". Step no.\\\"; \\n var activate = [];\\n // if we want multiple checkboxes at the same time, we need to combine the arrays\\n checkbox.active.forEach(function(c) {\\n activate = union_arrays(activate, runs[c]);\\n })\\n // now the intersection of timeslider-activated and checkbox-activated\\n activate = activate.filter(value => -1 !== overtime[time_slider.value - 1].indexOf(value));\\n activate.forEach(function(idx) {\\n glyphs[idx].visible = true;\\n })\\n \"},\"id\":\"17874\",\"type\":\"CustomJS\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14858\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14859\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14858\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14859\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14625\",\"type\":\"CDSView\"}},\"id\":\"14860\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14910\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14911\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14690\",\"type\":\"CDSView\"}},\"id\":\"14912\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14862\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16793\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16794\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16569\",\"type\":\"CDSView\"}},\"id\":\"16795\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16173\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16813\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16814\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16594\",\"type\":\"CDSView\"}},\"id\":\"16815\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16797\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17313\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17518\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17519\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17307\",\"type\":\"CDSView\"}},\"id\":\"17520\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15444\",\"type\":\"GroupFilter\"},{\"id\":\"15445\",\"type\":\"GroupFilter\"},{\"id\":\"15446\",\"type\":\"GroupFilter\"},{\"id\":\"15447\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15448\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17281\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17320\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16172\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16173\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15956\",\"type\":\"CDSView\"}},\"id\":\"16174\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16857\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16858\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16649\",\"type\":\"CDSView\"}},\"id\":\"16859\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15449\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15631\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15632\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15438\",\"type\":\"CDSView\"}},\"id\":\"15633\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16208\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16858\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17283\",\"type\":\"GroupFilter\"},{\"id\":\"17284\",\"type\":\"GroupFilter\"},{\"id\":\"17285\",\"type\":\"GroupFilter\"},{\"id\":\"17286\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17287\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15620\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16810\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17318\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15587\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16177\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17268\",\"type\":\"GroupFilter\"},{\"id\":\"17269\",\"type\":\"GroupFilter\"},{\"id\":\"17270\",\"type\":\"GroupFilter\"},{\"id\":\"17271\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17272\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17299\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15456\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15619\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16148\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15455\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15603\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16798\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17315\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15464\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16149\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16794\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16160\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16862\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17266\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17294\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17303\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16797\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16798\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16574\",\"type\":\"CDSView\"}},\"id\":\"16799\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15616\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16144\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17271\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16145\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15451\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17293\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16168\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16802\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17265\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17316\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15632\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15452\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17285\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15615\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15616\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15418\",\"type\":\"CDSView\"}},\"id\":\"15617\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15449\",\"type\":\"GroupFilter\"},{\"id\":\"15450\",\"type\":\"GroupFilter\"},{\"id\":\"15451\",\"type\":\"GroupFilter\"},{\"id\":\"15452\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15453\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17286\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17291\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16144\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16145\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15921\",\"type\":\"CDSView\"}},\"id\":\"16146\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17284\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17309\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15623\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17258\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15624\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15607\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15450\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17264\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15612\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16805\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17270\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17174\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17290\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16165\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17293\",\"type\":\"GroupFilter\"},{\"id\":\"17294\",\"type\":\"GroupFilter\"},{\"id\":\"17295\",\"type\":\"GroupFilter\"},{\"id\":\"17296\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17297\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16209\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15447\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15455\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15456\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15218\",\"type\":\"CDSView\"}},\"id\":\"15457\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17274\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16164\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16165\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15946\",\"type\":\"CDSView\"}},\"id\":\"16166\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16801\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16802\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16579\",\"type\":\"CDSView\"}},\"id\":\"16803\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"high\":7829258731877.213,\"low\":47.21767337766953,\"palette\":[\"#440154\",\"#440255\",\"#440357\",\"#450558\",\"#45065A\",\"#45085B\",\"#46095C\",\"#460B5E\",\"#460C5F\",\"#460E61\",\"#470F62\",\"#471163\",\"#471265\",\"#471466\",\"#471567\",\"#471669\",\"#47186A\",\"#48196B\",\"#481A6C\",\"#481C6E\",\"#481D6F\",\"#481E70\",\"#482071\",\"#482172\",\"#482273\",\"#482374\",\"#472575\",\"#472676\",\"#472777\",\"#472878\",\"#472A79\",\"#472B7A\",\"#472C7B\",\"#462D7C\",\"#462F7C\",\"#46307D\",\"#46317E\",\"#45327F\",\"#45347F\",\"#453580\",\"#453681\",\"#443781\",\"#443982\",\"#433A83\",\"#433B83\",\"#433C84\",\"#423D84\",\"#423E85\",\"#424085\",\"#414186\",\"#414286\",\"#404387\",\"#404487\",\"#3F4587\",\"#3F4788\",\"#3E4888\",\"#3E4989\",\"#3D4A89\",\"#3D4B89\",\"#3D4C89\",\"#3C4D8A\",\"#3C4E8A\",\"#3B508A\",\"#3B518A\",\"#3A528B\",\"#3A538B\",\"#39548B\",\"#39558B\",\"#38568B\",\"#38578C\",\"#37588C\",\"#37598C\",\"#365A8C\",\"#365B8C\",\"#355C8C\",\"#355D8C\",\"#345E8D\",\"#345F8D\",\"#33608D\",\"#33618D\",\"#32628D\",\"#32638D\",\"#31648D\",\"#31658D\",\"#31668D\",\"#30678D\",\"#30688D\",\"#2F698D\",\"#2F6A8D\",\"#2E6B8E\",\"#2E6C8E\",\"#2E6D8E\",\"#2D6E8E\",\"#2D6F8E\",\"#2C708E\",\"#2C718E\",\"#2C728E\",\"#2B738E\",\"#2B748E\",\"#2A758E\",\"#2A768E\",\"#2A778E\",\"#29788E\",\"#29798E\",\"#287A8E\",\"#287A8E\",\"#287B8E\",\"#277C8E\",\"#277D8E\",\"#277E8E\",\"#267F8E\",\"#26808E\",\"#26818E\",\"#25828E\",\"#25838D\",\"#24848D\",\"#24858D\",\"#24868D\",\"#23878D\",\"#23888D\",\"#23898D\",\"#22898D\",\"#228A8D\",\"#228B8D\",\"#218C8D\",\"#218D8C\",\"#218E8C\",\"#208F8C\",\"#20908C\",\"#20918C\",\"#1F928C\",\"#1F938B\",\"#1F948B\",\"#1F958B\",\"#1F968B\",\"#1E978A\",\"#1E988A\",\"#1E998A\",\"#1E998A\",\"#1E9A89\",\"#1E9B89\",\"#1E9C89\",\"#1E9D88\",\"#1E9E88\",\"#1E9F88\",\"#1EA087\",\"#1FA187\",\"#1FA286\",\"#1FA386\",\"#20A485\",\"#20A585\",\"#21A685\",\"#21A784\",\"#22A784\",\"#23A883\",\"#23A982\",\"#24AA82\",\"#25AB81\",\"#26AC81\",\"#27AD80\",\"#28AE7F\",\"#29AF7F\",\"#2AB07E\",\"#2BB17D\",\"#2CB17D\",\"#2EB27C\",\"#2FB37B\",\"#30B47A\",\"#32B57A\",\"#33B679\",\"#35B778\",\"#36B877\",\"#38B976\",\"#39B976\",\"#3BBA75\",\"#3DBB74\",\"#3EBC73\",\"#40BD72\",\"#42BE71\",\"#44BE70\",\"#45BF6F\",\"#47C06E\",\"#49C16D\",\"#4BC26C\",\"#4DC26B\",\"#4FC369\",\"#51C468\",\"#53C567\",\"#55C666\",\"#57C665\",\"#59C764\",\"#5BC862\",\"#5EC961\",\"#60C960\",\"#62CA5F\",\"#64CB5D\",\"#67CC5C\",\"#69CC5B\",\"#6BCD59\",\"#6DCE58\",\"#70CE56\",\"#72CF55\",\"#74D054\",\"#77D052\",\"#79D151\",\"#7CD24F\",\"#7ED24E\",\"#81D34C\",\"#83D34B\",\"#86D449\",\"#88D547\",\"#8BD546\",\"#8DD644\",\"#90D643\",\"#92D741\",\"#95D73F\",\"#97D83E\",\"#9AD83C\",\"#9DD93A\",\"#9FD938\",\"#A2DA37\",\"#A5DA35\",\"#A7DB33\",\"#AADB32\",\"#ADDC30\",\"#AFDC2E\",\"#B2DD2C\",\"#B5DD2B\",\"#B7DD29\",\"#BADE27\",\"#BDDE26\",\"#BFDF24\",\"#C2DF22\",\"#C5DF21\",\"#C7E01F\",\"#CAE01E\",\"#CDE01D\",\"#CFE11C\",\"#D2E11B\",\"#D4E11A\",\"#D7E219\",\"#DAE218\",\"#DCE218\",\"#DFE318\",\"#E1E318\",\"#E4E318\",\"#E7E419\",\"#E9E419\",\"#ECE41A\",\"#EEE51B\",\"#F1E51C\",\"#F3E51E\",\"#F6E61F\",\"#F8E621\",\"#FAE622\",\"#FDE724\"]},\"id\":\"14577\",\"type\":\"LinearColorMapper\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16168\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16169\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15951\",\"type\":\"CDSView\"}},\"id\":\"16170\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15627\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16806\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17288\",\"type\":\"GroupFilter\"},{\"id\":\"17289\",\"type\":\"GroupFilter\"},{\"id\":\"17290\",\"type\":\"GroupFilter\"},{\"id\":\"17291\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17292\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15611\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15612\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15413\",\"type\":\"CDSView\"}},\"id\":\"15613\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16169\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17280\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16212\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17442\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17263\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15635\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15636\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15443\",\"type\":\"CDSView\"}},\"id\":\"15637\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16148\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16149\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15926\",\"type\":\"CDSView\"}},\"id\":\"16150\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17275\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17258\",\"type\":\"GroupFilter\"},{\"id\":\"17259\",\"type\":\"GroupFilter\"},{\"id\":\"17260\",\"type\":\"GroupFilter\"},{\"id\":\"17261\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17262\",\"type\":\"CDSView\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"17869\",\"type\":\"CheckboxButtonGroup\"},\"glyph0\":{\"id\":\"14844\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"14848\",\"type\":\"GlyphRenderer\"},\"glyph10\":{\"id\":\"14884\",\"type\":\"GlyphRenderer\"},\"glyph100\":{\"id\":\"16106\",\"type\":\"GlyphRenderer\"},\"glyph101\":{\"id\":\"16110\",\"type\":\"GlyphRenderer\"},\"glyph102\":{\"id\":\"16114\",\"type\":\"GlyphRenderer\"},\"glyph103\":{\"id\":\"16118\",\"type\":\"GlyphRenderer\"},\"glyph104\":{\"id\":\"16122\",\"type\":\"GlyphRenderer\"},\"glyph105\":{\"id\":\"16126\",\"type\":\"GlyphRenderer\"},\"glyph106\":{\"id\":\"16130\",\"type\":\"GlyphRenderer\"},\"glyph107\":{\"id\":\"16134\",\"type\":\"GlyphRenderer\"},\"glyph108\":{\"id\":\"16138\",\"type\":\"GlyphRenderer\"},\"glyph109\":{\"id\":\"16142\",\"type\":\"GlyphRenderer\"},\"glyph11\":{\"id\":\"14888\",\"type\":\"GlyphRenderer\"},\"glyph110\":{\"id\":\"16146\",\"type\":\"GlyphRenderer\"},\"glyph111\":{\"id\":\"16150\",\"type\":\"GlyphRenderer\"},\"glyph112\":{\"id\":\"16154\",\"type\":\"GlyphRenderer\"},\"glyph113\":{\"id\":\"16158\",\"type\":\"GlyphRenderer\"},\"glyph114\":{\"id\":\"16162\",\"type\":\"GlyphRenderer\"},\"glyph115\":{\"id\":\"16166\",\"type\":\"GlyphRenderer\"},\"glyph116\":{\"id\":\"16170\",\"type\":\"GlyphRenderer\"},\"glyph117\":{\"id\":\"16174\",\"type\":\"GlyphRenderer\"},\"glyph118\":{\"id\":\"16178\",\"type\":\"GlyphRenderer\"},\"glyph119\":{\"id\":\"16182\",\"type\":\"GlyphRenderer\"},\"glyph12\":{\"id\":\"14892\",\"type\":\"GlyphRenderer\"},\"glyph120\":{\"id\":\"16186\",\"type\":\"GlyphRenderer\"},\"glyph121\":{\"id\":\"16190\",\"type\":\"GlyphRenderer\"},\"glyph122\":{\"id\":\"16194\",\"type\":\"GlyphRenderer\"},\"glyph123\":{\"id\":\"16198\",\"type\":\"GlyphRenderer\"},\"glyph124\":{\"id\":\"16202\",\"type\":\"GlyphRenderer\"},\"glyph125\":{\"id\":\"16206\",\"type\":\"GlyphRenderer\"},\"glyph126\":{\"id\":\"16210\",\"type\":\"GlyphRenderer\"},\"glyph127\":{\"id\":\"16214\",\"type\":\"GlyphRenderer\"},\"glyph128\":{\"id\":\"16218\",\"type\":\"GlyphRenderer\"},\"glyph129\":{\"id\":\"16222\",\"type\":\"GlyphRenderer\"},\"glyph13\":{\"id\":\"14896\",\"type\":\"GlyphRenderer\"},\"glyph130\":{\"id\":\"16226\",\"type\":\"GlyphRenderer\"},\"glyph131\":{\"id\":\"16230\",\"type\":\"GlyphRenderer\"},\"glyph132\":{\"id\":\"16234\",\"type\":\"GlyphRenderer\"},\"glyph133\":{\"id\":\"16238\",\"type\":\"GlyphRenderer\"},\"glyph134\":{\"id\":\"16242\",\"type\":\"GlyphRenderer\"},\"glyph135\":{\"id\":\"16246\",\"type\":\"GlyphRenderer\"},\"glyph136\":{\"id\":\"16250\",\"type\":\"GlyphRenderer\"},\"glyph137\":{\"id\":\"16254\",\"type\":\"GlyphRenderer\"},\"glyph138\":{\"id\":\"16258\",\"type\":\"GlyphRenderer\"},\"glyph139\":{\"id\":\"16262\",\"type\":\"GlyphRenderer\"},\"glyph14\":{\"id\":\"14900\",\"type\":\"GlyphRenderer\"},\"glyph140\":{\"id\":\"16266\",\"type\":\"GlyphRenderer\"},\"glyph141\":{\"id\":\"16270\",\"type\":\"GlyphRenderer\"},\"glyph142\":{\"id\":\"16274\",\"type\":\"GlyphRenderer\"},\"glyph143\":{\"id\":\"16278\",\"type\":\"GlyphRenderer\"},\"glyph144\":{\"id\":\"16743\",\"type\":\"GlyphRenderer\"},\"glyph145\":{\"id\":\"16747\",\"type\":\"GlyphRenderer\"},\"glyph146\":{\"id\":\"16751\",\"type\":\"GlyphRenderer\"},\"glyph147\":{\"id\":\"16755\",\"type\":\"GlyphRenderer\"},\"glyph148\":{\"id\":\"16759\",\"type\":\"GlyphRenderer\"},\"glyph149\":{\"id\":\"16763\",\"type\":\"GlyphRenderer\"},\"glyph15\":{\"id\":\"14904\",\"type\":\"GlyphRenderer\"},\"glyph150\":{\"id\":\"16767\",\"type\":\"GlyphRenderer\"},\"glyph151\":{\"id\":\"16771\",\"type\":\"GlyphRenderer\"},\"glyph152\":{\"id\":\"16775\",\"type\":\"GlyphRenderer\"},\"glyph153\":{\"id\":\"16779\",\"type\":\"GlyphRenderer\"},\"glyph154\":{\"id\":\"16783\",\"type\":\"GlyphRenderer\"},\"glyph155\":{\"id\":\"16787\",\"type\":\"GlyphRenderer\"},\"glyph156\":{\"id\":\"16791\",\"type\":\"GlyphRenderer\"},\"glyph157\":{\"id\":\"16795\",\"type\":\"GlyphRenderer\"},\"glyph158\":{\"id\":\"16799\",\"type\":\"GlyphRenderer\"},\"glyph159\":{\"id\":\"16803\",\"type\":\"GlyphRenderer\"},\"glyph16\":{\"id\":\"14908\",\"type\":\"GlyphRenderer\"},\"glyph160\":{\"id\":\"16807\",\"type\":\"GlyphRenderer\"},\"glyph161\":{\"id\":\"16811\",\"type\":\"GlyphRenderer\"},\"glyph162\":{\"id\":\"16815\",\"type\":\"GlyphRenderer\"},\"glyph163\":{\"id\":\"16819\",\"type\":\"GlyphRenderer\"},\"glyph164\":{\"id\":\"16823\",\"type\":\"GlyphRenderer\"},\"glyph165\":{\"id\":\"16827\",\"type\":\"GlyphRenderer\"},\"glyph166\":{\"id\":\"16831\",\"type\":\"GlyphRenderer\"},\"glyph167\":{\"id\":\"16835\",\"type\":\"GlyphRenderer\"},\"glyph168\":{\"id\":\"16839\",\"type\":\"GlyphRenderer\"},\"glyph169\":{\"id\":\"16843\",\"type\":\"GlyphRenderer\"},\"glyph17\":{\"id\":\"14912\",\"type\":\"GlyphRenderer\"},\"glyph170\":{\"id\":\"16847\",\"type\":\"GlyphRenderer\"},\"glyph171\":{\"id\":\"16851\",\"type\":\"GlyphRenderer\"},\"glyph172\":{\"id\":\"16855\",\"type\":\"GlyphRenderer\"},\"glyph173\":{\"id\":\"16859\",\"type\":\"GlyphRenderer\"},\"glyph174\":{\"id\":\"16863\",\"type\":\"GlyphRenderer\"},\"glyph175\":{\"id\":\"16867\",\"type\":\"GlyphRenderer\"},\"glyph176\":{\"id\":\"16871\",\"type\":\"GlyphRenderer\"},\"glyph177\":{\"id\":\"16875\",\"type\":\"GlyphRenderer\"},\"glyph178\":{\"id\":\"16879\",\"type\":\"GlyphRenderer\"},\"glyph179\":{\"id\":\"16883\",\"type\":\"GlyphRenderer\"},\"glyph18\":{\"id\":\"14916\",\"type\":\"GlyphRenderer\"},\"glyph180\":{\"id\":\"16887\",\"type\":\"GlyphRenderer\"},\"glyph181\":{\"id\":\"16891\",\"type\":\"GlyphRenderer\"},\"glyph182\":{\"id\":\"16895\",\"type\":\"GlyphRenderer\"},\"glyph183\":{\"id\":\"16899\",\"type\":\"GlyphRenderer\"},\"glyph184\":{\"id\":\"16903\",\"type\":\"GlyphRenderer\"},\"glyph185\":{\"id\":\"16907\",\"type\":\"GlyphRenderer\"},\"glyph186\":{\"id\":\"16911\",\"type\":\"GlyphRenderer\"},\"glyph187\":{\"id\":\"16915\",\"type\":\"GlyphRenderer\"},\"glyph188\":{\"id\":\"16919\",\"type\":\"GlyphRenderer\"},\"glyph189\":{\"id\":\"16923\",\"type\":\"GlyphRenderer\"},\"glyph19\":{\"id\":\"14920\",\"type\":\"GlyphRenderer\"},\"glyph190\":{\"id\":\"16927\",\"type\":\"GlyphRenderer\"},\"glyph191\":{\"id\":\"16931\",\"type\":\"GlyphRenderer\"},\"glyph192\":{\"id\":\"17416\",\"type\":\"GlyphRenderer\"},\"glyph193\":{\"id\":\"17420\",\"type\":\"GlyphRenderer\"},\"glyph194\":{\"id\":\"17424\",\"type\":\"GlyphRenderer\"},\"glyph195\":{\"id\":\"17428\",\"type\":\"GlyphRenderer\"},\"glyph196\":{\"id\":\"17432\",\"type\":\"GlyphRenderer\"},\"glyph197\":{\"id\":\"17436\",\"type\":\"GlyphRenderer\"},\"glyph198\":{\"id\":\"17440\",\"type\":\"GlyphRenderer\"},\"glyph199\":{\"id\":\"17444\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"14852\",\"type\":\"GlyphRenderer\"},\"glyph20\":{\"id\":\"14924\",\"type\":\"GlyphRenderer\"},\"glyph200\":{\"id\":\"17448\",\"type\":\"GlyphRenderer\"},\"glyph201\":{\"id\":\"17452\",\"type\":\"GlyphRenderer\"},\"glyph202\":{\"id\":\"17456\",\"type\":\"GlyphRenderer\"},\"glyph203\":{\"id\":\"17460\",\"type\":\"GlyphRenderer\"},\"glyph204\":{\"id\":\"17464\",\"type\":\"GlyphRenderer\"},\"glyph205\":{\"id\":\"17468\",\"type\":\"GlyphRenderer\"},\"glyph206\":{\"id\":\"17472\",\"type\":\"GlyphRenderer\"},\"glyph207\":{\"id\":\"17476\",\"type\":\"GlyphRenderer\"},\"glyph208\":{\"id\":\"17480\",\"type\":\"GlyphRenderer\"},\"glyph209\":{\"id\":\"17484\",\"type\":\"GlyphRenderer\"},\"glyph21\":{\"id\":\"14928\",\"type\":\"GlyphRenderer\"},\"glyph210\":{\"id\":\"17488\",\"type\":\"GlyphRenderer\"},\"glyph211\":{\"id\":\"17492\",\"type\":\"GlyphRenderer\"},\"glyph212\":{\"id\":\"17496\",\"type\":\"GlyphRenderer\"},\"glyph213\":{\"id\":\"17500\",\"type\":\"GlyphRenderer\"},\"glyph214\":{\"id\":\"17504\",\"type\":\"GlyphRenderer\"},\"glyph215\":{\"id\":\"17508\",\"type\":\"GlyphRenderer\"},\"glyph216\":{\"id\":\"17512\",\"type\":\"GlyphRenderer\"},\"glyph217\":{\"id\":\"17516\",\"type\":\"GlyphRenderer\"},\"glyph218\":{\"id\":\"17520\",\"type\":\"GlyphRenderer\"},\"glyph219\":{\"id\":\"17524\",\"type\":\"GlyphRenderer\"},\"glyph22\":{\"id\":\"14932\",\"type\":\"GlyphRenderer\"},\"glyph220\":{\"id\":\"17528\",\"type\":\"GlyphRenderer\"},\"glyph221\":{\"id\":\"17532\",\"type\":\"GlyphRenderer\"},\"glyph222\":{\"id\":\"17536\",\"type\":\"GlyphRenderer\"},\"glyph223\":{\"id\":\"17540\",\"type\":\"GlyphRenderer\"},\"glyph224\":{\"id\":\"17544\",\"type\":\"GlyphRenderer\"},\"glyph225\":{\"id\":\"17548\",\"type\":\"GlyphRenderer\"},\"glyph226\":{\"id\":\"17552\",\"type\":\"GlyphRenderer\"},\"glyph227\":{\"id\":\"17556\",\"type\":\"GlyphRenderer\"},\"glyph228\":{\"id\":\"17560\",\"type\":\"GlyphRenderer\"},\"glyph229\":{\"id\":\"17564\",\"type\":\"GlyphRenderer\"},\"glyph23\":{\"id\":\"14936\",\"type\":\"GlyphRenderer\"},\"glyph230\":{\"id\":\"17568\",\"type\":\"GlyphRenderer\"},\"glyph231\":{\"id\":\"17572\",\"type\":\"GlyphRenderer\"},\"glyph232\":{\"id\":\"17576\",\"type\":\"GlyphRenderer\"},\"glyph233\":{\"id\":\"17580\",\"type\":\"GlyphRenderer\"},\"glyph234\":{\"id\":\"17584\",\"type\":\"GlyphRenderer\"},\"glyph235\":{\"id\":\"17588\",\"type\":\"GlyphRenderer\"},\"glyph236\":{\"id\":\"17592\",\"type\":\"GlyphRenderer\"},\"glyph237\":{\"id\":\"17596\",\"type\":\"GlyphRenderer\"},\"glyph238\":{\"id\":\"17600\",\"type\":\"GlyphRenderer\"},\"glyph239\":{\"id\":\"17604\",\"type\":\"GlyphRenderer\"},\"glyph24\":{\"id\":\"14940\",\"type\":\"GlyphRenderer\"},\"glyph25\":{\"id\":\"14944\",\"type\":\"GlyphRenderer\"},\"glyph26\":{\"id\":\"14948\",\"type\":\"GlyphRenderer\"},\"glyph27\":{\"id\":\"14952\",\"type\":\"GlyphRenderer\"},\"glyph28\":{\"id\":\"14956\",\"type\":\"GlyphRenderer\"},\"glyph29\":{\"id\":\"14960\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"14856\",\"type\":\"GlyphRenderer\"},\"glyph30\":{\"id\":\"14964\",\"type\":\"GlyphRenderer\"},\"glyph31\":{\"id\":\"14968\",\"type\":\"GlyphRenderer\"},\"glyph32\":{\"id\":\"14972\",\"type\":\"GlyphRenderer\"},\"glyph33\":{\"id\":\"14976\",\"type\":\"GlyphRenderer\"},\"glyph34\":{\"id\":\"14980\",\"type\":\"GlyphRenderer\"},\"glyph35\":{\"id\":\"14984\",\"type\":\"GlyphRenderer\"},\"glyph36\":{\"id\":\"14988\",\"type\":\"GlyphRenderer\"},\"glyph37\":{\"id\":\"14992\",\"type\":\"GlyphRenderer\"},\"glyph38\":{\"id\":\"14996\",\"type\":\"GlyphRenderer\"},\"glyph39\":{\"id\":\"15000\",\"type\":\"GlyphRenderer\"},\"glyph4\":{\"id\":\"14860\",\"type\":\"GlyphRenderer\"},\"glyph40\":{\"id\":\"15004\",\"type\":\"GlyphRenderer\"},\"glyph41\":{\"id\":\"15008\",\"type\":\"GlyphRenderer\"},\"glyph42\":{\"id\":\"15012\",\"type\":\"GlyphRenderer\"},\"glyph43\":{\"id\":\"15016\",\"type\":\"GlyphRenderer\"},\"glyph44\":{\"id\":\"15020\",\"type\":\"GlyphRenderer\"},\"glyph45\":{\"id\":\"15024\",\"type\":\"GlyphRenderer\"},\"glyph46\":{\"id\":\"15028\",\"type\":\"GlyphRenderer\"},\"glyph47\":{\"id\":\"15032\",\"type\":\"GlyphRenderer\"},\"glyph48\":{\"id\":\"15457\",\"type\":\"GlyphRenderer\"},\"glyph49\":{\"id\":\"15461\",\"type\":\"GlyphRenderer\"},\"glyph5\":{\"id\":\"14864\",\"type\":\"GlyphRenderer\"},\"glyph50\":{\"id\":\"15465\",\"type\":\"GlyphRenderer\"},\"glyph51\":{\"id\":\"15469\",\"type\":\"GlyphRenderer\"},\"glyph52\":{\"id\":\"15473\",\"type\":\"GlyphRenderer\"},\"glyph53\":{\"id\":\"15477\",\"type\":\"GlyphRenderer\"},\"glyph54\":{\"id\":\"15481\",\"type\":\"GlyphRenderer\"},\"glyph55\":{\"id\":\"15485\",\"type\":\"GlyphRenderer\"},\"glyph56\":{\"id\":\"15489\",\"type\":\"GlyphRenderer\"},\"glyph57\":{\"id\":\"15493\",\"type\":\"GlyphRenderer\"},\"glyph58\":{\"id\":\"15497\",\"type\":\"GlyphRenderer\"},\"glyph59\":{\"id\":\"15501\",\"type\":\"GlyphRenderer\"},\"glyph6\":{\"id\":\"14868\",\"type\":\"GlyphRenderer\"},\"glyph60\":{\"id\":\"15505\",\"type\":\"GlyphRenderer\"},\"glyph61\":{\"id\":\"15509\",\"type\":\"GlyphRenderer\"},\"glyph62\":{\"id\":\"15513\",\"type\":\"GlyphRenderer\"},\"glyph63\":{\"id\":\"15517\",\"type\":\"GlyphRenderer\"},\"glyph64\":{\"id\":\"15521\",\"type\":\"GlyphRenderer\"},\"glyph65\":{\"id\":\"15525\",\"type\":\"GlyphRenderer\"},\"glyph66\":{\"id\":\"15529\",\"type\":\"GlyphRenderer\"},\"glyph67\":{\"id\":\"15533\",\"type\":\"GlyphRenderer\"},\"glyph68\":{\"id\":\"15537\",\"type\":\"GlyphRenderer\"},\"glyph69\":{\"id\":\"15541\",\"type\":\"GlyphRenderer\"},\"glyph7\":{\"id\":\"14872\",\"type\":\"GlyphRenderer\"},\"glyph70\":{\"id\":\"15545\",\"type\":\"GlyphRenderer\"},\"glyph71\":{\"id\":\"15549\",\"type\":\"GlyphRenderer\"},\"glyph72\":{\"id\":\"15553\",\"type\":\"GlyphRenderer\"},\"glyph73\":{\"id\":\"15557\",\"type\":\"GlyphRenderer\"},\"glyph74\":{\"id\":\"15561\",\"type\":\"GlyphRenderer\"},\"glyph75\":{\"id\":\"15565\",\"type\":\"GlyphRenderer\"},\"glyph76\":{\"id\":\"15569\",\"type\":\"GlyphRenderer\"},\"glyph77\":{\"id\":\"15573\",\"type\":\"GlyphRenderer\"},\"glyph78\":{\"id\":\"15577\",\"type\":\"GlyphRenderer\"},\"glyph79\":{\"id\":\"15581\",\"type\":\"GlyphRenderer\"},\"glyph8\":{\"id\":\"14876\",\"type\":\"GlyphRenderer\"},\"glyph80\":{\"id\":\"15585\",\"type\":\"GlyphRenderer\"},\"glyph81\":{\"id\":\"15589\",\"type\":\"GlyphRenderer\"},\"glyph82\":{\"id\":\"15593\",\"type\":\"GlyphRenderer\"},\"glyph83\":{\"id\":\"15597\",\"type\":\"GlyphRenderer\"},\"glyph84\":{\"id\":\"15601\",\"type\":\"GlyphRenderer\"},\"glyph85\":{\"id\":\"15605\",\"type\":\"GlyphRenderer\"},\"glyph86\":{\"id\":\"15609\",\"type\":\"GlyphRenderer\"},\"glyph87\":{\"id\":\"15613\",\"type\":\"GlyphRenderer\"},\"glyph88\":{\"id\":\"15617\",\"type\":\"GlyphRenderer\"},\"glyph89\":{\"id\":\"15621\",\"type\":\"GlyphRenderer\"},\"glyph9\":{\"id\":\"14880\",\"type\":\"GlyphRenderer\"},\"glyph90\":{\"id\":\"15625\",\"type\":\"GlyphRenderer\"},\"glyph91\":{\"id\":\"15629\",\"type\":\"GlyphRenderer\"},\"glyph92\":{\"id\":\"15633\",\"type\":\"GlyphRenderer\"},\"glyph93\":{\"id\":\"15637\",\"type\":\"GlyphRenderer\"},\"glyph94\":{\"id\":\"15641\",\"type\":\"GlyphRenderer\"},\"glyph95\":{\"id\":\"15645\",\"type\":\"GlyphRenderer\"},\"glyph96\":{\"id\":\"16090\",\"type\":\"GlyphRenderer\"},\"glyph97\":{\"id\":\"16094\",\"type\":\"GlyphRenderer\"},\"glyph98\":{\"id\":\"16098\",\"type\":\"GlyphRenderer\"},\"glyph99\":{\"id\":\"16102\",\"type\":\"GlyphRenderer\"},\"time_slider\":{\"id\":\"17868\",\"type\":\"Slider\"}},\"code\":\"var glyphs = [glyph0, glyph1, glyph2, glyph3, glyph4, glyph5, glyph6, glyph7, glyph8, glyph9, glyph10, glyph11, glyph12, glyph13, glyph14, glyph15, glyph16, glyph17, glyph18, glyph19, glyph20, glyph21, glyph22, glyph23, glyph24, glyph25, glyph26, glyph27, glyph28, glyph29, glyph30, glyph31, glyph32, glyph33, glyph34, glyph35, glyph36, glyph37, glyph38, glyph39, glyph40, glyph41, glyph42, glyph43, glyph44, glyph45, glyph46, glyph47, glyph48, glyph49, glyph50, glyph51, glyph52, glyph53, glyph54, glyph55, glyph56, glyph57, glyph58, glyph59, glyph60, glyph61, glyph62, glyph63, glyph64, glyph65, glyph66, glyph67, glyph68, glyph69, glyph70, glyph71, glyph72, glyph73, glyph74, glyph75, glyph76, glyph77, glyph78, glyph79, glyph80, glyph81, glyph82, glyph83, glyph84, glyph85, glyph86, glyph87, glyph88, glyph89, glyph90, glyph91, glyph92, glyph93, glyph94, glyph95, glyph96, glyph97, glyph98, glyph99, glyph100, glyph101, glyph102, glyph103, glyph104, glyph105, glyph106, glyph107, glyph108, glyph109, glyph110, glyph111, glyph112, glyph113, glyph114, glyph115, glyph116, glyph117, glyph118, glyph119, glyph120, glyph121, glyph122, glyph123, glyph124, glyph125, glyph126, glyph127, glyph128, glyph129, glyph130, glyph131, glyph132, glyph133, glyph134, glyph135, glyph136, glyph137, glyph138, glyph139, glyph140, glyph141, glyph142, glyph143, glyph144, glyph145, glyph146, glyph147, glyph148, glyph149, glyph150, glyph151, glyph152, glyph153, glyph154, glyph155, glyph156, glyph157, glyph158, glyph159, glyph160, glyph161, glyph162, glyph163, glyph164, glyph165, glyph166, glyph167, glyph168, glyph169, glyph170, glyph171, glyph172, glyph173, glyph174, glyph175, glyph176, glyph177, glyph178, glyph179, glyph180, glyph181, glyph182, glyph183, glyph184, glyph185, glyph186, glyph187, glyph188, glyph189, glyph190, glyph191, glyph192, glyph193, glyph194, glyph195, glyph196, glyph197, glyph198, glyph199, glyph200, glyph201, glyph202, glyph203, glyph204, glyph205, glyph206, glyph207, glyph208, glyph209, glyph210, glyph211, glyph212, glyph213, glyph214, glyph215, glyph216, glyph217, glyph218, glyph219, glyph220, glyph221, glyph222, glyph223, glyph224, glyph225, glyph226, glyph227, glyph228, glyph229, glyph230, glyph231, glyph232, glyph233, glyph234, glyph235, glyph236, glyph237, glyph238, glyph239];var overtime = [[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191],[192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239]];var runs = [[0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236],[1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237],[2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238],[3,7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83,87,91,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,163,167,171,175,179,183,187,191,195,199,203,207,211,215,219,223,227,231,235,239]];\\n glyphs.forEach(function(g) {\\n g.visible = false;\\n })\\n // union function\\n function union_arrays(x, y) {\\n var obj = {};\\n for (var i = x.length-1; i >= 0; -- i)\\n obj[x[i]] = x[i];\\n for (var i = y.length-1; i >= 0; -- i)\\n obj[y[i]] = y[i];\\n var res = []\\n for (var k in obj) {\\n if (obj.hasOwnProperty(k)) // <-- optional\\n res.push(obj[k]);\\n }\\n return res;\\n }\\n console.log(\\\"Timeslider: \\\" + time_slider.value);\\n console.log(\\\"Checkbox: \\\" + checkbox.active);var slider_labels = ['39.12', '53.78', '126.60', '323.54', '895.87'];console.log(\\\"Detected slider_labels: \\\" + slider_labels);time_slider.title = \\\"Until wallclocktime \\\" + slider_labels[time_slider.value - 1] + \\\". Step no.\\\"; \\n var activate = [];\\n // if we want multiple checkboxes at the same time, we need to combine the arrays\\n checkbox.active.forEach(function(c) {\\n activate = union_arrays(activate, runs[c]);\\n })\\n // now the intersection of timeslider-activated and checkbox-activated\\n activate = activate.filter(value => -1 !== overtime[time_slider.value - 1].indexOf(value));\\n activate.forEach(function(idx) {\\n glyphs[idx].visible = true;\\n })\\n \"},\"id\":\"17870\",\"type\":\"CustomJS\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15446\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16208\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16209\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16001\",\"type\":\"CDSView\"}},\"id\":\"16210\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15439\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16161\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16857\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16809\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16810\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16589\",\"type\":\"CDSView\"}},\"id\":\"16811\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17289\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16160\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16161\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15941\",\"type\":\"CDSView\"}},\"id\":\"16162\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15434\",\"type\":\"GroupFilter\"},{\"id\":\"15435\",\"type\":\"GroupFilter\"},{\"id\":\"15436\",\"type\":\"GroupFilter\"},{\"id\":\"15437\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15438\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16793\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16152\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16153\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15931\",\"type\":\"CDSView\"}},\"id\":\"16154\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17298\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15463\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16213\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17305\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16156\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17308\",\"type\":\"GroupFilter\"},{\"id\":\"17309\",\"type\":\"GroupFilter\"},{\"id\":\"17310\",\"type\":\"GroupFilter\"},{\"id\":\"17311\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17312\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15619\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15620\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15423\",\"type\":\"CDSView\"}},\"id\":\"15621\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17269\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15459\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15615\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16809\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17283\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15627\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15628\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15433\",\"type\":\"CDSView\"}},\"id\":\"15629\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"17298\",\"type\":\"GroupFilter\"},{\"id\":\"17299\",\"type\":\"GroupFilter\"},{\"id\":\"17300\",\"type\":\"GroupFilter\"},{\"id\":\"17301\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17302\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17260\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16821\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16822\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16604\",\"type\":\"CDSView\"}},\"id\":\"16823\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"17303\",\"type\":\"GroupFilter\"},{\"id\":\"17304\",\"type\":\"GroupFilter\"},{\"id\":\"17305\",\"type\":\"GroupFilter\"},{\"id\":\"17306\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17307\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15442\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15460\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15604\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17261\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17314\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16172\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15444\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17278\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16212\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16213\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16006\",\"type\":\"CDSView\"}},\"id\":\"16214\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16817\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16818\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16599\",\"type\":\"CDSView\"}},\"id\":\"16819\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15608\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17300\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15467\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15468\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15233\",\"type\":\"CDSView\"}},\"id\":\"15469\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15631\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16164\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16176\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15440\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17288\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17308\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15607\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15608\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15408\",\"type\":\"CDSView\"}},\"id\":\"15609\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17259\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16153\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16813\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15636\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16157\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16801\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15487\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15488\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15258\",\"type\":\"CDSView\"}},\"id\":\"15489\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16861\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16862\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16654\",\"type\":\"CDSView\"}},\"id\":\"16863\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"17313\",\"type\":\"GroupFilter\"},{\"id\":\"17314\",\"type\":\"GroupFilter\"},{\"id\":\"17315\",\"type\":\"GroupFilter\"},{\"id\":\"17316\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17317\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16533\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16156\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16157\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15936\",\"type\":\"CDSView\"}},\"id\":\"16158\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15439\",\"type\":\"GroupFilter\"},{\"id\":\"15440\",\"type\":\"GroupFilter\"},{\"id\":\"15441\",\"type\":\"GroupFilter\"},{\"id\":\"15442\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15443\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15635\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16152\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16790\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16822\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17278\",\"type\":\"GroupFilter\"},{\"id\":\"17279\",\"type\":\"GroupFilter\"},{\"id\":\"17280\",\"type\":\"GroupFilter\"},{\"id\":\"17281\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17282\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15459\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15460\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15223\",\"type\":\"CDSView\"}},\"id\":\"15461\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15468\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15628\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16861\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17273\",\"type\":\"GroupFilter\"},{\"id\":\"17274\",\"type\":\"GroupFilter\"},{\"id\":\"17275\",\"type\":\"GroupFilter\"},{\"id\":\"17276\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17277\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15623\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15624\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15428\",\"type\":\"CDSView\"}},\"id\":\"15625\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15488\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16818\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17301\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16805\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16806\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16584\",\"type\":\"CDSView\"}},\"id\":\"16807\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15445\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16817\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17321\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16821\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17304\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15467\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17268\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17319\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15487\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16216\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17263\",\"type\":\"GroupFilter\"},{\"id\":\"17264\",\"type\":\"GroupFilter\"},{\"id\":\"17265\",\"type\":\"GroupFilter\"},{\"id\":\"17266\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17267\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17173\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15611\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16814\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15441\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15603\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15604\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15403\",\"type\":\"CDSView\"}},\"id\":\"15605\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16789\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16790\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16564\",\"type\":\"CDSView\"}},\"id\":\"16791\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15463\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15464\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15228\",\"type\":\"CDSView\"}},\"id\":\"15465\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"16530\",\"type\":\"GroupFilter\"},{\"id\":\"16531\",\"type\":\"GroupFilter\"},{\"id\":\"16532\",\"type\":\"GroupFilter\"},{\"id\":\"16533\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16534\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17279\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17295\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17306\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15471\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15472\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15238\",\"type\":\"CDSView\"}},\"id\":\"15473\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15955\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14661\",\"type\":\"GroupFilter\"},{\"id\":\"14662\",\"type\":\"GroupFilter\"},{\"id\":\"14663\",\"type\":\"GroupFilter\"},{\"id\":\"14664\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14665\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15496\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17478\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15583\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15952\",\"type\":\"GroupFilter\"},{\"id\":\"15953\",\"type\":\"GroupFilter\"},{\"id\":\"15954\",\"type\":\"GroupFilter\"},{\"id\":\"15955\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15956\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14666\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15484\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16276\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17543\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15962\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15579\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15580\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15373\",\"type\":\"CDSView\"}},\"id\":\"15581\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14667\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15957\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14668\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17454\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17455\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17227\",\"type\":\"CDSView\"}},\"id\":\"17456\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15954\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15507\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17483\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14669\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17463\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15953\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14666\",\"type\":\"GroupFilter\"},{\"id\":\"14667\",\"type\":\"GroupFilter\"},{\"id\":\"14668\",\"type\":\"GroupFilter\"},{\"id\":\"14669\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14670\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15584\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16269\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15960\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15495\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14671\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"16300\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15480\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17542\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15965\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17542\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17543\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17337\",\"type\":\"CDSView\"}},\"id\":\"17544\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15959\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15483\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15484\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15253\",\"type\":\"CDSView\"}},\"id\":\"15485\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17479\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14672\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15479\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15480\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15248\",\"type\":\"CDSView\"}},\"id\":\"15481\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15947\",\"type\":\"GroupFilter\"},{\"id\":\"15948\",\"type\":\"GroupFilter\"},{\"id\":\"15949\",\"type\":\"GroupFilter\"},{\"id\":\"15950\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15951\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16277\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17546\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15511\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15512\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15288\",\"type\":\"CDSView\"}},\"id\":\"15513\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17459\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14673\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17458\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17459\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17232\",\"type\":\"CDSView\"}},\"id\":\"17460\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15504\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15499\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15500\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15273\",\"type\":\"CDSView\"}},\"id\":\"15501\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14674\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17538\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17539\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17332\",\"type\":\"CDSView\"}},\"id\":\"17540\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14671\",\"type\":\"GroupFilter\"},{\"id\":\"14672\",\"type\":\"GroupFilter\"},{\"id\":\"14673\",\"type\":\"GroupFilter\"},{\"id\":\"14674\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14675\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17475\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15472\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17462\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15967\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15476\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14676\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17471\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17470\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17471\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17247\",\"type\":\"CDSView\"}},\"id\":\"17472\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15508\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15958\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15491\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15471\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15957\",\"type\":\"GroupFilter\"},{\"id\":\"15958\",\"type\":\"GroupFilter\"},{\"id\":\"15959\",\"type\":\"GroupFilter\"},{\"id\":\"15960\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15961\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14677\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17273\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16272\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17482\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15507\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15508\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15283\",\"type\":\"CDSView\"}},\"id\":\"15509\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14678\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15974\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15491\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15492\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15263\",\"type\":\"CDSView\"}},\"id\":\"15493\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14679\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17276\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16273\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17455\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15943\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14676\",\"type\":\"GroupFilter\"},{\"id\":\"14677\",\"type\":\"GroupFilter\"},{\"id\":\"14678\",\"type\":\"GroupFilter\"},{\"id\":\"14679\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14680\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17474\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15973\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17450\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17451\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17222\",\"type\":\"CDSView\"}},\"id\":\"17452\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15945\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14681\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15964\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15970\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14682\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"16299\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14683\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15503\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15504\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15278\",\"type\":\"CDSView\"}},\"id\":\"15505\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15942\",\"type\":\"GroupFilter\"},{\"id\":\"15943\",\"type\":\"GroupFilter\"},{\"id\":\"15944\",\"type\":\"GroupFilter\"},{\"id\":\"15945\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15946\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17462\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17463\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17237\",\"type\":\"CDSView\"}},\"id\":\"17464\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14684\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16276\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16277\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16086\",\"type\":\"CDSView\"}},\"id\":\"16278\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15492\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17454\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14681\",\"type\":\"GroupFilter\"},{\"id\":\"14682\",\"type\":\"GroupFilter\"},{\"id\":\"14683\",\"type\":\"GroupFilter\"},{\"id\":\"14684\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14685\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15969\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15499\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14686\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16272\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16273\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16081\",\"type\":\"CDSView\"}},\"id\":\"16274\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15972\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16268\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16269\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16076\",\"type\":\"CDSView\"}},\"id\":\"16270\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17466\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17467\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17242\",\"type\":\"CDSView\"}},\"id\":\"17468\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14687\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14688\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15583\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15584\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15378\",\"type\":\"CDSView\"}},\"id\":\"15585\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15962\",\"type\":\"GroupFilter\"},{\"id\":\"15963\",\"type\":\"GroupFilter\"},{\"id\":\"15964\",\"type\":\"GroupFilter\"},{\"id\":\"15965\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15966\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17467\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14689\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17478\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17479\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17257\",\"type\":\"CDSView\"}},\"id\":\"17480\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15952\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14686\",\"type\":\"GroupFilter\"},{\"id\":\"14687\",\"type\":\"GroupFilter\"},{\"id\":\"14688\",\"type\":\"GroupFilter\"},{\"id\":\"14689\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14690\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15511\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16268\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15495\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15496\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15268\",\"type\":\"CDSView\"}},\"id\":\"15497\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15967\",\"type\":\"GroupFilter\"},{\"id\":\"15968\",\"type\":\"GroupFilter\"},{\"id\":\"15969\",\"type\":\"GroupFilter\"},{\"id\":\"15970\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15971\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14691\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15483\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15963\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15512\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17470\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17474\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17475\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17252\",\"type\":\"CDSView\"}},\"id\":\"17476\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14692\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17466\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15948\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14693\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15847\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15949\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15475\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15476\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15243\",\"type\":\"CDSView\"}},\"id\":\"15477\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14694\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15968\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15503\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14691\",\"type\":\"GroupFilter\"},{\"id\":\"14692\",\"type\":\"GroupFilter\"},{\"id\":\"14693\",\"type\":\"GroupFilter\"},{\"id\":\"14694\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14695\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15500\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15947\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15475\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17539\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17458\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14696\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15950\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15479\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15944\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16136\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16137\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15911\",\"type\":\"CDSView\"}},\"id\":\"16138\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15559\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15854\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15555\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17574\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15868\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15894\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16917\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16918\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16724\",\"type\":\"CDSView\"}},\"id\":\"16919\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17566\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17567\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17367\",\"type\":\"CDSView\"}},\"id\":\"17568\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15551\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15857\",\"type\":\"GroupFilter\"},{\"id\":\"15858\",\"type\":\"GroupFilter\"},{\"id\":\"15859\",\"type\":\"GroupFilter\"},{\"id\":\"15860\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15861\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17562\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16500\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16913\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16914\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16719\",\"type\":\"CDSView\"}},\"id\":\"16915\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15898\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"16954\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17567\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15559\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15560\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15348\",\"type\":\"CDSView\"}},\"id\":\"15561\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17482\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17483\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17262\",\"type\":\"CDSView\"}},\"id\":\"17484\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16108\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16108\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16109\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15876\",\"type\":\"CDSView\"}},\"id\":\"16110\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17523\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15849\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16112\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16925\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15547\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16117\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15869\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16105\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15873\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15912\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15547\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15548\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15333\",\"type\":\"CDSView\"}},\"id\":\"15549\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16124\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16125\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15896\",\"type\":\"CDSView\"}},\"id\":\"16126\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17571\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15874\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15556\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15907\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15909\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17526\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15551\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15552\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15338\",\"type\":\"CDSView\"}},\"id\":\"15553\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16109\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17558\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17559\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15555\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15556\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15343\",\"type\":\"CDSView\"}},\"id\":\"15557\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16220\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15859\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15862\",\"type\":\"GroupFilter\"},{\"id\":\"15863\",\"type\":\"GroupFilter\"},{\"id\":\"15864\",\"type\":\"GroupFilter\"},{\"id\":\"15865\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15866\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16113\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15887\",\"type\":\"GroupFilter\"},{\"id\":\"15888\",\"type\":\"GroupFilter\"},{\"id\":\"15889\",\"type\":\"GroupFilter\"},{\"id\":\"15890\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15891\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15592\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16128\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16930\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15875\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"16955\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16100\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16101\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15866\",\"type\":\"CDSView\"}},\"id\":\"16102\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17526\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17527\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17317\",\"type\":\"CDSView\"}},\"id\":\"17528\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15903\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15564\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15858\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15910\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16104\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16105\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15871\",\"type\":\"CDSView\"}},\"id\":\"16106\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15870\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15899\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16918\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15867\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15897\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16112\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16113\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15881\",\"type\":\"CDSView\"}},\"id\":\"16114\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17550\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15884\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16921\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16922\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16729\",\"type\":\"CDSView\"}},\"id\":\"16923\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15560\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16136\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15878\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15563\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15887\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15596\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15907\",\"type\":\"GroupFilter\"},{\"id\":\"15908\",\"type\":\"GroupFilter\"},{\"id\":\"15909\",\"type\":\"GroupFilter\"},{\"id\":\"15910\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15911\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16917\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17550\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17551\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17347\",\"type\":\"CDSView\"}},\"id\":\"17552\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15591\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16116\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17554\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17570\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15852\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15889\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15855\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15900\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15880\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16129\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17575\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15860\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15563\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15564\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15353\",\"type\":\"CDSView\"}},\"id\":\"15565\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16133\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15865\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16921\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15908\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16116\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16117\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15886\",\"type\":\"CDSView\"}},\"id\":\"16118\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15571\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15892\",\"type\":\"GroupFilter\"},{\"id\":\"15893\",\"type\":\"GroupFilter\"},{\"id\":\"15894\",\"type\":\"GroupFilter\"},{\"id\":\"15895\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15896\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15567\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15568\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15358\",\"type\":\"CDSView\"}},\"id\":\"15569\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17574\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17575\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17377\",\"type\":\"CDSView\"}},\"id\":\"17576\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16922\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15888\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17554\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17555\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17352\",\"type\":\"CDSView\"}},\"id\":\"17556\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16140\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16141\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15916\",\"type\":\"CDSView\"}},\"id\":\"16142\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15882\",\"type\":\"GroupFilter\"},{\"id\":\"15883\",\"type\":\"GroupFilter\"},{\"id\":\"15884\",\"type\":\"GroupFilter\"},{\"id\":\"15885\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15886\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16926\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15872\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15587\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15588\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15383\",\"type\":\"CDSView\"}},\"id\":\"15589\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16929\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16930\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16739\",\"type\":\"CDSView\"}},\"id\":\"16931\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15567\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15848\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16128\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16129\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15901\",\"type\":\"CDSView\"}},\"id\":\"16130\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16925\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16926\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16734\",\"type\":\"CDSView\"}},\"id\":\"16927\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15568\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15572\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15867\",\"type\":\"GroupFilter\"},{\"id\":\"15868\",\"type\":\"GroupFilter\"},{\"id\":\"15869\",\"type\":\"GroupFilter\"},{\"id\":\"15870\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15871\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16770\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15895\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16132\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16133\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15906\",\"type\":\"CDSView\"}},\"id\":\"16134\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15893\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15905\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15850\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15864\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16104\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17551\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15862\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17558\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17559\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17357\",\"type\":\"CDSView\"}},\"id\":\"17560\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15872\",\"type\":\"GroupFilter\"},{\"id\":\"15873\",\"type\":\"GroupFilter\"},{\"id\":\"15874\",\"type\":\"GroupFilter\"},{\"id\":\"15875\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15876\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15595\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15596\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15393\",\"type\":\"CDSView\"}},\"id\":\"15597\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16125\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16929\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16124\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15904\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15599\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15902\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15595\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15863\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17555\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15588\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15877\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15599\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15600\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15398\",\"type\":\"CDSView\"}},\"id\":\"15601\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16137\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17527\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15552\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15890\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16101\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17522\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16132\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15852\",\"type\":\"GroupFilter\"},{\"id\":\"15853\",\"type\":\"GroupFilter\"},{\"id\":\"15854\",\"type\":\"GroupFilter\"},{\"id\":\"15855\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15856\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15591\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15592\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15388\",\"type\":\"CDSView\"}},\"id\":\"15593\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15883\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17562\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17563\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17362\",\"type\":\"CDSView\"}},\"id\":\"17564\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15897\",\"type\":\"GroupFilter\"},{\"id\":\"15898\",\"type\":\"GroupFilter\"},{\"id\":\"15899\",\"type\":\"GroupFilter\"},{\"id\":\"15900\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15901\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17570\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17571\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17372\",\"type\":\"CDSView\"}},\"id\":\"17572\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15600\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17563\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15853\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16216\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16217\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16011\",\"type\":\"CDSView\"}},\"id\":\"16218\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15548\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15879\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16217\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17566\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17522\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17523\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17312\",\"type\":\"CDSView\"}},\"id\":\"17524\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16141\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15892\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15847\",\"type\":\"GroupFilter\"},{\"id\":\"15848\",\"type\":\"GroupFilter\"},{\"id\":\"15849\",\"type\":\"GroupFilter\"},{\"id\":\"15850\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15851\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15902\",\"type\":\"GroupFilter\"},{\"id\":\"15903\",\"type\":\"GroupFilter\"},{\"id\":\"15904\",\"type\":\"GroupFilter\"},{\"id\":\"15905\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15906\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16140\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15857\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16650\",\"type\":\"GroupFilter\"},{\"id\":\"16651\",\"type\":\"GroupFilter\"},{\"id\":\"16652\",\"type\":\"GroupFilter\"},{\"id\":\"16653\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16654\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16660\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16640\",\"type\":\"GroupFilter\"},{\"id\":\"16641\",\"type\":\"GroupFilter\"},{\"id\":\"16642\",\"type\":\"GroupFilter\"},{\"id\":\"16643\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16644\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16640\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16653\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16663\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16660\",\"type\":\"GroupFilter\"},{\"id\":\"16661\",\"type\":\"GroupFilter\"},{\"id\":\"16662\",\"type\":\"GroupFilter\"},{\"id\":\"16663\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16664\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16652\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16641\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16658\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16667\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16648\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16642\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16636\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16637\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16661\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16655\",\"type\":\"GroupFilter\"},{\"id\":\"16656\",\"type\":\"GroupFilter\"},{\"id\":\"16657\",\"type\":\"GroupFilter\"},{\"id\":\"16658\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16659\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16657\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16638\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16646\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16635\",\"type\":\"GroupFilter\"},{\"id\":\"16636\",\"type\":\"GroupFilter\"},{\"id\":\"16637\",\"type\":\"GroupFilter\"},{\"id\":\"16638\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16639\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16645\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16643\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16666\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16655\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16651\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16665\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16645\",\"type\":\"GroupFilter\"},{\"id\":\"16646\",\"type\":\"GroupFilter\"},{\"id\":\"16647\",\"type\":\"GroupFilter\"},{\"id\":\"16648\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16649\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16650\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16656\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16662\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16647\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"end\":2.364114178109612,\"start\":-2.626210846366635},\"id\":\"14551\",\"type\":\"Range1d\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16625\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"14553\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"14555\",\"type\":\"LinearScale\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16611\",\"type\":\"GroupFilter\"},{\"attributes\":{\"axis_label\":\"MDS-X\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"15039\",\"type\":\"BasicTickFormatter\"},\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"14558\",\"type\":\"BasicTicker\"}},\"id\":\"14557\",\"type\":\"LinearAxis\"},{\"attributes\":{\"filters\":[{\"id\":\"16610\",\"type\":\"GroupFilter\"},{\"id\":\"16611\",\"type\":\"GroupFilter\"},{\"id\":\"16612\",\"type\":\"GroupFilter\"},{\"id\":\"16613\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16614\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"14558\",\"type\":\"BasicTicker\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16617\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"15035\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16608\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"ticker\":{\"id\":\"14558\",\"type\":\"BasicTicker\"}},\"id\":\"14561\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"15037\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"filters\":[{\"id\":\"16605\",\"type\":\"GroupFilter\"},{\"id\":\"16606\",\"type\":\"GroupFilter\"},{\"id\":\"16607\",\"type\":\"GroupFilter\"},{\"id\":\"16608\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16609\",\"type\":\"CDSView\"},{\"attributes\":{\"axis_label\":\"MDS-Y\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"15037\",\"type\":\"BasicTickFormatter\"},\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"14563\",\"type\":\"BasicTicker\"}},\"id\":\"14562\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"15039\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16628\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"14563\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"15050\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"dimension\":1,\"ticker\":{\"id\":\"14563\",\"type\":\"BasicTicker\"}},\"id\":\"14566\",\"type\":\"Grid\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16606\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"14567\",\"type\":\"SaveTool\"},{\"attributes\":{\"overlay\":{\"id\":\"15040\",\"type\":\"BoxAnnotation\"}},\"id\":\"14568\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"filters\":[{\"id\":\"16595\",\"type\":\"GroupFilter\"},{\"id\":\"16596\",\"type\":\"GroupFilter\"},{\"id\":\"16597\",\"type\":\"GroupFilter\"},{\"id\":\"16598\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16599\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"14569\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16610\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16623\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"14570\",\"type\":\"ResetTool\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16605\",\"type\":\"GroupFilter\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"14567\",\"type\":\"SaveTool\"},{\"id\":\"14568\",\"type\":\"BoxZoomTool\"},{\"id\":\"14569\",\"type\":\"WheelZoomTool\"},{\"id\":\"14570\",\"type\":\"ResetTool\"},{\"id\":\"17866\",\"type\":\"HoverTool\"}]},\"id\":\"14571\",\"type\":\"Toolbar\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16615\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+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\",\"dtype\":\"float64\",\"shape\":[25,26]}]},\"selected\":{\"id\":\"15041\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15042\",\"type\":\"UnionRenderers\"}},\"id\":\"14578\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16612\",\"type\":\"GroupFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14579\",\"type\":\"Image\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16613\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14580\",\"type\":\"Image\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16626\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14578\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14579\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14580\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"14582\",\"type\":\"CDSView\"}},\"id\":\"14581\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"16615\",\"type\":\"GroupFilter\"},{\"id\":\"16616\",\"type\":\"GroupFilter\"},{\"id\":\"16617\",\"type\":\"GroupFilter\"},{\"id\":\"16618\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16619\",\"type\":\"CDSView\"},{\"attributes\":{\"source\":{\"id\":\"14578\",\"type\":\"ColumnDataSource\"}},\"id\":\"14582\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRB8qDCYvFAmEHyoMJi8UCYQfKgwmLxQJhB8qDCYvFAmEHyoMJi8UCYQfKgwmLxQJhB8qDCYvFAmEHyoMJi8UCYQfKgwmLxQJhB8qDCYvFAmEHyoMJi8UCYQfKgwmLxQJhBbrxqmfFAmEFuvGqZ8UCYQW68apnxQJhBbrxqmfFAmEHAMKeRPkGYQcAwp5E+QZhB18w5nkNFmEHXzDmeQ0WYQdfMOZ5DRZhB18w5nkNFmEHXzDmeQ0WYQdfMOZ5DRZhB18w5nkNFmEHXzDme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\",\"dtype\":\"float64\",\"shape\":[25,26]}]},\"selected\":{\"id\":\"15043\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15044\",\"type\":\"UnionRenderers\"}},\"id\":\"14583\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14584\",\"type\":\"Image\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14585\",\"type\":\"Image\"},{\"attributes\":{\"filters\":[{\"id\":\"16600\",\"type\":\"GroupFilter\"},{\"id\":\"16601\",\"type\":\"GroupFilter\"},{\"id\":\"16602\",\"type\":\"GroupFilter\"},{\"id\":\"16603\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16604\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14583\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14584\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14585\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"14587\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"14586\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16603\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16616\",\"type\":\"GroupFilter\"},{\"attributes\":{\"source\":{\"id\":\"14583\",\"type\":\"ColumnDataSource\"}},\"id\":\"14587\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16622\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"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JTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBZeFUhGbTuUFl4VSEZtO5QWXhVIRm07lBa+3QCrTTuUEe4wqXAdS5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQWXhVIRm07lBZeFUhGbTuUFl4VSEZtO5QWvt0Aq007lBHuMKlwHUuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0Fl4VSEZtO5QWXhVIRm07lBZeFUhGbTuUFr7dAKtNO5QR7jCpcB1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBZeFUhGbTuUFl4VSEZtO5QWXhVIRm07lBa+3QCrTTuUEe4wqXAdS5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQWXhVIRm07lBZeFUhGbTuUFl4VSEZtO5QWvt0Aq007lBHuMKlwHUuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0Fl4VSEZtO5QWXhVIRm07lBZeFUhGbTuUFr7dAKtNO5QR7jCpcB1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBZeFUhGbTuUFl4VSEZtO5QWXhVIRm07lBa+3QCrTTuUEe4wqXAdS5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQWXhVIRm07lBZeFUhGbTuUFl4VSEZtO5QWvt0Aq007lBHuMKlwHUuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QQ==\",\"dtype\":\"float64\",\"shape\":[25,26]}]},\"selected\":{\"id\":\"15045\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15046\",\"type\":\"UnionRenderers\"}},\"id\":\"14588\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14589\",\"type\":\"Image\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14590\",\"type\":\"Image\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16601\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14588\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14589\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14590\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"14592\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"14591\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16627\",\"type\":\"GroupFilter\"},{\"attributes\":{\"source\":{\"id\":\"14588\",\"type\":\"ColumnDataSource\"}},\"id\":\"14592\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16602\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]}]},\"selected\":{\"id\":\"15047\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15048\",\"type\":\"UnionRenderers\"}},\"id\":\"14593\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16607\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16621\",\"type\":\"GroupFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14594\",\"type\":\"Image\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14595\",\"type\":\"Image\"},{\"attributes\":{\"filters\":[{\"id\":\"16620\",\"type\":\"GroupFilter\"},{\"id\":\"16621\",\"type\":\"GroupFilter\"},{\"id\":\"16622\",\"type\":\"GroupFilter\"},{\"id\":\"16623\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16624\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14593\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14594\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14595\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"14597\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"14596\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16600\",\"type\":\"GroupFilter\"},{\"attributes\":{\"source\":{\"id\":\"14593\",\"type\":\"ColumnDataSource\"}},\"id\":\"14597\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16625\",\"type\":\"GroupFilter\"},{\"id\":\"16626\",\"type\":\"GroupFilter\"},{\"id\":\"16627\",\"type\":\"GroupFilter\"},{\"id\":\"16628\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16629\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16620\",\"type\":\"GroupFilter\"},{\"attributes\":{\"desired_num_ticks\":15},\"id\":\"14598\",\"type\":\"BasicTicker\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16618\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17490\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17491\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17272\",\"type\":\"CDSView\"}},\"id\":\"17492\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"children\":[{\"id\":\"17875\",\"type\":\"Button\"}],\"width\":100},\"id\":\"17884\",\"type\":\"WidgetBox\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16200\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16201\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15991\",\"type\":\"CDSView\"}},\"id\":\"16202\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16220\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16221\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16016\",\"type\":\"CDSView\"}},\"id\":\"16222\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17506\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16204\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16205\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15996\",\"type\":\"CDSView\"}},\"id\":\"16206\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"args\":{\"colormapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"glyph0\":{\"id\":\"14581\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"14586\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"14591\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"14596\",\"type\":\"GlyphRenderer\"}},\"code\":\"var len_labels = 4,glyphs = [ glyph0,glyph1,glyph2,glyph3],mins = [63802.07578277979, 8451.267377410004, 57.042686275173615, 47.21767337766953],maxs = [7829258731877.213, 169539885.60867956, 649877475.0173994, 189.747178259529];\\n for (i = 0; i < len_labels; i++) {\\n if (cb_obj.active === i) {\\n // console.log('Setting to true: ' + i);\\n glyphs[i].visible = true;\\n colormapper.low = mins[i];\\n colormapper.high = maxs[i];\\n } else {\\n // console.log('Setting to false: ' + i);\\n glyphs[i].visible = false;\\n }\\n }\\n \"},\"id\":\"17876\",\"type\":\"CustomJS\"},{\"attributes\":{\"children\":[{\"id\":\"14548\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"17879\",\"type\":\"WidgetBox\"}]},\"id\":\"17880\",\"type\":\"Column\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16181\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17881\",\"type\":\"WidgetBox\"},{\"id\":\"17882\",\"type\":\"WidgetBox\"},{\"id\":\"17885\",\"type\":\"Row\"},{\"id\":\"17886\",\"type\":\"WidgetBox\"},{\"id\":\"17887\",\"type\":\"WidgetBox\"}]},\"id\":\"17888\",\"type\":\"Column\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16200\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17499\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16204\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17518\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17869\",\"type\":\"CheckboxButtonGroup\"}]},\"id\":\"17882\",\"type\":\"WidgetBox\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16184\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16185\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15971\",\"type\":\"CDSView\"}},\"id\":\"16186\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17530\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17871\",\"type\":\"Div\"}]},\"id\":\"17881\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16229\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17531\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17486\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16224\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16196\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17503\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17494\",\"type\":\"Scatter\"},{\"attributes\":{\"text\":\"Data used to estimate contour-plot\"},\"id\":\"17878\",\"type\":\"Div\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16201\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17873\",\"type\":\"Button\"}],\"width\":100},\"id\":\"17883\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17535\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17502\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17519\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17878\",\"type\":\"Div\"}]},\"id\":\"17886\",\"type\":\"WidgetBox\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16196\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16197\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15986\",\"type\":\"CDSView\"}},\"id\":\"16198\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17498\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17499\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17282\",\"type\":\"CDSView\"}},\"id\":\"17500\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17511\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17883\",\"type\":\"WidgetBox\"},{\"id\":\"17884\",\"type\":\"WidgetBox\"}]},\"id\":\"17885\",\"type\":\"Row\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16180\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16189\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16225\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17502\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17503\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17287\",\"type\":\"CDSView\"}},\"id\":\"17504\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16192\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16232\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17877\",\"type\":\"RadioButtonGroup\"}]},\"id\":\"17887\",\"type\":\"WidgetBox\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16188\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16189\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15976\",\"type\":\"CDSView\"}},\"id\":\"16190\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17515\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17506\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17507\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17292\",\"type\":\"CDSView\"}},\"id\":\"17508\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16185\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17490\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16192\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16193\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15981\",\"type\":\"CDSView\"}},\"id\":\"16194\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17507\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17510\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17511\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17297\",\"type\":\"CDSView\"}},\"id\":\"17512\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17491\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16180\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16181\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15966\",\"type\":\"CDSView\"}},\"id\":\"16182\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17534\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17535\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17327\",\"type\":\"CDSView\"}},\"id\":\"17536\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"active\":0,\"callback\":{\"id\":\"17876\",\"type\":\"CustomJS\"},\"labels\":[\"budget 370.4\",\"budget 1111.1\",\"budget 3333.3\",\"budget 10000\"]},\"id\":\"17877\",\"type\":\"RadioButtonGroup\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17510\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17530\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17531\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17322\",\"type\":\"CDSView\"}},\"id\":\"17532\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16197\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17498\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17494\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17495\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17277\",\"type\":\"CDSView\"}},\"id\":\"17496\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16184\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16228\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16229\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16026\",\"type\":\"CDSView\"}},\"id\":\"16230\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17538\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16176\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16177\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15961\",\"type\":\"CDSView\"}},\"id\":\"16178\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17486\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17487\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17267\",\"type\":\"CDSView\"}},\"id\":\"17488\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17495\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16193\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17534\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16228\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16205\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17514\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16188\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17487\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17514\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17515\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17302\",\"type\":\"CDSView\"}},\"id\":\"17516\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16224\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16225\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16021\",\"type\":\"CDSView\"}},\"id\":\"16226\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16595\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16889\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16890\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16689\",\"type\":\"CDSView\"}},\"id\":\"16891\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14763\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16568\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15972\",\"type\":\"GroupFilter\"},{\"id\":\"15973\",\"type\":\"GroupFilter\"},{\"id\":\"15974\",\"type\":\"GroupFilter\"},{\"id\":\"15975\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15976\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16885\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16591\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16590\",\"type\":\"GroupFilter\"},{\"id\":\"16591\",\"type\":\"GroupFilter\"},{\"id\":\"16592\",\"type\":\"GroupFilter\"},{\"id\":\"16593\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16594\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16913\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14764\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15985\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17218\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14761\",\"type\":\"GroupFilter\"},{\"id\":\"14762\",\"type\":\"GroupFilter\"},{\"id\":\"14763\",\"type\":\"GroupFilter\"},{\"id\":\"14764\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14765\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15977\",\"type\":\"GroupFilter\"},{\"id\":\"15978\",\"type\":\"GroupFilter\"},{\"id\":\"15979\",\"type\":\"GroupFilter\"},{\"id\":\"15980\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15981\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16575\",\"type\":\"GroupFilter\"},{\"id\":\"16576\",\"type\":\"GroupFilter\"},{\"id\":\"16577\",\"type\":\"GroupFilter\"},{\"id\":\"16578\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16579\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16886\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14766\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15982\",\"type\":\"GroupFilter\"},{\"id\":\"15983\",\"type\":\"GroupFilter\"},{\"id\":\"15984\",\"type\":\"GroupFilter\"},{\"id\":\"15985\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15986\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15994\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16586\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16565\",\"type\":\"GroupFilter\"},{\"id\":\"16566\",\"type\":\"GroupFilter\"},{\"id\":\"16567\",\"type\":\"GroupFilter\"},{\"id\":\"16568\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16569\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15989\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14767\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15988\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16905\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16906\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16709\",\"type\":\"CDSView\"}},\"id\":\"16907\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"16585\",\"type\":\"GroupFilter\"},{\"id\":\"16586\",\"type\":\"GroupFilter\"},{\"id\":\"16587\",\"type\":\"GroupFilter\"},{\"id\":\"16588\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16589\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14768\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16890\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16588\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14769\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16901\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16902\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16704\",\"type\":\"CDSView\"}},\"id\":\"16903\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15979\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16575\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14766\",\"type\":\"GroupFilter\"},{\"id\":\"14767\",\"type\":\"GroupFilter\"},{\"id\":\"14768\",\"type\":\"GroupFilter\"},{\"id\":\"14769\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14770\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15977\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16587\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16897\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16898\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16699\",\"type\":\"CDSView\"}},\"id\":\"16899\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14771\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16881\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15982\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16910\",\"type\":\"Scatter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"red\",\"red\",\"red\",\"red\",\"white\",\"red\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\"],\"origin\":[\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\"],\"p_burn_in\":[0.06095411756804747,0.4074427106852323,0.19103566832105667,0.4614938906314672,0.05379283110893349,0.34424088646527784,0.22534614767267647,0.34193909728758665,0.019702503024473652,0.04199917180247406,0.40614914276269265,0.008166622451853173,0.3060289375823493,0.017833969985921794,0.02306597975800245,0.34515349463529454,0.01461295313831932,0.017235501865167764,0.0116923509310994,0.4430283433889736,0.2407582604885267,0.03843441810140034,0.740831610943143,0.16837108101621034,0.389663720030231,0.013240078967514002,0.31823932597992305,0.4453681293440747,0.4560762540143012,0.4380896816607307,0.6682810162705316,0.3341405680866985,0.22839236467681667,0.36047458233549146,0.7498043706606659,0.16459742441935532,0.24302860840616028,0.3255599665428288],\"p_l_rate\":[1.3140974150295323e-05,0.016155413975493874,0.0911866225591426,0.01930430219941507,0.06953447315355575,5.886622133632225e-05,0.020701751107567005,0.03267167704481297,0.027124415967214835,1.562302425925469e-06,0.055679466924544604,0.05868181462547929,0.0009693701218491181,0.06877680681703875,0.06598368111508776,0.003764111315013184,0.0667009633233298,0.03487282754907394,4.63426031506052e-05,0.03877880710009469,0.0792659340152397,8.218636648622262e-06,0.0034016132586180696,4.231006670769454e-05,0.02974141600383611,0.04218746992189643,0.08855636723219577,0.026186183366574363,0.0030944655662799264,0.03901038193546873,3.554616454872997e-06,0.015422361937275902,2.7429889775972168e-05,2.2071066471092935e-05,0.013232184419079087,5.308241206255325e-06,0.0005797639839531642,1.113473241471851e-06],\"p_mdecay\":[0.6085942693370233,0.9552476693037883,0.23596990879050056,0.5381734081457205,0.5863021854362127,0.6934225820967883,0.24381621169879536,0.5747606389122023,0.8817407352537541,0.24717389794301636,0.021837510517321357,0.2447068090128678,0.14880855373871982,0.3095762923033933,0.09953494272876998,0.11692038084800203,0.3617267080409091,0.2502467932411652,0.5916637069751063,0.05909502727073661,0.29460712740739303,0.3753824880536981,0.6629709112103371,0.7994935341759952,0.32880127706797024,0.3820254234979106,0.2414742383738761,0.3309551130561821,0.661038131085342,0.2649050681581515,0.1690960017403682,0.44012322937234094,0.06071205674502145,0.964126285901498,0.6153477536804737,0.5854839967595509,0.4471707601112981,0.6131932145061313],\"p_n_units_1\":[27,40,352,214,228,288,354,33,276,22,443,33,36,122,20,25,40,21,470,207,264,302,30,17,67,78,312,105,56,168,59,50,360,337,44,56,36,194],\"p_n_units_2\":[409,313,52,48,24,504,55,271,30,54,35,207,42,58,172,27,40,380,58,85,46,19,59,416,184,52,30,232,37,410,320,286,288,60,295,24,17,18],\"runs\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Incumbent\",\"Incumbent\",\"Incumbent\",\"Final Incumbent\",\"Candidate\",\"Incumbent\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"jPLiqERy978IfYUBNT7yvwB02Tqzu/A/2zwpSH6P4j9xTNcy0S/wP2rV8oEhHPG/Y35pbZNI7T9hmjS6YtLlv0XoTLvtp/M/uXLUnP435b8NgBM+CRv2P/ZworNVHsq/wI93oWAhxr8havNecU/kP+gB49NPdcG/rCBI+ttp0b8BlfhtO/PQPxkxeOermNy/+HBBVdtI5T/fjM5It+LpPyMgrVx4sew/pcaj0P317D+f/z7QTpDyvwGZKGGEPfu/gBNRPSpaxL/bERxOZMTaP4BvNVXZ0PE/9GXgaRcAnr/Af4NWL2LXv9opmapjts8/sBj4iPe3+7/Ooh4KnWfgv8E5lrBWcO0/gbZBsVf9xj/D7vWlkWTzv/05vh1FZ9C/L7dyvDShx78ebfzWdV/WPw==\",\"dtype\":\"float64\",\"shape\":[38]},\"y\":{\"__ndarray__\":\"m4VOa/RK4b/mg62ySuvjP1cS/uWu78g/TUmTj6p5z7/P9i570iTev4aDac488uy/r7ri4TbPwz8/VUbDqJ7iPwsH0RK7POW/HMtgP2Jw9L8HoL+/UvDZP0agUm4N9PA/07lJvoN2w78axtf+0bfQP+vZb2Np0/U/AKZoxaserb+rMSk4ZSXFP66XIZS9IvQ/9hmB0eDN8r/jTcXgmX/nP43Zskc5vrQ/htUtwEaP9L+hxG2pHQ+jv/DXRT2MXN2/RBrgR1QK5T+MKNh4RvnBPxw+uo9+1bE/933Vxd6w6D/SrAM3kpjZv/qZe5MSyfA/vUZxfQBW4z/Z7JGjzJPiP3qOBkgUV/M/9hE0ZmHc+L8e5feCIYfrPwHBg7sLGvS/1ak9G60Q578LuRiq9QT6vw==\",\"dtype\":\"float64\",\"shape\":[38]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"17629\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"17630\",\"type\":\"UnionRenderers\"}},\"id\":\"14547\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14772\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17213\",\"type\":\"GroupFilter\"},{\"id\":\"17214\",\"type\":\"GroupFilter\"},{\"id\":\"17215\",\"type\":\"GroupFilter\"},{\"id\":\"17216\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17217\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15983\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16590\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16592\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14773\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16909\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15987\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16570\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14774\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16894\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14771\",\"type\":\"GroupFilter\"},{\"id\":\"14772\",\"type\":\"GroupFilter\"},{\"id\":\"14773\",\"type\":\"GroupFilter\"},{\"id\":\"14774\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14775\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17215\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16889\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14776\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15992\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14777\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16567\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16882\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14778\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15990\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14779\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15993\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15997\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16593\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17216\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16893\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16894\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16694\",\"type\":\"CDSView\"}},\"id\":\"16895\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14776\",\"type\":\"GroupFilter\"},{\"id\":\"14777\",\"type\":\"GroupFilter\"},{\"id\":\"14778\",\"type\":\"GroupFilter\"},{\"id\":\"14779\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14780\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15987\",\"type\":\"GroupFilter\"},{\"id\":\"15988\",\"type\":\"GroupFilter\"},{\"id\":\"15989\",\"type\":\"GroupFilter\"},{\"id\":\"15990\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15991\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15992\",\"type\":\"GroupFilter\"},{\"id\":\"15993\",\"type\":\"GroupFilter\"},{\"id\":\"15994\",\"type\":\"GroupFilter\"},{\"id\":\"15995\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15996\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16893\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14781\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16573\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16898\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16897\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14782\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15995\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16901\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16580\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14783\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16914\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15999\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16585\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"red\",\"red\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\"],\"origin\":[\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\"],\"p_burn_in\":[0.06095411756804747,0.4074427106852323,0.4614938906314672,0.34424088646527784,0.22534614767267647,0.04199917180247406,0.40614914276269265,0.3060289375823493,0.34515349463529454,0.0116923509310994,0.4430283433889736,0.03843441810140034,0.16837108101621034,0.389663720030231,0.31823932597992305,0.16459742441935532,0.3255599665428288],\"p_l_rate\":[1.3140974150295323e-05,0.016155413975493874,0.01930430219941507,5.886622133632225e-05,0.020701751107567005,1.562302425925469e-06,0.055679466924544604,0.0009693701218491181,0.003764111315013184,4.63426031506052e-05,0.03877880710009469,8.218636648622262e-06,4.231006670769454e-05,0.02974141600383611,0.08855636723219577,5.308241206255325e-06,1.113473241471851e-06],\"p_mdecay\":[0.6085942693370233,0.9552476693037883,0.5381734081457205,0.6934225820967883,0.24381621169879536,0.24717389794301636,0.021837510517321357,0.14880855373871982,0.11692038084800203,0.5916637069751063,0.05909502727073661,0.3753824880536981,0.7994935341759952,0.32880127706797024,0.2414742383738761,0.5854839967595509,0.6131932145061313],\"p_n_units_1\":[27,40,214,288,354,22,443,36,25,470,207,302,17,67,312,56,194],\"p_n_units_2\":[409,313,48,504,55,54,35,42,27,58,85,19,416,184,30,24,18],\"runs\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Incumbent\",\"Incumbent\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"jPLiqERy978IfYUBNT7yv9s8KUh+j+I/atXygSEc8b9jfmltk0jtP7ly1Jz+N+W/DYATPgkb9j/Aj3ehYCHGv6wgSPrbadG/+HBBVdtI5T/fjM5It+LpP6XGo9D99ew/AZkoYYQ9+7+AE1E9KlrEv4BvNVXZ0PE//Tm+HUVn0L8ebfzWdV/WPw==\",\"dtype\":\"float64\",\"shape\":[17]},\"y\":{\"__ndarray__\":\"m4VOa/RK4b/mg62ySuvjP01Jk4+qec+/hoNpzjzy7L+vuuLhNs/DPxzLYD9icPS/B6C/v1Lw2T/TuUm+g3bDvwCmaMWrHq2/9hmB0eDN8r/jTcXgmX/nP4bVLcBGj/S/8NdFPYxc3b9EGuBHVArlPxw+uo9+1bE/AcGDuwsa9L8LuRiq9QT6vw==\",\"dtype\":\"float64\",\"shape\":[17]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"16954\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"16955\",\"type\":\"UnionRenderers\"}},\"id\":\"14546\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14784\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16909\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16910\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16714\",\"type\":\"CDSView\"}},\"id\":\"16911\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16003\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16582\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14781\",\"type\":\"GroupFilter\"},{\"id\":\"14782\",\"type\":\"GroupFilter\"},{\"id\":\"14783\",\"type\":\"GroupFilter\"},{\"id\":\"14784\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14785\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16596\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17213\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16580\",\"type\":\"GroupFilter\"},{\"id\":\"16581\",\"type\":\"GroupFilter\"},{\"id\":\"16582\",\"type\":\"GroupFilter\"},{\"id\":\"16583\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16584\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16005\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17219\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14786\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17214\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14787\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16902\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16583\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14788\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15998\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14789\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16000\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16572\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16881\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16882\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16679\",\"type\":\"CDSView\"}},\"id\":\"16883\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16004\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16578\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14786\",\"type\":\"GroupFilter\"},{\"id\":\"14787\",\"type\":\"GroupFilter\"},{\"id\":\"14788\",\"type\":\"GroupFilter\"},{\"id\":\"14789\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14790\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"white\",\"white\",\"white\",\"white\"],\"origin\":[\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\"],\"p_burn_in\":[0.06095411756804747,0.34424088646527784,0.04199917180247406,0.3060289375823493,0.0116923509310994],\"p_l_rate\":[1.3140974150295323e-05,5.886622133632225e-05,1.562302425925469e-06,0.0009693701218491181,4.63426031506052e-05],\"p_mdecay\":[0.6085942693370233,0.6934225820967883,0.24717389794301636,0.14880855373871982,0.5916637069751063],\"p_n_units_1\":[27,288,22,36,470],\"p_n_units_2\":[409,504,54,42,58],\"runs\":[1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"jPLiqERy979q1fKBIRzxv7ly1Jz+N+W/wI93oWAhxr/4cEFV20jlPw==\",\"dtype\":\"float64\",\"shape\":[5]},\"y\":{\"__ndarray__\":\"m4VOa/RK4b+Gg2nOPPLsvxzLYD9icPS/07lJvoN2w7/2GYHR4M3yvw==\",\"dtype\":\"float64\",\"shape\":[5]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"16299\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"16300\",\"type\":\"UnionRenderers\"}},\"id\":\"14545\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"filters\":[{\"id\":\"15997\",\"type\":\"GroupFilter\"},{\"id\":\"15998\",\"type\":\"GroupFilter\"},{\"id\":\"15999\",\"type\":\"GroupFilter\"},{\"id\":\"16000\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16001\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15980\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16905\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14791\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16577\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16002\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"white\",\"white\"],\"origin\":[\"Random\",\"Random\",\"Random\"],\"p_burn_in\":[0.06095411756804747,0.34424088646527784,0.04199917180247406],\"p_l_rate\":[1.3140974150295323e-05,5.886622133632225e-05,1.562302425925469e-06],\"p_mdecay\":[0.6085942693370233,0.6934225820967883,0.24717389794301636],\"p_n_units_1\":[27,288,22],\"p_n_units_2\":[409,504,54],\"runs\":[1,1,1],\"size\":[12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"jPLiqERy979q1fKBIRzxv7ly1Jz+N+W/\",\"dtype\":\"float64\",\"shape\":[3]},\"y\":{\"__ndarray__\":\"m4VOa/RK4b+Gg2nOPPLsvxzLYD9icPS/\",\"dtype\":\"float64\",\"shape\":[3]},\"zorder\":[\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"15664\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15665\",\"type\":\"UnionRenderers\"}},\"id\":\"14544\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16906\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14792\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15978\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16571\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16002\",\"type\":\"GroupFilter\"},{\"id\":\"16003\",\"type\":\"GroupFilter\"},{\"id\":\"16004\",\"type\":\"GroupFilter\"},{\"id\":\"16005\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16006\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14793\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16885\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16886\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16684\",\"type\":\"CDSView\"}},\"id\":\"16887\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"16570\",\"type\":\"GroupFilter\"},{\"id\":\"16571\",\"type\":\"GroupFilter\"},{\"id\":\"16572\",\"type\":\"GroupFilter\"},{\"id\":\"16573\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16574\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14794\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15984\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16007\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16581\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14791\",\"type\":\"GroupFilter\"},{\"id\":\"14792\",\"type\":\"GroupFilter\"},{\"id\":\"14793\",\"type\":\"GroupFilter\"},{\"id\":\"14794\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14795\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15975\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16576\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15219\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16059\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15214\",\"type\":\"GroupFilter\"},{\"id\":\"15215\",\"type\":\"GroupFilter\"},{\"id\":\"15216\",\"type\":\"GroupFilter\"},{\"id\":\"15217\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15218\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16057\",\"type\":\"GroupFilter\"},{\"id\":\"16058\",\"type\":\"GroupFilter\"},{\"id\":\"16059\",\"type\":\"GroupFilter\"},{\"id\":\"16060\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16061\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16057\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16045\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15214\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16047\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16052\",\"type\":\"GroupFilter\"},{\"id\":\"16053\",\"type\":\"GroupFilter\"},{\"id\":\"16054\",\"type\":\"GroupFilter\"},{\"id\":\"16055\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16056\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16049\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16042\",\"type\":\"GroupFilter\"},{\"id\":\"16043\",\"type\":\"GroupFilter\"},{\"id\":\"16044\",\"type\":\"GroupFilter\"},{\"id\":\"16045\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16046\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15215\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16058\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16043\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15216\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16053\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16062\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15220\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16037\",\"type\":\"GroupFilter\"},{\"id\":\"16038\",\"type\":\"GroupFilter\"},{\"id\":\"16039\",\"type\":\"GroupFilter\"},{\"id\":\"16040\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16041\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16055\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15217\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16054\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16047\",\"type\":\"GroupFilter\"},{\"id\":\"16048\",\"type\":\"GroupFilter\"},{\"id\":\"16049\",\"type\":\"GroupFilter\"},{\"id\":\"16050\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16051\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16042\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16044\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16052\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16068\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16065\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16067\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16040\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"16050\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16063\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16060\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16069\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"16070\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16062\",\"type\":\"GroupFilter\"},{\"id\":\"16063\",\"type\":\"GroupFilter\"},{\"id\":\"16064\",\"type\":\"GroupFilter\"},{\"id\":\"16065\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16066\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16064\",\"type\":\"GroupFilter\"},{\"attributes\":{\"background_fill_color\":{\"value\":null},\"below\":[{\"id\":\"14557\",\"type\":\"LinearAxis\"}],\"border_fill_color\":{\"value\":null},\"center\":[{\"id\":\"14561\",\"type\":\"Grid\"},{\"id\":\"14566\",\"type\":\"Grid\"}],\"left\":[{\"id\":\"14562\",\"type\":\"LinearAxis\"}],\"plot_height\":500,\"renderers\":[{\"id\":\"14581\",\"type\":\"GlyphRenderer\"},{\"id\":\"14586\",\"type\":\"GlyphRenderer\"},{\"id\":\"14591\",\"type\":\"GlyphRenderer\"},{\"id\":\"14596\",\"type\":\"GlyphRenderer\"},{\"id\":\"14844\",\"type\":\"GlyphRenderer\"},{\"id\":\"14848\",\"type\":\"GlyphRenderer\"},{\"id\":\"14852\",\"type\":\"GlyphRenderer\"},{\"id\":\"14856\",\"type\":\"GlyphRenderer\"},{\"id\":\"14860\",\"type\":\"GlyphRenderer\"},{\"id\":\"14864\",\"type\":\"GlyphRenderer\"},{\"id\":\"14868\",\"type\":\"GlyphRenderer\"},{\"id\":\"14872\",\"type\":\"GlyphRenderer\"},{\"id\":\"14876\",\"type\":\"GlyphRenderer\"},{\"id\":\"14880\",\"type\":\"GlyphRenderer\"},{\"id\":\"14884\",\"type\":\"GlyphRenderer\"},{\"id\":\"14888\",\"type\":\"GlyphRenderer\"},{\"id\":\"14892\",\"type\":\"GlyphRenderer\"},{\"id\":\"14896\",\"type\":\"GlyphRenderer\"},{\"id\":\"14900\",\"type\":\"GlyphRenderer\"},{\"id\":\"14904\",\"type\":\"GlyphRenderer\"},{\"id\":\"14908\",\"type\":\"GlyphRenderer\"},{\"id\":\"14912\",\"type\":\"GlyphRenderer\"},{\"id\":\"14916\",\"type\":\"GlyphRenderer\"},{\"id\":\"14920\",\"type\":\"GlyphRenderer\"},{\"id\":\"14924\",\"type\":\"GlyphRenderer\"},{\"id\":\"14928\",\"type\":\"GlyphRenderer\"},{\"id\":\"14932\",\"type\":\"GlyphRenderer\"},{\"id\":\"14936\",\"type\":\"GlyphRenderer\"},{\"id\":\"14940\",\"type\":\"GlyphRenderer\"},{\"id\":\"14944\",\"type\":\"GlyphRenderer\"},{\"id\":\"14948\",\"type\":\"GlyphRenderer\"},{\"id\":\"14952\",\"type\":\"GlyphRenderer\"},{\"id\":\"14956\",\"type\":\"GlyphRenderer\"},{\"id\":\"14960\",\"type\":\"GlyphRenderer\"},{\"id\":\"14964\",\"type\":\"GlyphRenderer\"},{\"id\":\"14968\",\"type\":\"GlyphRenderer\"},{\"id\":\"14972\",\"type\":\"GlyphRenderer\"},{\"id\":\"14976\",\"type\":\"GlyphRenderer\"},{\"id\":\"14980\",\"type\":\"GlyphRenderer\"},{\"id\":\"14984\",\"type\":\"GlyphRenderer\"},{\"id\":\"14988\",\"type\":\"GlyphRenderer\"},{\"id\":\"14992\",\"type\":\"GlyphRenderer\"},{\"id\":\"14996\",\"type\":\"GlyphRenderer\"},{\"id\":\"15000\",\"type\":\"GlyphRenderer\"},{\"id\":\"15004\",\"type\":\"GlyphRenderer\"},{\"id\":\"15008\",\"type\":\"GlyphRenderer\"},{\"id\":\"15012\",\"type\":\"GlyphRenderer\"},{\"id\":\"15016\",\"type\":\"GlyphRenderer\"},{\"id\":\"15020\",\"type\":\"GlyphRenderer\"},{\"id\":\"15024\",\"type\":\"GlyphRenderer\"},{\"id\":\"15028\",\"type\":\"GlyphRenderer\"},{\"id\":\"15032\",\"type\":\"GlyphRenderer\"},{\"id\":\"15457\",\"type\":\"GlyphRenderer\"},{\"id\":\"15461\",\"type\":\"GlyphRenderer\"},{\"id\":\"15465\",\"type\":\"GlyphRenderer\"},{\"id\":\"15469\",\"type\":\"GlyphRenderer\"},{\"id\":\"15473\",\"type\":\"GlyphRenderer\"},{\"id\":\"15477\",\"type\":\"GlyphRenderer\"},{\"id\":\"15481\",\"type\":\"GlyphRenderer\"},{\"id\":\"15485\",\"type\":\"GlyphRenderer\"},{\"id\":\"15489\",\"type\":\"GlyphRenderer\"},{\"id\":\"15493\",\"type\":\"GlyphRenderer\"},{\"id\":\"15497\",\"type\":\"GlyphRenderer\"},{\"id\":\"15501\",\"type\":\"GlyphRenderer\"},{\"id\":\"15505\",\"type\":\"GlyphRenderer\"},{\"id\":\"15509\",\"type\":\"GlyphRenderer\"},{\"id\":\"15513\",\"type\":\"GlyphRenderer\"},{\"id\":\"15517\",\"type\":\"GlyphRenderer\"},{\"id\":\"15521\",\"type\":\"GlyphRenderer\"},{\"id\":\"15525\",\"type\":\"GlyphRenderer\"},{\"id\":\"15529\",\"type\":\"GlyphRenderer\"},{\"id\":\"15533\",\"type\":\"GlyphRenderer\"},{\"id\":\"15537\",\"type\":\"GlyphRenderer\"},{\"id\":\"15541\",\"type\":\"GlyphRenderer\"},{\"id\":\"15545\",\"type\":\"GlyphRenderer\"},{\"id\":\"15549\",\"type\":\"GlyphRenderer\"},{\"id\":\"15553\",\"type\":\"GlyphRenderer\"},{\"id\":\"15557\",\"type\":\"GlyphRenderer\"},{\"id\":\"15561\",\"type\":\"GlyphRenderer\"},{\"id\":\"15565\",\"type\":\"GlyphRenderer\"},{\"id\":\"15569\",\"type\":\"GlyphRenderer\"},{\"id\":\"15573\",\"type\":\"GlyphRenderer\"},{\"id\":\"15577\",\"type\":\"GlyphRenderer\"},{\"id\":\"15581\",\"type\":\"GlyphRenderer\"},{\"id\":\"15585\",\"type\":\"GlyphRenderer\"},{\"id\":\"15589\",\"type\":\"GlyphRenderer\"},{\"id\":\"15593\",\"type\":\"GlyphRenderer\"},{\"id\":\"15597\",\"type\":\"GlyphRenderer\"},{\"id\":\"15601\",\"type\":\"GlyphRenderer\"},{\"id\":\"15605\",\"type\":\"GlyphRenderer\"},{\"id\":\"15609\",\"type\":\"GlyphRenderer\"},{\"id\":\"15613\",\"type\":\"GlyphRenderer\"},{\"id\":\"15617\",\"type\":\"GlyphRenderer\"},{\"id\":\"15621\",\"type\":\"GlyphRenderer\"},{\"id\":\"15625\",\"type\":\"GlyphRenderer\"},{\"id\":\"15629\",\"type\":\"GlyphRenderer\"},{\"id\":\"15633\",\"type\":\"GlyphRenderer\"},{\"id\":\"15637\",\"type\":\"GlyphRenderer\"},{\"id\":\"15641\",\"type\":\"GlyphRenderer\"},{\"id\":\"15645\",\"type\":\"GlyphRenderer\"},{\"id\":\"16090\",\"type\":\"GlyphRenderer\"},{\"id\":\"16094\",\"type\":\"GlyphRenderer\"},{\"id\":\"16098\",\"type\":\"GlyphRenderer\"},{\"id\":\"16102\",\"type\":\"GlyphRenderer\"},{\"id\":\"16106\",\"type\":\"GlyphRenderer\"},{\"id\":\"16110\",\"type\":\"GlyphRenderer\"},{\"id\":\"16114\",\"type\":\"GlyphRenderer\"},{\"id\":\"16118\",\"type\":\"GlyphRenderer\"},{\"id\":\"16122\",\"type\":\"GlyphRenderer\"},{\"id\":\"16126\",\"type\":\"GlyphRenderer\"},{\"id\":\"16130\",\"type\":\"GlyphRenderer\"},{\"id\":\"16134\",\"type\":\"GlyphRenderer\"},{\"id\":\"16138\",\"type\":\"GlyphRenderer\"},{\"id\":\"16142\",\"type\":\"GlyphRenderer\"},{\"id\":\"16146\",\"type\":\"GlyphRenderer\"},{\"id\":\"16150\",\"type\":\"GlyphRenderer\"},{\"id\":\"16154\",\"type\":\"GlyphRenderer\"},{\"id\":\"16158\",\"type\":\"GlyphRenderer\"},{\"id\":\"16162\",\"type\":\"GlyphRenderer\"},{\"id\":\"16166\",\"type\":\"GlyphRenderer\"},{\"id\":\"16170\",\"type\":\"GlyphRenderer\"},{\"id\":\"16174\",\"type\":\"GlyphRenderer\"},{\"id\":\"16178\",\"type\":\"GlyphRenderer\"},{\"id\":\"16182\",\"type\":\"GlyphRenderer\"},{\"id\":\"16186\",\"type\":\"GlyphRenderer\"},{\"id\":\"16190\",\"type\":\"GlyphRenderer\"},{\"id\":\"16194\",\"type\":\"GlyphRenderer\"},{\"id\":\"16198\",\"type\":\"GlyphRenderer\"},{\"id\":\"16202\",\"type\":\"GlyphRenderer\"},{\"id\":\"16206\",\"type\":\"GlyphRenderer\"},{\"id\":\"16210\",\"type\":\"GlyphRenderer\"},{\"id\":\"16214\",\"type\":\"GlyphRenderer\"},{\"id\":\"16218\",\"type\":\"GlyphRenderer\"},{\"id\":\"16222\",\"type\":\"GlyphRenderer\"},{\"id\":\"16226\",\"type\":\"GlyphRenderer\"},{\"id\":\"16230\",\"type\":\"GlyphRenderer\"},{\"id\":\"16234\",\"type\":\"GlyphRenderer\"},{\"id\":\"16238\",\"type\":\"GlyphRenderer\"},{\"id\":\"16242\",\"type\":\"GlyphRenderer\"},{\"id\":\"16246\",\"type\":\"GlyphRenderer\"},{\"id\":\"16250\",\"type\":\"GlyphRenderer\"},{\"id\":\"16254\",\"type\":\"GlyphRenderer\"},{\"id\":\"16258\",\"type\":\"GlyphRenderer\"},{\"id\":\"16262\",\"type\":\"GlyphRenderer\"},{\"id\":\"16266\",\"type\":\"GlyphRenderer\"},{\"id\":\"16270\",\"type\":\"GlyphRenderer\"},{\"id\":\"16274\",\"type\":\"GlyphRenderer\"},{\"id\":\"16278\",\"type\":\"GlyphRenderer\"},{\"id\":\"16743\",\"type\":\"GlyphRenderer\"},{\"id\":\"16747\",\"type\":\"GlyphRenderer\"},{\"id\":\"16751\",\"type\":\"GlyphRenderer\"},{\"id\":\"16755\",\"type\":\"GlyphRenderer\"},{\"id\":\"16759\",\"type\":\"GlyphRenderer\"},{\"id\":\"16763\",\"type\":\"GlyphRenderer\"},{\"id\":\"16767\",\"type\":\"GlyphRenderer\"},{\"id\":\"16771\",\"type\":\"GlyphRenderer\"},{\"id\":\"16775\",\"type\":\"GlyphRenderer\"},{\"id\":\"16779\",\"type\":\"GlyphRenderer\"},{\"id\":\"16783\",\"type\":\"GlyphRenderer\"},{\"id\":\"16787\",\"type\":\"GlyphRenderer\"},{\"id\":\"16791\",\"type\":\"GlyphRenderer\"},{\"id\":\"16795\",\"type\":\"GlyphRenderer\"},{\"id\":\"16799\",\"type\":\"GlyphRenderer\"},{\"id\":\"16803\",\"type\":\"GlyphRenderer\"},{\"id\":\"16807\",\"type\":\"GlyphRenderer\"},{\"id\":\"16811\",\"type\":\"GlyphRenderer\"},{\"id\":\"16815\",\"type\":\"GlyphRenderer\"},{\"id\":\"16819\",\"type\":\"GlyphRenderer\"},{\"id\":\"16823\",\"type\":\"GlyphRenderer\"},{\"id\":\"16827\",\"type\":\"GlyphRenderer\"},{\"id\":\"16831\",\"type\":\"GlyphRenderer\"},{\"id\":\"16835\",\"type\":\"GlyphRenderer\"},{\"id\":\"16839\",\"type\":\"GlyphRenderer\"},{\"id\":\"16843\",\"type\":\"GlyphRenderer\"},{\"id\":\"16847\",\"type\":\"GlyphRenderer\"},{\"id\":\"16851\",\"type\":\"GlyphRenderer\"},{\"id\":\"16855\",\"type\":\"GlyphRenderer\"},{\"id\":\"16859\",\"type\":\"GlyphRenderer\"},{\"id\":\"16863\",\"type\":\"GlyphRenderer\"},{\"id\":\"16867\",\"type\":\"GlyphRenderer\"},{\"id\":\"16871\",\"type\":\"GlyphRenderer\"},{\"id\":\"16875\",\"type\":\"GlyphRenderer\"},{\"id\":\"16879\",\"type\":\"GlyphRenderer\"},{\"id\":\"16883\",\"type\":\"GlyphRenderer\"},{\"id\":\"16887\",\"type\":\"GlyphRenderer\"},{\"id\":\"16891\",\"type\":\"GlyphRenderer\"},{\"id\":\"16895\",\"type\":\"GlyphRenderer\"},{\"id\":\"16899\",\"type\":\"GlyphRenderer\"},{\"id\":\"16903\",\"type\":\"GlyphRenderer\"},{\"id\":\"16907\",\"type\":\"GlyphRenderer\"},{\"id\":\"16911\",\"type\":\"GlyphRenderer\"},{\"id\":\"16915\",\"type\":\"GlyphRenderer\"},{\"id\":\"16919\",\"type\":\"GlyphRenderer\"},{\"id\":\"16923\",\"type\":\"GlyphRenderer\"},{\"id\":\"16927\",\"type\":\"GlyphRenderer\"},{\"id\":\"16931\",\"type\":\"GlyphRenderer\"},{\"id\":\"17416\",\"type\":\"GlyphRenderer\"},{\"id\":\"17420\",\"type\":\"GlyphRenderer\"},{\"id\":\"17424\",\"type\":\"GlyphRenderer\"},{\"id\":\"17428\",\"type\":\"GlyphRenderer\"},{\"id\":\"17432\",\"type\":\"GlyphRenderer\"},{\"id\":\"17436\",\"type\":\"GlyphRenderer\"},{\"id\":\"17440\",\"type\":\"GlyphRenderer\"},{\"id\":\"17444\",\"type\":\"GlyphRenderer\"},{\"id\":\"17448\",\"type\":\"GlyphRenderer\"},{\"id\":\"17452\",\"type\":\"GlyphRenderer\"},{\"id\":\"17456\",\"type\":\"GlyphRenderer\"},{\"id\":\"17460\",\"type\":\"GlyphRenderer\"},{\"id\":\"17464\",\"type\":\"GlyphRenderer\"},{\"id\":\"17468\",\"type\":\"GlyphRenderer\"},{\"id\":\"17472\",\"type\":\"GlyphRenderer\"},{\"id\":\"17476\",\"type\":\"GlyphRenderer\"},{\"id\":\"17480\",\"type\":\"GlyphRenderer\"},{\"id\":\"17484\",\"type\":\"GlyphRenderer\"},{\"id\":\"17488\",\"type\":\"GlyphRenderer\"},{\"id\":\"17492\",\"type\":\"GlyphRenderer\"},{\"id\":\"17496\",\"type\":\"GlyphRenderer\"},{\"id\":\"17500\",\"type\":\"GlyphRenderer\"},{\"id\":\"17504\",\"type\":\"GlyphRenderer\"},{\"id\":\"17508\",\"type\":\"GlyphRenderer\"},{\"id\":\"17512\",\"type\":\"GlyphRenderer\"},{\"id\":\"17516\",\"type\":\"GlyphRenderer\"},{\"id\":\"17520\",\"type\":\"GlyphRenderer\"},{\"id\":\"17524\",\"type\":\"GlyphRenderer\"},{\"id\":\"17528\",\"type\":\"GlyphRenderer\"},{\"id\":\"17532\",\"type\":\"GlyphRenderer\"},{\"id\":\"17536\",\"type\":\"GlyphRenderer\"},{\"id\":\"17540\",\"type\":\"GlyphRenderer\"},{\"id\":\"17544\",\"type\":\"GlyphRenderer\"},{\"id\":\"17548\",\"type\":\"GlyphRenderer\"},{\"id\":\"17552\",\"type\":\"GlyphRenderer\"},{\"id\":\"17556\",\"type\":\"GlyphRenderer\"},{\"id\":\"17560\",\"type\":\"GlyphRenderer\"},{\"id\":\"17564\",\"type\":\"GlyphRenderer\"},{\"id\":\"17568\",\"type\":\"GlyphRenderer\"},{\"id\":\"17572\",\"type\":\"GlyphRenderer\"},{\"id\":\"17576\",\"type\":\"GlyphRenderer\"},{\"id\":\"17580\",\"type\":\"GlyphRenderer\"},{\"id\":\"17584\",\"type\":\"GlyphRenderer\"},{\"id\":\"17588\",\"type\":\"GlyphRenderer\"},{\"id\":\"17592\",\"type\":\"GlyphRenderer\"},{\"id\":\"17596\",\"type\":\"GlyphRenderer\"},{\"id\":\"17600\",\"type\":\"GlyphRenderer\"},{\"id\":\"17604\",\"type\":\"GlyphRenderer\"}],\"right\":[{\"id\":\"14599\",\"type\":\"ColorBar\"}],\"title\":{\"id\":\"14576\",\"type\":\"Title\"},\"toolbar\":{\"id\":\"14571\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"14549\",\"type\":\"Range1d\"},\"x_scale\":{\"id\":\"14553\",\"type\":\"LinearScale\"},\"y_range\":{\"id\":\"14551\",\"type\":\"Range1d\"},\"y_scale\":{\"id\":\"14555\",\"type\":\"LinearScale\"}},\"id\":\"14548\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"text\":\"\",\"text_font_size\":{\"value\":\"15pt\"}},\"id\":\"14576\",\"type\":\"Title\"},{\"attributes\":{\"callback\":null,\"end\":2.381600611195611,\"start\":-2.7324138021809112},\"id\":\"14549\",\"type\":\"Range1d\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16048\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15913\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15927\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15942\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15922\",\"type\":\"GroupFilter\"},{\"id\":\"15923\",\"type\":\"GroupFilter\"},{\"id\":\"15924\",\"type\":\"GroupFilter\"},{\"id\":\"15925\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15926\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15918\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15915\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15932\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15939\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15935\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16100\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15914\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15922\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15933\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15924\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15912\",\"type\":\"GroupFilter\"},{\"id\":\"15913\",\"type\":\"GroupFilter\"},{\"id\":\"15914\",\"type\":\"GroupFilter\"},{\"id\":\"15915\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15916\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15930\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15938\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15934\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15925\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15923\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15920\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15928\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15929\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15917\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15937\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15917\",\"type\":\"GroupFilter\"},{\"id\":\"15918\",\"type\":\"GroupFilter\"},{\"id\":\"15919\",\"type\":\"GroupFilter\"},{\"id\":\"15920\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15921\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15927\",\"type\":\"GroupFilter\"},{\"id\":\"15928\",\"type\":\"GroupFilter\"},{\"id\":\"15929\",\"type\":\"GroupFilter\"},{\"id\":\"15930\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15931\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15940\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15919\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15937\",\"type\":\"GroupFilter\"},{\"id\":\"15938\",\"type\":\"GroupFilter\"},{\"id\":\"15939\",\"type\":\"GroupFilter\"},{\"id\":\"15940\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15941\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15932\",\"type\":\"GroupFilter\"},{\"id\":\"15933\",\"type\":\"GroupFilter\"},{\"id\":\"15934\",\"type\":\"GroupFilter\"},{\"id\":\"15935\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15936\",\"type\":\"CDSView\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"formatter\":{\"id\":\"15035\",\"type\":\"BasicTickFormatter\"},\"label_standoff\":12,\"location\":[0,0],\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"14598\",\"type\":\"BasicTicker\"}},\"id\":\"14599\",\"type\":\"ColorBar\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16745\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16745\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16746\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16509\",\"type\":\"CDSView\"}},\"id\":\"16747\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14911\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14601\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16746\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16742\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14602\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16769\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16770\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16539\",\"type\":\"CDSView\"}},\"id\":\"16771\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14603\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16720\",\"type\":\"GroupFilter\"},{\"id\":\"16721\",\"type\":\"GroupFilter\"},{\"id\":\"16722\",\"type\":\"GroupFilter\"},{\"id\":\"16723\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16724\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16869\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14604\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14601\",\"type\":\"GroupFilter\"},{\"id\":\"14602\",\"type\":\"GroupFilter\"},{\"id\":\"14603\",\"type\":\"GroupFilter\"},{\"id\":\"14604\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14605\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16753\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16754\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16519\",\"type\":\"CDSView\"}},\"id\":\"16755\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14606\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16773\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14607\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16726\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16741\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16742\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16504\",\"type\":\"CDSView\"}},\"id\":\"16743\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14608\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14609\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16722\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14606\",\"type\":\"GroupFilter\"},{\"id\":\"14607\",\"type\":\"GroupFilter\"},{\"id\":\"14608\",\"type\":\"GroupFilter\"},{\"id\":\"14609\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14610\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16731\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14611\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16723\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14612\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16733\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16738\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16730\",\"type\":\"GroupFilter\"},{\"id\":\"16731\",\"type\":\"GroupFilter\"},{\"id\":\"16732\",\"type\":\"GroupFilter\"},{\"id\":\"16733\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16734\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14613\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16749\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16754\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14614\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14611\",\"type\":\"GroupFilter\"},{\"id\":\"14612\",\"type\":\"GroupFilter\"},{\"id\":\"14613\",\"type\":\"GroupFilter\"},{\"id\":\"14614\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14615\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14616\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14617\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16735\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14618\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16725\",\"type\":\"GroupFilter\"},{\"id\":\"16726\",\"type\":\"GroupFilter\"},{\"id\":\"16727\",\"type\":\"GroupFilter\"},{\"id\":\"16728\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16729\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14619\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16736\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16735\",\"type\":\"GroupFilter\"},{\"id\":\"16736\",\"type\":\"GroupFilter\"},{\"id\":\"16737\",\"type\":\"GroupFilter\"},{\"id\":\"16738\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16739\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"14616\",\"type\":\"GroupFilter\"},{\"id\":\"14617\",\"type\":\"GroupFilter\"},{\"id\":\"14618\",\"type\":\"GroupFilter\"},{\"id\":\"14619\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14620\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16730\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16753\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14621\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14622\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14623\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16732\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14624\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16750\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14621\",\"type\":\"GroupFilter\"},{\"id\":\"14622\",\"type\":\"GroupFilter\"},{\"id\":\"14623\",\"type\":\"GroupFilter\"},{\"id\":\"14624\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14625\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16728\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14626\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16727\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16741\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14627\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16725\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14628\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16749\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16750\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16514\",\"type\":\"CDSView\"}},\"id\":\"16751\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14629\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14626\",\"type\":\"GroupFilter\"},{\"id\":\"14627\",\"type\":\"GroupFilter\"},{\"id\":\"14628\",\"type\":\"GroupFilter\"},{\"id\":\"14629\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14630\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14631\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16737\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17418\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17419\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17182\",\"type\":\"CDSView\"}},\"id\":\"17420\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14950\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16878\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17438\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17439\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17207\",\"type\":\"CDSView\"}},\"id\":\"17440\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14951\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16845\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14950\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14951\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14740\",\"type\":\"CDSView\"}},\"id\":\"14952\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17427\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17451\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14998\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14954\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16837\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16842\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17419\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14955\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17426\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14954\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14955\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14745\",\"type\":\"CDSView\"}},\"id\":\"14956\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17426\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17427\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17192\",\"type\":\"CDSView\"}},\"id\":\"17428\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16833\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16834\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16619\",\"type\":\"CDSView\"}},\"id\":\"16835\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"15048\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16841\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14958\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17430\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14959\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16826\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14958\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14959\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14750\",\"type\":\"CDSView\"}},\"id\":\"14960\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16838\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14994\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14995\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14795\",\"type\":\"CDSView\"}},\"id\":\"14996\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16849\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16850\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16639\",\"type\":\"CDSView\"}},\"id\":\"16851\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17431\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16870\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17435\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14962\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17547\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14963\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14962\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14963\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14755\",\"type\":\"CDSView\"}},\"id\":\"14964\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16853\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17423\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14995\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17439\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14966\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16830\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14967\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16837\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16838\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16624\",\"type\":\"CDSView\"}},\"id\":\"16839\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14966\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14967\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14760\",\"type\":\"CDSView\"}},\"id\":\"14968\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16846\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17434\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17434\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17435\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17202\",\"type\":\"CDSView\"}},\"id\":\"17436\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14994\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16854\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16829\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14970\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14971\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16829\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16830\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16614\",\"type\":\"CDSView\"}},\"id\":\"16831\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14970\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14971\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14765\",\"type\":\"CDSView\"}},\"id\":\"14972\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16845\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16846\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16634\",\"type\":\"CDSView\"}},\"id\":\"16847\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16874\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16841\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16842\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16629\",\"type\":\"CDSView\"}},\"id\":\"16843\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"15049\",\"type\":\"Selection\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14974\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16834\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16825\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14975\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17450\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14974\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14975\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14770\",\"type\":\"CDSView\"}},\"id\":\"14976\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16877\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14990\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14991\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14790\",\"type\":\"CDSView\"}},\"id\":\"14992\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17418\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16873\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16874\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16669\",\"type\":\"CDSView\"}},\"id\":\"16875\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17438\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17422\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17423\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17187\",\"type\":\"CDSView\"}},\"id\":\"17424\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14978\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16869\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16870\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16664\",\"type\":\"CDSView\"}},\"id\":\"16871\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16825\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16826\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16609\",\"type\":\"CDSView\"}},\"id\":\"16827\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14979\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17447\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14978\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14979\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14775\",\"type\":\"CDSView\"}},\"id\":\"14980\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16853\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16854\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16644\",\"type\":\"CDSView\"}},\"id\":\"16855\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17422\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17430\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17431\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17197\",\"type\":\"CDSView\"}},\"id\":\"17432\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"end\":5,\"js_property_callbacks\":{\"change:value\":[{\"id\":\"17870\",\"type\":\"CustomJS\"}]},\"start\":1,\"title\":\"Until wallclocktime 895.87. Step no. \",\"value\":5},\"id\":\"17868\",\"type\":\"Slider\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14991\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16873\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17442\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17443\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17212\",\"type\":\"CDSView\"}},\"id\":\"17444\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16833\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17446\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17447\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17217\",\"type\":\"CDSView\"}},\"id\":\"17448\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14982\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16850\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14983\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17446\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14982\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14983\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14780\",\"type\":\"CDSView\"}},\"id\":\"14984\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16877\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16878\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16674\",\"type\":\"CDSView\"}},\"id\":\"16879\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17546\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17547\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17342\",\"type\":\"CDSView\"}},\"id\":\"17548\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14990\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16849\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17406\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17398\",\"type\":\"GroupFilter\"},{\"id\":\"17399\",\"type\":\"GroupFilter\"},{\"id\":\"17400\",\"type\":\"GroupFilter\"},{\"id\":\"17401\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17402\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17414\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17386\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17399\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17400\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17393\",\"type\":\"GroupFilter\"},{\"id\":\"17394\",\"type\":\"GroupFilter\"},{\"id\":\"17395\",\"type\":\"GroupFilter\"},{\"id\":\"17396\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17397\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17404\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17405\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17398\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17395\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17408\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17410\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17383\",\"type\":\"GroupFilter\"},{\"id\":\"17384\",\"type\":\"GroupFilter\"},{\"id\":\"17385\",\"type\":\"GroupFilter\"},{\"id\":\"17386\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17387\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17389\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17415\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17401\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17411\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17390\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17403\",\"type\":\"GroupFilter\"},{\"id\":\"17404\",\"type\":\"GroupFilter\"},{\"id\":\"17405\",\"type\":\"GroupFilter\"},{\"id\":\"17406\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17407\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17414\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17415\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17177\",\"type\":\"CDSView\"}},\"id\":\"17416\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17388\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17394\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17388\",\"type\":\"GroupFilter\"},{\"id\":\"17389\",\"type\":\"GroupFilter\"},{\"id\":\"17390\",\"type\":\"GroupFilter\"},{\"id\":\"17391\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17392\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17403\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17391\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17443\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17393\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17385\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17408\",\"type\":\"GroupFilter\"},{\"id\":\"17409\",\"type\":\"GroupFilter\"},{\"id\":\"17410\",\"type\":\"GroupFilter\"},{\"id\":\"17411\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17412\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17409\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17396\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17198\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17183\",\"type\":\"GroupFilter\"},{\"id\":\"17184\",\"type\":\"GroupFilter\"},{\"id\":\"17185\",\"type\":\"GroupFilter\"},{\"id\":\"17186\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17187\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17210\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17186\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17208\",\"type\":\"GroupFilter\"},{\"id\":\"17209\",\"type\":\"GroupFilter\"},{\"id\":\"17210\",\"type\":\"GroupFilter\"},{\"id\":\"17211\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17212\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17206\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17189\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17195\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17193\",\"type\":\"GroupFilter\"},{\"id\":\"17194\",\"type\":\"GroupFilter\"},{\"id\":\"17195\",\"type\":\"GroupFilter\"},{\"id\":\"17196\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17197\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17188\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17190\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17193\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17199\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17184\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17198\",\"type\":\"GroupFilter\"},{\"id\":\"17199\",\"type\":\"GroupFilter\"},{\"id\":\"17200\",\"type\":\"GroupFilter\"},{\"id\":\"17201\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17202\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"17178\",\"type\":\"GroupFilter\"},{\"id\":\"17179\",\"type\":\"GroupFilter\"},{\"id\":\"17180\",\"type\":\"GroupFilter\"},{\"id\":\"17181\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17182\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17196\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17203\",\"type\":\"GroupFilter\"},{\"id\":\"17204\",\"type\":\"GroupFilter\"},{\"id\":\"17205\",\"type\":\"GroupFilter\"},{\"id\":\"17206\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17207\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17205\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17185\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17201\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17208\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17211\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17181\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17194\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17204\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17188\",\"type\":\"GroupFilter\"},{\"id\":\"17189\",\"type\":\"GroupFilter\"},{\"id\":\"17190\",\"type\":\"GroupFilter\"},{\"id\":\"17191\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17192\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17183\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14898\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17200\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17209\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17203\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17180\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17191\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14863\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14697\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15337\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17253\",\"type\":\"GroupFilter\"},{\"id\":\"17254\",\"type\":\"GroupFilter\"},{\"id\":\"17255\",\"type\":\"GroupFilter\"},{\"id\":\"17256\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17257\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14862\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14863\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14630\",\"type\":\"CDSView\"}},\"id\":\"14864\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14698\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15339\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15336\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14910\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14699\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17250\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14866\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14696\",\"type\":\"GroupFilter\"},{\"id\":\"14697\",\"type\":\"GroupFilter\"},{\"id\":\"14698\",\"type\":\"GroupFilter\"},{\"id\":\"14699\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14700\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15329\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17256\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14867\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14701\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14866\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14867\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14635\",\"type\":\"CDSView\"}},\"id\":\"14868\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"17248\",\"type\":\"GroupFilter\"},{\"id\":\"17249\",\"type\":\"GroupFilter\"},{\"id\":\"17250\",\"type\":\"GroupFilter\"},{\"id\":\"17251\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17252\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14702\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"15045\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14703\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14870\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15330\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14704\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14871\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14701\",\"type\":\"GroupFilter\"},{\"id\":\"14702\",\"type\":\"GroupFilter\"},{\"id\":\"14703\",\"type\":\"GroupFilter\"},{\"id\":\"14704\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14705\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14870\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14871\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14640\",\"type\":\"CDSView\"}},\"id\":\"14872\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15342\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14706\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15319\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14906\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14907\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14685\",\"type\":\"CDSView\"}},\"id\":\"14908\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15334\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14874\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14707\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15335\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14708\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14875\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14709\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15325\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14874\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14875\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14645\",\"type\":\"CDSView\"}},\"id\":\"14876\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14907\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14706\",\"type\":\"GroupFilter\"},{\"id\":\"14707\",\"type\":\"GroupFilter\"},{\"id\":\"14708\",\"type\":\"GroupFilter\"},{\"id\":\"14709\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14710\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15326\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14878\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14711\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15322\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17251\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14879\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14712\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15340\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14878\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14879\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14650\",\"type\":\"CDSView\"}},\"id\":\"14880\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14713\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15324\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14906\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14714\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14882\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14711\",\"type\":\"GroupFilter\"},{\"id\":\"14712\",\"type\":\"GroupFilter\"},{\"id\":\"14713\",\"type\":\"GroupFilter\"},{\"id\":\"14714\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14715\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15329\",\"type\":\"GroupFilter\"},{\"id\":\"15330\",\"type\":\"GroupFilter\"},{\"id\":\"15331\",\"type\":\"GroupFilter\"},{\"id\":\"15332\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15333\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14883\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14716\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14882\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14883\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14655\",\"type\":\"CDSView\"}},\"id\":\"14884\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17254\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15010\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15339\",\"type\":\"GroupFilter\"},{\"id\":\"15340\",\"type\":\"GroupFilter\"},{\"id\":\"15341\",\"type\":\"GroupFilter\"},{\"id\":\"15342\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15343\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14717\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15341\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14886\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14718\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15331\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15332\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14887\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14719\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15334\",\"type\":\"GroupFilter\"},{\"id\":\"15335\",\"type\":\"GroupFilter\"},{\"id\":\"15336\",\"type\":\"GroupFilter\"},{\"id\":\"15337\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15338\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17255\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14886\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14887\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14660\",\"type\":\"CDSView\"}},\"id\":\"14888\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14716\",\"type\":\"GroupFilter\"},{\"id\":\"14717\",\"type\":\"GroupFilter\"},{\"id\":\"14718\",\"type\":\"GroupFilter\"},{\"id\":\"14719\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14720\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14902\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14903\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14680\",\"type\":\"CDSView\"}},\"id\":\"14904\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14721\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15324\",\"type\":\"GroupFilter\"},{\"id\":\"15325\",\"type\":\"GroupFilter\"},{\"id\":\"15326\",\"type\":\"GroupFilter\"},{\"id\":\"15327\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15328\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15320\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14890\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15321\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14722\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15317\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14891\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14723\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14890\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14891\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14665\",\"type\":\"CDSView\"}},\"id\":\"14892\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15314\",\"type\":\"GroupFilter\"},{\"id\":\"15315\",\"type\":\"GroupFilter\"},{\"id\":\"15316\",\"type\":\"GroupFilter\"},{\"id\":\"15317\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15318\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14724\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14903\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14721\",\"type\":\"GroupFilter\"},{\"id\":\"14722\",\"type\":\"GroupFilter\"},{\"id\":\"14723\",\"type\":\"GroupFilter\"},{\"id\":\"14724\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14725\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14894\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15319\",\"type\":\"GroupFilter\"},{\"id\":\"15320\",\"type\":\"GroupFilter\"},{\"id\":\"15321\",\"type\":\"GroupFilter\"},{\"id\":\"15322\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15323\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14726\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14895\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15327\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14894\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14895\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14670\",\"type\":\"CDSView\"}},\"id\":\"14896\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14727\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17253\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14902\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14728\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15315\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14729\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15316\",\"type\":\"GroupFilter\"}],\"root_ids\":[\"17889\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"75290f88-a0c2-42ce-96cd-331b5cd94b81\",\"roots\":{\"17889\":\"4bd46861-cf33-49cb-a912-a87e4123b09f\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "17889" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.configurator_footprint(use_timeslider=True, num_quantiles=5);" ] }, { "cell_type": "code", - "execution_count": 23, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"18456\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"18456\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '18456' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"18456\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"18456\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"18456\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '18456' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"18456\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"c2174755-313a-4046-8cc5-cf96e2e8ec61\":{\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"18459\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"18563\",\"type\":\"Column\"}]},\"id\":\"18564\",\"type\":\"Row\"},{\"attributes\":{\"filters\":[{\"id\":\"18490\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"}},\"id\":\"18491\",\"type\":\"CDSView\"},{\"attributes\":{\"children\":[{\"id\":\"18550\",\"type\":\"Button\"}],\"width\":50},\"id\":\"18560\",\"type\":\"WidgetBox\"},{\"attributes\":{},\"id\":\"18572\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"18483\",\"type\":\"ResetTool\"},{\"attributes\":{\"overlay\":{\"id\":\"18570\",\"type\":\"BoxAnnotation\"}},\"id\":\"18481\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"18577\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"18574\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAIPvGHkAAAAAU28E2QAAAABTbwTZAAAAAl4jDVkAAAACXiMNWQAAAgPTouWRAAACA9Oi5ZEAAAACKiMVpQAAAAIqIxWlAAACAqzC+akAAAICrML5qQAAAAAhWy21AAAAACFbLbUAAAABHB9BxQAAAAEcH0HFAAABAHrNBdUAAAEAes0F1QAAAQNhkqnZAAABA2GSqdkAAAAAOde96QAAAAA5173pAAAAgLJydgkAAACAsnJ2CQAAAoC30/otAAACgLfT+i0AAAKAt9P6LQAAAoC30/otAAAAgLJydgkAAACAsnJ2CQAAAAA5173pAAAAADnXvekAAAEDYZKp2QAAAQNhkqnZAAABAHrNBdUAAAEAes0F1QAAAAEcH0HFAAAAARwfQcUAAAAAIVsttQAAAAAhWy21AAACAqzC+akAAAICrML5qQAAAAIqIxWlAAAAAiojFaUAAAID06LlkQAAAgPTouWRAAAAAl4jDVkAAAACXiMNWQAAAABTbwTZAAAAAFNvBNkAAAAAg+8YeQA==\",\"dtype\":\"float64\",\"shape\":[50]},\"y\":{\"__ndarray__\":\"A5IGlA5G/kEDkgaUDkb+QQjj/lHVLrRACOP+UdUutEBBygeI1HqsQEHKB4jUeqxAs3g3ORvOUUCzeDc5G85RQJ0PbsVArUpAnQ9uxUCtSkA/QaILwpRDQD9BogvClENAuTXOfPt2MkC5Nc58+3YyQEEZvNYrSR1AQRm81itJHUCjFvgTnwdXQKMW+BOfB1dAM3iuOnlVG0AzeK46eVUbQPGKRc724BdA8YpFzvbgF0C9t/UnPPgTQL239Sc8+BNAvbf1Jzz4E0C9t/UnPPgTQL239Sc8+BNAvbf1Jzz4E0DxikXO9uAXQPGKRc724BdAM3iuOnlVG0AzeK46eVUbQKMW+BOfB1dAoxb4E58HV0BBGbzWK0kdQEEZvNYrSR1AuTXOfPt2MkC5Nc58+3YyQD9BogvClENAP0GiC8KUQ0CdD27FQK1KQJ0PbsVArUpAs3g3ORvOUUCzeDc5G85RQEHKB4jUeqxAQcoHiNR6rEAI4/5R1S60QAjj/lHVLrRAA5IGlA5G/kEDkgaUDkb+QQ==\",\"dtype\":\"float64\",\"shape\":[50]}},\"selected\":{\"id\":\"18573\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"18574\",\"type\":\"UnionRenderers\"}},\"id\":\"18496\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"18495\",\"type\":\"GlyphRenderer\"},{\"id\":\"18499\",\"type\":\"GlyphRenderer\"},{\"id\":\"18506\",\"type\":\"GlyphRenderer\"},{\"id\":\"18510\",\"type\":\"GlyphRenderer\"},{\"id\":\"18517\",\"type\":\"GlyphRenderer\"},{\"id\":\"18521\",\"type\":\"GlyphRenderer\"},{\"id\":\"18528\",\"type\":\"GlyphRenderer\"},{\"id\":\"18532\",\"type\":\"GlyphRenderer\"},{\"id\":\"18539\",\"type\":\"GlyphRenderer\"},{\"id\":\"18543\",\"type\":\"GlyphRenderer\"}],\"tooltips\":[[\"estimated performance\",\"@mean\"],[\"at-time\",\"@time\"]]},\"id\":\"18545\",\"type\":\"HoverTool\"},{\"attributes\":{\"children\":[{\"id\":\"18559\",\"type\":\"WidgetBox\"},{\"id\":\"18562\",\"type\":\"Row\"}]},\"id\":\"18563\",\"type\":\"Column\"},{\"attributes\":{\"children\":[{\"id\":\"18552\",\"type\":\"Button\"}],\"width\":50},\"id\":\"18561\",\"type\":\"WidgetBox\"},{\"attributes\":{},\"id\":\"18580\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"18496\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18497\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18498\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"18500\",\"type\":\"CDSView\"}},\"id\":\"18499\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"18570\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18498\",\"type\":\"Patch\"},{\"attributes\":{\"children\":[{\"id\":\"18560\",\"type\":\"WidgetBox\"},{\"id\":\"18561\",\"type\":\"WidgetBox\"}]},\"id\":\"18562\",\"type\":\"Row\"},{\"attributes\":{},\"id\":\"18480\",\"type\":\"PanTool\"},{\"attributes\":{\"ticker\":null},\"id\":\"18569\",\"type\":\"LogTickFormatter\"},{\"attributes\":{\"dimension\":1,\"ticker\":{\"id\":\"18475\",\"type\":\"BasicTicker\"}},\"id\":\"18478\",\"type\":\"Grid\"},{\"attributes\":{\"label\":{\"value\":\"budget 10000\"},\"renderers\":[{\"id\":\"18539\",\"type\":\"GlyphRenderer\"},{\"id\":\"18543\",\"type\":\"GlyphRenderer\"}]},\"id\":\"18558\",\"type\":\"LegendItem\"},{\"attributes\":{\"data_source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18493\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18494\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"18491\",\"type\":\"CDSView\"}},\"id\":\"18495\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"18578\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"18479\",\"type\":\"SaveTool\"},{\"id\":\"18480\",\"type\":\"PanTool\"},{\"id\":\"18481\",\"type\":\"BoxZoomTool\"},{\"id\":\"18482\",\"type\":\"WheelZoomTool\"},{\"id\":\"18483\",\"type\":\"ResetTool\"},{\"id\":\"18545\",\"type\":\"HoverTool\"}]},\"id\":\"18484\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"18475\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"18567\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"18479\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"18573\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"18482\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"args\":{\"glyph_renderer0\":{\"id\":\"18495\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"18499\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"18506\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"18510\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"18517\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"18521\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"18528\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"18532\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"18539\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"18543\",\"type\":\"GlyphRenderer\"}},\"code\":\"len_labels = 5;glyph_renderers = [[glyph_renderer0,glyph_renderer1],[glyph_renderer2,glyph_renderer3],[glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7],[glyph_renderer8,glyph_renderer9]];\\n for (i = 0; i < len_labels; i++) {\\n if (cb_obj.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"18547\",\"type\":\"CustomJS\"},{\"attributes\":{\"label\":{\"value\":\"budget 370.3703703703703\"},\"renderers\":[{\"id\":\"18506\",\"type\":\"GlyphRenderer\"},{\"id\":\"18510\",\"type\":\"GlyphRenderer\"}]},\"id\":\"18555\",\"type\":\"LegendItem\"},{\"attributes\":{\"label\":{\"value\":\"all budgets\"},\"renderers\":[{\"id\":\"18495\",\"type\":\"GlyphRenderer\"},{\"id\":\"18499\",\"type\":\"GlyphRenderer\"}]},\"id\":\"18554\",\"type\":\"LegendItem\"},{\"attributes\":{},\"id\":\"18582\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18497\",\"type\":\"Patch\"},{\"attributes\":{},\"id\":\"18579\",\"type\":\"Selection\"},{\"attributes\":{\"children\":[{\"id\":\"18548\",\"type\":\"CheckboxButtonGroup\"}],\"width\":100},\"id\":\"18559\",\"type\":\"WidgetBox\"},{\"attributes\":{\"axis_label\":\"estimated cost\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"18567\",\"type\":\"BasicTickFormatter\"},\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"18475\",\"type\":\"BasicTicker\"}},\"id\":\"18474\",\"type\":\"LinearAxis\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18494\",\"type\":\"Line\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AABAHrNBdUAAAEDYZKp2QAAAQNhkqnZAAACg7M0RgUAAAKDszRGBQAAAIDPJCIdAAAAgM8kIh0AAACAzyQiHQAAAIDPJCIdAAACg7M0RgUAAAKDszRGBQAAAQNhkqnZAAABA2GSqdkAAAEAes0F1QA==\",\"dtype\":\"float64\",\"shape\":[14]},\"y\":{\"__ndarray__\":\"oxb4E58HV0CjFvgTnwdXQDN4rjp5VRtAM3iuOnlVG0Acy6lssGcXQBzLqWywZxdAHMupbLBnF0Acy6lssGcXQBzLqWywZxdAHMupbLBnF0AzeK46eVUbQDN4rjp5VRtAoxb4E58HV0CjFvgTnwdXQA==\",\"dtype\":\"float64\",\"shape\":[14]}},\"selected\":{\"id\":\"18579\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"18580\",\"type\":\"UnionRenderers\"}},\"id\":\"18529\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"18576\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 370.3703703703703\"},\"id\":\"18501\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18530\",\"type\":\"Patch\"},{\"attributes\":{},\"id\":\"18571\",\"type\":\"Selection\"},{\"attributes\":{\"data_source\":{\"id\":\"18529\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18530\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18531\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"18533\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18532\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"source\":{\"id\":\"18496\",\"type\":\"ColumnDataSource\"}},\"id\":\"18500\",\"type\":\"CDSView\"},{\"attributes\":{\"source\":{\"id\":\"18529\",\"type\":\"ColumnDataSource\"}},\"id\":\"18533\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18531\",\"type\":\"Patch\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"all budgets\"},\"id\":\"18490\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"18534\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"}},\"id\":\"18535\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"18575\",\"type\":\"Selection\"},{\"attributes\":{\"label\":{\"value\":\"budget 1111.111111111111\"},\"renderers\":[{\"id\":\"18517\",\"type\":\"GlyphRenderer\"},{\"id\":\"18521\",\"type\":\"GlyphRenderer\"}]},\"id\":\"18556\",\"type\":\"LegendItem\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18538\",\"type\":\"Line\"},{\"attributes\":{\"label\":{\"value\":\"budget 3333.333333333333\"},\"renderers\":[{\"id\":\"18528\",\"type\":\"GlyphRenderer\"},{\"id\":\"18532\",\"type\":\"GlyphRenderer\"}]},\"id\":\"18557\",\"type\":\"LegendItem\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 10000\"},\"id\":\"18534\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_color\":\"#1b9e77\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18493\",\"type\":\"Line\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18541\",\"type\":\"Patch\"},{\"attributes\":{},\"id\":\"18581\",\"type\":\"Selection\"},{\"attributes\":{\"line_color\":\"#66a61e\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18537\",\"type\":\"Line\"},{\"attributes\":{\"click_policy\":\"hide\",\"items\":[{\"id\":\"18554\",\"type\":\"LegendItem\"},{\"id\":\"18555\",\"type\":\"LegendItem\"},{\"id\":\"18556\",\"type\":\"LegendItem\"},{\"id\":\"18557\",\"type\":\"LegendItem\"},{\"id\":\"18558\",\"type\":\"LegendItem\"}],\"label_text_font_size\":{\"value\":\"8pt\"},\"location\":\"bottom_left\"},\"id\":\"18553\",\"type\":\"Legend\"},{\"attributes\":{\"callback\":null},\"id\":\"18463\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18542\",\"type\":\"Patch\"},{\"attributes\":{\"axis_label\":\"time (sec)\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"18569\",\"type\":\"LogTickFormatter\"},\"major_label_orientation\":0.75,\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"18470\",\"type\":\"LogTicker\"}},\"id\":\"18469\",\"type\":\"LogAxis\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18520\",\"type\":\"Patch\"},{\"attributes\":{\"source\":{\"id\":\"18507\",\"type\":\"ColumnDataSource\"}},\"id\":\"18511\",\"type\":\"CDSView\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"18548\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"18495\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"18499\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"18506\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"18510\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"18517\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"18521\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"18528\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"18532\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"18539\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"18543\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = []; checkbox.active = labels;len_labels = 5;glyph_renderers = [[glyph_renderer0,glyph_renderer1],[glyph_renderer2,glyph_renderer3],[glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7],[glyph_renderer8,glyph_renderer9]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"18551\",\"type\":\"CustomJS\"},{\"attributes\":{},\"id\":\"18465\",\"type\":\"LogScale\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18509\",\"type\":\"Patch\"},{\"attributes\":{\"callback\":null,\"end\":895.8692276477814,\"start\":7.69431734085083},\"id\":\"18458\",\"type\":\"Range1d\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"18548\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"18495\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"18499\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"18506\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"18510\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"18517\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"18521\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"18528\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"18532\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"18539\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"18543\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = [0, 1, 2, 3, 4]; checkbox.active = labels;len_labels = 5;glyph_renderers = [[glyph_renderer0,glyph_renderer1],[glyph_renderer2,glyph_renderer3],[glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7],[glyph_renderer8,glyph_renderer9]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"18549\",\"type\":\"CustomJS\"},{\"attributes\":{\"data_source\":{\"id\":\"18507\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18508\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18509\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"18511\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18510\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"18512\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"}},\"id\":\"18513\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18516\",\"type\":\"Line\"},{\"attributes\":{\"data_source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18504\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18505\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"18502\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18506\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"18523\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"}},\"id\":\"18524\",\"type\":\"CDSView\"},{\"attributes\":{\"num_minor_ticks\":10},\"id\":\"18470\",\"type\":\"LogTicker\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18505\",\"type\":\"Line\"},{\"attributes\":{\"data_source\":{\"id\":\"18518\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18519\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18520\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"18522\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18521\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAACFbLbUAAAABHB9BxQAAAAEcH0HFAAABA2GInf0AAAEDYYid/QAAAIIjGp4BAAAAgiMangEAAACCIxqeAQAAAIIjGp4BAAABA2GInf0AAAEDYYid/QAAAAEcH0HFAAAAARwfQcUAAAAAIVsttQA==\",\"dtype\":\"float64\",\"shape\":[14]},\"y\":{\"__ndarray__\":\"uTXOfPt2MkC5Nc58+3YyQEEZvNYrSR1AQRm81itJHUDl2AB5+aYVQOXYAHn5phVA5dgAefmmFUDl2AB5+aYVQOXYAHn5phVA5dgAefmmFUBBGbzWK0kdQEEZvNYrSR1AuTXOfPt2MkC5Nc58+3YyQA==\",\"dtype\":\"float64\",\"shape\":[14]}},\"selected\":{\"id\":\"18577\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"18578\",\"type\":\"UnionRenderers\"}},\"id\":\"18518\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAADnXvekAAACAsnJ2CQAAAICycnYJAAACgLfT+i0AAAKAt9P6LQAAAoC30/otAAACgLfT+i0AAACAsnJ2CQAAAICycnYJAAAAADnXvekA=\",\"dtype\":\"float64\",\"shape\":[10]},\"y\":{\"__ndarray__\":\"8YpFzvbgF0DxikXO9uAXQL239Sc8+BNAvbf1Jzz4E0C9t/UnPPgTQL239Sc8+BNAvbf1Jzz4E0C9t/UnPPgTQPGKRc724BdA8YpFzvbgF0A=\",\"dtype\":\"float64\",\"shape\":[10]}},\"selected\":{\"id\":\"18581\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"18582\",\"type\":\"UnionRenderers\"}},\"id\":\"18540\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 1111.111111111111\"},\"id\":\"18512\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18508\",\"type\":\"Patch\"},{\"attributes\":{\"line_color\":\"#7570b3\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18515\",\"type\":\"Line\"},{\"attributes\":{\"data_source\":{\"id\":\"18540\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18541\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18542\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"18544\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18543\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18515\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18516\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"18513\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18517\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"active\":[0],\"callback\":{\"id\":\"18547\",\"type\":\"CustomJS\"},\"labels\":[\"all budgets\",\"budget 370.3703703703703\",\"budget 1111.111111111111\",\"budget 3333.333333333333\",\"budget 10000\"]},\"id\":\"18548\",\"type\":\"CheckboxButtonGroup\"},{\"attributes\":{\"text\":\"Cost over time\",\"text_font_size\":{\"value\":\"15pt\"}},\"id\":\"18460\",\"type\":\"Title\"},{\"attributes\":{\"background_fill_color\":{\"value\":null},\"below\":[{\"id\":\"18469\",\"type\":\"LogAxis\"}],\"border_fill_color\":{\"value\":null},\"center\":[{\"id\":\"18473\",\"type\":\"Grid\"},{\"id\":\"18478\",\"type\":\"Grid\"}],\"left\":[{\"id\":\"18474\",\"type\":\"LinearAxis\"}],\"plot_height\":500,\"plot_width\":700,\"renderers\":[{\"id\":\"18495\",\"type\":\"GlyphRenderer\"},{\"id\":\"18499\",\"type\":\"GlyphRenderer\"},{\"id\":\"18506\",\"type\":\"GlyphRenderer\"},{\"id\":\"18510\",\"type\":\"GlyphRenderer\"},{\"id\":\"18517\",\"type\":\"GlyphRenderer\"},{\"id\":\"18521\",\"type\":\"GlyphRenderer\"},{\"id\":\"18528\",\"type\":\"GlyphRenderer\"},{\"id\":\"18532\",\"type\":\"GlyphRenderer\"},{\"id\":\"18539\",\"type\":\"GlyphRenderer\"},{\"id\":\"18543\",\"type\":\"GlyphRenderer\"}],\"right\":[{\"id\":\"18553\",\"type\":\"Legend\"}],\"title\":{\"id\":\"18460\",\"type\":\"Title\"},\"toolbar\":{\"id\":\"18484\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"18458\",\"type\":\"Range1d\"},\"x_scale\":{\"id\":\"18465\",\"type\":\"LogScale\"},\"y_range\":{\"id\":\"18463\",\"type\":\"DataRange1d\"},\"y_scale\":{\"id\":\"18467\",\"type\":\"LinearScale\"}},\"id\":\"18459\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 3333.333333333333\"},\"id\":\"18523\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":{\"id\":\"18551\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"None\"},\"id\":\"18552\",\"type\":\"Button\"},{\"attributes\":{\"source\":{\"id\":\"18540\",\"type\":\"ColumnDataSource\"}},\"id\":\"18544\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18519\",\"type\":\"Patch\"},{\"attributes\":{\"data_source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18537\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18538\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"18535\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18539\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAIPvGHkAAAAAU28E2QAAAABTbwTZAAAAAl4jDVkAAAACXiMNWQAAAgPTouWRAAACA9Oi5ZEAAAACKiMVpQAAAAIqIxWlAAACAqzC+akAAAICrML5qQAAAgNaXi2xAAACA1peLbEAAAIDWl4tsQAAAgNaXi2xAAACAqzC+akAAAICrML5qQAAAAIqIxWlAAAAAiojFaUAAAID06LlkQAAAgPTouWRAAAAAl4jDVkAAAACXiMNWQAAAABTbwTZAAAAAFNvBNkAAAAAg+8YeQA==\",\"dtype\":\"float64\",\"shape\":[26]},\"y\":{\"__ndarray__\":\"A5IGlA5G/kEDkgaUDkb+QQjj/lHVLrRACOP+UdUutEBBygeI1HqsQEHKB4jUeqxAs3g3ORvOUUCzeDc5G85RQJ0PbsVArUpAnQ9uxUCtSkA/QaILwpRDQD9BogvClENAP0GiC8KUQ0A/QaILwpRDQD9BogvClENAP0GiC8KUQ0CdD27FQK1KQJ0PbsVArUpAs3g3ORvOUUCzeDc5G85RQEHKB4jUeqxAQcoHiNR6rEAI4/5R1S60QAjj/lHVLrRAA5IGlA5G/kEDkgaUDkb+QQ==\",\"dtype\":\"float64\",\"shape\":[26]}},\"selected\":{\"id\":\"18575\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"18576\",\"type\":\"UnionRenderers\"}},\"id\":\"18507\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"line_color\":\"#e7298a\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18526\",\"type\":\"Line\"},{\"attributes\":{\"filters\":[{\"id\":\"18501\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"}},\"id\":\"18502\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":{\"id\":\"18549\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"All\"},\"id\":\"18550\",\"type\":\"Button\"},{\"attributes\":{},\"id\":\"18467\",\"type\":\"LinearScale\"},{\"attributes\":{\"ticker\":{\"id\":\"18470\",\"type\":\"LogTicker\"}},\"id\":\"18473\",\"type\":\"Grid\"},{\"attributes\":{\"line_color\":\"#d95f02\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18504\",\"type\":\"Line\"},{\"attributes\":{\"callback\":null,\"data\":{\"burn_in\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"l_rate\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"lower\":[8126523712.410647,8126523712.410647,5166.833282404354,5166.833282404354,3645.415100329818,3645.415100329818,71.2204115907396,71.2204115907396,53.35353916048118,53.35353916048118,39.162171797014246,39.162171797014246,18.464774895042613,18.464774895042613,7.3214562942797,7.3214562942797,92.1190843508471,92.1190843508471,6.833470265291953,6.833470265291953,5.96969148921447,5.96969148921447,4.992416977283878,4.992416977283878,4.992416977283878,8126523712.410647,8126523712.410647,5166.833282404354,5166.833282404354,3645.415100329818,3645.415100329818,71.2204115907396,71.2204115907396,53.35353916048118,53.35353916048118,39.162171797014246,39.162171797014246,39.162171797014246,18.464774895042613,18.464774895042613,7.3214562942797,7.3214562942797,5.413061037708961,5.413061037708961,5.413061037708961,92.1190843508471,92.1190843508471,6.833470265291953,6.833470265291953,5.851258943427435,5.851258943427435,5.851258943427435,5.96969148921447,5.96969148921447,4.992416977283878,4.992416977283878,4.992416977283878],\"mdecay\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"mean\":[8126523712.410647,8126523712.410647,5166.833282404354,5166.833282404354,3645.415100329818,3645.415100329818,71.2204115907396,71.2204115907396,53.35353916048118,53.35353916048118,39.162171797014246,39.162171797014246,18.464774895042613,18.464774895042613,7.3214562942797,7.3214562942797,92.1190843508471,92.1190843508471,6.833470265291953,6.833470265291953,5.96969148921447,5.96969148921447,4.992416977283878,4.992416977283878,4.992416977283878,8126523712.410647,8126523712.410647,5166.833282404354,5166.833282404354,3645.415100329818,3645.415100329818,71.2204115907396,71.2204115907396,53.35353916048118,53.35353916048118,39.162171797014246,39.162171797014246,39.162171797014246,18.464774895042613,18.464774895042613,7.3214562942797,7.3214562942797,5.413061037708961,5.413061037708961,5.413061037708961,92.1190843508471,92.1190843508471,6.833470265291953,6.833470265291953,5.851258943427435,5.851258943427435,5.851258943427435,5.96969148921447,5.96969148921447,4.992416977283878,4.992416977283878,4.992416977283878],\"n_units_1\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"n_units_2\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"name\":[\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 1111.111111111111\",\"budget 1111.111111111111\",\"budget 1111.111111111111\",\"budget 1111.111111111111\",\"budget 1111.111111111111\",\"budget 1111.111111111111\",\"budget 1111.111111111111\",\"budget 3333.333333333333\",\"budget 3333.333333333333\",\"budget 3333.333333333333\",\"budget 3333.333333333333\",\"budget 3333.333333333333\",\"budget 3333.333333333333\",\"budget 3333.333333333333\",\"budget 10000\",\"budget 10000\",\"budget 10000\",\"budget 10000\",\"budget 10000\"],\"time\":[7.69431734085083,22.757249116897583,22.757249116897583,91.05521178245544,91.05521178245544,165.80968689918518,165.80968689918518,206.17291736602783,206.17291736602783,213.94344115257263,213.94344115257263,238.35425186157227,238.35425186157227,285.00177669525146,285.00177669525146,340.10623002052307,340.10623002052307,362.6496202945709,362.6496202945709,430.96607780456543,430.96607780456543,595.7012560367584,595.7012560367584,895.8692276477814,895.8692276477814,7.69431734085083,22.757249116897583,22.757249116897583,91.05521178245544,91.05521178245544,165.80968689918518,165.80968689918518,206.17291736602783,206.17291736602783,213.94344115257263,213.94344115257263,228.36228489875793,228.36228489875793,238.35425186157227,285.00177669525146,285.00177669525146,498.4616320133209,498.4616320133209,532.9719393253326,532.9719393253326,340.10623002052307,362.6496202945709,362.6496202945709,546.2255489826202,546.2255489826202,737.0982420444489,737.0982420444489,430.96607780456543,595.7012560367584,595.7012560367584,895.8692276477814,895.8692276477814],\"upper\":[8126523712.410647,8126523712.410647,5166.833282404354,5166.833282404354,3645.415100329818,3645.415100329818,71.2204115907396,71.2204115907396,53.35353916048118,53.35353916048118,39.162171797014246,39.162171797014246,18.464774895042613,18.464774895042613,7.3214562942797,7.3214562942797,92.1190843508471,92.1190843508471,6.833470265291953,6.833470265291953,5.96969148921447,5.96969148921447,4.992416977283878,4.992416977283878,4.992416977283878,8126523712.410647,8126523712.410647,5166.833282404354,5166.833282404354,3645.415100329818,3645.415100329818,71.2204115907396,71.2204115907396,53.35353916048118,53.35353916048118,39.162171797014246,39.162171797014246,39.162171797014246,18.464774895042613,18.464774895042613,7.3214562942797,7.3214562942797,5.413061037708961,5.413061037708961,5.413061037708961,92.1190843508471,92.1190843508471,6.833470265291953,6.833470265291953,5.851258943427435,5.851258943427435,5.851258943427435,5.96969148921447,5.96969148921447,4.992416977283878,4.992416977283878,4.992416977283878]},\"selected\":{\"id\":\"18571\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"18572\",\"type\":\"UnionRenderers\"}},\"id\":\"18457\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"source\":{\"id\":\"18518\",\"type\":\"ColumnDataSource\"}},\"id\":\"18522\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18526\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18527\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"18524\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18528\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18527\",\"type\":\"Line\"}],\"root_ids\":[\"18564\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"c2174755-313a-4046-8cc5-cf96e2e8ec61\",\"roots\":{\"18564\":\"a4f5d7d7-4571-41ff-8a30-978065ef774e\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "18564" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.cost_over_time();" ] }, { "cell_type": "code", - "execution_count": 24, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/shuki/Repos/BOHBsCAVE/.ve_BOHBsCAVE/lib/python3.6/site-packages/numpy/core/fromnumeric.py:2389: FutureWarning: Method .ptp is deprecated and will be removed in a future version. Use numpy.ptp instead.\n", - " return ptp(axis=axis, out=out, **kwargs)\n" - ] - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABdwAAAH0CAYAAAAnhe8sAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAPYQAAD2EBqD+naQAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzs3XucjOX/x/HX7LLL5rS0TjmzawkhQlukhJSKUOgblYhKdJbQSemAdCQJCckhvxBFjokSOe86t9aZjXVmD9fvj3tnzOwu5p6dXbt6Px+Peay5Zu5rrlmzc8+87+v+XA5jjEFERERERERERERERDIl4EoPQERERERERERERETkaqDAXURERERERERERETEDxS4i4iIiIiIiIiIiIj4gQJ3ERERERERERERERE/UOAuIiIiIiIiIiIiIuIHCtxFRERERERERERERPxAgbuIiIiIiIiIiIiIiB8ocBcRERERERERERER8QMF7iIiIiIiIiIiIiIifqDAXURERERERERERETEDxS4i4iIiIiIiIiIiIj4gQJ3ERERERERERERERE/UOAuIiIiIiIiIiIiIuIHCtxFRERERERERERERPxAgbuIiIiIiIiIiIiIiB8ocBcRERERERERERER8QMF7iIiIiIiIiIiIiIifqDAXURERERERERERETEDxS4i4iIiIiIiIiIiIj4gQJ3ERERERERERERERE/UOAuIiIiIiIiIiIiIuIHCtxFRERERERERERERPxAgbuIiIiIiIiIiIiIiB8ocBcRERERERERERER8QMF7iIiIiIiIiIiIiIifqDAXURERERERERERETED/Jc6QH816SkpLBv3z4KFiyIw+G40sMRERHxu+TkZLZv306VKlUIDAy80sMRERHxq8TERFasWEGNGjXIk0dfqUVE5OqSkpLCwYMHqVOnjvZzPtJvLZvt27ePsmXLXulhiIiIiIiIiIiIiGTozz//pH79+ld6GLmSAvdsVrBgQQDi4uIoVKjQFR6NiIiI/+3Zs4frr79e+zoREbkqRUdH07BhQ/78809KlSp1pYcjIiLiV/v37+emm26iRIkSV3oouZYC92zmLCNTqFAhhRAiInJVcu7ftK8TEZGrkXPfVqpUKcqUKXOFRyMiIpI1AgK09Kev9JsTEREREREREREREfEDBe4iIiIiIiIiIiIiIn6gwF1ERERERERERERExA8UuIuIiIiIiIiIiIiI+IECdxERERERERERERERP1DgLiIiIiIiIiIiIiLiBwrcrxBjzJUegoiIiIiIiIiIiAgAKSkpDB069EoPI9fLtsB99erVDBkyhLZt21KmTBkcDgcOh8NWH82aNXNtt2fPHlvbdu3a1bVtRpeRI0em2+bIkSOMGTOG7t27U7t2bfLkyYPD4WDcuHG2HjsjDz74IPHx8ZnuR0REcr8zZ84wcOBAIiIiyJcvH6VLl+axxx5j7969tvs6evQozz77LOXLlyc4OJjy5cvTp08fjh07dtFt9uzZw5NPPkm5cuUIDg6mdOnSdO3alV27dmXmaYmIiAD+2c8dO3aMSZMm0bFjRypWrEhQUBAFCxakQYMGjBgxgsTERK/6OX/+PNWrV8fhcJAnTx5fn5KIiMhVJyEhgfvvv5+PPvrIp+39+b12/vz53H333YSFhZE3b16KFStG8+bN+eGHHy66zapVq+jQoQOlS5cmb968FClShFtvvZWxY8dm+8Rnh8mmR7z//vv5v//7v3Tt3j78uHHjePTRR3E4HBhjiIuLo0yZMl4/fteuXRk/fjwtWrSgZMmS6W7v0qULTZs29WibOXMmbdq0SXffsWPH0rVrV68f293x48cpXLgwAGXKlGHy5MnccsstPvUlIiK539mzZ2natCkrV66kVKlS3Hrrrfzzzz/8+eefhIWFsXLlSipVquRVX0eOHKFRo0Zs376dSpUqUa9ePTZt2sSmTZuIiIhgxYoVFC1a1GObjRs30rRpU44cOUKFChWoW7cuO3bsYN26dRQqVIilS5dyww03XPaxY2NjGTBgAMuXLychIYH4+Hjq169Pw4YNadasGc2bNydfvnw+/Y5ERCT38td+7rXXXmPw4ME4HA5q165NREQEhw8fZvny5Zw7d45bbrmFn3/+mZCQkEv28/rrr/Pmm29ijCEwMJCkpKRL3v/UqVNs3bqVmJgYYmJi2LZtG0ePHmXevHm89tpr9OnTh2LFitn6nYiIiOQ0W7Zs4b777mPLli2uNjvZqz+/13700Uf07dsXh8NBo0aNKFu2LHFxcaxYsQJjDK+++iqDBw/22Gb69Ok8+OCDJCcnU7duXapUqcLhw4dZtmwZSUlJdOrUiYkTJ3r/C8ksk02GDBliBgwYYH788Uezf/9+ExwcbLx9+EOHDpmiRYua5s2bm/LlyxvAxMXF2Xr8Ll26GMAsWrTI621+//1306tXL/P111+bDRs2mCeeeMIAZuzYsbYe211CQoIBXJfAwEDzzjvvmOTkZJ/7FBGR3Kt///4GMI0aNTInTpxwtQ8dOtQApkmTJl731blzZwOYtm3bmsTERFf7M888YwDTpUsXj/unpKSYmjVrGsA89thjHtt8/PHHBjDVq1c3SUlJF33M5ORk07FjR+NwODz2bxld8ufPb6pUqWLuu+8+8/7775uYmBivn5uIiORO/trPvfPOO+all14ysbGxHu1bt2415cqVM4Dp16/fJfvYvHmzCQoKMt27d3d9FzPG2h8eOHDALF682HzxxRfm2WefNS1atHB997zUJTg42HTv3t3Ex8fb+8WIiIjkED/++KMpVKiQa99WJPWnnezVX/v7Q4cOmeDgYJM3b16zePFij9uWLFligoODjcPhMDt27HC1JyYmmuLFixvATJw40WObzZs3m6JFixrALFy40Ovnk1nZFrinZSdw79Spk8mXL5/Zvn17tgbuafXo0cNvgfstaT6oNW/e3Bw4cMDnfkVEJPc5d+6cKVy4sAHMmjVr0t1eq1YtA5i//vrrsn3t27fPBAQEmKCgoHT7k7Nnz5qwsDATGBhoDh486GpftmyZAUzRokU9PhQ53XzzzQYwM2fOzPAx//nnH1OqVKnLhhGXugQEBJhixYqZ+vXrm549e5pp06ZlOBYREcl9/Lmfu5RJkyYZwFSoUOGi90lJSTFRUVGmWLFiZuLEiQYwDofDNGzY0BQpUiRT+zLAFC9e3EyePNmkpKRk6rmIiIhkl+TkZPPmm2967M9qgllmM3D35/5+1qxZBjAtWrTI8PZ7773XAGbKlCmutg0bNhjAVK1aNcNtevfubQDz3nvvefV8/CHHL5o6b948Jk2aRP/+/alcufKVHo7f/B8wkAtF9H/55Rdq167NwoULr+CoREQkOznLr1SuXJk6deqku71du3YAzJo167J9zZs3j5SUFG699VZKlCjhcVtwcDCtW7cmOTmZn376ydW+evVqAG688UYKFCiQrk9nqbWMSsJ9++23VKlShf379wPgAB4CVgLRwC5gFjAY6ABEAoEZjDslJYX4+HhWrVrFF198Qbt27ShYsCD58+encuXK3HPPPbz7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\n", - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.parallel_coordinates(run='budget_10000');" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { @@ -2127,6 +266,18 @@ "display_name": "BOHBsCAVE", "language": "python", "name": "bohbscave" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.7" } }, "nbformat": 4, diff --git a/examples/icml_2018_experiments/cartpole.ipynb b/examples/icml_2018_experiments/cartpole.ipynb index 59adaa9..3e73ead 100644 --- a/examples/icml_2018_experiments/cartpole.ipynb +++ b/examples/icml_2018_experiments/cartpole.ipynb @@ -11,7 +11,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "In this series of notebooks, we will replicate and analyze the ICML 2018 experiments that where used for benchmarking in BOHB (Falkner et al. 2018).\n", + "In this series of notebooks, we will replicate and analyze the ICML 2018 experiments that were used for benchmarking in BOHB (Falkner et al. 2018).\n", "In addition to HpBandSter, we will use CAVE to analyze and visualize the optimization process." ] }, @@ -19,7 +19,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## About the frameworks\n", + "## About this experiment\n", "\n", "### Cartpole\n", "\n", @@ -38,43 +38,19 @@ ] }, { - "cell_type": "code", - "execution_count": null, + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [ - "# We deactivate logging to ensure readability\n", - "import logging\n", - "logging.basicConfig(level=logging.ERROR)\n", - "# Also, we suppress warnings.\n", - "# If there are problems for you executing this notebook, you might want to comment this out.\n", - "import warnings\n", - "warnings.filterwarnings(\"ignore\")" + "This examples ships with all the code necessary to reproduce the experiment. Because it takes a few days to generate the data, the results of the optimization are provided in `examples/icml_2018_experiments/opt_results/`. If you want to generate the data (from examples/icml_2018_experiments), just run:" ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": null, "metadata": {}, + "outputs": [], "source": [ - "### 1.1) References\n", - "*Worker*: We need a Worker to define the kind of computation we want to optimize. The worker used for the experiments is located in `workers/cartpole_worker.py`\n", - "\n", - "\n", - "\n", - "*ConfigSpace*: Every problem needs a description of the search space to be complete. In HpBandSter, a ConfigurationSpace-object defines all hyperparameters, their ranges and dependencies between them.\n", - "\n", - "In our example here, the search space consists of the hyperparameters:\n", - " \n", - "\n", - "| Name | Type | Values |\n", - "|:-------------------------:|:-------:|:----------------:|\n", - "| batch_size | integer | [8, 256] log |\n", - "| discount | real | [0.0, 1.0] |\n", - "| entropy_regularization | real | [0.0, 1.0] |\n", - "| learning_rate | real | [1e-07, 0.1] log |\n", - "| likelihood_ratio_clipping | real | [0.0, 1.0] |\n", - "| n_units_1 | float | [8, 128] |\n", - "| n_units_2 | float | [8, 1<28] |" + "! python scripts/run_experiment.py --exp_name cartpole --num_iterations 1 --min_budget 1 --max_budget 3 --n_workers 1" ] }, { @@ -83,92 +59,8 @@ "scrolled": false }, "source": [ - "### 1.3) Setting up the experiment and running the optimizer(s)\n", - "\n", - "Please note that the execution of the experiment with all datasets might take up to a few days, depending on your hardware. You can also skip this step and process with the precomputed results saved in `opt_results/cartpole`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": false - }, - "outputs": [], - "source": [ - "import os\n", - "from itertools import product\n", - "import numpy as np\n", - "\n", - "import hpbandster.core.nameserver as hpns\n", - "import hpbandster.core.result as hpres\n", - "from hpbandster.optimizers import BOHB, RandomSearch, HyperBand\n", - "\n", - "from workers.cartpole_worker import CartpoleReducedWorker\n", - "\n", - "# Run the experiment, evaluate each dataset on each optimizer\n", - "\n", - "datasets = ['toyfunction', 'bostonhousing', 'proteinstructure']\n", - "opt_methods = [\"smac\", \"bohb\", \"randomsearch\", \"hyperband\"]\n", - "num_iterations = 4\n", - "min_budget = 300\n", - "max_budget = 10000\n", - "\n", - "eta = 3\n", - "\n", - "for dataset, opt_method in product(datasets, opt_methods):\n", - "\n", - " print(dataset, opt_method)\n", - " \n", - " output_dir = \"opt_results/bnn/{}/{}\".format(dataset, opt_method)\n", - " if not os.path.exists(output_dir):\n", - " os.makedirs(output_dir)\n", - "\n", - " run_id = '0' # Every run has to have a unique (at runtime) id.\n", - " \n", - " # create a worker\n", - " worker = BNNWorker(dataset=dataset, measure_test_loss=False, run_id=run_id, max_budget=max_budget)\n", - " configspace = worker.configspace\n", - "\n", - " if opt_method in ['randomsearch', 'bohb', 'hyperband']:\n", - " # setup a nameserver\n", - " NS = hpns.NameServer(run_id=run_id, host='localhost', port=0, working_directory=output_dir)\n", - " ns_host, ns_port = NS.start()\n", - "\n", - " worker.load_nameserver_credentials(output_dir)\n", - " worker.run(background=True)\n", - "\n", - " # instantiate and run optimizer\n", - " opt = RandomSearch if opt_method == 'randomsearch' else BOHB if opt_method == 'bohb' else HyperBand\n", - "\n", - " result_logger = hpres.json_result_logger(directory=output_dir, overwrite=True)\n", - "\n", - " opt = opt(configspace, eta=3,\n", - " working_directory=output_dir,\n", - " run_id=run_id,\n", - " min_budget=min_budget, max_budget=max_budget,\n", - " host=ns_host,\n", - " nameserver=ns_host,\n", - " nameserver_port = ns_port,\n", - " ping_interval=3600,\n", - " result_logger=result_logger)\n", - "\n", - " result = opt.run(n_iterations=num_iterations)\n", - " \n", - " # **NOTE:** Unfortunately, the configuration space is *not yet saved automatically* to file\n", - " # but this step is mandatory for the analysis with CAVE. \n", - " # We recommend to save the configuration space every time you use BOHB.\n", - " # We do this by using the ConfigSpace-to-json-writer.\n", - "\n", - " from ConfigSpace.read_and_write import pcs_new\n", - " with open(os.path.join(output_dir, 'configspace.pcs'), 'w') as fh:\n", - " fh.write(pcs_new.write(opt.config_generator.configspace))\n", - " \n", - " else:\n", - " # the number of iterations for the blackbox optimizers must be increased so they have comparable total budgets\n", - " bb_iterations = int(num_iterations * (1+(np.log(max_budget) - np.log(min_budget))/np.log(eta)))\n", - " if opt_method == 'smac':\n", - " result = worker.run_smac(bb_iterations, deterministic=True, working_directory=output_dir)" + "You can use this script to generate the optimization data for a variety of optimizers, the results will (by default) be stored in `examples/icml_2018_experiments/EXPERIMENT/OPTIMIZER`. Use `python run_experiment --help` to see how to use the script.\n", + "If you have access to a cluster, take a look at the scripts provided for cluster computation on a SLURM cluster at `examples/icml_2018_experiments/scripts/cluster/`." ] }, { @@ -184,7 +76,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": { "scrolled": false }, @@ -192,10 +84,10 @@ "source": [ "from cave.cavefacade import CAVE\n", "\n", - "cave = CAVE(folders=[\"opt_results/cart/bohb\"], # .../bnn/DATASET/OPTIMIZER\n", - " output_dir=\"CAVE_reports/bnn_notebook\", # output for debug/images/etc\n", - " ta_exec_dir=[\".\"], # Only important for SMAC-results\n", - " file_format='BOHB', # BOHB or SMAC3\n", + "cave = CAVE(folders=[\"opt_results/cartpole/bohb\"],\n", + " output_dir=\"CAVE_reports/cartpole_notebook\", # output for debug/images/etc\n", + " ta_exec_dir=[\".\"], # Only important for SMAC-results\n", + " file_format='BOHB', # BOHB or SMAC3\n", " verbose_level='OFF',\n", " show_jupyter=True,\n", " )" @@ -205,26 +97,18 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "To generate the HTML-report you can use the `analyze`-method. The report is located in `output_dir/report.html`, so in this case in `CAVE_reports/bnn_notebook/report.html`." + "To generate the HTML-report you can use the `analyze`-method. The report is located in `output_dir/report.html`, so in this case in `CAVE_reports/cartpole_notebook/report.html`." ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/shuki/Repos/BOHBsCAVE/.ve_BOHBsCAVE/lib/python3.6/site-packages/numpy/core/fromnumeric.py:2389: FutureWarning: Method .ptp is deprecated and will be removed in a future version. Use numpy.ptp instead.\n", - " return ptp(axis=axis, out=out, **kwargs)\n" - ] - } - ], + "outputs": [], "source": [ + "%%capture\n", "cave.analyze()\n", - "! firefox CAVE_reports/bnn_notebook/report.html" + "! firefox CAVE_reports/cartpole_notebook/report.html" ] }, { @@ -238,467 +122,22 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"14224\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"14224\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '14224' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"14224\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"14224\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"14224\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '14224' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"14224\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"29192e80-202c-4814-8944-ba76b9d398e9\":{\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"14231\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"14353\",\"type\":\"Column\"}]},\"id\":\"14354\",\"type\":\"Row\"},{\"attributes\":{},\"id\":\"14252\",\"type\":\"ResetTool\"},{\"attributes\":{\"ticker\":{\"id\":\"14239\",\"type\":\"BasicTicker\"}},\"id\":\"14242\",\"type\":\"Grid\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14310\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14311\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"14308\",\"type\":\"CDSView\"}},\"id\":\"14312\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"14250\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14277\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14278\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"14275\",\"type\":\"CDSView\"}},\"id\":\"14279\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"bounds\":\"auto\",\"callback\":null,\"end\":10962.962962962964,\"start\":-592.5925925925926},\"id\":\"14229\",\"type\":\"Range1d\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"14287\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"2\"},\"id\":\"14300\",\"type\":\"GroupFilter\"},{\"attributes\":{\"overlay\":{\"id\":\"14472\",\"type\":\"BoxAnnotation\"}},\"id\":\"14251\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14277\",\"type\":\"Circle\"},{\"attributes\":{\"filters\":[{\"id\":\"14300\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"}},\"id\":\"14301\",\"type\":\"CDSView\"},{\"attributes\":{\"high\":31586347444678.41,\"low\":4.992416977283878,\"palette\":[\"#5e4fa2\",\"#3288bd\",\"#66c2a5\",\"#abdda4\",\"#e6f598\",\"#ffffbf\",\"#fee08b\",\"#fdae61\",\"#f46d43\",\"#d53e4f\",\"#9e0142\"]},\"id\":\"14228\",\"type\":\"LinearColorMapper\"},{\"attributes\":{\"data_source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14303\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14304\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"14301\",\"type\":\"CDSView\"}},\"id\":\"14305\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"14239\",\"type\":\"BasicTicker\"},{\"attributes\":{\"filters\":[{\"id\":\"14266\",\"type\":\"GroupFilter\"},{\"id\":\"14267\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14268\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14311\",\"type\":\"CircleX\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"14274\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14304\",\"type\":\"MultiLine\"},{\"attributes\":{},\"id\":\"14475\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"0\"},\"id\":\"14266\",\"type\":\"GroupFilter\"},{\"attributes\":{\"text\":\"\"},\"id\":\"14467\",\"type\":\"Title\"},{\"attributes\":{\"bounds\":\"auto\",\"callback\":null,\"end\":63172694889351.83,\"start\":4.493175279555491},\"id\":\"14230\",\"type\":\"Range1d\"},{\"attributes\":{\"filters\":[{\"id\":\"14260\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"}},\"id\":\"14261\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"14293\",\"type\":\"GroupFilter\"},{\"id\":\"14294\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14295\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"14249\",\"type\":\"PanTool\"},{\"attributes\":{\"filters\":[{\"id\":\"14320\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"}},\"id\":\"14321\",\"type\":\"CDSView\"},{\"attributes\":{\"below\":[{\"id\":\"14238\",\"type\":\"LinearAxis\"}],\"center\":[{\"id\":\"14242\",\"type\":\"Grid\"},{\"id\":\"14247\",\"type\":\"Grid\"}],\"left\":[{\"id\":\"14243\",\"type\":\"LogAxis\"}],\"plot_height\":500,\"renderers\":[{\"id\":\"14265\",\"type\":\"GlyphRenderer\"},{\"id\":\"14272\",\"type\":\"GlyphRenderer\"},{\"id\":\"14279\",\"type\":\"GlyphRenderer\"},{\"id\":\"14285\",\"type\":\"GlyphRenderer\"},{\"id\":\"14292\",\"type\":\"GlyphRenderer\"},{\"id\":\"14299\",\"type\":\"GlyphRenderer\"},{\"id\":\"14305\",\"type\":\"GlyphRenderer\"},{\"id\":\"14312\",\"type\":\"GlyphRenderer\"},{\"id\":\"14319\",\"type\":\"GlyphRenderer\"},{\"id\":\"14325\",\"type\":\"GlyphRenderer\"},{\"id\":\"14332\",\"type\":\"GlyphRenderer\"},{\"id\":\"14339\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"14467\",\"type\":\"Title\"},\"toolbar\":{\"id\":\"14253\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"14229\",\"type\":\"Range1d\"},\"x_scale\":{\"id\":\"14234\",\"type\":\"LinearScale\"},\"y_range\":{\"id\":\"14230\",\"type\":\"Range1d\"},\"y_scale\":{\"id\":\"14236\",\"type\":\"LogScale\"}},\"id\":\"14231\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"14234\",\"type\":\"LinearScale\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"3\"},\"id\":\"14320\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14317\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14318\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"14315\",\"type\":\"CDSView\"}},\"id\":\"14319\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14270\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14271\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"14268\",\"type\":\"CDSView\"}},\"id\":\"14272\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14278\",\"type\":\"Circle\"},{\"attributes\":{\"filters\":[{\"id\":\"14313\",\"type\":\"GroupFilter\"},{\"id\":\"14314\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14315\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"14294\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"14476\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"14314\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14324\",\"type\":\"MultiLine\"},{\"attributes\":{\"axis_label\":\"Cost\",\"formatter\":{\"id\":\"14469\",\"type\":\"LogTickFormatter\"},\"ticker\":{\"id\":\"14244\",\"type\":\"LogTicker\"}},\"id\":\"14243\",\"type\":\"LogAxis\"},{\"attributes\":{\"data_source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14263\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14264\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"14261\",\"type\":\"CDSView\"}},\"id\":\"14265\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14298\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14297\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14284\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14271\",\"type\":\"CircleX\"},{\"attributes\":{},\"id\":\"14248\",\"type\":\"SaveTool\"},{\"attributes\":{\"filters\":[{\"id\":\"14280\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"}},\"id\":\"14281\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14317\",\"type\":\"Circle\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"14225\",\"type\":\"HoverTool\"},{\"id\":\"14248\",\"type\":\"SaveTool\"},{\"id\":\"14249\",\"type\":\"PanTool\"},{\"id\":\"14250\",\"type\":\"WheelZoomTool\"},{\"id\":\"14251\",\"type\":\"BoxZoomTool\"},{\"id\":\"14252\",\"type\":\"ResetTool\"}]},\"id\":\"14253\",\"type\":\"Toolbar\"},{\"attributes\":{\"data_source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14323\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14324\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"14321\",\"type\":\"CDSView\"}},\"id\":\"14325\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"14307\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14283\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14284\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"14281\",\"type\":\"CDSView\"}},\"id\":\"14285\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"0\"},\"id\":\"14273\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14264\",\"type\":\"MultiLine\"},{\"attributes\":{\"filters\":[{\"id\":\"14306\",\"type\":\"GroupFilter\"},{\"id\":\"14307\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14308\",\"type\":\"CDSView\"},{\"attributes\":{\"axis_label\":\"Time\",\"formatter\":{\"id\":\"14471\",\"type\":\"BasicTickFormatter\"},\"ticker\":{\"id\":\"14239\",\"type\":\"BasicTicker\"}},\"id\":\"14238\",\"type\":\"LinearAxis\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14291\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14323\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14270\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14303\",\"type\":\"MultiLine\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14290\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14291\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"14288\",\"type\":\"CDSView\"}},\"id\":\"14292\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14273\",\"type\":\"GroupFilter\"},{\"id\":\"14274\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14275\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14290\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14318\",\"type\":\"Circle\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"2\"},\"id\":\"14306\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"2\"},\"id\":\"14313\",\"type\":\"GroupFilter\"},{\"attributes\":{\"dimension\":1,\"ticker\":{\"id\":\"14244\",\"type\":\"LogTicker\"}},\"id\":\"14247\",\"type\":\"Grid\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14310\",\"type\":\"CircleX\"},{\"attributes\":{},\"id\":\"14474\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14297\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14298\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"14295\",\"type\":\"CDSView\"}},\"id\":\"14299\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"3\"},\"id\":\"14326\",\"type\":\"GroupFilter\"},{\"attributes\":{\"num_minor_ticks\":10},\"id\":\"14244\",\"type\":\"LogTicker\"},{\"attributes\":{},\"id\":\"14236\",\"type\":\"LogScale\"},{\"attributes\":{\"filters\":[{\"id\":\"14286\",\"type\":\"GroupFilter\"},{\"id\":\"14287\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14288\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"14267\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"1\"},\"id\":\"14280\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"0\"},\"id\":\"14260\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"1\"},\"id\":\"14286\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"1\"},\"id\":\"14293\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14283\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"14263\",\"type\":\"MultiLine\"},{\"attributes\":{\"callback\":{\"id\":\"14344\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"None\"},\"id\":\"14345\",\"type\":\"Button\"},{\"attributes\":{\"args\":{\"cm\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"},\"source_multiline\":{\"id\":\"14226\",\"type\":\"ColumnDataSource\"},\"source_scatter\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"code\":\"\\n var data_multiline = source_multiline.data;\\n var data_scatter = source_scatter.data;\\n var min_perf = 4.992416977283878;\\n var max_perf = 31586347444678.41;\\n var min_iter = 0;\\n var max_iter = 3;\\n if (cb_obj.value == 'performance') {\\n data_multiline['colors'] = data_multiline['colors_performance'];\\n data_scatter['colors'] = data_scatter['colors_performance'];\\n cm.low = min_perf;\\n cm.high = max_perf;\\n } else {\\n data_multiline['colors'] = data_multiline['colors_iteration'];\\n data_scatter['colors'] = data_scatter['colors_iteration'];\\n cm.low = min_iter;\\n cm.high = max_iter;\\n }\\n source.change.emit();\\n \"},\"id\":\"14346\",\"type\":\"CustomJS\"},{\"attributes\":{\"children\":[{\"id\":\"14348\",\"type\":\"WidgetBox\"},{\"id\":\"14351\",\"type\":\"Row\"},{\"id\":\"14352\",\"type\":\"WidgetBox\"}]},\"id\":\"14353\",\"type\":\"Column\"},{\"attributes\":{},\"id\":\"14471\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14337\",\"type\":\"Circle\"},{\"attributes\":{\"active\":[0,1,2,3],\"callback\":{\"id\":\"14340\",\"type\":\"CustomJS\"},\"labels\":[\"0\",\"1\",\"2\",\"3\"]},\"id\":\"14341\",\"type\":\"CheckboxButtonGroup\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"14341\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"14265\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"14272\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"14332\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"14339\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"14279\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"14285\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"14292\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"14299\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"14305\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"14312\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"14319\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"14325\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = []; checkbox.active = labels;len_labels = 4;glyph_renderers = [[glyph_renderer0,glyph_renderer1,glyph_renderer2],[glyph_renderer3,glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7,glyph_renderer8],[glyph_renderer9,glyph_renderer10,glyph_renderer11]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"14344\",\"type\":\"CustomJS\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"14472\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"callback\":null,\"data\":{\"HB_iteration\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"3\",\"3\",\"3\",\"3\"],\"burn_in\":[0.06095411756804747,0.4074427106852323,0.34424088646527784,0.04199917180247406,0.3060289375823493,0.4614938906314672,0.0116923509310994,0.03843441810140034,0.16837108101621034,0.31823932597992305,0.22534614767267647,0.40614914276269265,0.19103566832105667,0.34515349463529454,0.4430283433889736,0.34193909728758665,0.389663720030231,0.16459742441935532,0.3255599665428288,0.4453681293440747,0.4380896816607307,0.3341405680866985,0.36047458233549146,0.05379283110893349,0.017833969985921794,0.7498043706606659,0.01461295313831932,0.24302860840616028,0.019702503024473652,0.008166622451853173,0.013240078967514002,0.4560762540143012,0.6682810162705316,0.22839236467681667,0.02306597975800245,0.017235501865167764,0.2407582604885267,0.740831610943143],\"colors\":[8126523712.410647,92.1190843508471,923265531.1907222,1182571224052.1929,116813.71699039967,183.45244805187122,1833165926.0922399,61323717594.65915,16987492248.744675,941172.7315917765,71.50995971438292,147940.15003155934,5.96969148921447,111.9687271569748,2814958.95439984,25.190966275269364,63.058303967041866,1823730219581.9102,31586347444678.41,331.1375951170983,323.38408072559514,89.00514995263889,1016936218.5988941,4.992416977283878,10.534444774305072,327.3827614301445,6.108546463596852,252312.05848280012,13.782956736985716,8.962410877546489,46.41401526951137,286.10193136985674,6497781657.7368355,595622.5093315999,8.922508535347308,14.509830468904234,5.591206028987351,861.0095402770886],\"colors_iteration\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3],\"colors_performance\":[8126523712.410647,92.1190843508471,923265531.1907222,1182571224052.1929,116813.71699039967,183.45244805187122,1833165926.0922399,61323717594.65915,16987492248.744675,941172.7315917765,71.50995971438292,147940.15003155934,5.96969148921447,111.9687271569748,2814958.95439984,25.190966275269364,63.058303967041866,1823730219581.9102,31586347444678.41,331.1375951170983,323.38408072559514,89.00514995263889,1016936218.5988941,4.992416977283878,10.534444774305072,327.3827614301445,6.108546463596852,252312.05848280012,13.782956736985716,8.962410877546489,46.41401526951137,286.10193136985674,6497781657.7368355,595622.5093315999,8.922508535347308,14.509830468904234,5.591206028987351,861.0095402770886],\"config_id\":[\"(0, 0, 0)\",\"(0, 0, 2)\",\"(0, 0, 3)\",\"(0, 0, 5)\",\"(0, 0, 6)\",\"(0, 0, 9)\",\"(0, 0, 13)\",\"(0, 0, 14)\",\"(0, 0, 15)\",\"(0, 0, 16)\",\"(0, 0, 18)\",\"(0, 0, 19)\",\"(0, 0, 20)\",\"(0, 0, 21)\",\"(0, 0, 22)\",\"(0, 0, 23)\",\"(0, 0, 24)\",\"(0, 0, 25)\",\"(0, 0, 26)\",\"(1, 0, 0)\",\"(1, 0, 1)\",\"(1, 0, 2)\",\"(1, 0, 3)\",\"(1, 0, 4)\",\"(1, 0, 5)\",\"(1, 0, 6)\",\"(1, 0, 7)\",\"(1, 0, 8)\",\"(2, 0, 0)\",\"(2, 0, 1)\",\"(2, 0, 2)\",\"(2, 0, 3)\",\"(2, 0, 4)\",\"(2, 0, 5)\",\"(3, 0, 0)\",\"(3, 0, 1)\",\"(3, 0, 2)\",\"(3, 0, 3)\"],\"config_info\":[\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\"],\"duration\":[7.6938440799713135,16.564640522003174,16.35780358314514,6.996684551239014,7.061639785766602,9.905347347259521,8.862849235534668,7.642619371414185,7.507568120956421,7.737980842590332,12.54138970375061,12.185478210449219,53.77648377418518,7.459357023239136,11.915100336074829,14.534762144088745,9.749106168746948,7.048174619674683,7.358259677886963,13.081866025924683,21.88615345954895,10.72812032699585,12.673344135284424,26.280138969421387,13.161278486251831,10.1319100856781,10.025325298309326,7.401020288467407,30.784112453460693,25.05366611480713,11.423469305038452,10.458523511886597,23.09608554840088,68.74622178077698,20.208162307739258,28.296211004257202,36.82288098335266,17.343097448349],\"l_rate\":[1.3140974150295323e-05,0.016155413975493874,5.886622133632225e-05,1.562302425925469e-06,0.0009693701218491181,0.01930430219941507,4.63426031506052e-05,8.218636648622262e-06,4.231006670769454e-05,0.08855636723219577,0.020701751107567005,0.055679466924544604,0.0911866225591426,0.003764111315013184,0.03877880710009469,0.03267167704481297,0.02974141600383611,5.308241206255325e-06,1.113473241471851e-06,0.026186183366574363,0.03901038193546873,0.015422361937275902,2.2071066471092935e-05,0.06953447315355575,0.06877680681703875,0.013232184419079087,0.0667009633233298,0.0005797639839531642,0.027124415967214835,0.05868181462547929,0.04218746992189643,0.0030944655662799264,3.554616454872997e-06,2.7429889775972168e-05,0.06598368111508776,0.03487282754907394,0.0792659340152397,0.0034016132586180696],\"losses\":[[8126523712.410647],[5166.833282404354,18.464774895042613,92.1190843508471],[923265531.1907222],[1182571224052.1929],[116813.71699039967],[3645.415100329818,183.45244805187122],[1833165926.0922399],[61323717594.65915],[16987492248.744675],[941172.7315917765],[71.2204115907396,71.50995971438292],[13446.48791221115,147940.15003155934],[41480.809349168405,7.3214562942797,6.833470265291953,5.96969148921447],[4581.801228897738,111.9687271569748],[1375.6557411067704,2814958.95439984],[53.35353916048118,13.323349627001694,25.190966275269364],[39.162171797014246,63.058303967041866],[1823730219581.9102],[31586347444678.41],[331.1375951170983],[323.38408072559514],[89.00514995263889],[1016936218.5988941],[5.413061037708961,5.851258943427435,4.992416977283878],[16.12825121356125,10.534444774305072],[327.3827614301445],[28.14092589036999,6.108546463596852],[252312.05848280012],[34.35457197765142,13.782956736985716],[6.332600975445937,8.962410877546489],[46.41401526951137],[286.10193136985674],[6497781657.7368355],[595622.5093315999],[8.922508535347308],[14.509830468904234],[5.591206028987351],[861.0095402770886]],\"mdecay\":[0.6085942693370233,0.9552476693037883,0.6934225820967883,0.24717389794301636,0.14880855373871982,0.5381734081457205,0.5916637069751063,0.3753824880536981,0.7994935341759952,0.2414742383738761,0.24381621169879536,0.021837510517321357,0.23596990879050056,0.11692038084800203,0.05909502727073661,0.5747606389122023,0.32880127706797024,0.5854839967595509,0.6131932145061313,0.3309551130561821,0.2649050681581515,0.44012322937234094,0.964126285901498,0.5863021854362127,0.3095762923033933,0.6153477536804737,0.3617267080409091,0.4471707601112981,0.8817407352537541,0.2447068090128678,0.3820254234979106,0.661038131085342,0.1690960017403682,0.06071205674502145,0.09953494272876998,0.2502467932411652,0.29460712740739303,0.6629709112103371],\"n_units_1\":[27,40,288,22,36,214,470,302,17,312,354,443,352,25,207,33,67,56,194,105,168,50,337,228,122,44,40,36,276,33,78,56,59,360,20,21,264,30],\"n_units_2\":[409,313,504,54,42,48,58,19,416,30,55,35,52,27,85,271,184,24,18,232,410,286,60,24,58,295,40,17,30,207,52,37,320,288,172,380,46,59],\"times\":[[370.3703703703703],[370.3703703703703,1111.111111111111,3333.333333333333],[370.3703703703703],[370.3703703703703],[370.3703703703703],[370.3703703703703,1111.111111111111],[370.3703703703703],[370.3703703703703],[370.3703703703703],[370.3703703703703],[370.3703703703703,1111.111111111111],[370.3703703703703,1111.111111111111],[370.3703703703703,1111.111111111111,3333.333333333333,10000.0],[370.3703703703703,1111.111111111111],[370.3703703703703,1111.111111111111],[370.3703703703703,1111.111111111111,3333.333333333333],[370.3703703703703,1111.111111111111],[370.3703703703703],[370.3703703703703],[1111.111111111111],[1111.111111111111],[1111.111111111111],[1111.111111111111],[1111.111111111111,3333.333333333333,10000.0],[1111.111111111111,3333.333333333333],[1111.111111111111],[1111.111111111111,3333.333333333333],[1111.111111111111],[3333.333333333333,10000.0],[3333.333333333333,10000.0],[3333.333333333333],[3333.333333333333],[3333.333333333333],[3333.333333333333],[10000.0],[10000.0],[10000.0],[10000.0]]},\"selected\":{\"id\":\"14473\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"14474\",\"type\":\"UnionRenderers\"}},\"id\":\"14226\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"3\"},\"id\":\"14333\",\"type\":\"GroupFilter\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"14341\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"14265\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"14272\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"14332\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"14339\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"14279\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"14285\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"14292\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"14299\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"14305\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"14312\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"14319\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"14325\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = [0, 1, 2, 3]; checkbox.active = labels;len_labels = 4;glyph_renderers = [[glyph_renderer0,glyph_renderer1,glyph_renderer2],[glyph_renderer3,glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7,glyph_renderer8],[glyph_renderer9,glyph_renderer10,glyph_renderer11]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"14342\",\"type\":\"CustomJS\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14338\",\"type\":\"Circle\"},{\"attributes\":{\"children\":[{\"id\":\"14343\",\"type\":\"Button\"}],\"width\":50},\"id\":\"14349\",\"type\":\"WidgetBox\"},{\"attributes\":{\"filters\":[{\"id\":\"14326\",\"type\":\"GroupFilter\"},{\"id\":\"14327\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14328\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"14334\",\"type\":\"GroupFilter\"},{\"attributes\":{\"children\":[{\"id\":\"14341\",\"type\":\"CheckboxButtonGroup\"}],\"width\":400},\"id\":\"14348\",\"type\":\"WidgetBox\"},{\"attributes\":{\"callback\":null,\"data\":{\"HB_iteration\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"3\",\"3\",\"3\",\"3\"],\"burn_in\":[0.06095411756804747,0.4074427106852323,0.4074427106852323,0.4074427106852323,0.34424088646527784,0.04199917180247406,0.3060289375823493,0.4614938906314672,0.4614938906314672,0.0116923509310994,0.03843441810140034,0.16837108101621034,0.31823932597992305,0.22534614767267647,0.22534614767267647,0.40614914276269265,0.40614914276269265,0.19103566832105667,0.19103566832105667,0.19103566832105667,0.19103566832105667,0.34515349463529454,0.34515349463529454,0.4430283433889736,0.4430283433889736,0.34193909728758665,0.34193909728758665,0.34193909728758665,0.389663720030231,0.389663720030231,0.16459742441935532,0.3255599665428288,0.4453681293440747,0.4380896816607307,0.3341405680866985,0.36047458233549146,0.05379283110893349,0.05379283110893349,0.05379283110893349,0.017833969985921794,0.017833969985921794,0.7498043706606659,0.01461295313831932,0.01461295313831932,0.24302860840616028,0.019702503024473652,0.019702503024473652,0.008166622451853173,0.008166622451853173,0.013240078967514002,0.4560762540143012,0.6682810162705316,0.22839236467681667,0.02306597975800245,0.017235501865167764,0.2407582604885267,0.740831610943143],\"colors\":[8126523712.410647,92.1190843508471,92.1190843508471,92.1190843508471,923265531.1907222,1182571224052.1929,116813.71699039967,183.45244805187122,183.45244805187122,1833165926.0922399,61323717594.65915,16987492248.744675,941172.7315917765,71.50995971438292,71.50995971438292,147940.15003155934,147940.15003155934,5.96969148921447,5.96969148921447,5.96969148921447,5.96969148921447,111.9687271569748,111.9687271569748,2814958.95439984,2814958.95439984,25.190966275269364,25.190966275269364,25.190966275269364,63.058303967041866,63.058303967041866,1823730219581.9102,31586347444678.41,331.1375951170983,323.38408072559514,89.00514995263889,1016936218.5988941,4.992416977283878,4.992416977283878,4.992416977283878,10.534444774305072,10.534444774305072,327.3827614301445,6.108546463596852,6.108546463596852,252312.05848280012,13.782956736985716,13.782956736985716,8.962410877546489,8.962410877546489,46.41401526951137,286.10193136985674,6497781657.7368355,595622.5093315999,8.922508535347308,14.509830468904234,5.591206028987351,861.0095402770886],\"colors_iteration\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,3],\"colors_performance\":[8126523712.410647,92.1190843508471,92.1190843508471,92.1190843508471,923265531.1907222,1182571224052.1929,116813.71699039967,183.45244805187122,183.45244805187122,1833165926.0922399,61323717594.65915,16987492248.744675,941172.7315917765,71.50995971438292,71.50995971438292,147940.15003155934,147940.15003155934,5.96969148921447,5.96969148921447,5.96969148921447,5.96969148921447,111.9687271569748,111.9687271569748,2814958.95439984,2814958.95439984,25.190966275269364,25.190966275269364,25.190966275269364,63.058303967041866,63.058303967041866,1823730219581.9102,31586347444678.41,331.1375951170983,323.38408072559514,89.00514995263889,1016936218.5988941,4.992416977283878,4.992416977283878,4.992416977283878,10.534444774305072,10.534444774305072,327.3827614301445,6.108546463596852,6.108546463596852,252312.05848280012,13.782956736985716,13.782956736985716,8.962410877546489,8.962410877546489,46.41401526951137,286.10193136985674,6497781657.7368355,595622.5093315999,8.922508535347308,14.509830468904234,5.591206028987351,861.0095402770886],\"config_id\":[\"(0, 0, 0)\",\"(0, 0, 2)\",\"(0, 0, 2)\",\"(0, 0, 2)\",\"(0, 0, 3)\",\"(0, 0, 5)\",\"(0, 0, 6)\",\"(0, 0, 9)\",\"(0, 0, 9)\",\"(0, 0, 13)\",\"(0, 0, 14)\",\"(0, 0, 15)\",\"(0, 0, 16)\",\"(0, 0, 18)\",\"(0, 0, 18)\",\"(0, 0, 19)\",\"(0, 0, 19)\",\"(0, 0, 20)\",\"(0, 0, 20)\",\"(0, 0, 20)\",\"(0, 0, 20)\",\"(0, 0, 21)\",\"(0, 0, 21)\",\"(0, 0, 22)\",\"(0, 0, 22)\",\"(0, 0, 23)\",\"(0, 0, 23)\",\"(0, 0, 23)\",\"(0, 0, 24)\",\"(0, 0, 24)\",\"(0, 0, 25)\",\"(0, 0, 26)\",\"(1, 0, 0)\",\"(1, 0, 1)\",\"(1, 0, 2)\",\"(1, 0, 3)\",\"(1, 0, 4)\",\"(1, 0, 4)\",\"(1, 0, 4)\",\"(1, 0, 5)\",\"(1, 0, 5)\",\"(1, 0, 6)\",\"(1, 0, 7)\",\"(1, 0, 7)\",\"(1, 0, 8)\",\"(2, 0, 0)\",\"(2, 0, 0)\",\"(2, 0, 1)\",\"(2, 0, 1)\",\"(2, 0, 2)\",\"(2, 0, 3)\",\"(2, 0, 4)\",\"(2, 0, 5)\",\"(3, 0, 0)\",\"(3, 0, 1)\",\"(3, 0, 2)\",\"(3, 0, 3)\"],\"config_info\":[\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\"],\"duration\":[7.6938440799713135,16.564640522003174,16.564640522003174,16.564640522003174,16.35780358314514,6.996684551239014,7.061639785766602,9.905347347259521,9.905347347259521,8.862849235534668,7.642619371414185,7.507568120956421,7.737980842590332,12.54138970375061,12.54138970375061,12.185478210449219,12.185478210449219,53.77648377418518,53.77648377418518,53.77648377418518,53.77648377418518,7.459357023239136,7.459357023239136,11.915100336074829,11.915100336074829,14.534762144088745,14.534762144088745,14.534762144088745,9.749106168746948,9.749106168746948,7.048174619674683,7.358259677886963,13.081866025924683,21.88615345954895,10.72812032699585,12.673344135284424,26.280138969421387,26.280138969421387,26.280138969421387,13.161278486251831,13.161278486251831,10.1319100856781,10.025325298309326,10.025325298309326,7.401020288467407,30.784112453460693,30.784112453460693,25.05366611480713,25.05366611480713,11.423469305038452,10.458523511886597,23.09608554840088,68.74622178077698,20.208162307739258,28.296211004257202,36.82288098335266,17.343097448349],\"l_rate\":[1.3140974150295323e-05,0.016155413975493874,0.016155413975493874,0.016155413975493874,5.886622133632225e-05,1.562302425925469e-06,0.0009693701218491181,0.01930430219941507,0.01930430219941507,4.63426031506052e-05,8.218636648622262e-06,4.231006670769454e-05,0.08855636723219577,0.020701751107567005,0.020701751107567005,0.055679466924544604,0.055679466924544604,0.0911866225591426,0.0911866225591426,0.0911866225591426,0.0911866225591426,0.003764111315013184,0.003764111315013184,0.03877880710009469,0.03877880710009469,0.03267167704481297,0.03267167704481297,0.03267167704481297,0.02974141600383611,0.02974141600383611,5.308241206255325e-06,1.113473241471851e-06,0.026186183366574363,0.03901038193546873,0.015422361937275902,2.2071066471092935e-05,0.06953447315355575,0.06953447315355575,0.06953447315355575,0.06877680681703875,0.06877680681703875,0.013232184419079087,0.0667009633233298,0.0667009633233298,0.0005797639839531642,0.027124415967214835,0.027124415967214835,0.05868181462547929,0.05868181462547929,0.04218746992189643,0.0030944655662799264,3.554616454872997e-06,2.7429889775972168e-05,0.06598368111508776,0.03487282754907394,0.0792659340152397,0.0034016132586180696],\"losses\":[8126523712.410647,5166.833282404354,18.464774895042613,92.1190843508471,923265531.1907222,1182571224052.1929,116813.71699039967,3645.415100329818,183.45244805187122,1833165926.0922399,61323717594.65915,16987492248.744675,941172.7315917765,71.2204115907396,71.50995971438292,13446.48791221115,147940.15003155934,41480.809349168405,7.3214562942797,6.833470265291953,5.96969148921447,4581.801228897738,111.9687271569748,1375.6557411067704,2814958.95439984,53.35353916048118,13.323349627001694,25.190966275269364,39.162171797014246,63.058303967041866,1823730219581.9102,31586347444678.41,331.1375951170983,323.38408072559514,89.00514995263889,1016936218.5988941,5.413061037708961,5.851258943427435,4.992416977283878,16.12825121356125,10.534444774305072,327.3827614301445,28.14092589036999,6.108546463596852,252312.05848280012,34.35457197765142,13.782956736985716,6.332600975445937,8.962410877546489,46.41401526951137,286.10193136985674,6497781657.7368355,595622.5093315999,8.922508535347308,14.509830468904234,5.591206028987351,861.0095402770886],\"mdecay\":[0.6085942693370233,0.9552476693037883,0.9552476693037883,0.9552476693037883,0.6934225820967883,0.24717389794301636,0.14880855373871982,0.5381734081457205,0.5381734081457205,0.5916637069751063,0.3753824880536981,0.7994935341759952,0.2414742383738761,0.24381621169879536,0.24381621169879536,0.021837510517321357,0.021837510517321357,0.23596990879050056,0.23596990879050056,0.23596990879050056,0.23596990879050056,0.11692038084800203,0.11692038084800203,0.05909502727073661,0.05909502727073661,0.5747606389122023,0.5747606389122023,0.5747606389122023,0.32880127706797024,0.32880127706797024,0.5854839967595509,0.6131932145061313,0.3309551130561821,0.2649050681581515,0.44012322937234094,0.964126285901498,0.5863021854362127,0.5863021854362127,0.5863021854362127,0.3095762923033933,0.3095762923033933,0.6153477536804737,0.3617267080409091,0.3617267080409091,0.4471707601112981,0.8817407352537541,0.8817407352537541,0.2447068090128678,0.2447068090128678,0.3820254234979106,0.661038131085342,0.1690960017403682,0.06071205674502145,0.09953494272876998,0.2502467932411652,0.29460712740739303,0.6629709112103371],\"n_units_1\":[27,40,40,40,288,22,36,214,214,470,302,17,312,354,354,443,443,352,352,352,352,25,25,207,207,33,33,33,67,67,56,194,105,168,50,337,228,228,228,122,122,44,40,40,36,276,276,33,33,78,56,59,360,20,21,264,30],\"n_units_2\":[409,313,313,313,504,54,42,48,48,58,19,416,30,55,55,35,35,52,52,52,52,27,27,85,85,271,271,271,184,184,24,18,232,410,286,60,24,24,24,58,58,295,40,40,17,30,30,207,207,52,37,320,288,172,380,46,59],\"times\":[370.3703703703703,370.3703703703703,1111.111111111111,3333.333333333333,370.3703703703703,370.3703703703703,370.3703703703703,370.3703703703703,1111.111111111111,370.3703703703703,370.3703703703703,370.3703703703703,370.3703703703703,370.3703703703703,1111.111111111111,370.3703703703703,1111.111111111111,370.3703703703703,1111.111111111111,3333.333333333333,10000.0,370.3703703703703,1111.111111111111,370.3703703703703,1111.111111111111,370.3703703703703,1111.111111111111,3333.333333333333,370.3703703703703,1111.111111111111,370.3703703703703,370.3703703703703,1111.111111111111,1111.111111111111,1111.111111111111,1111.111111111111,1111.111111111111,3333.333333333333,10000.0,1111.111111111111,3333.333333333333,1111.111111111111,1111.111111111111,3333.333333333333,1111.111111111111,3333.333333333333,10000.0,3333.333333333333,10000.0,3333.333333333333,3333.333333333333,3333.333333333333,3333.333333333333,10000.0,10000.0,10000.0,10000.0]},\"selected\":{\"id\":\"14475\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"14476\",\"type\":\"UnionRenderers\"}},\"id\":\"14227\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"children\":[{\"id\":\"14347\",\"type\":\"Select\"}],\"width\":200},\"id\":\"14352\",\"type\":\"WidgetBox\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14330\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14331\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"14328\",\"type\":\"CDSView\"}},\"id\":\"14332\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14337\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14338\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"14335\",\"type\":\"CDSView\"}},\"id\":\"14339\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"ticker\":null},\"id\":\"14469\",\"type\":\"LogTickFormatter\"},{\"attributes\":{},\"id\":\"14473\",\"type\":\"Selection\"},{\"attributes\":{\"callback\":{\"id\":\"14346\",\"type\":\"CustomJS\"},\"options\":[\"performance\",\"iteration\"],\"title\":\"Select colors\",\"value\":\"performance\"},\"id\":\"14347\",\"type\":\"Select\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"14228\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14330\",\"type\":\"CircleX\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"config_id\",\"@config_id\"],[\"config_info\",\"@config_info\"],[\"losses\",\"@losses\"],[\"HB_iteration\",\"@HB_iteration\"],[\"duration (sec)\",\"@duration\"],[\"Configuration\",\" \"],[\"burn_in\",\"@burn_in\"],[\"l_rate\",\"@l_rate\"],[\"mdecay\",\"@mdecay\"],[\"n_units_1\",\"@n_units_1\"],[\"n_units_2\",\"@n_units_2\"]]},\"id\":\"14225\",\"type\":\"HoverTool\"},{\"attributes\":{\"callback\":{\"id\":\"14342\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"All\"},\"id\":\"14343\",\"type\":\"Button\"},{\"attributes\":{\"children\":[{\"id\":\"14345\",\"type\":\"Button\"}],\"width\":50},\"id\":\"14350\",\"type\":\"WidgetBox\"},{\"attributes\":{\"filters\":[{\"id\":\"14333\",\"type\":\"GroupFilter\"},{\"id\":\"14334\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"14227\",\"type\":\"ColumnDataSource\"}},\"id\":\"14335\",\"type\":\"CDSView\"},{\"attributes\":{\"children\":[{\"id\":\"14349\",\"type\":\"WidgetBox\"},{\"id\":\"14350\",\"type\":\"WidgetBox\"}]},\"id\":\"14351\",\"type\":\"Row\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"14327\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"14331\",\"type\":\"CircleX\"},{\"attributes\":{\"args\":{\"glyph_renderer0\":{\"id\":\"14265\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"14272\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"14332\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"14339\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"14279\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"14285\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"14292\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"14299\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"14305\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"14312\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"14319\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"14325\",\"type\":\"GlyphRenderer\"}},\"code\":\"len_labels = 4;glyph_renderers = [[glyph_renderer0,glyph_renderer1,glyph_renderer2],[glyph_renderer3,glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7,glyph_renderer8],[glyph_renderer9,glyph_renderer10,glyph_renderer11]];\\n for (i = 0; i < len_labels; i++) {\\n if (cb_obj.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"14340\",\"type\":\"CustomJS\"}],\"root_ids\":[\"14354\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"29192e80-202c-4814-8944-ba76b9d398e9\",\"roots\":{\"14354\":\"3e9cee61-b4fe-4729-a422-b5509a4b3ffb\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "14354" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.bohb_learning_curves();" ] }, { "cell_type": "code", - "execution_count": 17, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
# aggregated parallel BOHB runs1
# parameters5
Deterministic target algorithmTrue
Optimized run objectivequality
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
budget 370.4budget 1111.1budget 3333.3budget 10000
Total time spent evaluating configurations156.08 sec196.55 sec231.21 sec238.56 sec
Average time per configuration (mean / std)8.21 sec (± 2.00)10.92 sec (± 3.19)19.27 sec (± 15.45)29.82 sec (± 10.66)
# evaluated configurations1918128
# changed parameters (default to incumbent)5555
Configuration originsAcquisition Function : 11, Random : 8Acquisition Function : 14, Random : 4Acquisition Function : 8, Random : 4Acquisition Function : 7, Random : 1
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.overview_table();" ] @@ -712,78 +151,11 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
budget 370.4budget 1111.1budget 3333.3budget 10000
burn_in0.3896640.05379280.05379280.0537928
l_rate0.02974140.06953450.06953450.0695345
mdecay0.3288010.5863020.5863020.586302
n_units_167228228228
n_units_2184242424
Cost39.1625.4135.8514.992
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.bohb_incumbents_per_budget();" ] @@ -804,131 +176,24 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
-------------------- Single importance: ----------------------------------------
l_rate59.6515 +/- 46.4956
burn_in28.4864 +/- 43.246
mdecay7.1975 +/- 24.2353
n_units_21.3038 +/- 3.8476
n_units_10.4141 +/- 1.579
-------------------- Pairwise importance: ----------------------------------------
burn_in & mdecay1.9159 +/- 7.4185
l_rate & n_units_20.6959 +/- 1.8439
l_rate & n_units_10.2079 +/- 0.7715
l_rate & burn_in0.1036 +/- 0.2745
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "\"Plot\n", - "\"Plot\n", - "\"Plot\n", - "

\n", - "
\n", - "\"Plot\n", - "\"Plot\n", - "\"Plot\n", - "

\n", - "
\n", - "\"Plot\n", - "\"Plot\n", - "\"Plot\n", - "

\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ - "cave.cave_fanova(run='budget_10000');" + "cave.cave_fanova(run='budget_3');" ] }, { "cell_type": "code", - "execution_count": 21, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\"Plot\n", - "\"Plot\n", - "\"Plot\n", - "

\n", - "
\n", - "\"Plot\n", - "\"Plot\n", - "

\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ - "cave.local_parameter_importance(run='budget_10000');" + "cave.local_parameter_importance(run='budget_3');" ] }, { @@ -940,377 +205,11 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"14033\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"14033\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '14033' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"14033\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"14033\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"14033\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '14033' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"14033\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"551ccf55-e190-4029-8f29-b21dfa5f6f16\":{\"roots\":{\"references\":[{\"attributes\":{\"columns\":[{\"id\":\"14035\",\"type\":\"TableColumn\"},{\"id\":\"14036\",\"type\":\"TableColumn\"},{\"id\":\"14037\",\"type\":\"TableColumn\"},{\"id\":\"14038\",\"type\":\"TableColumn\"},{\"id\":\"14039\",\"type\":\"TableColumn\"},{\"id\":\"14040\",\"type\":\"TableColumn\"}],\"height\":170,\"index_position\":null,\"source\":{\"id\":\"14034\",\"type\":\"ColumnDataSource\"},\"view\":{\"id\":\"14042\",\"type\":\"CDSView\"}},\"id\":\"14041\",\"type\":\"DataTable\"},{\"attributes\":{},\"id\":\"14152\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"14140\",\"type\":\"StringFormatter\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"14147\",\"type\":\"StringEditor\"},\"field\":\"fANOVA\",\"formatter\":{\"id\":\"14146\",\"type\":\"StringFormatter\"},\"title\":\"fANOVA\",\"width\":100},\"id\":\"14038\",\"type\":\"TableColumn\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"14145\",\"type\":\"StringEditor\"},\"field\":\"LPI\",\"formatter\":{\"id\":\"14144\",\"type\":\"StringFormatter\"},\"title\":\"LPI\",\"width\":100},\"id\":\"14037\",\"type\":\"TableColumn\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"14151\",\"type\":\"StringEditor\"},\"field\":\"LPI\",\"formatter\":{\"id\":\"14150\",\"type\":\"StringFormatter\"},\"title\":\"LPI\",\"width\":100},\"id\":\"14040\",\"type\":\"TableColumn\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"14141\",\"type\":\"StringEditor\"},\"field\":\"Parameters\",\"formatter\":{\"id\":\"14140\",\"type\":\"StringFormatter\"},\"sortable\":false,\"title\":\"Parameters\",\"width\":150},\"id\":\"14035\",\"type\":\"TableColumn\"},{\"attributes\":{},\"id\":\"14151\",\"type\":\"StringEditor\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"14149\",\"type\":\"StringEditor\"},\"field\":\"fANOVA\",\"formatter\":{\"id\":\"14148\",\"type\":\"StringFormatter\"},\"title\":\"fANOVA\",\"width\":100},\"id\":\"14039\",\"type\":\"TableColumn\"},{\"attributes\":{},\"id\":\"14141\",\"type\":\"StringEditor\"},{\"attributes\":{\"source\":{\"id\":\"14034\",\"type\":\"ColumnDataSource\"}},\"id\":\"14042\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"14153\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"callback\":null,\"data\":{\"LPI\":[\"LPI\",\"LPI\",\"LPI\",\"LPI\"],\"Parameters\":[\"l_rate\",\"burn_in\",\"mdecay\",\"n_units_1\",\"n_units_2\"],\"fANOVA\":[\"fANOVA\",\"fANOVA\",\"fANOVA\",\"fANOVA\",\"fANOVA\",\"fANOVA\",\"fANOVA\",\"fANOVA\",\"fANOVA\"]},\"selected\":{\"id\":\"14152\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"14153\",\"type\":\"UnionRenderers\"}},\"id\":\"14034\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"14146\",\"type\":\"StringFormatter\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"14143\",\"type\":\"StringEditor\"},\"field\":\"fANOVA\",\"formatter\":{\"id\":\"14142\",\"type\":\"StringFormatter\"},\"title\":\"fANOVA\",\"width\":100},\"id\":\"14036\",\"type\":\"TableColumn\"},{\"attributes\":{},\"id\":\"14144\",\"type\":\"StringFormatter\"},{\"attributes\":{},\"id\":\"14148\",\"type\":\"StringFormatter\"},{\"attributes\":{},\"id\":\"14147\",\"type\":\"StringEditor\"},{\"attributes\":{},\"id\":\"14150\",\"type\":\"StringFormatter\"},{\"attributes\":{},\"id\":\"14145\",\"type\":\"StringEditor\"},{\"attributes\":{},\"id\":\"14142\",\"type\":\"StringFormatter\"},{\"attributes\":{},\"id\":\"14143\",\"type\":\"StringEditor\"},{\"attributes\":{},\"id\":\"14149\",\"type\":\"StringEditor\"}],\"root_ids\":[\"14041\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"551ccf55-e190-4029-8f29-b21dfa5f6f16\",\"roots\":{\"14041\":\"cbb12c10-9b3f-41d1-9037-e3f6c9771188\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "14041" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ - "cave.pimp_comparison_table(run='budget_10000');" + "cave.pimp_comparison_table(run='budget_3');" ] }, { @@ -1322,801 +221,36 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"18151\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"18151\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '18151' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"18151\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"18151\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"18151\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '18151' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"18151\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"75290f88-a0c2-42ce-96cd-331b5cd94b81\":{\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"17880\",\"type\":\"Column\"},{\"id\":\"17888\",\"type\":\"Column\"}]},\"id\":\"17889\",\"type\":\"Row\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15240\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17341\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15224\",\"type\":\"GroupFilter\"},{\"id\":\"15225\",\"type\":\"GroupFilter\"},{\"id\":\"15226\",\"type\":\"GroupFilter\"},{\"id\":\"15227\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15228\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17348\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15229\",\"type\":\"GroupFilter\"},{\"id\":\"15230\",\"type\":\"GroupFilter\"},{\"id\":\"15231\",\"type\":\"GroupFilter\"},{\"id\":\"15232\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15233\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17325\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17328\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15230\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17350\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15232\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17361\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15227\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17366\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15234\",\"type\":\"GroupFilter\"},{\"id\":\"15235\",\"type\":\"GroupFilter\"},{\"id\":\"15236\",\"type\":\"GroupFilter\"},{\"id\":\"15237\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15238\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17376\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15219\",\"type\":\"GroupFilter\"},{\"id\":\"15220\",\"type\":\"GroupFilter\"},{\"id\":\"15221\",\"type\":\"GroupFilter\"},{\"id\":\"15222\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15223\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17343\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15237\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17323\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17354\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17353\",\"type\":\"GroupFilter\"},{\"id\":\"17354\",\"type\":\"GroupFilter\"},{\"id\":\"17355\",\"type\":\"GroupFilter\"},{\"id\":\"17356\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17357\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15247\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15222\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17364\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17346\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15236\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17326\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17370\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15245\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15235\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17381\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17368\",\"type\":\"GroupFilter\"},{\"id\":\"17369\",\"type\":\"GroupFilter\"},{\"id\":\"17370\",\"type\":\"GroupFilter\"},{\"id\":\"17371\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17372\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15225\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17349\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17333\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15244\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17331\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17356\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17335\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15241\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15234\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17318\",\"type\":\"GroupFilter\"},{\"id\":\"17319\",\"type\":\"GroupFilter\"},{\"id\":\"17320\",\"type\":\"GroupFilter\"},{\"id\":\"17321\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17322\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"17378\",\"type\":\"GroupFilter\"},{\"id\":\"17379\",\"type\":\"GroupFilter\"},{\"id\":\"17380\",\"type\":\"GroupFilter\"},{\"id\":\"17381\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17382\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15231\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17333\",\"type\":\"GroupFilter\"},{\"id\":\"17334\",\"type\":\"GroupFilter\"},{\"id\":\"17335\",\"type\":\"GroupFilter\"},{\"id\":\"17336\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17337\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17368\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15246\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17330\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17343\",\"type\":\"GroupFilter\"},{\"id\":\"17344\",\"type\":\"GroupFilter\"},{\"id\":\"17345\",\"type\":\"GroupFilter\"},{\"id\":\"17346\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17347\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17363\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15250\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17348\",\"type\":\"GroupFilter\"},{\"id\":\"17349\",\"type\":\"GroupFilter\"},{\"id\":\"17350\",\"type\":\"GroupFilter\"},{\"id\":\"17351\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17352\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15239\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17324\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17375\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17374\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17340\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17379\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17353\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17365\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17329\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17359\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17338\",\"type\":\"GroupFilter\"},{\"id\":\"17339\",\"type\":\"GroupFilter\"},{\"id\":\"17340\",\"type\":\"GroupFilter\"},{\"id\":\"17341\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17342\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"14844\",\"type\":\"GlyphRenderer\"},{\"id\":\"14848\",\"type\":\"GlyphRenderer\"},{\"id\":\"14852\",\"type\":\"GlyphRenderer\"},{\"id\":\"14856\",\"type\":\"GlyphRenderer\"},{\"id\":\"14860\",\"type\":\"GlyphRenderer\"},{\"id\":\"14864\",\"type\":\"GlyphRenderer\"},{\"id\":\"14868\",\"type\":\"GlyphRenderer\"},{\"id\":\"14872\",\"type\":\"GlyphRenderer\"},{\"id\":\"14876\",\"type\":\"GlyphRenderer\"},{\"id\":\"14880\",\"type\":\"GlyphRenderer\"},{\"id\":\"14884\",\"type\":\"GlyphRenderer\"},{\"id\":\"14888\",\"type\":\"GlyphRenderer\"},{\"id\":\"14892\",\"type\":\"GlyphRenderer\"},{\"id\":\"14896\",\"type\":\"GlyphRenderer\"},{\"id\":\"14900\",\"type\":\"GlyphRenderer\"},{\"id\":\"14904\",\"type\":\"GlyphRenderer\"},{\"id\":\"14908\",\"type\":\"GlyphRenderer\"},{\"id\":\"14912\",\"type\":\"GlyphRenderer\"},{\"id\":\"14916\",\"type\":\"GlyphRenderer\"},{\"id\":\"14920\",\"type\":\"GlyphRenderer\"},{\"id\":\"14924\",\"type\":\"GlyphRenderer\"},{\"id\":\"14928\",\"type\":\"GlyphRenderer\"},{\"id\":\"14932\",\"type\":\"GlyphRenderer\"},{\"id\":\"14936\",\"type\":\"GlyphRenderer\"},{\"id\":\"14940\",\"type\":\"GlyphRenderer\"},{\"id\":\"14944\",\"type\":\"GlyphRenderer\"},{\"id\":\"14948\",\"type\":\"GlyphRenderer\"},{\"id\":\"14952\",\"type\":\"GlyphRenderer\"},{\"id\":\"14956\",\"type\":\"GlyphRenderer\"},{\"id\":\"14960\",\"type\":\"GlyphRenderer\"},{\"id\":\"14964\",\"type\":\"GlyphRenderer\"},{\"id\":\"14968\",\"type\":\"GlyphRenderer\"},{\"id\":\"14972\",\"type\":\"GlyphRenderer\"},{\"id\":\"14976\",\"type\":\"GlyphRenderer\"},{\"id\":\"14980\",\"type\":\"GlyphRenderer\"},{\"id\":\"14984\",\"type\":\"GlyphRenderer\"},{\"id\":\"14988\",\"type\":\"GlyphRenderer\"},{\"id\":\"14992\",\"type\":\"GlyphRenderer\"},{\"id\":\"14996\",\"type\":\"GlyphRenderer\"},{\"id\":\"15000\",\"type\":\"GlyphRenderer\"},{\"id\":\"15004\",\"type\":\"GlyphRenderer\"},{\"id\":\"15008\",\"type\":\"GlyphRenderer\"},{\"id\":\"15012\",\"type\":\"GlyphRenderer\"},{\"id\":\"15016\",\"type\":\"GlyphRenderer\"},{\"id\":\"15020\",\"type\":\"GlyphRenderer\"},{\"id\":\"15024\",\"type\":\"GlyphRenderer\"},{\"id\":\"15028\",\"type\":\"GlyphRenderer\"},{\"id\":\"15032\",\"type\":\"GlyphRenderer\"},{\"id\":\"15457\",\"type\":\"GlyphRenderer\"},{\"id\":\"15461\",\"type\":\"GlyphRenderer\"},{\"id\":\"15465\",\"type\":\"GlyphRenderer\"},{\"id\":\"15469\",\"type\":\"GlyphRenderer\"},{\"id\":\"15473\",\"type\":\"GlyphRenderer\"},{\"id\":\"15477\",\"type\":\"GlyphRenderer\"},{\"id\":\"15481\",\"type\":\"GlyphRenderer\"},{\"id\":\"15485\",\"type\":\"GlyphRenderer\"},{\"id\":\"15489\",\"type\":\"GlyphRenderer\"},{\"id\":\"15493\",\"type\":\"GlyphRenderer\"},{\"id\":\"15497\",\"type\":\"GlyphRenderer\"},{\"id\":\"15501\",\"type\":\"GlyphRenderer\"},{\"id\":\"15505\",\"type\":\"GlyphRenderer\"},{\"id\":\"15509\",\"type\":\"GlyphRenderer\"},{\"id\":\"15513\",\"type\":\"GlyphRenderer\"},{\"id\":\"15517\",\"type\":\"GlyphRenderer\"},{\"id\":\"15521\",\"type\":\"GlyphRenderer\"},{\"id\":\"15525\",\"type\":\"GlyphRenderer\"},{\"id\":\"15529\",\"type\":\"GlyphRenderer\"},{\"id\":\"15533\",\"type\":\"GlyphRenderer\"},{\"id\":\"15537\",\"type\":\"GlyphRenderer\"},{\"id\":\"15541\",\"type\":\"GlyphRenderer\"},{\"id\":\"15545\",\"type\":\"GlyphRenderer\"},{\"id\":\"15549\",\"type\":\"GlyphRenderer\"},{\"id\":\"15553\",\"type\":\"GlyphRenderer\"},{\"id\":\"15557\",\"type\":\"GlyphRenderer\"},{\"id\":\"15561\",\"type\":\"GlyphRenderer\"},{\"id\":\"15565\",\"type\":\"GlyphRenderer\"},{\"id\":\"15569\",\"type\":\"GlyphRenderer\"},{\"id\":\"15573\",\"type\":\"GlyphRenderer\"},{\"id\":\"15577\",\"type\":\"GlyphRenderer\"},{\"id\":\"15581\",\"type\":\"GlyphRenderer\"},{\"id\":\"15585\",\"type\":\"GlyphRenderer\"},{\"id\":\"15589\",\"type\":\"GlyphRenderer\"},{\"id\":\"15593\",\"type\":\"GlyphRenderer\"},{\"id\":\"15597\",\"type\":\"GlyphRenderer\"},{\"id\":\"15601\",\"type\":\"GlyphRenderer\"},{\"id\":\"15605\",\"type\":\"GlyphRenderer\"},{\"id\":\"15609\",\"type\":\"GlyphRenderer\"},{\"id\":\"15613\",\"type\":\"GlyphRenderer\"},{\"id\":\"15617\",\"type\":\"GlyphRenderer\"},{\"id\":\"15621\",\"type\":\"GlyphRenderer\"},{\"id\":\"15625\",\"type\":\"GlyphRenderer\"},{\"id\":\"15629\",\"type\":\"GlyphRenderer\"},{\"id\":\"15633\",\"type\":\"GlyphRenderer\"},{\"id\":\"15637\",\"type\":\"GlyphRenderer\"},{\"id\":\"15641\",\"type\":\"GlyphRenderer\"},{\"id\":\"15645\",\"type\":\"GlyphRenderer\"},{\"id\":\"16090\",\"type\":\"GlyphRenderer\"},{\"id\":\"16094\",\"type\":\"GlyphRenderer\"},{\"id\":\"16098\",\"type\":\"GlyphRenderer\"},{\"id\":\"16102\",\"type\":\"GlyphRenderer\"},{\"id\":\"16106\",\"type\":\"GlyphRenderer\"},{\"id\":\"16110\",\"type\":\"GlyphRenderer\"},{\"id\":\"16114\",\"type\":\"GlyphRenderer\"},{\"id\":\"16118\",\"type\":\"GlyphRenderer\"},{\"id\":\"16122\",\"type\":\"GlyphRenderer\"},{\"id\":\"16126\",\"type\":\"GlyphRenderer\"},{\"id\":\"16130\",\"type\":\"GlyphRenderer\"},{\"id\":\"16134\",\"type\":\"GlyphRenderer\"},{\"id\":\"16138\",\"type\":\"GlyphRenderer\"},{\"id\":\"16142\",\"type\":\"GlyphRenderer\"},{\"id\":\"16146\",\"type\":\"GlyphRenderer\"},{\"id\":\"16150\",\"type\":\"GlyphRenderer\"},{\"id\":\"16154\",\"type\":\"GlyphRenderer\"},{\"id\":\"16158\",\"type\":\"GlyphRenderer\"},{\"id\":\"16162\",\"type\":\"GlyphRenderer\"},{\"id\":\"16166\",\"type\":\"GlyphRenderer\"},{\"id\":\"16170\",\"type\":\"GlyphRenderer\"},{\"id\":\"16174\",\"type\":\"GlyphRenderer\"},{\"id\":\"16178\",\"type\":\"GlyphRenderer\"},{\"id\":\"16182\",\"type\":\"GlyphRenderer\"},{\"id\":\"16186\",\"type\":\"GlyphRenderer\"},{\"id\":\"16190\",\"type\":\"GlyphRenderer\"},{\"id\":\"16194\",\"type\":\"GlyphRenderer\"},{\"id\":\"16198\",\"type\":\"GlyphRenderer\"},{\"id\":\"16202\",\"type\":\"GlyphRenderer\"},{\"id\":\"16206\",\"type\":\"GlyphRenderer\"},{\"id\":\"16210\",\"type\":\"GlyphRenderer\"},{\"id\":\"16214\",\"type\":\"GlyphRenderer\"},{\"id\":\"16218\",\"type\":\"GlyphRenderer\"},{\"id\":\"16222\",\"type\":\"GlyphRenderer\"},{\"id\":\"16226\",\"type\":\"GlyphRenderer\"},{\"id\":\"16230\",\"type\":\"GlyphRenderer\"},{\"id\":\"16234\",\"type\":\"GlyphRenderer\"},{\"id\":\"16238\",\"type\":\"GlyphRenderer\"},{\"id\":\"16242\",\"type\":\"GlyphRenderer\"},{\"id\":\"16246\",\"type\":\"GlyphRenderer\"},{\"id\":\"16250\",\"type\":\"GlyphRenderer\"},{\"id\":\"16254\",\"type\":\"GlyphRenderer\"},{\"id\":\"16258\",\"type\":\"GlyphRenderer\"},{\"id\":\"16262\",\"type\":\"GlyphRenderer\"},{\"id\":\"16266\",\"type\":\"GlyphRenderer\"},{\"id\":\"16270\",\"type\":\"GlyphRenderer\"},{\"id\":\"16274\",\"type\":\"GlyphRenderer\"},{\"id\":\"16278\",\"type\":\"GlyphRenderer\"},{\"id\":\"16743\",\"type\":\"GlyphRenderer\"},{\"id\":\"16747\",\"type\":\"GlyphRenderer\"},{\"id\":\"16751\",\"type\":\"GlyphRenderer\"},{\"id\":\"16755\",\"type\":\"GlyphRenderer\"},{\"id\":\"16759\",\"type\":\"GlyphRenderer\"},{\"id\":\"16763\",\"type\":\"GlyphRenderer\"},{\"id\":\"16767\",\"type\":\"GlyphRenderer\"},{\"id\":\"16771\",\"type\":\"GlyphRenderer\"},{\"id\":\"16775\",\"type\":\"GlyphRenderer\"},{\"id\":\"16779\",\"type\":\"GlyphRenderer\"},{\"id\":\"16783\",\"type\":\"GlyphRenderer\"},{\"id\":\"16787\",\"type\":\"GlyphRenderer\"},{\"id\":\"16791\",\"type\":\"GlyphRenderer\"},{\"id\":\"16795\",\"type\":\"GlyphRenderer\"},{\"id\":\"16799\",\"type\":\"GlyphRenderer\"},{\"id\":\"16803\",\"type\":\"GlyphRenderer\"},{\"id\":\"16807\",\"type\":\"GlyphRenderer\"},{\"id\":\"16811\",\"type\":\"GlyphRenderer\"},{\"id\":\"16815\",\"type\":\"GlyphRenderer\"},{\"id\":\"16819\",\"type\":\"GlyphRenderer\"},{\"id\":\"16823\",\"type\":\"GlyphRenderer\"},{\"id\":\"16827\",\"type\":\"GlyphRenderer\"},{\"id\":\"16831\",\"type\":\"GlyphRenderer\"},{\"id\":\"16835\",\"type\":\"GlyphRenderer\"},{\"id\":\"16839\",\"type\":\"GlyphRenderer\"},{\"id\":\"16843\",\"type\":\"GlyphRenderer\"},{\"id\":\"16847\",\"type\":\"GlyphRenderer\"},{\"id\":\"16851\",\"type\":\"GlyphRenderer\"},{\"id\":\"16855\",\"type\":\"GlyphRenderer\"},{\"id\":\"16859\",\"type\":\"GlyphRenderer\"},{\"id\":\"16863\",\"type\":\"GlyphRenderer\"},{\"id\":\"16867\",\"type\":\"GlyphRenderer\"},{\"id\":\"16871\",\"type\":\"GlyphRenderer\"},{\"id\":\"16875\",\"type\":\"GlyphRenderer\"},{\"id\":\"16879\",\"type\":\"GlyphRenderer\"},{\"id\":\"16883\",\"type\":\"GlyphRenderer\"},{\"id\":\"16887\",\"type\":\"GlyphRenderer\"},{\"id\":\"16891\",\"type\":\"GlyphRenderer\"},{\"id\":\"16895\",\"type\":\"GlyphRenderer\"},{\"id\":\"16899\",\"type\":\"GlyphRenderer\"},{\"id\":\"16903\",\"type\":\"GlyphRenderer\"},{\"id\":\"16907\",\"type\":\"GlyphRenderer\"},{\"id\":\"16911\",\"type\":\"GlyphRenderer\"},{\"id\":\"16915\",\"type\":\"GlyphRenderer\"},{\"id\":\"16919\",\"type\":\"GlyphRenderer\"},{\"id\":\"16923\",\"type\":\"GlyphRenderer\"},{\"id\":\"16927\",\"type\":\"GlyphRenderer\"},{\"id\":\"16931\",\"type\":\"GlyphRenderer\"},{\"id\":\"17416\",\"type\":\"GlyphRenderer\"},{\"id\":\"17420\",\"type\":\"GlyphRenderer\"},{\"id\":\"17424\",\"type\":\"GlyphRenderer\"},{\"id\":\"17428\",\"type\":\"GlyphRenderer\"},{\"id\":\"17432\",\"type\":\"GlyphRenderer\"},{\"id\":\"17436\",\"type\":\"GlyphRenderer\"},{\"id\":\"17440\",\"type\":\"GlyphRenderer\"},{\"id\":\"17444\",\"type\":\"GlyphRenderer\"},{\"id\":\"17448\",\"type\":\"GlyphRenderer\"},{\"id\":\"17452\",\"type\":\"GlyphRenderer\"},{\"id\":\"17456\",\"type\":\"GlyphRenderer\"},{\"id\":\"17460\",\"type\":\"GlyphRenderer\"},{\"id\":\"17464\",\"type\":\"GlyphRenderer\"},{\"id\":\"17468\",\"type\":\"GlyphRenderer\"},{\"id\":\"17472\",\"type\":\"GlyphRenderer\"},{\"id\":\"17476\",\"type\":\"GlyphRenderer\"},{\"id\":\"17480\",\"type\":\"GlyphRenderer\"},{\"id\":\"17484\",\"type\":\"GlyphRenderer\"},{\"id\":\"17488\",\"type\":\"GlyphRenderer\"},{\"id\":\"17492\",\"type\":\"GlyphRenderer\"},{\"id\":\"17496\",\"type\":\"GlyphRenderer\"},{\"id\":\"17500\",\"type\":\"GlyphRenderer\"},{\"id\":\"17504\",\"type\":\"GlyphRenderer\"},{\"id\":\"17508\",\"type\":\"GlyphRenderer\"},{\"id\":\"17512\",\"type\":\"GlyphRenderer\"},{\"id\":\"17516\",\"type\":\"GlyphRenderer\"},{\"id\":\"17520\",\"type\":\"GlyphRenderer\"},{\"id\":\"17524\",\"type\":\"GlyphRenderer\"},{\"id\":\"17528\",\"type\":\"GlyphRenderer\"},{\"id\":\"17532\",\"type\":\"GlyphRenderer\"},{\"id\":\"17536\",\"type\":\"GlyphRenderer\"},{\"id\":\"17540\",\"type\":\"GlyphRenderer\"},{\"id\":\"17544\",\"type\":\"GlyphRenderer\"},{\"id\":\"17548\",\"type\":\"GlyphRenderer\"},{\"id\":\"17552\",\"type\":\"GlyphRenderer\"},{\"id\":\"17556\",\"type\":\"GlyphRenderer\"},{\"id\":\"17560\",\"type\":\"GlyphRenderer\"},{\"id\":\"17564\",\"type\":\"GlyphRenderer\"},{\"id\":\"17568\",\"type\":\"GlyphRenderer\"},{\"id\":\"17572\",\"type\":\"GlyphRenderer\"},{\"id\":\"17576\",\"type\":\"GlyphRenderer\"},{\"id\":\"17580\",\"type\":\"GlyphRenderer\"},{\"id\":\"17584\",\"type\":\"GlyphRenderer\"},{\"id\":\"17588\",\"type\":\"GlyphRenderer\"},{\"id\":\"17592\",\"type\":\"GlyphRenderer\"},{\"id\":\"17596\",\"type\":\"GlyphRenderer\"},{\"id\":\"17600\",\"type\":\"GlyphRenderer\"},{\"id\":\"17604\",\"type\":\"GlyphRenderer\"}],\"tooltips\":[[\"type\",\"@type\"],[\"origin\",\"@origin\"],[\"runs\",\"@runs\"],[\"burn_in\",\"@p_burn_in\"],[\"l_rate\",\"@p_l_rate\"],[\"mdecay\",\"@p_mdecay\"],[\"n_units_1\",\"@p_n_units_1\"],[\"n_units_2\",\"@p_n_units_2\"]]},\"id\":\"17866\",\"type\":\"HoverTool\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17360\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17338\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17355\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17339\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17358\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17363\",\"type\":\"GroupFilter\"},{\"id\":\"17364\",\"type\":\"GroupFilter\"},{\"id\":\"17365\",\"type\":\"GroupFilter\"},{\"id\":\"17366\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17367\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17344\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17378\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"white\"],\"origin\":[\"Random\",\"Random\"],\"p_burn_in\":[0.06095411756804747,0.34424088646527784],\"p_l_rate\":[1.3140974150295323e-05,5.886622133632225e-05],\"p_mdecay\":[0.6085942693370233,0.6934225820967883],\"p_n_units_1\":[27,288],\"p_n_units_2\":[409,504],\"runs\":[1,1],\"size\":[12.0,12.0],\"type\":[\"Incumbent\",\"Candidate\"],\"x\":{\"__ndarray__\":\"jPLiqERy979q1fKBIRzxvw==\",\"dtype\":\"float64\",\"shape\":[2]},\"y\":{\"__ndarray__\":\"m4VOa/RK4b+Gg2nOPPLsvw==\",\"dtype\":\"float64\",\"shape\":[2]},\"zorder\":[\"0\",\"0\"]},\"selected\":{\"id\":\"15049\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15050\",\"type\":\"UnionRenderers\"}},\"id\":\"14543\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17384\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17336\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17328\",\"type\":\"GroupFilter\"},{\"id\":\"17329\",\"type\":\"GroupFilter\"},{\"id\":\"17330\",\"type\":\"GroupFilter\"},{\"id\":\"17331\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17332\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15221\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15242\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15226\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17383\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15229\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17380\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15224\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17373\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15244\",\"type\":\"GroupFilter\"},{\"id\":\"15245\",\"type\":\"GroupFilter\"},{\"id\":\"15246\",\"type\":\"GroupFilter\"},{\"id\":\"15247\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15248\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"17323\",\"type\":\"GroupFilter\"},{\"id\":\"17324\",\"type\":\"GroupFilter\"},{\"id\":\"17325\",\"type\":\"GroupFilter\"},{\"id\":\"17326\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17327\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17334\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17351\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17369\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17371\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15249\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15239\",\"type\":\"GroupFilter\"},{\"id\":\"15240\",\"type\":\"GroupFilter\"},{\"id\":\"15241\",\"type\":\"GroupFilter\"},{\"id\":\"15242\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15243\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"17373\",\"type\":\"GroupFilter\"},{\"id\":\"17374\",\"type\":\"GroupFilter\"},{\"id\":\"17375\",\"type\":\"GroupFilter\"},{\"id\":\"17376\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17377\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17345\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17358\",\"type\":\"GroupFilter\"},{\"id\":\"17359\",\"type\":\"GroupFilter\"},{\"id\":\"17360\",\"type\":\"GroupFilter\"},{\"id\":\"17361\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17362\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17176\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17179\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17178\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17175\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17173\",\"type\":\"GroupFilter\"},{\"id\":\"17174\",\"type\":\"GroupFilter\"},{\"id\":\"17175\",\"type\":\"GroupFilter\"},{\"id\":\"17176\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17177\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16710\",\"type\":\"GroupFilter\"},{\"id\":\"16711\",\"type\":\"GroupFilter\"},{\"id\":\"16712\",\"type\":\"GroupFilter\"},{\"id\":\"16713\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16714\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16708\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16713\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16712\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16716\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16703\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16700\",\"type\":\"GroupFilter\"},{\"id\":\"16701\",\"type\":\"GroupFilter\"},{\"id\":\"16702\",\"type\":\"GroupFilter\"},{\"id\":\"16703\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16704\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16710\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16715\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16711\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16707\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16705\",\"type\":\"GroupFilter\"},{\"id\":\"16706\",\"type\":\"GroupFilter\"},{\"id\":\"16707\",\"type\":\"GroupFilter\"},{\"id\":\"16708\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16709\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16120\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16706\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16717\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16701\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16705\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16702\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16700\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16027\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17590\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14796\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15432\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15437\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"17629\",\"type\":\"Selection\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17586\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15431\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"16010\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14797\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17583\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16009\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14798\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15419\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16012\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17578\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15410\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17582\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17583\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17387\",\"type\":\"CDSView\"}},\"id\":\"17584\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14799\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16020\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14796\",\"type\":\"GroupFilter\"},{\"id\":\"14797\",\"type\":\"GroupFilter\"},{\"id\":\"14798\",\"type\":\"GroupFilter\"},{\"id\":\"14799\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14800\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16017\",\"type\":\"GroupFilter\"},{\"id\":\"16018\",\"type\":\"GroupFilter\"},{\"id\":\"16019\",\"type\":\"GroupFilter\"},{\"id\":\"16020\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16021\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14801\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16023\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17579\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16013\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14802\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14803\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16032\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16039\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14804\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15430\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16029\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14801\",\"type\":\"GroupFilter\"},{\"id\":\"14802\",\"type\":\"GroupFilter\"},{\"id\":\"14803\",\"type\":\"GroupFilter\"},{\"id\":\"14804\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14805\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15429\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16007\",\"type\":\"GroupFilter\"},{\"id\":\"16008\",\"type\":\"GroupFilter\"},{\"id\":\"16009\",\"type\":\"GroupFilter\"},{\"id\":\"16010\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16011\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17598\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14806\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15427\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17578\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17579\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17382\",\"type\":\"CDSView\"}},\"id\":\"17580\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15429\",\"type\":\"GroupFilter\"},{\"id\":\"15430\",\"type\":\"GroupFilter\"},{\"id\":\"15431\",\"type\":\"GroupFilter\"},{\"id\":\"15432\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15433\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16018\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17595\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14807\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15434\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16019\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17587\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16022\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17590\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17591\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17397\",\"type\":\"CDSView\"}},\"id\":\"17592\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14808\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16037\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17591\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14809\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15436\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16033\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14806\",\"type\":\"GroupFilter\"},{\"id\":\"14807\",\"type\":\"GroupFilter\"},{\"id\":\"14808\",\"type\":\"GroupFilter\"},{\"id\":\"14809\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14810\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17599\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15411\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14811\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16032\",\"type\":\"GroupFilter\"},{\"id\":\"16033\",\"type\":\"GroupFilter\"},{\"id\":\"16034\",\"type\":\"GroupFilter\"},{\"id\":\"16035\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16036\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14812\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15406\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16015\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15409\",\"type\":\"GroupFilter\"},{\"id\":\"15410\",\"type\":\"GroupFilter\"},{\"id\":\"15411\",\"type\":\"GroupFilter\"},{\"id\":\"15412\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15413\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14813\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15425\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16017\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17594\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17595\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17402\",\"type\":\"CDSView\"}},\"id\":\"17596\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15421\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14814\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15417\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16012\",\"type\":\"GroupFilter\"},{\"id\":\"16013\",\"type\":\"GroupFilter\"},{\"id\":\"16014\",\"type\":\"GroupFilter\"},{\"id\":\"16015\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16016\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15435\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14811\",\"type\":\"GroupFilter\"},{\"id\":\"14812\",\"type\":\"GroupFilter\"},{\"id\":\"14813\",\"type\":\"GroupFilter\"},{\"id\":\"14814\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14815\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15414\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15416\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14816\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15412\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17598\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17599\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17407\",\"type\":\"CDSView\"}},\"id\":\"17600\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"16022\",\"type\":\"GroupFilter\"},{\"id\":\"16023\",\"type\":\"GroupFilter\"},{\"id\":\"16024\",\"type\":\"GroupFilter\"},{\"id\":\"16025\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16026\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17603\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14817\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15415\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16025\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"16030\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14818\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17594\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15420\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17586\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17587\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17392\",\"type\":\"CDSView\"}},\"id\":\"17588\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"16027\",\"type\":\"GroupFilter\"},{\"id\":\"16028\",\"type\":\"GroupFilter\"},{\"id\":\"16029\",\"type\":\"GroupFilter\"},{\"id\":\"16030\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16031\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15422\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14819\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17602\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17603\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17412\",\"type\":\"CDSView\"}},\"id\":\"17604\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14816\",\"type\":\"GroupFilter\"},{\"id\":\"14817\",\"type\":\"GroupFilter\"},{\"id\":\"14818\",\"type\":\"GroupFilter\"},{\"id\":\"14819\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14820\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15409\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14821\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16024\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15404\",\"type\":\"GroupFilter\"},{\"id\":\"15405\",\"type\":\"GroupFilter\"},{\"id\":\"15406\",\"type\":\"GroupFilter\"},{\"id\":\"15407\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15408\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14822\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15424\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15414\",\"type\":\"GroupFilter\"},{\"id\":\"15415\",\"type\":\"GroupFilter\"},{\"id\":\"15416\",\"type\":\"GroupFilter\"},{\"id\":\"15417\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15418\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14823\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16008\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15419\",\"type\":\"GroupFilter\"},{\"id\":\"15420\",\"type\":\"GroupFilter\"},{\"id\":\"15421\",\"type\":\"GroupFilter\"},{\"id\":\"15422\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15423\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17582\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14824\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"17630\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"filters\":[{\"id\":\"15424\",\"type\":\"GroupFilter\"},{\"id\":\"15425\",\"type\":\"GroupFilter\"},{\"id\":\"15426\",\"type\":\"GroupFilter\"},{\"id\":\"15427\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15428\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"14821\",\"type\":\"GroupFilter\"},{\"id\":\"14822\",\"type\":\"GroupFilter\"},{\"id\":\"14823\",\"type\":\"GroupFilter\"},{\"id\":\"14824\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14825\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17602\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15426\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16014\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14826\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15407\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16028\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16034\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14827\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16038\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16035\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16773\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16774\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16544\",\"type\":\"CDSView\"}},\"id\":\"16775\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16778\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16789\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16766\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16757\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16758\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16524\",\"type\":\"CDSView\"}},\"id\":\"16759\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16777\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16778\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16549\",\"type\":\"CDSView\"}},\"id\":\"16779\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16785\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16781\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16785\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16786\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16559\",\"type\":\"CDSView\"}},\"id\":\"16787\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16762\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16774\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16782\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16765\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16758\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16765\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16766\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16534\",\"type\":\"CDSView\"}},\"id\":\"16767\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16761\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16762\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16529\",\"type\":\"CDSView\"}},\"id\":\"16763\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17248\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16781\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16782\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16554\",\"type\":\"CDSView\"}},\"id\":\"16783\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17296\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16786\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16865\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16761\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16865\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16866\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16659\",\"type\":\"CDSView\"}},\"id\":\"16867\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17249\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16866\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16777\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16721\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17311\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17225\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17221\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17246\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17231\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17224\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17240\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17226\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17218\",\"type\":\"GroupFilter\"},{\"id\":\"17219\",\"type\":\"GroupFilter\"},{\"id\":\"17220\",\"type\":\"GroupFilter\"},{\"id\":\"17221\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17222\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17241\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17228\",\"type\":\"GroupFilter\"},{\"id\":\"17229\",\"type\":\"GroupFilter\"},{\"id\":\"17230\",\"type\":\"GroupFilter\"},{\"id\":\"17231\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17232\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"17233\",\"type\":\"GroupFilter\"},{\"id\":\"17234\",\"type\":\"GroupFilter\"},{\"id\":\"17235\",\"type\":\"GroupFilter\"},{\"id\":\"17236\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17237\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17220\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17235\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17223\",\"type\":\"GroupFilter\"},{\"id\":\"17224\",\"type\":\"GroupFilter\"},{\"id\":\"17225\",\"type\":\"GroupFilter\"},{\"id\":\"17226\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17227\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17233\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17230\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17238\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17223\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17238\",\"type\":\"GroupFilter\"},{\"id\":\"17239\",\"type\":\"GroupFilter\"},{\"id\":\"17240\",\"type\":\"GroupFilter\"},{\"id\":\"17241\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17242\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17245\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17234\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17229\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17243\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17236\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17228\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17239\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17243\",\"type\":\"GroupFilter\"},{\"id\":\"17244\",\"type\":\"GroupFilter\"},{\"id\":\"17245\",\"type\":\"GroupFilter\"},{\"id\":\"17246\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17247\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17244\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14632\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16232\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16233\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16031\",\"type\":\"CDSView\"}},\"id\":\"16234\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16252\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16253\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16056\",\"type\":\"CDSView\"}},\"id\":\"16254\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14633\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14634\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14631\",\"type\":\"GroupFilter\"},{\"id\":\"14632\",\"type\":\"GroupFilter\"},{\"id\":\"14633\",\"type\":\"GroupFilter\"},{\"id\":\"14634\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14635\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14636\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14637\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16244\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14638\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14639\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14636\",\"type\":\"GroupFilter\"},{\"id\":\"14637\",\"type\":\"GroupFilter\"},{\"id\":\"14638\",\"type\":\"GroupFilter\"},{\"id\":\"14639\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14640\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16240\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14641\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17310\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16236\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16237\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16036\",\"type\":\"CDSView\"}},\"id\":\"16238\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14642\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16237\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16264\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16265\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16071\",\"type\":\"CDSView\"}},\"id\":\"16266\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14643\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16233\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14644\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16264\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14641\",\"type\":\"GroupFilter\"},{\"id\":\"14642\",\"type\":\"GroupFilter\"},{\"id\":\"14643\",\"type\":\"GroupFilter\"},{\"id\":\"14644\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14645\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14646\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16249\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16256\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16244\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16245\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16046\",\"type\":\"CDSView\"}},\"id\":\"16246\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14647\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16245\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14648\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14649\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16256\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16257\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16061\",\"type\":\"CDSView\"}},\"id\":\"16258\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14646\",\"type\":\"GroupFilter\"},{\"id\":\"14647\",\"type\":\"GroupFilter\"},{\"id\":\"14648\",\"type\":\"GroupFilter\"},{\"id\":\"14649\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14650\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16248\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14651\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14652\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14653\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16248\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16249\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16051\",\"type\":\"CDSView\"}},\"id\":\"16250\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14654\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14651\",\"type\":\"GroupFilter\"},{\"id\":\"14652\",\"type\":\"GroupFilter\"},{\"id\":\"14653\",\"type\":\"GroupFilter\"},{\"id\":\"14654\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14655\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16261\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16253\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14656\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16240\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16241\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16041\",\"type\":\"CDSView\"}},\"id\":\"16242\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14657\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16252\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16241\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14658\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16257\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16265\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14659\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16236\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14656\",\"type\":\"GroupFilter\"},{\"id\":\"14657\",\"type\":\"GroupFilter\"},{\"id\":\"14658\",\"type\":\"GroupFilter\"},{\"id\":\"14659\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14660\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16260\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14661\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14662\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14663\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14664\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16260\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16261\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16066\",\"type\":\"CDSView\"}},\"id\":\"16262\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15375\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15364\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16545\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16540\",\"type\":\"GroupFilter\"},{\"id\":\"16541\",\"type\":\"GroupFilter\"},{\"id\":\"16542\",\"type\":\"GroupFilter\"},{\"id\":\"16543\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16544\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16551\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16541\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16560\",\"type\":\"GroupFilter\"},{\"id\":\"16561\",\"type\":\"GroupFilter\"},{\"id\":\"16562\",\"type\":\"GroupFilter\"},{\"id\":\"16563\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16564\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15345\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16555\",\"type\":\"GroupFilter\"},{\"id\":\"16556\",\"type\":\"GroupFilter\"},{\"id\":\"16557\",\"type\":\"GroupFilter\"},{\"id\":\"16558\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16559\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16545\",\"type\":\"GroupFilter\"},{\"id\":\"16546\",\"type\":\"GroupFilter\"},{\"id\":\"16547\",\"type\":\"GroupFilter\"},{\"id\":\"16548\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16549\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15361\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15344\",\"type\":\"GroupFilter\"},{\"id\":\"15345\",\"type\":\"GroupFilter\"},{\"id\":\"15346\",\"type\":\"GroupFilter\"},{\"id\":\"15347\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15348\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16563\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15369\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16537\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15349\",\"type\":\"GroupFilter\"},{\"id\":\"15350\",\"type\":\"GroupFilter\"},{\"id\":\"15351\",\"type\":\"GroupFilter\"},{\"id\":\"15352\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15353\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16566\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16757\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16538\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15366\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15362\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15643\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16562\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15359\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15360\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15347\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16552\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16548\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15356\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16546\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15357\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16553\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15354\",\"type\":\"GroupFilter\"},{\"id\":\"15355\",\"type\":\"GroupFilter\"},{\"id\":\"15356\",\"type\":\"GroupFilter\"},{\"id\":\"15357\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15358\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16565\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15346\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16543\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15643\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15644\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15453\",\"type\":\"CDSView\"}},\"id\":\"15645\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15365\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16542\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15640\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16769\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15369\",\"type\":\"GroupFilter\"},{\"id\":\"15370\",\"type\":\"GroupFilter\"},{\"id\":\"15371\",\"type\":\"GroupFilter\"},{\"id\":\"15372\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15373\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16547\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15351\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15371\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16561\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15644\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15354\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16560\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16535\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15370\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16536\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"15665\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16557\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15374\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"15664\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16556\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15367\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16558\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15639\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15352\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16555\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16121\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15639\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15640\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15448\",\"type\":\"CDSView\"}},\"id\":\"15641\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15372\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16550\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15355\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16550\",\"type\":\"GroupFilter\"},{\"id\":\"16551\",\"type\":\"GroupFilter\"},{\"id\":\"16552\",\"type\":\"GroupFilter\"},{\"id\":\"16553\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16554\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15349\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15350\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15364\",\"type\":\"GroupFilter\"},{\"id\":\"15365\",\"type\":\"GroupFilter\"},{\"id\":\"15366\",\"type\":\"GroupFilter\"},{\"id\":\"15367\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15368\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15359\",\"type\":\"GroupFilter\"},{\"id\":\"15360\",\"type\":\"GroupFilter\"},{\"id\":\"15361\",\"type\":\"GroupFilter\"},{\"id\":\"15362\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15363\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16540\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16535\",\"type\":\"GroupFilter\"},{\"id\":\"16536\",\"type\":\"GroupFilter\"},{\"id\":\"16537\",\"type\":\"GroupFilter\"},{\"id\":\"16538\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16539\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15344\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14986\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16080\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16221\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15401\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14987\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15386\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16082\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14986\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14987\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14785\",\"type\":\"CDSView\"}},\"id\":\"14988\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15385\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16083\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15387\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16092\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15397\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16598\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15011\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15400\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16078\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15010\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15011\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14815\",\"type\":\"CDSView\"}},\"id\":\"15012\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16089\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15384\",\"type\":\"GroupFilter\"},{\"id\":\"15385\",\"type\":\"GroupFilter\"},{\"id\":\"15386\",\"type\":\"GroupFilter\"},{\"id\":\"15387\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15388\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"15044\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15405\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15014\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15015\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15374\",\"type\":\"GroupFilter\"},{\"id\":\"15375\",\"type\":\"GroupFilter\"},{\"id\":\"15376\",\"type\":\"GroupFilter\"},{\"id\":\"15377\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15378\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15014\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15015\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14820\",\"type\":\"CDSView\"}},\"id\":\"15016\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15392\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"15043\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15390\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15018\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15379\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15019\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15394\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16079\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16082\",\"type\":\"GroupFilter\"},{\"id\":\"16083\",\"type\":\"GroupFilter\"},{\"id\":\"16084\",\"type\":\"GroupFilter\"},{\"id\":\"16085\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16086\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15404\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15018\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15019\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14825\",\"type\":\"CDSView\"}},\"id\":\"15020\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15399\",\"type\":\"GroupFilter\"},{\"id\":\"15400\",\"type\":\"GroupFilter\"},{\"id\":\"15401\",\"type\":\"GroupFilter\"},{\"id\":\"15402\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15403\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16097\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15379\",\"type\":\"GroupFilter\"},{\"id\":\"15380\",\"type\":\"GroupFilter\"},{\"id\":\"15381\",\"type\":\"GroupFilter\"},{\"id\":\"15382\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15383\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"15042\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16092\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16093\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15856\",\"type\":\"CDSView\"}},\"id\":\"16094\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15399\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15022\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16077\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16096\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16097\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15861\",\"type\":\"CDSView\"}},\"id\":\"16098\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15023\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15384\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15022\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15023\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14830\",\"type\":\"CDSView\"}},\"id\":\"15024\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"15041\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15381\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16077\",\"type\":\"GroupFilter\"},{\"id\":\"16078\",\"type\":\"GroupFilter\"},{\"id\":\"16079\",\"type\":\"GroupFilter\"},{\"id\":\"16080\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16081\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15026\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15027\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16072\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15026\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15027\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14835\",\"type\":\"CDSView\"}},\"id\":\"15028\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15389\",\"type\":\"GroupFilter\"},{\"id\":\"15390\",\"type\":\"GroupFilter\"},{\"id\":\"15391\",\"type\":\"GroupFilter\"},{\"id\":\"15392\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15393\",\"type\":\"CDSView\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"15040\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16088\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16089\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15851\",\"type\":\"CDSView\"}},\"id\":\"16090\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15030\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15380\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16075\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16093\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15031\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15030\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15031\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14840\",\"type\":\"CDSView\"}},\"id\":\"15032\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16085\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16074\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16084\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15377\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16067\",\"type\":\"GroupFilter\"},{\"id\":\"16068\",\"type\":\"GroupFilter\"},{\"id\":\"16069\",\"type\":\"GroupFilter\"},{\"id\":\"16070\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16071\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15389\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16073\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15402\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16072\",\"type\":\"GroupFilter\"},{\"id\":\"16073\",\"type\":\"GroupFilter\"},{\"id\":\"16074\",\"type\":\"GroupFilter\"},{\"id\":\"16075\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16076\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15395\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16120\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16121\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15891\",\"type\":\"CDSView\"}},\"id\":\"16122\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15396\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15376\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15394\",\"type\":\"GroupFilter\"},{\"id\":\"15395\",\"type\":\"GroupFilter\"},{\"id\":\"15396\",\"type\":\"GroupFilter\"},{\"id\":\"15397\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15398\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16096\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16088\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15382\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15391\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14726\",\"type\":\"GroupFilter\"},{\"id\":\"14727\",\"type\":\"GroupFilter\"},{\"id\":\"14728\",\"type\":\"GroupFilter\"},{\"id\":\"14729\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14730\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16675\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16690\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16680\",\"type\":\"GroupFilter\"},{\"id\":\"16681\",\"type\":\"GroupFilter\"},{\"id\":\"16682\",\"type\":\"GroupFilter\"},{\"id\":\"16683\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16684\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14731\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14732\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16686\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14733\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14734\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16695\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14731\",\"type\":\"GroupFilter\"},{\"id\":\"14732\",\"type\":\"GroupFilter\"},{\"id\":\"14733\",\"type\":\"GroupFilter\"},{\"id\":\"14734\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14735\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14736\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16671\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16715\",\"type\":\"GroupFilter\"},{\"id\":\"16716\",\"type\":\"GroupFilter\"},{\"id\":\"16717\",\"type\":\"GroupFilter\"},{\"id\":\"16718\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16719\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16685\",\"type\":\"GroupFilter\"},{\"id\":\"16686\",\"type\":\"GroupFilter\"},{\"id\":\"16687\",\"type\":\"GroupFilter\"},{\"id\":\"16688\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16689\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14737\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16677\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16690\",\"type\":\"GroupFilter\"},{\"id\":\"16691\",\"type\":\"GroupFilter\"},{\"id\":\"16692\",\"type\":\"GroupFilter\"},{\"id\":\"16693\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16694\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14738\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14739\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16691\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16720\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14736\",\"type\":\"GroupFilter\"},{\"id\":\"14737\",\"type\":\"GroupFilter\"},{\"id\":\"14738\",\"type\":\"GroupFilter\"},{\"id\":\"14739\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14740\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16692\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14741\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16688\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16697\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14742\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16696\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14743\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16675\",\"type\":\"GroupFilter\"},{\"id\":\"16676\",\"type\":\"GroupFilter\"},{\"id\":\"16677\",\"type\":\"GroupFilter\"},{\"id\":\"16678\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16679\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16665\",\"type\":\"GroupFilter\"},{\"id\":\"16666\",\"type\":\"GroupFilter\"},{\"id\":\"16667\",\"type\":\"GroupFilter\"},{\"id\":\"16668\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16669\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14744\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14741\",\"type\":\"GroupFilter\"},{\"id\":\"14742\",\"type\":\"GroupFilter\"},{\"id\":\"14743\",\"type\":\"GroupFilter\"},{\"id\":\"14744\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14745\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14746\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16685\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14747\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16682\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16676\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14748\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16681\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14749\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14746\",\"type\":\"GroupFilter\"},{\"id\":\"14747\",\"type\":\"GroupFilter\"},{\"id\":\"14748\",\"type\":\"GroupFilter\"},{\"id\":\"14749\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14750\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16680\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16678\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14751\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16683\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14752\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14753\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14754\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16670\",\"type\":\"GroupFilter\"},{\"id\":\"16671\",\"type\":\"GroupFilter\"},{\"id\":\"16672\",\"type\":\"GroupFilter\"},{\"id\":\"16673\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16674\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16718\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14751\",\"type\":\"GroupFilter\"},{\"id\":\"14752\",\"type\":\"GroupFilter\"},{\"id\":\"14753\",\"type\":\"GroupFilter\"},{\"id\":\"14754\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14755\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16698\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16695\",\"type\":\"GroupFilter\"},{\"id\":\"16696\",\"type\":\"GroupFilter\"},{\"id\":\"16697\",\"type\":\"GroupFilter\"},{\"id\":\"16698\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16699\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14756\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16668\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14757\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16670\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16687\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14758\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14759\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16672\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14756\",\"type\":\"GroupFilter\"},{\"id\":\"14757\",\"type\":\"GroupFilter\"},{\"id\":\"14758\",\"type\":\"GroupFilter\"},{\"id\":\"14759\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14760\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16693\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14761\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14762\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16673\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15539\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15532\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15571\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15572\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15363\",\"type\":\"CDSView\"}},\"id\":\"15573\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16597\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15877\",\"type\":\"GroupFilter\"},{\"id\":\"15878\",\"type\":\"GroupFilter\"},{\"id\":\"15879\",\"type\":\"GroupFilter\"},{\"id\":\"15880\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15881\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15531\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15524\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15536\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15519\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15520\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15298\",\"type\":\"CDSView\"}},\"id\":\"15521\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15543\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15544\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15328\",\"type\":\"CDSView\"}},\"id\":\"15545\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15523\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15524\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15303\",\"type\":\"CDSView\"}},\"id\":\"15525\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15540\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15528\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15575\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15576\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15368\",\"type\":\"CDSView\"}},\"id\":\"15577\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15515\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15516\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15293\",\"type\":\"CDSView\"}},\"id\":\"15517\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15535\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15882\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15580\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15535\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15536\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15318\",\"type\":\"CDSView\"}},\"id\":\"15537\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15520\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15539\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15540\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15323\",\"type\":\"CDSView\"}},\"id\":\"15541\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15575\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15519\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15515\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15544\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15523\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15543\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15579\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15527\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15528\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15308\",\"type\":\"CDSView\"}},\"id\":\"15529\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15531\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15532\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15313\",\"type\":\"CDSView\"}},\"id\":\"15533\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15576\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15527\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15516\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14899\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15309\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16630\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14898\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14899\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14675\",\"type\":\"CDSView\"}},\"id\":\"14900\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15309\",\"type\":\"GroupFilter\"},{\"id\":\"15310\",\"type\":\"GroupFilter\"},{\"id\":\"15311\",\"type\":\"GroupFilter\"},{\"id\":\"15312\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15313\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15007\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14918\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15299\",\"type\":\"GroupFilter\"},{\"id\":\"15300\",\"type\":\"GroupFilter\"},{\"id\":\"15301\",\"type\":\"GroupFilter\"},{\"id\":\"15302\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15303\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14919\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15300\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14918\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14919\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14700\",\"type\":\"CDSView\"}},\"id\":\"14920\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15297\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15006\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15301\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14922\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15294\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14923\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14922\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14923\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14705\",\"type\":\"CDSView\"}},\"id\":\"14924\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15304\",\"type\":\"GroupFilter\"},{\"id\":\"15305\",\"type\":\"GroupFilter\"},{\"id\":\"15306\",\"type\":\"GroupFilter\"},{\"id\":\"15307\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15308\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"15046\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"filters\":[{\"id\":\"15294\",\"type\":\"GroupFilter\"},{\"id\":\"15295\",\"type\":\"GroupFilter\"},{\"id\":\"15296\",\"type\":\"GroupFilter\"},{\"id\":\"15297\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15298\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14926\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15312\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14927\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15299\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14926\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14927\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14710\",\"type\":\"CDSView\"}},\"id\":\"14928\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15302\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15286\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15002\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15003\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14805\",\"type\":\"CDSView\"}},\"id\":\"15004\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15289\",\"type\":\"GroupFilter\"},{\"id\":\"15290\",\"type\":\"GroupFilter\"},{\"id\":\"15291\",\"type\":\"GroupFilter\"},{\"id\":\"15292\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15293\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14930\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14931\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15304\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15284\",\"type\":\"GroupFilter\"},{\"id\":\"15285\",\"type\":\"GroupFilter\"},{\"id\":\"15286\",\"type\":\"GroupFilter\"},{\"id\":\"15287\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15288\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14930\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14931\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14715\",\"type\":\"CDSView\"}},\"id\":\"14932\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15307\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15003\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14934\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14935\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14934\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14935\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14720\",\"type\":\"CDSView\"}},\"id\":\"14936\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15002\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14938\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15296\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15305\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14939\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15295\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15291\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14938\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14939\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14725\",\"type\":\"CDSView\"}},\"id\":\"14940\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15285\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15311\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"15047\",\"type\":\"Selection\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15287\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15310\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15885\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14942\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14943\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15306\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14942\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14943\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14730\",\"type\":\"CDSView\"}},\"id\":\"14944\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15292\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14998\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14999\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14800\",\"type\":\"CDSView\"}},\"id\":\"15000\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16631\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15289\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16632\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14946\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16633\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14947\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"16630\",\"type\":\"GroupFilter\"},{\"id\":\"16631\",\"type\":\"GroupFilter\"},{\"id\":\"16632\",\"type\":\"GroupFilter\"},{\"id\":\"16633\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16634\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14946\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14947\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14735\",\"type\":\"CDSView\"}},\"id\":\"14948\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15314\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15284\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16635\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14999\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15290\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16503\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16518\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15282\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15254\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16520\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15264\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16517\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15270\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16510\",\"type\":\"GroupFilter\"},{\"id\":\"16511\",\"type\":\"GroupFilter\"},{\"id\":\"16512\",\"type\":\"GroupFilter\"},{\"id\":\"16513\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16514\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16505\",\"type\":\"GroupFilter\"},{\"id\":\"16506\",\"type\":\"GroupFilter\"},{\"id\":\"16507\",\"type\":\"GroupFilter\"},{\"id\":\"16508\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16509\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16525\",\"type\":\"GroupFilter\"},{\"id\":\"16526\",\"type\":\"GroupFilter\"},{\"id\":\"16527\",\"type\":\"GroupFilter\"},{\"id\":\"16528\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16529\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15267\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15275\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16530\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15252\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15266\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15280\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16515\",\"type\":\"GroupFilter\"},{\"id\":\"16516\",\"type\":\"GroupFilter\"},{\"id\":\"16517\",\"type\":\"GroupFilter\"},{\"id\":\"16518\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16519\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15265\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16521\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15279\",\"type\":\"GroupFilter\"},{\"id\":\"15280\",\"type\":\"GroupFilter\"},{\"id\":\"15281\",\"type\":\"GroupFilter\"},{\"id\":\"15282\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15283\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15262\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16522\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15277\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16527\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15264\",\"type\":\"GroupFilter\"},{\"id\":\"15265\",\"type\":\"GroupFilter\"},{\"id\":\"15266\",\"type\":\"GroupFilter\"},{\"id\":\"15267\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15268\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16516\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15251\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15249\",\"type\":\"GroupFilter\"},{\"id\":\"15250\",\"type\":\"GroupFilter\"},{\"id\":\"15251\",\"type\":\"GroupFilter\"},{\"id\":\"15252\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15253\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15274\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15259\",\"type\":\"GroupFilter\"},{\"id\":\"15260\",\"type\":\"GroupFilter\"},{\"id\":\"15261\",\"type\":\"GroupFilter\"},{\"id\":\"15262\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15263\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16502\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15269\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16523\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16512\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15271\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15259\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16511\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16520\",\"type\":\"GroupFilter\"},{\"id\":\"16521\",\"type\":\"GroupFilter\"},{\"id\":\"16522\",\"type\":\"GroupFilter\"},{\"id\":\"16523\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16524\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15279\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16510\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16526\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16525\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15272\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16531\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15261\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16507\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16505\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15276\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15257\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16506\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15269\",\"type\":\"GroupFilter\"},{\"id\":\"15270\",\"type\":\"GroupFilter\"},{\"id\":\"15271\",\"type\":\"GroupFilter\"},{\"id\":\"15272\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15273\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16513\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15256\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16501\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15260\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16500\",\"type\":\"GroupFilter\"},{\"id\":\"16501\",\"type\":\"GroupFilter\"},{\"id\":\"16502\",\"type\":\"GroupFilter\"},{\"id\":\"16503\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16504\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15281\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15255\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16528\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15254\",\"type\":\"GroupFilter\"},{\"id\":\"15255\",\"type\":\"GroupFilter\"},{\"id\":\"15256\",\"type\":\"GroupFilter\"},{\"id\":\"15257\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15258\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16508\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16532\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16515\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15274\",\"type\":\"GroupFilter\"},{\"id\":\"15275\",\"type\":\"GroupFilter\"},{\"id\":\"15276\",\"type\":\"GroupFilter\"},{\"id\":\"15277\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15278\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":{\"id\":\"17874\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"None\"},\"id\":\"17875\",\"type\":\"Button\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14828\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14829\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14826\",\"type\":\"GroupFilter\"},{\"id\":\"14827\",\"type\":\"GroupFilter\"},{\"id\":\"14828\",\"type\":\"GroupFilter\"},{\"id\":\"14829\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14830\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14831\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14832\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14833\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14834\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14831\",\"type\":\"GroupFilter\"},{\"id\":\"14832\",\"type\":\"GroupFilter\"},{\"id\":\"14833\",\"type\":\"GroupFilter\"},{\"id\":\"14834\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14835\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14836\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14837\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14838\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14839\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14836\",\"type\":\"GroupFilter\"},{\"id\":\"14837\",\"type\":\"GroupFilter\"},{\"id\":\"14838\",\"type\":\"GroupFilter\"},{\"id\":\"14839\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14840\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14842\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14843\",\"type\":\"Scatter\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"17869\",\"type\":\"CheckboxButtonGroup\"},\"glyph0\":{\"id\":\"14844\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"14848\",\"type\":\"GlyphRenderer\"},\"glyph10\":{\"id\":\"14884\",\"type\":\"GlyphRenderer\"},\"glyph100\":{\"id\":\"16106\",\"type\":\"GlyphRenderer\"},\"glyph101\":{\"id\":\"16110\",\"type\":\"GlyphRenderer\"},\"glyph102\":{\"id\":\"16114\",\"type\":\"GlyphRenderer\"},\"glyph103\":{\"id\":\"16118\",\"type\":\"GlyphRenderer\"},\"glyph104\":{\"id\":\"16122\",\"type\":\"GlyphRenderer\"},\"glyph105\":{\"id\":\"16126\",\"type\":\"GlyphRenderer\"},\"glyph106\":{\"id\":\"16130\",\"type\":\"GlyphRenderer\"},\"glyph107\":{\"id\":\"16134\",\"type\":\"GlyphRenderer\"},\"glyph108\":{\"id\":\"16138\",\"type\":\"GlyphRenderer\"},\"glyph109\":{\"id\":\"16142\",\"type\":\"GlyphRenderer\"},\"glyph11\":{\"id\":\"14888\",\"type\":\"GlyphRenderer\"},\"glyph110\":{\"id\":\"16146\",\"type\":\"GlyphRenderer\"},\"glyph111\":{\"id\":\"16150\",\"type\":\"GlyphRenderer\"},\"glyph112\":{\"id\":\"16154\",\"type\":\"GlyphRenderer\"},\"glyph113\":{\"id\":\"16158\",\"type\":\"GlyphRenderer\"},\"glyph114\":{\"id\":\"16162\",\"type\":\"GlyphRenderer\"},\"glyph115\":{\"id\":\"16166\",\"type\":\"GlyphRenderer\"},\"glyph116\":{\"id\":\"16170\",\"type\":\"GlyphRenderer\"},\"glyph117\":{\"id\":\"16174\",\"type\":\"GlyphRenderer\"},\"glyph118\":{\"id\":\"16178\",\"type\":\"GlyphRenderer\"},\"glyph119\":{\"id\":\"16182\",\"type\":\"GlyphRenderer\"},\"glyph12\":{\"id\":\"14892\",\"type\":\"GlyphRenderer\"},\"glyph120\":{\"id\":\"16186\",\"type\":\"GlyphRenderer\"},\"glyph121\":{\"id\":\"16190\",\"type\":\"GlyphRenderer\"},\"glyph122\":{\"id\":\"16194\",\"type\":\"GlyphRenderer\"},\"glyph123\":{\"id\":\"16198\",\"type\":\"GlyphRenderer\"},\"glyph124\":{\"id\":\"16202\",\"type\":\"GlyphRenderer\"},\"glyph125\":{\"id\":\"16206\",\"type\":\"GlyphRenderer\"},\"glyph126\":{\"id\":\"16210\",\"type\":\"GlyphRenderer\"},\"glyph127\":{\"id\":\"16214\",\"type\":\"GlyphRenderer\"},\"glyph128\":{\"id\":\"16218\",\"type\":\"GlyphRenderer\"},\"glyph129\":{\"id\":\"16222\",\"type\":\"GlyphRenderer\"},\"glyph13\":{\"id\":\"14896\",\"type\":\"GlyphRenderer\"},\"glyph130\":{\"id\":\"16226\",\"type\":\"GlyphRenderer\"},\"glyph131\":{\"id\":\"16230\",\"type\":\"GlyphRenderer\"},\"glyph132\":{\"id\":\"16234\",\"type\":\"GlyphRenderer\"},\"glyph133\":{\"id\":\"16238\",\"type\":\"GlyphRenderer\"},\"glyph134\":{\"id\":\"16242\",\"type\":\"GlyphRenderer\"},\"glyph135\":{\"id\":\"16246\",\"type\":\"GlyphRenderer\"},\"glyph136\":{\"id\":\"16250\",\"type\":\"GlyphRenderer\"},\"glyph137\":{\"id\":\"16254\",\"type\":\"GlyphRenderer\"},\"glyph138\":{\"id\":\"16258\",\"type\":\"GlyphRenderer\"},\"glyph139\":{\"id\":\"16262\",\"type\":\"GlyphRenderer\"},\"glyph14\":{\"id\":\"14900\",\"type\":\"GlyphRenderer\"},\"glyph140\":{\"id\":\"16266\",\"type\":\"GlyphRenderer\"},\"glyph141\":{\"id\":\"16270\",\"type\":\"GlyphRenderer\"},\"glyph142\":{\"id\":\"16274\",\"type\":\"GlyphRenderer\"},\"glyph143\":{\"id\":\"16278\",\"type\":\"GlyphRenderer\"},\"glyph144\":{\"id\":\"16743\",\"type\":\"GlyphRenderer\"},\"glyph145\":{\"id\":\"16747\",\"type\":\"GlyphRenderer\"},\"glyph146\":{\"id\":\"16751\",\"type\":\"GlyphRenderer\"},\"glyph147\":{\"id\":\"16755\",\"type\":\"GlyphRenderer\"},\"glyph148\":{\"id\":\"16759\",\"type\":\"GlyphRenderer\"},\"glyph149\":{\"id\":\"16763\",\"type\":\"GlyphRenderer\"},\"glyph15\":{\"id\":\"14904\",\"type\":\"GlyphRenderer\"},\"glyph150\":{\"id\":\"16767\",\"type\":\"GlyphRenderer\"},\"glyph151\":{\"id\":\"16771\",\"type\":\"GlyphRenderer\"},\"glyph152\":{\"id\":\"16775\",\"type\":\"GlyphRenderer\"},\"glyph153\":{\"id\":\"16779\",\"type\":\"GlyphRenderer\"},\"glyph154\":{\"id\":\"16783\",\"type\":\"GlyphRenderer\"},\"glyph155\":{\"id\":\"16787\",\"type\":\"GlyphRenderer\"},\"glyph156\":{\"id\":\"16791\",\"type\":\"GlyphRenderer\"},\"glyph157\":{\"id\":\"16795\",\"type\":\"GlyphRenderer\"},\"glyph158\":{\"id\":\"16799\",\"type\":\"GlyphRenderer\"},\"glyph159\":{\"id\":\"16803\",\"type\":\"GlyphRenderer\"},\"glyph16\":{\"id\":\"14908\",\"type\":\"GlyphRenderer\"},\"glyph160\":{\"id\":\"16807\",\"type\":\"GlyphRenderer\"},\"glyph161\":{\"id\":\"16811\",\"type\":\"GlyphRenderer\"},\"glyph162\":{\"id\":\"16815\",\"type\":\"GlyphRenderer\"},\"glyph163\":{\"id\":\"16819\",\"type\":\"GlyphRenderer\"},\"glyph164\":{\"id\":\"16823\",\"type\":\"GlyphRenderer\"},\"glyph165\":{\"id\":\"16827\",\"type\":\"GlyphRenderer\"},\"glyph166\":{\"id\":\"16831\",\"type\":\"GlyphRenderer\"},\"glyph167\":{\"id\":\"16835\",\"type\":\"GlyphRenderer\"},\"glyph168\":{\"id\":\"16839\",\"type\":\"GlyphRenderer\"},\"glyph169\":{\"id\":\"16843\",\"type\":\"GlyphRenderer\"},\"glyph17\":{\"id\":\"14912\",\"type\":\"GlyphRenderer\"},\"glyph170\":{\"id\":\"16847\",\"type\":\"GlyphRenderer\"},\"glyph171\":{\"id\":\"16851\",\"type\":\"GlyphRenderer\"},\"glyph172\":{\"id\":\"16855\",\"type\":\"GlyphRenderer\"},\"glyph173\":{\"id\":\"16859\",\"type\":\"GlyphRenderer\"},\"glyph174\":{\"id\":\"16863\",\"type\":\"GlyphRenderer\"},\"glyph175\":{\"id\":\"16867\",\"type\":\"GlyphRenderer\"},\"glyph176\":{\"id\":\"16871\",\"type\":\"GlyphRenderer\"},\"glyph177\":{\"id\":\"16875\",\"type\":\"GlyphRenderer\"},\"glyph178\":{\"id\":\"16879\",\"type\":\"GlyphRenderer\"},\"glyph179\":{\"id\":\"16883\",\"type\":\"GlyphRenderer\"},\"glyph18\":{\"id\":\"14916\",\"type\":\"GlyphRenderer\"},\"glyph180\":{\"id\":\"16887\",\"type\":\"GlyphRenderer\"},\"glyph181\":{\"id\":\"16891\",\"type\":\"GlyphRenderer\"},\"glyph182\":{\"id\":\"16895\",\"type\":\"GlyphRenderer\"},\"glyph183\":{\"id\":\"16899\",\"type\":\"GlyphRenderer\"},\"glyph184\":{\"id\":\"16903\",\"type\":\"GlyphRenderer\"},\"glyph185\":{\"id\":\"16907\",\"type\":\"GlyphRenderer\"},\"glyph186\":{\"id\":\"16911\",\"type\":\"GlyphRenderer\"},\"glyph187\":{\"id\":\"16915\",\"type\":\"GlyphRenderer\"},\"glyph188\":{\"id\":\"16919\",\"type\":\"GlyphRenderer\"},\"glyph189\":{\"id\":\"16923\",\"type\":\"GlyphRenderer\"},\"glyph19\":{\"id\":\"14920\",\"type\":\"GlyphRenderer\"},\"glyph190\":{\"id\":\"16927\",\"type\":\"GlyphRenderer\"},\"glyph191\":{\"id\":\"16931\",\"type\":\"GlyphRenderer\"},\"glyph192\":{\"id\":\"17416\",\"type\":\"GlyphRenderer\"},\"glyph193\":{\"id\":\"17420\",\"type\":\"GlyphRenderer\"},\"glyph194\":{\"id\":\"17424\",\"type\":\"GlyphRenderer\"},\"glyph195\":{\"id\":\"17428\",\"type\":\"GlyphRenderer\"},\"glyph196\":{\"id\":\"17432\",\"type\":\"GlyphRenderer\"},\"glyph197\":{\"id\":\"17436\",\"type\":\"GlyphRenderer\"},\"glyph198\":{\"id\":\"17440\",\"type\":\"GlyphRenderer\"},\"glyph199\":{\"id\":\"17444\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"14852\",\"type\":\"GlyphRenderer\"},\"glyph20\":{\"id\":\"14924\",\"type\":\"GlyphRenderer\"},\"glyph200\":{\"id\":\"17448\",\"type\":\"GlyphRenderer\"},\"glyph201\":{\"id\":\"17452\",\"type\":\"GlyphRenderer\"},\"glyph202\":{\"id\":\"17456\",\"type\":\"GlyphRenderer\"},\"glyph203\":{\"id\":\"17460\",\"type\":\"GlyphRenderer\"},\"glyph204\":{\"id\":\"17464\",\"type\":\"GlyphRenderer\"},\"glyph205\":{\"id\":\"17468\",\"type\":\"GlyphRenderer\"},\"glyph206\":{\"id\":\"17472\",\"type\":\"GlyphRenderer\"},\"glyph207\":{\"id\":\"17476\",\"type\":\"GlyphRenderer\"},\"glyph208\":{\"id\":\"17480\",\"type\":\"GlyphRenderer\"},\"glyph209\":{\"id\":\"17484\",\"type\":\"GlyphRenderer\"},\"glyph21\":{\"id\":\"14928\",\"type\":\"GlyphRenderer\"},\"glyph210\":{\"id\":\"17488\",\"type\":\"GlyphRenderer\"},\"glyph211\":{\"id\":\"17492\",\"type\":\"GlyphRenderer\"},\"glyph212\":{\"id\":\"17496\",\"type\":\"GlyphRenderer\"},\"glyph213\":{\"id\":\"17500\",\"type\":\"GlyphRenderer\"},\"glyph214\":{\"id\":\"17504\",\"type\":\"GlyphRenderer\"},\"glyph215\":{\"id\":\"17508\",\"type\":\"GlyphRenderer\"},\"glyph216\":{\"id\":\"17512\",\"type\":\"GlyphRenderer\"},\"glyph217\":{\"id\":\"17516\",\"type\":\"GlyphRenderer\"},\"glyph218\":{\"id\":\"17520\",\"type\":\"GlyphRenderer\"},\"glyph219\":{\"id\":\"17524\",\"type\":\"GlyphRenderer\"},\"glyph22\":{\"id\":\"14932\",\"type\":\"GlyphRenderer\"},\"glyph220\":{\"id\":\"17528\",\"type\":\"GlyphRenderer\"},\"glyph221\":{\"id\":\"17532\",\"type\":\"GlyphRenderer\"},\"glyph222\":{\"id\":\"17536\",\"type\":\"GlyphRenderer\"},\"glyph223\":{\"id\":\"17540\",\"type\":\"GlyphRenderer\"},\"glyph224\":{\"id\":\"17544\",\"type\":\"GlyphRenderer\"},\"glyph225\":{\"id\":\"17548\",\"type\":\"GlyphRenderer\"},\"glyph226\":{\"id\":\"17552\",\"type\":\"GlyphRenderer\"},\"glyph227\":{\"id\":\"17556\",\"type\":\"GlyphRenderer\"},\"glyph228\":{\"id\":\"17560\",\"type\":\"GlyphRenderer\"},\"glyph229\":{\"id\":\"17564\",\"type\":\"GlyphRenderer\"},\"glyph23\":{\"id\":\"14936\",\"type\":\"GlyphRenderer\"},\"glyph230\":{\"id\":\"17568\",\"type\":\"GlyphRenderer\"},\"glyph231\":{\"id\":\"17572\",\"type\":\"GlyphRenderer\"},\"glyph232\":{\"id\":\"17576\",\"type\":\"GlyphRenderer\"},\"glyph233\":{\"id\":\"17580\",\"type\":\"GlyphRenderer\"},\"glyph234\":{\"id\":\"17584\",\"type\":\"GlyphRenderer\"},\"glyph235\":{\"id\":\"17588\",\"type\":\"GlyphRenderer\"},\"glyph236\":{\"id\":\"17592\",\"type\":\"GlyphRenderer\"},\"glyph237\":{\"id\":\"17596\",\"type\":\"GlyphRenderer\"},\"glyph238\":{\"id\":\"17600\",\"type\":\"GlyphRenderer\"},\"glyph239\":{\"id\":\"17604\",\"type\":\"GlyphRenderer\"},\"glyph24\":{\"id\":\"14940\",\"type\":\"GlyphRenderer\"},\"glyph25\":{\"id\":\"14944\",\"type\":\"GlyphRenderer\"},\"glyph26\":{\"id\":\"14948\",\"type\":\"GlyphRenderer\"},\"glyph27\":{\"id\":\"14952\",\"type\":\"GlyphRenderer\"},\"glyph28\":{\"id\":\"14956\",\"type\":\"GlyphRenderer\"},\"glyph29\":{\"id\":\"14960\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"14856\",\"type\":\"GlyphRenderer\"},\"glyph30\":{\"id\":\"14964\",\"type\":\"GlyphRenderer\"},\"glyph31\":{\"id\":\"14968\",\"type\":\"GlyphRenderer\"},\"glyph32\":{\"id\":\"14972\",\"type\":\"GlyphRenderer\"},\"glyph33\":{\"id\":\"14976\",\"type\":\"GlyphRenderer\"},\"glyph34\":{\"id\":\"14980\",\"type\":\"GlyphRenderer\"},\"glyph35\":{\"id\":\"14984\",\"type\":\"GlyphRenderer\"},\"glyph36\":{\"id\":\"14988\",\"type\":\"GlyphRenderer\"},\"glyph37\":{\"id\":\"14992\",\"type\":\"GlyphRenderer\"},\"glyph38\":{\"id\":\"14996\",\"type\":\"GlyphRenderer\"},\"glyph39\":{\"id\":\"15000\",\"type\":\"GlyphRenderer\"},\"glyph4\":{\"id\":\"14860\",\"type\":\"GlyphRenderer\"},\"glyph40\":{\"id\":\"15004\",\"type\":\"GlyphRenderer\"},\"glyph41\":{\"id\":\"15008\",\"type\":\"GlyphRenderer\"},\"glyph42\":{\"id\":\"15012\",\"type\":\"GlyphRenderer\"},\"glyph43\":{\"id\":\"15016\",\"type\":\"GlyphRenderer\"},\"glyph44\":{\"id\":\"15020\",\"type\":\"GlyphRenderer\"},\"glyph45\":{\"id\":\"15024\",\"type\":\"GlyphRenderer\"},\"glyph46\":{\"id\":\"15028\",\"type\":\"GlyphRenderer\"},\"glyph47\":{\"id\":\"15032\",\"type\":\"GlyphRenderer\"},\"glyph48\":{\"id\":\"15457\",\"type\":\"GlyphRenderer\"},\"glyph49\":{\"id\":\"15461\",\"type\":\"GlyphRenderer\"},\"glyph5\":{\"id\":\"14864\",\"type\":\"GlyphRenderer\"},\"glyph50\":{\"id\":\"15465\",\"type\":\"GlyphRenderer\"},\"glyph51\":{\"id\":\"15469\",\"type\":\"GlyphRenderer\"},\"glyph52\":{\"id\":\"15473\",\"type\":\"GlyphRenderer\"},\"glyph53\":{\"id\":\"15477\",\"type\":\"GlyphRenderer\"},\"glyph54\":{\"id\":\"15481\",\"type\":\"GlyphRenderer\"},\"glyph55\":{\"id\":\"15485\",\"type\":\"GlyphRenderer\"},\"glyph56\":{\"id\":\"15489\",\"type\":\"GlyphRenderer\"},\"glyph57\":{\"id\":\"15493\",\"type\":\"GlyphRenderer\"},\"glyph58\":{\"id\":\"15497\",\"type\":\"GlyphRenderer\"},\"glyph59\":{\"id\":\"15501\",\"type\":\"GlyphRenderer\"},\"glyph6\":{\"id\":\"14868\",\"type\":\"GlyphRenderer\"},\"glyph60\":{\"id\":\"15505\",\"type\":\"GlyphRenderer\"},\"glyph61\":{\"id\":\"15509\",\"type\":\"GlyphRenderer\"},\"glyph62\":{\"id\":\"15513\",\"type\":\"GlyphRenderer\"},\"glyph63\":{\"id\":\"15517\",\"type\":\"GlyphRenderer\"},\"glyph64\":{\"id\":\"15521\",\"type\":\"GlyphRenderer\"},\"glyph65\":{\"id\":\"15525\",\"type\":\"GlyphRenderer\"},\"glyph66\":{\"id\":\"15529\",\"type\":\"GlyphRenderer\"},\"glyph67\":{\"id\":\"15533\",\"type\":\"GlyphRenderer\"},\"glyph68\":{\"id\":\"15537\",\"type\":\"GlyphRenderer\"},\"glyph69\":{\"id\":\"15541\",\"type\":\"GlyphRenderer\"},\"glyph7\":{\"id\":\"14872\",\"type\":\"GlyphRenderer\"},\"glyph70\":{\"id\":\"15545\",\"type\":\"GlyphRenderer\"},\"glyph71\":{\"id\":\"15549\",\"type\":\"GlyphRenderer\"},\"glyph72\":{\"id\":\"15553\",\"type\":\"GlyphRenderer\"},\"glyph73\":{\"id\":\"15557\",\"type\":\"GlyphRenderer\"},\"glyph74\":{\"id\":\"15561\",\"type\":\"GlyphRenderer\"},\"glyph75\":{\"id\":\"15565\",\"type\":\"GlyphRenderer\"},\"glyph76\":{\"id\":\"15569\",\"type\":\"GlyphRenderer\"},\"glyph77\":{\"id\":\"15573\",\"type\":\"GlyphRenderer\"},\"glyph78\":{\"id\":\"15577\",\"type\":\"GlyphRenderer\"},\"glyph79\":{\"id\":\"15581\",\"type\":\"GlyphRenderer\"},\"glyph8\":{\"id\":\"14876\",\"type\":\"GlyphRenderer\"},\"glyph80\":{\"id\":\"15585\",\"type\":\"GlyphRenderer\"},\"glyph81\":{\"id\":\"15589\",\"type\":\"GlyphRenderer\"},\"glyph82\":{\"id\":\"15593\",\"type\":\"GlyphRenderer\"},\"glyph83\":{\"id\":\"15597\",\"type\":\"GlyphRenderer\"},\"glyph84\":{\"id\":\"15601\",\"type\":\"GlyphRenderer\"},\"glyph85\":{\"id\":\"15605\",\"type\":\"GlyphRenderer\"},\"glyph86\":{\"id\":\"15609\",\"type\":\"GlyphRenderer\"},\"glyph87\":{\"id\":\"15613\",\"type\":\"GlyphRenderer\"},\"glyph88\":{\"id\":\"15617\",\"type\":\"GlyphRenderer\"},\"glyph89\":{\"id\":\"15621\",\"type\":\"GlyphRenderer\"},\"glyph9\":{\"id\":\"14880\",\"type\":\"GlyphRenderer\"},\"glyph90\":{\"id\":\"15625\",\"type\":\"GlyphRenderer\"},\"glyph91\":{\"id\":\"15629\",\"type\":\"GlyphRenderer\"},\"glyph92\":{\"id\":\"15633\",\"type\":\"GlyphRenderer\"},\"glyph93\":{\"id\":\"15637\",\"type\":\"GlyphRenderer\"},\"glyph94\":{\"id\":\"15641\",\"type\":\"GlyphRenderer\"},\"glyph95\":{\"id\":\"15645\",\"type\":\"GlyphRenderer\"},\"glyph96\":{\"id\":\"16090\",\"type\":\"GlyphRenderer\"},\"glyph97\":{\"id\":\"16094\",\"type\":\"GlyphRenderer\"},\"glyph98\":{\"id\":\"16098\",\"type\":\"GlyphRenderer\"},\"glyph99\":{\"id\":\"16102\",\"type\":\"GlyphRenderer\"},\"time_slider\":{\"id\":\"17868\",\"type\":\"Slider\"}},\"code\":\"checkbox.active = [0, 1, 2, 3];var glyphs = [glyph0, glyph1, glyph2, glyph3, glyph4, glyph5, glyph6, glyph7, glyph8, glyph9, glyph10, glyph11, glyph12, glyph13, glyph14, glyph15, glyph16, glyph17, glyph18, glyph19, glyph20, glyph21, glyph22, glyph23, glyph24, glyph25, glyph26, glyph27, glyph28, glyph29, glyph30, glyph31, glyph32, glyph33, glyph34, glyph35, glyph36, glyph37, glyph38, glyph39, glyph40, glyph41, glyph42, glyph43, glyph44, glyph45, glyph46, glyph47, glyph48, glyph49, glyph50, glyph51, glyph52, glyph53, glyph54, glyph55, glyph56, glyph57, glyph58, glyph59, glyph60, glyph61, glyph62, glyph63, glyph64, glyph65, glyph66, glyph67, glyph68, glyph69, glyph70, glyph71, glyph72, glyph73, glyph74, glyph75, glyph76, glyph77, glyph78, glyph79, glyph80, glyph81, glyph82, glyph83, glyph84, glyph85, glyph86, glyph87, glyph88, glyph89, glyph90, glyph91, glyph92, glyph93, glyph94, glyph95, glyph96, glyph97, glyph98, glyph99, glyph100, glyph101, glyph102, glyph103, glyph104, glyph105, glyph106, glyph107, glyph108, glyph109, glyph110, glyph111, glyph112, glyph113, glyph114, glyph115, glyph116, glyph117, glyph118, glyph119, glyph120, glyph121, glyph122, glyph123, glyph124, glyph125, glyph126, glyph127, glyph128, glyph129, glyph130, glyph131, glyph132, glyph133, glyph134, glyph135, glyph136, glyph137, glyph138, glyph139, glyph140, glyph141, glyph142, glyph143, glyph144, glyph145, glyph146, glyph147, glyph148, glyph149, glyph150, glyph151, glyph152, glyph153, glyph154, glyph155, glyph156, glyph157, glyph158, glyph159, glyph160, glyph161, glyph162, glyph163, glyph164, glyph165, glyph166, glyph167, glyph168, glyph169, glyph170, glyph171, glyph172, glyph173, glyph174, glyph175, glyph176, glyph177, glyph178, glyph179, glyph180, glyph181, glyph182, glyph183, glyph184, glyph185, glyph186, glyph187, glyph188, glyph189, glyph190, glyph191, glyph192, glyph193, glyph194, glyph195, glyph196, glyph197, glyph198, glyph199, glyph200, glyph201, glyph202, glyph203, glyph204, glyph205, glyph206, glyph207, glyph208, glyph209, glyph210, glyph211, glyph212, glyph213, glyph214, glyph215, glyph216, glyph217, glyph218, glyph219, glyph220, glyph221, glyph222, glyph223, glyph224, glyph225, glyph226, glyph227, glyph228, glyph229, glyph230, glyph231, glyph232, glyph233, glyph234, glyph235, glyph236, glyph237, glyph238, glyph239];var overtime = [[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191],[192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239]];var runs = [[0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236],[1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237],[2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238],[3,7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83,87,91,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,163,167,171,175,179,183,187,191,195,199,203,207,211,215,219,223,227,231,235,239]];\\n glyphs.forEach(function(g) {\\n g.visible = false;\\n })\\n // union function\\n function union_arrays(x, y) {\\n var obj = {};\\n for (var i = x.length-1; i >= 0; -- i)\\n obj[x[i]] = x[i];\\n for (var i = y.length-1; i >= 0; -- i)\\n obj[y[i]] = y[i];\\n var res = []\\n for (var k in obj) {\\n if (obj.hasOwnProperty(k)) // <-- optional\\n res.push(obj[k]);\\n }\\n return res;\\n }\\n console.log(\\\"Timeslider: \\\" + time_slider.value);\\n console.log(\\\"Checkbox: \\\" + checkbox.active);var slider_labels = ['39.12', '53.78', '126.60', '323.54', '895.87'];console.log(\\\"Detected slider_labels: \\\" + slider_labels);time_slider.title = \\\"Until wallclocktime \\\" + slider_labels[time_slider.value - 1] + \\\". Step no.\\\"; \\n var activate = [];\\n // if we want multiple checkboxes at the same time, we need to combine the arrays\\n checkbox.active.forEach(function(c) {\\n activate = union_arrays(activate, runs[c]);\\n })\\n // now the intersection of timeslider-activated and checkbox-activated\\n activate = activate.filter(value => -1 !== overtime[time_slider.value - 1].indexOf(value));\\n activate.forEach(function(idx) {\\n glyphs[idx].visible = true;\\n })\\n \"},\"id\":\"17872\",\"type\":\"CustomJS\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14842\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14843\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14605\",\"type\":\"CDSView\"}},\"id\":\"14844\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14914\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14915\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14695\",\"type\":\"CDSView\"}},\"id\":\"14916\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14846\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14847\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14846\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14847\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14610\",\"type\":\"CDSView\"}},\"id\":\"14848\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14915\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14850\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14851\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14850\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14851\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14615\",\"type\":\"CDSView\"}},\"id\":\"14852\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"text\":\"Showing only configurations evaluated in:\"},\"id\":\"17871\",\"type\":\"Div\"},{\"attributes\":{\"active\":[0,1,2,3],\"callback\":{\"id\":\"17870\",\"type\":\"CustomJS\"},\"labels\":[\"budget 370.4\",\"budget 1111.1\",\"budget 3333.3\",\"budget 10000\"]},\"id\":\"17869\",\"type\":\"CheckboxButtonGroup\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14914\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17868\",\"type\":\"Slider\"}]},\"id\":\"17879\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14854\",\"type\":\"Scatter\"},{\"attributes\":{\"callback\":{\"id\":\"17872\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"All\"},\"id\":\"17873\",\"type\":\"Button\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14855\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14854\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14855\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14620\",\"type\":\"CDSView\"}},\"id\":\"14856\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15006\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15007\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14810\",\"type\":\"CDSView\"}},\"id\":\"15008\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"17869\",\"type\":\"CheckboxButtonGroup\"},\"glyph0\":{\"id\":\"14844\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"14848\",\"type\":\"GlyphRenderer\"},\"glyph10\":{\"id\":\"14884\",\"type\":\"GlyphRenderer\"},\"glyph100\":{\"id\":\"16106\",\"type\":\"GlyphRenderer\"},\"glyph101\":{\"id\":\"16110\",\"type\":\"GlyphRenderer\"},\"glyph102\":{\"id\":\"16114\",\"type\":\"GlyphRenderer\"},\"glyph103\":{\"id\":\"16118\",\"type\":\"GlyphRenderer\"},\"glyph104\":{\"id\":\"16122\",\"type\":\"GlyphRenderer\"},\"glyph105\":{\"id\":\"16126\",\"type\":\"GlyphRenderer\"},\"glyph106\":{\"id\":\"16130\",\"type\":\"GlyphRenderer\"},\"glyph107\":{\"id\":\"16134\",\"type\":\"GlyphRenderer\"},\"glyph108\":{\"id\":\"16138\",\"type\":\"GlyphRenderer\"},\"glyph109\":{\"id\":\"16142\",\"type\":\"GlyphRenderer\"},\"glyph11\":{\"id\":\"14888\",\"type\":\"GlyphRenderer\"},\"glyph110\":{\"id\":\"16146\",\"type\":\"GlyphRenderer\"},\"glyph111\":{\"id\":\"16150\",\"type\":\"GlyphRenderer\"},\"glyph112\":{\"id\":\"16154\",\"type\":\"GlyphRenderer\"},\"glyph113\":{\"id\":\"16158\",\"type\":\"GlyphRenderer\"},\"glyph114\":{\"id\":\"16162\",\"type\":\"GlyphRenderer\"},\"glyph115\":{\"id\":\"16166\",\"type\":\"GlyphRenderer\"},\"glyph116\":{\"id\":\"16170\",\"type\":\"GlyphRenderer\"},\"glyph117\":{\"id\":\"16174\",\"type\":\"GlyphRenderer\"},\"glyph118\":{\"id\":\"16178\",\"type\":\"GlyphRenderer\"},\"glyph119\":{\"id\":\"16182\",\"type\":\"GlyphRenderer\"},\"glyph12\":{\"id\":\"14892\",\"type\":\"GlyphRenderer\"},\"glyph120\":{\"id\":\"16186\",\"type\":\"GlyphRenderer\"},\"glyph121\":{\"id\":\"16190\",\"type\":\"GlyphRenderer\"},\"glyph122\":{\"id\":\"16194\",\"type\":\"GlyphRenderer\"},\"glyph123\":{\"id\":\"16198\",\"type\":\"GlyphRenderer\"},\"glyph124\":{\"id\":\"16202\",\"type\":\"GlyphRenderer\"},\"glyph125\":{\"id\":\"16206\",\"type\":\"GlyphRenderer\"},\"glyph126\":{\"id\":\"16210\",\"type\":\"GlyphRenderer\"},\"glyph127\":{\"id\":\"16214\",\"type\":\"GlyphRenderer\"},\"glyph128\":{\"id\":\"16218\",\"type\":\"GlyphRenderer\"},\"glyph129\":{\"id\":\"16222\",\"type\":\"GlyphRenderer\"},\"glyph13\":{\"id\":\"14896\",\"type\":\"GlyphRenderer\"},\"glyph130\":{\"id\":\"16226\",\"type\":\"GlyphRenderer\"},\"glyph131\":{\"id\":\"16230\",\"type\":\"GlyphRenderer\"},\"glyph132\":{\"id\":\"16234\",\"type\":\"GlyphRenderer\"},\"glyph133\":{\"id\":\"16238\",\"type\":\"GlyphRenderer\"},\"glyph134\":{\"id\":\"16242\",\"type\":\"GlyphRenderer\"},\"glyph135\":{\"id\":\"16246\",\"type\":\"GlyphRenderer\"},\"glyph136\":{\"id\":\"16250\",\"type\":\"GlyphRenderer\"},\"glyph137\":{\"id\":\"16254\",\"type\":\"GlyphRenderer\"},\"glyph138\":{\"id\":\"16258\",\"type\":\"GlyphRenderer\"},\"glyph139\":{\"id\":\"16262\",\"type\":\"GlyphRenderer\"},\"glyph14\":{\"id\":\"14900\",\"type\":\"GlyphRenderer\"},\"glyph140\":{\"id\":\"16266\",\"type\":\"GlyphRenderer\"},\"glyph141\":{\"id\":\"16270\",\"type\":\"GlyphRenderer\"},\"glyph142\":{\"id\":\"16274\",\"type\":\"GlyphRenderer\"},\"glyph143\":{\"id\":\"16278\",\"type\":\"GlyphRenderer\"},\"glyph144\":{\"id\":\"16743\",\"type\":\"GlyphRenderer\"},\"glyph145\":{\"id\":\"16747\",\"type\":\"GlyphRenderer\"},\"glyph146\":{\"id\":\"16751\",\"type\":\"GlyphRenderer\"},\"glyph147\":{\"id\":\"16755\",\"type\":\"GlyphRenderer\"},\"glyph148\":{\"id\":\"16759\",\"type\":\"GlyphRenderer\"},\"glyph149\":{\"id\":\"16763\",\"type\":\"GlyphRenderer\"},\"glyph15\":{\"id\":\"14904\",\"type\":\"GlyphRenderer\"},\"glyph150\":{\"id\":\"16767\",\"type\":\"GlyphRenderer\"},\"glyph151\":{\"id\":\"16771\",\"type\":\"GlyphRenderer\"},\"glyph152\":{\"id\":\"16775\",\"type\":\"GlyphRenderer\"},\"glyph153\":{\"id\":\"16779\",\"type\":\"GlyphRenderer\"},\"glyph154\":{\"id\":\"16783\",\"type\":\"GlyphRenderer\"},\"glyph155\":{\"id\":\"16787\",\"type\":\"GlyphRenderer\"},\"glyph156\":{\"id\":\"16791\",\"type\":\"GlyphRenderer\"},\"glyph157\":{\"id\":\"16795\",\"type\":\"GlyphRenderer\"},\"glyph158\":{\"id\":\"16799\",\"type\":\"GlyphRenderer\"},\"glyph159\":{\"id\":\"16803\",\"type\":\"GlyphRenderer\"},\"glyph16\":{\"id\":\"14908\",\"type\":\"GlyphRenderer\"},\"glyph160\":{\"id\":\"16807\",\"type\":\"GlyphRenderer\"},\"glyph161\":{\"id\":\"16811\",\"type\":\"GlyphRenderer\"},\"glyph162\":{\"id\":\"16815\",\"type\":\"GlyphRenderer\"},\"glyph163\":{\"id\":\"16819\",\"type\":\"GlyphRenderer\"},\"glyph164\":{\"id\":\"16823\",\"type\":\"GlyphRenderer\"},\"glyph165\":{\"id\":\"16827\",\"type\":\"GlyphRenderer\"},\"glyph166\":{\"id\":\"16831\",\"type\":\"GlyphRenderer\"},\"glyph167\":{\"id\":\"16835\",\"type\":\"GlyphRenderer\"},\"glyph168\":{\"id\":\"16839\",\"type\":\"GlyphRenderer\"},\"glyph169\":{\"id\":\"16843\",\"type\":\"GlyphRenderer\"},\"glyph17\":{\"id\":\"14912\",\"type\":\"GlyphRenderer\"},\"glyph170\":{\"id\":\"16847\",\"type\":\"GlyphRenderer\"},\"glyph171\":{\"id\":\"16851\",\"type\":\"GlyphRenderer\"},\"glyph172\":{\"id\":\"16855\",\"type\":\"GlyphRenderer\"},\"glyph173\":{\"id\":\"16859\",\"type\":\"GlyphRenderer\"},\"glyph174\":{\"id\":\"16863\",\"type\":\"GlyphRenderer\"},\"glyph175\":{\"id\":\"16867\",\"type\":\"GlyphRenderer\"},\"glyph176\":{\"id\":\"16871\",\"type\":\"GlyphRenderer\"},\"glyph177\":{\"id\":\"16875\",\"type\":\"GlyphRenderer\"},\"glyph178\":{\"id\":\"16879\",\"type\":\"GlyphRenderer\"},\"glyph179\":{\"id\":\"16883\",\"type\":\"GlyphRenderer\"},\"glyph18\":{\"id\":\"14916\",\"type\":\"GlyphRenderer\"},\"glyph180\":{\"id\":\"16887\",\"type\":\"GlyphRenderer\"},\"glyph181\":{\"id\":\"16891\",\"type\":\"GlyphRenderer\"},\"glyph182\":{\"id\":\"16895\",\"type\":\"GlyphRenderer\"},\"glyph183\":{\"id\":\"16899\",\"type\":\"GlyphRenderer\"},\"glyph184\":{\"id\":\"16903\",\"type\":\"GlyphRenderer\"},\"glyph185\":{\"id\":\"16907\",\"type\":\"GlyphRenderer\"},\"glyph186\":{\"id\":\"16911\",\"type\":\"GlyphRenderer\"},\"glyph187\":{\"id\":\"16915\",\"type\":\"GlyphRenderer\"},\"glyph188\":{\"id\":\"16919\",\"type\":\"GlyphRenderer\"},\"glyph189\":{\"id\":\"16923\",\"type\":\"GlyphRenderer\"},\"glyph19\":{\"id\":\"14920\",\"type\":\"GlyphRenderer\"},\"glyph190\":{\"id\":\"16927\",\"type\":\"GlyphRenderer\"},\"glyph191\":{\"id\":\"16931\",\"type\":\"GlyphRenderer\"},\"glyph192\":{\"id\":\"17416\",\"type\":\"GlyphRenderer\"},\"glyph193\":{\"id\":\"17420\",\"type\":\"GlyphRenderer\"},\"glyph194\":{\"id\":\"17424\",\"type\":\"GlyphRenderer\"},\"glyph195\":{\"id\":\"17428\",\"type\":\"GlyphRenderer\"},\"glyph196\":{\"id\":\"17432\",\"type\":\"GlyphRenderer\"},\"glyph197\":{\"id\":\"17436\",\"type\":\"GlyphRenderer\"},\"glyph198\":{\"id\":\"17440\",\"type\":\"GlyphRenderer\"},\"glyph199\":{\"id\":\"17444\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"14852\",\"type\":\"GlyphRenderer\"},\"glyph20\":{\"id\":\"14924\",\"type\":\"GlyphRenderer\"},\"glyph200\":{\"id\":\"17448\",\"type\":\"GlyphRenderer\"},\"glyph201\":{\"id\":\"17452\",\"type\":\"GlyphRenderer\"},\"glyph202\":{\"id\":\"17456\",\"type\":\"GlyphRenderer\"},\"glyph203\":{\"id\":\"17460\",\"type\":\"GlyphRenderer\"},\"glyph204\":{\"id\":\"17464\",\"type\":\"GlyphRenderer\"},\"glyph205\":{\"id\":\"17468\",\"type\":\"GlyphRenderer\"},\"glyph206\":{\"id\":\"17472\",\"type\":\"GlyphRenderer\"},\"glyph207\":{\"id\":\"17476\",\"type\":\"GlyphRenderer\"},\"glyph208\":{\"id\":\"17480\",\"type\":\"GlyphRenderer\"},\"glyph209\":{\"id\":\"17484\",\"type\":\"GlyphRenderer\"},\"glyph21\":{\"id\":\"14928\",\"type\":\"GlyphRenderer\"},\"glyph210\":{\"id\":\"17488\",\"type\":\"GlyphRenderer\"},\"glyph211\":{\"id\":\"17492\",\"type\":\"GlyphRenderer\"},\"glyph212\":{\"id\":\"17496\",\"type\":\"GlyphRenderer\"},\"glyph213\":{\"id\":\"17500\",\"type\":\"GlyphRenderer\"},\"glyph214\":{\"id\":\"17504\",\"type\":\"GlyphRenderer\"},\"glyph215\":{\"id\":\"17508\",\"type\":\"GlyphRenderer\"},\"glyph216\":{\"id\":\"17512\",\"type\":\"GlyphRenderer\"},\"glyph217\":{\"id\":\"17516\",\"type\":\"GlyphRenderer\"},\"glyph218\":{\"id\":\"17520\",\"type\":\"GlyphRenderer\"},\"glyph219\":{\"id\":\"17524\",\"type\":\"GlyphRenderer\"},\"glyph22\":{\"id\":\"14932\",\"type\":\"GlyphRenderer\"},\"glyph220\":{\"id\":\"17528\",\"type\":\"GlyphRenderer\"},\"glyph221\":{\"id\":\"17532\",\"type\":\"GlyphRenderer\"},\"glyph222\":{\"id\":\"17536\",\"type\":\"GlyphRenderer\"},\"glyph223\":{\"id\":\"17540\",\"type\":\"GlyphRenderer\"},\"glyph224\":{\"id\":\"17544\",\"type\":\"GlyphRenderer\"},\"glyph225\":{\"id\":\"17548\",\"type\":\"GlyphRenderer\"},\"glyph226\":{\"id\":\"17552\",\"type\":\"GlyphRenderer\"},\"glyph227\":{\"id\":\"17556\",\"type\":\"GlyphRenderer\"},\"glyph228\":{\"id\":\"17560\",\"type\":\"GlyphRenderer\"},\"glyph229\":{\"id\":\"17564\",\"type\":\"GlyphRenderer\"},\"glyph23\":{\"id\":\"14936\",\"type\":\"GlyphRenderer\"},\"glyph230\":{\"id\":\"17568\",\"type\":\"GlyphRenderer\"},\"glyph231\":{\"id\":\"17572\",\"type\":\"GlyphRenderer\"},\"glyph232\":{\"id\":\"17576\",\"type\":\"GlyphRenderer\"},\"glyph233\":{\"id\":\"17580\",\"type\":\"GlyphRenderer\"},\"glyph234\":{\"id\":\"17584\",\"type\":\"GlyphRenderer\"},\"glyph235\":{\"id\":\"17588\",\"type\":\"GlyphRenderer\"},\"glyph236\":{\"id\":\"17592\",\"type\":\"GlyphRenderer\"},\"glyph237\":{\"id\":\"17596\",\"type\":\"GlyphRenderer\"},\"glyph238\":{\"id\":\"17600\",\"type\":\"GlyphRenderer\"},\"glyph239\":{\"id\":\"17604\",\"type\":\"GlyphRenderer\"},\"glyph24\":{\"id\":\"14940\",\"type\":\"GlyphRenderer\"},\"glyph25\":{\"id\":\"14944\",\"type\":\"GlyphRenderer\"},\"glyph26\":{\"id\":\"14948\",\"type\":\"GlyphRenderer\"},\"glyph27\":{\"id\":\"14952\",\"type\":\"GlyphRenderer\"},\"glyph28\":{\"id\":\"14956\",\"type\":\"GlyphRenderer\"},\"glyph29\":{\"id\":\"14960\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"14856\",\"type\":\"GlyphRenderer\"},\"glyph30\":{\"id\":\"14964\",\"type\":\"GlyphRenderer\"},\"glyph31\":{\"id\":\"14968\",\"type\":\"GlyphRenderer\"},\"glyph32\":{\"id\":\"14972\",\"type\":\"GlyphRenderer\"},\"glyph33\":{\"id\":\"14976\",\"type\":\"GlyphRenderer\"},\"glyph34\":{\"id\":\"14980\",\"type\":\"GlyphRenderer\"},\"glyph35\":{\"id\":\"14984\",\"type\":\"GlyphRenderer\"},\"glyph36\":{\"id\":\"14988\",\"type\":\"GlyphRenderer\"},\"glyph37\":{\"id\":\"14992\",\"type\":\"GlyphRenderer\"},\"glyph38\":{\"id\":\"14996\",\"type\":\"GlyphRenderer\"},\"glyph39\":{\"id\":\"15000\",\"type\":\"GlyphRenderer\"},\"glyph4\":{\"id\":\"14860\",\"type\":\"GlyphRenderer\"},\"glyph40\":{\"id\":\"15004\",\"type\":\"GlyphRenderer\"},\"glyph41\":{\"id\":\"15008\",\"type\":\"GlyphRenderer\"},\"glyph42\":{\"id\":\"15012\",\"type\":\"GlyphRenderer\"},\"glyph43\":{\"id\":\"15016\",\"type\":\"GlyphRenderer\"},\"glyph44\":{\"id\":\"15020\",\"type\":\"GlyphRenderer\"},\"glyph45\":{\"id\":\"15024\",\"type\":\"GlyphRenderer\"},\"glyph46\":{\"id\":\"15028\",\"type\":\"GlyphRenderer\"},\"glyph47\":{\"id\":\"15032\",\"type\":\"GlyphRenderer\"},\"glyph48\":{\"id\":\"15457\",\"type\":\"GlyphRenderer\"},\"glyph49\":{\"id\":\"15461\",\"type\":\"GlyphRenderer\"},\"glyph5\":{\"id\":\"14864\",\"type\":\"GlyphRenderer\"},\"glyph50\":{\"id\":\"15465\",\"type\":\"GlyphRenderer\"},\"glyph51\":{\"id\":\"15469\",\"type\":\"GlyphRenderer\"},\"glyph52\":{\"id\":\"15473\",\"type\":\"GlyphRenderer\"},\"glyph53\":{\"id\":\"15477\",\"type\":\"GlyphRenderer\"},\"glyph54\":{\"id\":\"15481\",\"type\":\"GlyphRenderer\"},\"glyph55\":{\"id\":\"15485\",\"type\":\"GlyphRenderer\"},\"glyph56\":{\"id\":\"15489\",\"type\":\"GlyphRenderer\"},\"glyph57\":{\"id\":\"15493\",\"type\":\"GlyphRenderer\"},\"glyph58\":{\"id\":\"15497\",\"type\":\"GlyphRenderer\"},\"glyph59\":{\"id\":\"15501\",\"type\":\"GlyphRenderer\"},\"glyph6\":{\"id\":\"14868\",\"type\":\"GlyphRenderer\"},\"glyph60\":{\"id\":\"15505\",\"type\":\"GlyphRenderer\"},\"glyph61\":{\"id\":\"15509\",\"type\":\"GlyphRenderer\"},\"glyph62\":{\"id\":\"15513\",\"type\":\"GlyphRenderer\"},\"glyph63\":{\"id\":\"15517\",\"type\":\"GlyphRenderer\"},\"glyph64\":{\"id\":\"15521\",\"type\":\"GlyphRenderer\"},\"glyph65\":{\"id\":\"15525\",\"type\":\"GlyphRenderer\"},\"glyph66\":{\"id\":\"15529\",\"type\":\"GlyphRenderer\"},\"glyph67\":{\"id\":\"15533\",\"type\":\"GlyphRenderer\"},\"glyph68\":{\"id\":\"15537\",\"type\":\"GlyphRenderer\"},\"glyph69\":{\"id\":\"15541\",\"type\":\"GlyphRenderer\"},\"glyph7\":{\"id\":\"14872\",\"type\":\"GlyphRenderer\"},\"glyph70\":{\"id\":\"15545\",\"type\":\"GlyphRenderer\"},\"glyph71\":{\"id\":\"15549\",\"type\":\"GlyphRenderer\"},\"glyph72\":{\"id\":\"15553\",\"type\":\"GlyphRenderer\"},\"glyph73\":{\"id\":\"15557\",\"type\":\"GlyphRenderer\"},\"glyph74\":{\"id\":\"15561\",\"type\":\"GlyphRenderer\"},\"glyph75\":{\"id\":\"15565\",\"type\":\"GlyphRenderer\"},\"glyph76\":{\"id\":\"15569\",\"type\":\"GlyphRenderer\"},\"glyph77\":{\"id\":\"15573\",\"type\":\"GlyphRenderer\"},\"glyph78\":{\"id\":\"15577\",\"type\":\"GlyphRenderer\"},\"glyph79\":{\"id\":\"15581\",\"type\":\"GlyphRenderer\"},\"glyph8\":{\"id\":\"14876\",\"type\":\"GlyphRenderer\"},\"glyph80\":{\"id\":\"15585\",\"type\":\"GlyphRenderer\"},\"glyph81\":{\"id\":\"15589\",\"type\":\"GlyphRenderer\"},\"glyph82\":{\"id\":\"15593\",\"type\":\"GlyphRenderer\"},\"glyph83\":{\"id\":\"15597\",\"type\":\"GlyphRenderer\"},\"glyph84\":{\"id\":\"15601\",\"type\":\"GlyphRenderer\"},\"glyph85\":{\"id\":\"15605\",\"type\":\"GlyphRenderer\"},\"glyph86\":{\"id\":\"15609\",\"type\":\"GlyphRenderer\"},\"glyph87\":{\"id\":\"15613\",\"type\":\"GlyphRenderer\"},\"glyph88\":{\"id\":\"15617\",\"type\":\"GlyphRenderer\"},\"glyph89\":{\"id\":\"15621\",\"type\":\"GlyphRenderer\"},\"glyph9\":{\"id\":\"14880\",\"type\":\"GlyphRenderer\"},\"glyph90\":{\"id\":\"15625\",\"type\":\"GlyphRenderer\"},\"glyph91\":{\"id\":\"15629\",\"type\":\"GlyphRenderer\"},\"glyph92\":{\"id\":\"15633\",\"type\":\"GlyphRenderer\"},\"glyph93\":{\"id\":\"15637\",\"type\":\"GlyphRenderer\"},\"glyph94\":{\"id\":\"15641\",\"type\":\"GlyphRenderer\"},\"glyph95\":{\"id\":\"15645\",\"type\":\"GlyphRenderer\"},\"glyph96\":{\"id\":\"16090\",\"type\":\"GlyphRenderer\"},\"glyph97\":{\"id\":\"16094\",\"type\":\"GlyphRenderer\"},\"glyph98\":{\"id\":\"16098\",\"type\":\"GlyphRenderer\"},\"glyph99\":{\"id\":\"16102\",\"type\":\"GlyphRenderer\"},\"time_slider\":{\"id\":\"17868\",\"type\":\"Slider\"}},\"code\":\"checkbox.active = [];var glyphs = [glyph0, glyph1, glyph2, glyph3, glyph4, glyph5, glyph6, glyph7, glyph8, glyph9, glyph10, glyph11, glyph12, glyph13, glyph14, glyph15, glyph16, glyph17, glyph18, glyph19, glyph20, glyph21, glyph22, glyph23, glyph24, glyph25, glyph26, glyph27, glyph28, glyph29, glyph30, glyph31, glyph32, glyph33, glyph34, glyph35, glyph36, glyph37, glyph38, glyph39, glyph40, glyph41, glyph42, glyph43, glyph44, glyph45, glyph46, glyph47, glyph48, glyph49, glyph50, glyph51, glyph52, glyph53, glyph54, glyph55, glyph56, glyph57, glyph58, glyph59, glyph60, glyph61, glyph62, glyph63, glyph64, glyph65, glyph66, glyph67, glyph68, glyph69, glyph70, glyph71, glyph72, glyph73, glyph74, glyph75, glyph76, glyph77, glyph78, glyph79, glyph80, glyph81, glyph82, glyph83, glyph84, glyph85, glyph86, glyph87, glyph88, glyph89, glyph90, glyph91, glyph92, glyph93, glyph94, glyph95, glyph96, glyph97, glyph98, glyph99, glyph100, glyph101, glyph102, glyph103, glyph104, glyph105, glyph106, glyph107, glyph108, glyph109, glyph110, glyph111, glyph112, glyph113, glyph114, glyph115, glyph116, glyph117, glyph118, glyph119, glyph120, glyph121, glyph122, glyph123, glyph124, glyph125, glyph126, glyph127, glyph128, glyph129, glyph130, glyph131, glyph132, glyph133, glyph134, glyph135, glyph136, glyph137, glyph138, glyph139, glyph140, glyph141, glyph142, glyph143, glyph144, glyph145, glyph146, glyph147, glyph148, glyph149, glyph150, glyph151, glyph152, glyph153, glyph154, glyph155, glyph156, glyph157, glyph158, glyph159, glyph160, glyph161, glyph162, glyph163, glyph164, glyph165, glyph166, glyph167, glyph168, glyph169, glyph170, glyph171, glyph172, glyph173, glyph174, glyph175, glyph176, glyph177, glyph178, glyph179, glyph180, glyph181, glyph182, glyph183, glyph184, glyph185, glyph186, glyph187, glyph188, glyph189, glyph190, glyph191, glyph192, glyph193, glyph194, glyph195, glyph196, glyph197, glyph198, glyph199, glyph200, glyph201, glyph202, glyph203, glyph204, glyph205, glyph206, glyph207, glyph208, glyph209, glyph210, glyph211, glyph212, glyph213, glyph214, glyph215, glyph216, glyph217, glyph218, glyph219, glyph220, glyph221, glyph222, glyph223, glyph224, glyph225, glyph226, glyph227, glyph228, glyph229, glyph230, glyph231, glyph232, glyph233, glyph234, glyph235, glyph236, glyph237, glyph238, glyph239];var overtime = [[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191],[192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239]];var runs = [[0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236],[1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237],[2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238],[3,7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83,87,91,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,163,167,171,175,179,183,187,191,195,199,203,207,211,215,219,223,227,231,235,239]];\\n glyphs.forEach(function(g) {\\n g.visible = false;\\n })\\n // union function\\n function union_arrays(x, y) {\\n var obj = {};\\n for (var i = x.length-1; i >= 0; -- i)\\n obj[x[i]] = x[i];\\n for (var i = y.length-1; i >= 0; -- i)\\n obj[y[i]] = y[i];\\n var res = []\\n for (var k in obj) {\\n if (obj.hasOwnProperty(k)) // <-- optional\\n res.push(obj[k]);\\n }\\n return res;\\n }\\n console.log(\\\"Timeslider: \\\" + time_slider.value);\\n console.log(\\\"Checkbox: \\\" + checkbox.active);var slider_labels = ['39.12', '53.78', '126.60', '323.54', '895.87'];console.log(\\\"Detected slider_labels: \\\" + slider_labels);time_slider.title = \\\"Until wallclocktime \\\" + slider_labels[time_slider.value - 1] + \\\". Step no.\\\"; \\n var activate = [];\\n // if we want multiple checkboxes at the same time, we need to combine the arrays\\n checkbox.active.forEach(function(c) {\\n activate = union_arrays(activate, runs[c]);\\n })\\n // now the intersection of timeslider-activated and checkbox-activated\\n activate = activate.filter(value => -1 !== overtime[time_slider.value - 1].indexOf(value));\\n activate.forEach(function(idx) {\\n glyphs[idx].visible = true;\\n })\\n \"},\"id\":\"17874\",\"type\":\"CustomJS\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14858\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14859\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14858\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14859\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14625\",\"type\":\"CDSView\"}},\"id\":\"14860\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14910\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14911\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14690\",\"type\":\"CDSView\"}},\"id\":\"14912\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14862\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16793\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16794\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16569\",\"type\":\"CDSView\"}},\"id\":\"16795\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16173\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16813\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16814\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16594\",\"type\":\"CDSView\"}},\"id\":\"16815\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16797\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17313\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17518\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17519\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17307\",\"type\":\"CDSView\"}},\"id\":\"17520\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15444\",\"type\":\"GroupFilter\"},{\"id\":\"15445\",\"type\":\"GroupFilter\"},{\"id\":\"15446\",\"type\":\"GroupFilter\"},{\"id\":\"15447\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15448\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17281\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17320\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16172\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16173\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15956\",\"type\":\"CDSView\"}},\"id\":\"16174\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16857\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16858\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16649\",\"type\":\"CDSView\"}},\"id\":\"16859\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15449\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15631\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15632\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15438\",\"type\":\"CDSView\"}},\"id\":\"15633\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16208\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16858\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17283\",\"type\":\"GroupFilter\"},{\"id\":\"17284\",\"type\":\"GroupFilter\"},{\"id\":\"17285\",\"type\":\"GroupFilter\"},{\"id\":\"17286\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17287\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15620\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16810\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17318\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15587\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16177\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17268\",\"type\":\"GroupFilter\"},{\"id\":\"17269\",\"type\":\"GroupFilter\"},{\"id\":\"17270\",\"type\":\"GroupFilter\"},{\"id\":\"17271\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17272\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17299\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15456\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15619\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16148\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15455\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15603\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16798\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17315\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15464\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16149\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16794\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16160\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16862\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17266\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17294\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17303\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16797\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16798\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16574\",\"type\":\"CDSView\"}},\"id\":\"16799\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15616\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16144\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17271\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16145\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15451\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17293\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16168\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16802\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17265\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17316\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15632\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15452\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17285\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15615\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15616\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15418\",\"type\":\"CDSView\"}},\"id\":\"15617\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15449\",\"type\":\"GroupFilter\"},{\"id\":\"15450\",\"type\":\"GroupFilter\"},{\"id\":\"15451\",\"type\":\"GroupFilter\"},{\"id\":\"15452\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15453\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17286\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17291\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16144\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16145\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15921\",\"type\":\"CDSView\"}},\"id\":\"16146\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17284\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17309\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15623\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17258\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15624\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15607\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15450\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17264\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15612\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16805\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17270\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17174\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17290\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16165\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17293\",\"type\":\"GroupFilter\"},{\"id\":\"17294\",\"type\":\"GroupFilter\"},{\"id\":\"17295\",\"type\":\"GroupFilter\"},{\"id\":\"17296\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17297\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16209\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15447\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15455\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15456\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15218\",\"type\":\"CDSView\"}},\"id\":\"15457\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17274\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16164\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16165\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15946\",\"type\":\"CDSView\"}},\"id\":\"16166\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16801\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16802\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16579\",\"type\":\"CDSView\"}},\"id\":\"16803\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"high\":7829258731877.213,\"low\":47.21767337766953,\"palette\":[\"#440154\",\"#440255\",\"#440357\",\"#450558\",\"#45065A\",\"#45085B\",\"#46095C\",\"#460B5E\",\"#460C5F\",\"#460E61\",\"#470F62\",\"#471163\",\"#471265\",\"#471466\",\"#471567\",\"#471669\",\"#47186A\",\"#48196B\",\"#481A6C\",\"#481C6E\",\"#481D6F\",\"#481E70\",\"#482071\",\"#482172\",\"#482273\",\"#482374\",\"#472575\",\"#472676\",\"#472777\",\"#472878\",\"#472A79\",\"#472B7A\",\"#472C7B\",\"#462D7C\",\"#462F7C\",\"#46307D\",\"#46317E\",\"#45327F\",\"#45347F\",\"#453580\",\"#453681\",\"#443781\",\"#443982\",\"#433A83\",\"#433B83\",\"#433C84\",\"#423D84\",\"#423E85\",\"#424085\",\"#414186\",\"#414286\",\"#404387\",\"#404487\",\"#3F4587\",\"#3F4788\",\"#3E4888\",\"#3E4989\",\"#3D4A89\",\"#3D4B89\",\"#3D4C89\",\"#3C4D8A\",\"#3C4E8A\",\"#3B508A\",\"#3B518A\",\"#3A528B\",\"#3A538B\",\"#39548B\",\"#39558B\",\"#38568B\",\"#38578C\",\"#37588C\",\"#37598C\",\"#365A8C\",\"#365B8C\",\"#355C8C\",\"#355D8C\",\"#345E8D\",\"#345F8D\",\"#33608D\",\"#33618D\",\"#32628D\",\"#32638D\",\"#31648D\",\"#31658D\",\"#31668D\",\"#30678D\",\"#30688D\",\"#2F698D\",\"#2F6A8D\",\"#2E6B8E\",\"#2E6C8E\",\"#2E6D8E\",\"#2D6E8E\",\"#2D6F8E\",\"#2C708E\",\"#2C718E\",\"#2C728E\",\"#2B738E\",\"#2B748E\",\"#2A758E\",\"#2A768E\",\"#2A778E\",\"#29788E\",\"#29798E\",\"#287A8E\",\"#287A8E\",\"#287B8E\",\"#277C8E\",\"#277D8E\",\"#277E8E\",\"#267F8E\",\"#26808E\",\"#26818E\",\"#25828E\",\"#25838D\",\"#24848D\",\"#24858D\",\"#24868D\",\"#23878D\",\"#23888D\",\"#23898D\",\"#22898D\",\"#228A8D\",\"#228B8D\",\"#218C8D\",\"#218D8C\",\"#218E8C\",\"#208F8C\",\"#20908C\",\"#20918C\",\"#1F928C\",\"#1F938B\",\"#1F948B\",\"#1F958B\",\"#1F968B\",\"#1E978A\",\"#1E988A\",\"#1E998A\",\"#1E998A\",\"#1E9A89\",\"#1E9B89\",\"#1E9C89\",\"#1E9D88\",\"#1E9E88\",\"#1E9F88\",\"#1EA087\",\"#1FA187\",\"#1FA286\",\"#1FA386\",\"#20A485\",\"#20A585\",\"#21A685\",\"#21A784\",\"#22A784\",\"#23A883\",\"#23A982\",\"#24AA82\",\"#25AB81\",\"#26AC81\",\"#27AD80\",\"#28AE7F\",\"#29AF7F\",\"#2AB07E\",\"#2BB17D\",\"#2CB17D\",\"#2EB27C\",\"#2FB37B\",\"#30B47A\",\"#32B57A\",\"#33B679\",\"#35B778\",\"#36B877\",\"#38B976\",\"#39B976\",\"#3BBA75\",\"#3DBB74\",\"#3EBC73\",\"#40BD72\",\"#42BE71\",\"#44BE70\",\"#45BF6F\",\"#47C06E\",\"#49C16D\",\"#4BC26C\",\"#4DC26B\",\"#4FC369\",\"#51C468\",\"#53C567\",\"#55C666\",\"#57C665\",\"#59C764\",\"#5BC862\",\"#5EC961\",\"#60C960\",\"#62CA5F\",\"#64CB5D\",\"#67CC5C\",\"#69CC5B\",\"#6BCD59\",\"#6DCE58\",\"#70CE56\",\"#72CF55\",\"#74D054\",\"#77D052\",\"#79D151\",\"#7CD24F\",\"#7ED24E\",\"#81D34C\",\"#83D34B\",\"#86D449\",\"#88D547\",\"#8BD546\",\"#8DD644\",\"#90D643\",\"#92D741\",\"#95D73F\",\"#97D83E\",\"#9AD83C\",\"#9DD93A\",\"#9FD938\",\"#A2DA37\",\"#A5DA35\",\"#A7DB33\",\"#AADB32\",\"#ADDC30\",\"#AFDC2E\",\"#B2DD2C\",\"#B5DD2B\",\"#B7DD29\",\"#BADE27\",\"#BDDE26\",\"#BFDF24\",\"#C2DF22\",\"#C5DF21\",\"#C7E01F\",\"#CAE01E\",\"#CDE01D\",\"#CFE11C\",\"#D2E11B\",\"#D4E11A\",\"#D7E219\",\"#DAE218\",\"#DCE218\",\"#DFE318\",\"#E1E318\",\"#E4E318\",\"#E7E419\",\"#E9E419\",\"#ECE41A\",\"#EEE51B\",\"#F1E51C\",\"#F3E51E\",\"#F6E61F\",\"#F8E621\",\"#FAE622\",\"#FDE724\"]},\"id\":\"14577\",\"type\":\"LinearColorMapper\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16168\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16169\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15951\",\"type\":\"CDSView\"}},\"id\":\"16170\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15627\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16806\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17288\",\"type\":\"GroupFilter\"},{\"id\":\"17289\",\"type\":\"GroupFilter\"},{\"id\":\"17290\",\"type\":\"GroupFilter\"},{\"id\":\"17291\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17292\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15611\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15612\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15413\",\"type\":\"CDSView\"}},\"id\":\"15613\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16169\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17280\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16212\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17442\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17263\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15635\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15636\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15443\",\"type\":\"CDSView\"}},\"id\":\"15637\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16148\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16149\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15926\",\"type\":\"CDSView\"}},\"id\":\"16150\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17275\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17258\",\"type\":\"GroupFilter\"},{\"id\":\"17259\",\"type\":\"GroupFilter\"},{\"id\":\"17260\",\"type\":\"GroupFilter\"},{\"id\":\"17261\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17262\",\"type\":\"CDSView\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"17869\",\"type\":\"CheckboxButtonGroup\"},\"glyph0\":{\"id\":\"14844\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"14848\",\"type\":\"GlyphRenderer\"},\"glyph10\":{\"id\":\"14884\",\"type\":\"GlyphRenderer\"},\"glyph100\":{\"id\":\"16106\",\"type\":\"GlyphRenderer\"},\"glyph101\":{\"id\":\"16110\",\"type\":\"GlyphRenderer\"},\"glyph102\":{\"id\":\"16114\",\"type\":\"GlyphRenderer\"},\"glyph103\":{\"id\":\"16118\",\"type\":\"GlyphRenderer\"},\"glyph104\":{\"id\":\"16122\",\"type\":\"GlyphRenderer\"},\"glyph105\":{\"id\":\"16126\",\"type\":\"GlyphRenderer\"},\"glyph106\":{\"id\":\"16130\",\"type\":\"GlyphRenderer\"},\"glyph107\":{\"id\":\"16134\",\"type\":\"GlyphRenderer\"},\"glyph108\":{\"id\":\"16138\",\"type\":\"GlyphRenderer\"},\"glyph109\":{\"id\":\"16142\",\"type\":\"GlyphRenderer\"},\"glyph11\":{\"id\":\"14888\",\"type\":\"GlyphRenderer\"},\"glyph110\":{\"id\":\"16146\",\"type\":\"GlyphRenderer\"},\"glyph111\":{\"id\":\"16150\",\"type\":\"GlyphRenderer\"},\"glyph112\":{\"id\":\"16154\",\"type\":\"GlyphRenderer\"},\"glyph113\":{\"id\":\"16158\",\"type\":\"GlyphRenderer\"},\"glyph114\":{\"id\":\"16162\",\"type\":\"GlyphRenderer\"},\"glyph115\":{\"id\":\"16166\",\"type\":\"GlyphRenderer\"},\"glyph116\":{\"id\":\"16170\",\"type\":\"GlyphRenderer\"},\"glyph117\":{\"id\":\"16174\",\"type\":\"GlyphRenderer\"},\"glyph118\":{\"id\":\"16178\",\"type\":\"GlyphRenderer\"},\"glyph119\":{\"id\":\"16182\",\"type\":\"GlyphRenderer\"},\"glyph12\":{\"id\":\"14892\",\"type\":\"GlyphRenderer\"},\"glyph120\":{\"id\":\"16186\",\"type\":\"GlyphRenderer\"},\"glyph121\":{\"id\":\"16190\",\"type\":\"GlyphRenderer\"},\"glyph122\":{\"id\":\"16194\",\"type\":\"GlyphRenderer\"},\"glyph123\":{\"id\":\"16198\",\"type\":\"GlyphRenderer\"},\"glyph124\":{\"id\":\"16202\",\"type\":\"GlyphRenderer\"},\"glyph125\":{\"id\":\"16206\",\"type\":\"GlyphRenderer\"},\"glyph126\":{\"id\":\"16210\",\"type\":\"GlyphRenderer\"},\"glyph127\":{\"id\":\"16214\",\"type\":\"GlyphRenderer\"},\"glyph128\":{\"id\":\"16218\",\"type\":\"GlyphRenderer\"},\"glyph129\":{\"id\":\"16222\",\"type\":\"GlyphRenderer\"},\"glyph13\":{\"id\":\"14896\",\"type\":\"GlyphRenderer\"},\"glyph130\":{\"id\":\"16226\",\"type\":\"GlyphRenderer\"},\"glyph131\":{\"id\":\"16230\",\"type\":\"GlyphRenderer\"},\"glyph132\":{\"id\":\"16234\",\"type\":\"GlyphRenderer\"},\"glyph133\":{\"id\":\"16238\",\"type\":\"GlyphRenderer\"},\"glyph134\":{\"id\":\"16242\",\"type\":\"GlyphRenderer\"},\"glyph135\":{\"id\":\"16246\",\"type\":\"GlyphRenderer\"},\"glyph136\":{\"id\":\"16250\",\"type\":\"GlyphRenderer\"},\"glyph137\":{\"id\":\"16254\",\"type\":\"GlyphRenderer\"},\"glyph138\":{\"id\":\"16258\",\"type\":\"GlyphRenderer\"},\"glyph139\":{\"id\":\"16262\",\"type\":\"GlyphRenderer\"},\"glyph14\":{\"id\":\"14900\",\"type\":\"GlyphRenderer\"},\"glyph140\":{\"id\":\"16266\",\"type\":\"GlyphRenderer\"},\"glyph141\":{\"id\":\"16270\",\"type\":\"GlyphRenderer\"},\"glyph142\":{\"id\":\"16274\",\"type\":\"GlyphRenderer\"},\"glyph143\":{\"id\":\"16278\",\"type\":\"GlyphRenderer\"},\"glyph144\":{\"id\":\"16743\",\"type\":\"GlyphRenderer\"},\"glyph145\":{\"id\":\"16747\",\"type\":\"GlyphRenderer\"},\"glyph146\":{\"id\":\"16751\",\"type\":\"GlyphRenderer\"},\"glyph147\":{\"id\":\"16755\",\"type\":\"GlyphRenderer\"},\"glyph148\":{\"id\":\"16759\",\"type\":\"GlyphRenderer\"},\"glyph149\":{\"id\":\"16763\",\"type\":\"GlyphRenderer\"},\"glyph15\":{\"id\":\"14904\",\"type\":\"GlyphRenderer\"},\"glyph150\":{\"id\":\"16767\",\"type\":\"GlyphRenderer\"},\"glyph151\":{\"id\":\"16771\",\"type\":\"GlyphRenderer\"},\"glyph152\":{\"id\":\"16775\",\"type\":\"GlyphRenderer\"},\"glyph153\":{\"id\":\"16779\",\"type\":\"GlyphRenderer\"},\"glyph154\":{\"id\":\"16783\",\"type\":\"GlyphRenderer\"},\"glyph155\":{\"id\":\"16787\",\"type\":\"GlyphRenderer\"},\"glyph156\":{\"id\":\"16791\",\"type\":\"GlyphRenderer\"},\"glyph157\":{\"id\":\"16795\",\"type\":\"GlyphRenderer\"},\"glyph158\":{\"id\":\"16799\",\"type\":\"GlyphRenderer\"},\"glyph159\":{\"id\":\"16803\",\"type\":\"GlyphRenderer\"},\"glyph16\":{\"id\":\"14908\",\"type\":\"GlyphRenderer\"},\"glyph160\":{\"id\":\"16807\",\"type\":\"GlyphRenderer\"},\"glyph161\":{\"id\":\"16811\",\"type\":\"GlyphRenderer\"},\"glyph162\":{\"id\":\"16815\",\"type\":\"GlyphRenderer\"},\"glyph163\":{\"id\":\"16819\",\"type\":\"GlyphRenderer\"},\"glyph164\":{\"id\":\"16823\",\"type\":\"GlyphRenderer\"},\"glyph165\":{\"id\":\"16827\",\"type\":\"GlyphRenderer\"},\"glyph166\":{\"id\":\"16831\",\"type\":\"GlyphRenderer\"},\"glyph167\":{\"id\":\"16835\",\"type\":\"GlyphRenderer\"},\"glyph168\":{\"id\":\"16839\",\"type\":\"GlyphRenderer\"},\"glyph169\":{\"id\":\"16843\",\"type\":\"GlyphRenderer\"},\"glyph17\":{\"id\":\"14912\",\"type\":\"GlyphRenderer\"},\"glyph170\":{\"id\":\"16847\",\"type\":\"GlyphRenderer\"},\"glyph171\":{\"id\":\"16851\",\"type\":\"GlyphRenderer\"},\"glyph172\":{\"id\":\"16855\",\"type\":\"GlyphRenderer\"},\"glyph173\":{\"id\":\"16859\",\"type\":\"GlyphRenderer\"},\"glyph174\":{\"id\":\"16863\",\"type\":\"GlyphRenderer\"},\"glyph175\":{\"id\":\"16867\",\"type\":\"GlyphRenderer\"},\"glyph176\":{\"id\":\"16871\",\"type\":\"GlyphRenderer\"},\"glyph177\":{\"id\":\"16875\",\"type\":\"GlyphRenderer\"},\"glyph178\":{\"id\":\"16879\",\"type\":\"GlyphRenderer\"},\"glyph179\":{\"id\":\"16883\",\"type\":\"GlyphRenderer\"},\"glyph18\":{\"id\":\"14916\",\"type\":\"GlyphRenderer\"},\"glyph180\":{\"id\":\"16887\",\"type\":\"GlyphRenderer\"},\"glyph181\":{\"id\":\"16891\",\"type\":\"GlyphRenderer\"},\"glyph182\":{\"id\":\"16895\",\"type\":\"GlyphRenderer\"},\"glyph183\":{\"id\":\"16899\",\"type\":\"GlyphRenderer\"},\"glyph184\":{\"id\":\"16903\",\"type\":\"GlyphRenderer\"},\"glyph185\":{\"id\":\"16907\",\"type\":\"GlyphRenderer\"},\"glyph186\":{\"id\":\"16911\",\"type\":\"GlyphRenderer\"},\"glyph187\":{\"id\":\"16915\",\"type\":\"GlyphRenderer\"},\"glyph188\":{\"id\":\"16919\",\"type\":\"GlyphRenderer\"},\"glyph189\":{\"id\":\"16923\",\"type\":\"GlyphRenderer\"},\"glyph19\":{\"id\":\"14920\",\"type\":\"GlyphRenderer\"},\"glyph190\":{\"id\":\"16927\",\"type\":\"GlyphRenderer\"},\"glyph191\":{\"id\":\"16931\",\"type\":\"GlyphRenderer\"},\"glyph192\":{\"id\":\"17416\",\"type\":\"GlyphRenderer\"},\"glyph193\":{\"id\":\"17420\",\"type\":\"GlyphRenderer\"},\"glyph194\":{\"id\":\"17424\",\"type\":\"GlyphRenderer\"},\"glyph195\":{\"id\":\"17428\",\"type\":\"GlyphRenderer\"},\"glyph196\":{\"id\":\"17432\",\"type\":\"GlyphRenderer\"},\"glyph197\":{\"id\":\"17436\",\"type\":\"GlyphRenderer\"},\"glyph198\":{\"id\":\"17440\",\"type\":\"GlyphRenderer\"},\"glyph199\":{\"id\":\"17444\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"14852\",\"type\":\"GlyphRenderer\"},\"glyph20\":{\"id\":\"14924\",\"type\":\"GlyphRenderer\"},\"glyph200\":{\"id\":\"17448\",\"type\":\"GlyphRenderer\"},\"glyph201\":{\"id\":\"17452\",\"type\":\"GlyphRenderer\"},\"glyph202\":{\"id\":\"17456\",\"type\":\"GlyphRenderer\"},\"glyph203\":{\"id\":\"17460\",\"type\":\"GlyphRenderer\"},\"glyph204\":{\"id\":\"17464\",\"type\":\"GlyphRenderer\"},\"glyph205\":{\"id\":\"17468\",\"type\":\"GlyphRenderer\"},\"glyph206\":{\"id\":\"17472\",\"type\":\"GlyphRenderer\"},\"glyph207\":{\"id\":\"17476\",\"type\":\"GlyphRenderer\"},\"glyph208\":{\"id\":\"17480\",\"type\":\"GlyphRenderer\"},\"glyph209\":{\"id\":\"17484\",\"type\":\"GlyphRenderer\"},\"glyph21\":{\"id\":\"14928\",\"type\":\"GlyphRenderer\"},\"glyph210\":{\"id\":\"17488\",\"type\":\"GlyphRenderer\"},\"glyph211\":{\"id\":\"17492\",\"type\":\"GlyphRenderer\"},\"glyph212\":{\"id\":\"17496\",\"type\":\"GlyphRenderer\"},\"glyph213\":{\"id\":\"17500\",\"type\":\"GlyphRenderer\"},\"glyph214\":{\"id\":\"17504\",\"type\":\"GlyphRenderer\"},\"glyph215\":{\"id\":\"17508\",\"type\":\"GlyphRenderer\"},\"glyph216\":{\"id\":\"17512\",\"type\":\"GlyphRenderer\"},\"glyph217\":{\"id\":\"17516\",\"type\":\"GlyphRenderer\"},\"glyph218\":{\"id\":\"17520\",\"type\":\"GlyphRenderer\"},\"glyph219\":{\"id\":\"17524\",\"type\":\"GlyphRenderer\"},\"glyph22\":{\"id\":\"14932\",\"type\":\"GlyphRenderer\"},\"glyph220\":{\"id\":\"17528\",\"type\":\"GlyphRenderer\"},\"glyph221\":{\"id\":\"17532\",\"type\":\"GlyphRenderer\"},\"glyph222\":{\"id\":\"17536\",\"type\":\"GlyphRenderer\"},\"glyph223\":{\"id\":\"17540\",\"type\":\"GlyphRenderer\"},\"glyph224\":{\"id\":\"17544\",\"type\":\"GlyphRenderer\"},\"glyph225\":{\"id\":\"17548\",\"type\":\"GlyphRenderer\"},\"glyph226\":{\"id\":\"17552\",\"type\":\"GlyphRenderer\"},\"glyph227\":{\"id\":\"17556\",\"type\":\"GlyphRenderer\"},\"glyph228\":{\"id\":\"17560\",\"type\":\"GlyphRenderer\"},\"glyph229\":{\"id\":\"17564\",\"type\":\"GlyphRenderer\"},\"glyph23\":{\"id\":\"14936\",\"type\":\"GlyphRenderer\"},\"glyph230\":{\"id\":\"17568\",\"type\":\"GlyphRenderer\"},\"glyph231\":{\"id\":\"17572\",\"type\":\"GlyphRenderer\"},\"glyph232\":{\"id\":\"17576\",\"type\":\"GlyphRenderer\"},\"glyph233\":{\"id\":\"17580\",\"type\":\"GlyphRenderer\"},\"glyph234\":{\"id\":\"17584\",\"type\":\"GlyphRenderer\"},\"glyph235\":{\"id\":\"17588\",\"type\":\"GlyphRenderer\"},\"glyph236\":{\"id\":\"17592\",\"type\":\"GlyphRenderer\"},\"glyph237\":{\"id\":\"17596\",\"type\":\"GlyphRenderer\"},\"glyph238\":{\"id\":\"17600\",\"type\":\"GlyphRenderer\"},\"glyph239\":{\"id\":\"17604\",\"type\":\"GlyphRenderer\"},\"glyph24\":{\"id\":\"14940\",\"type\":\"GlyphRenderer\"},\"glyph25\":{\"id\":\"14944\",\"type\":\"GlyphRenderer\"},\"glyph26\":{\"id\":\"14948\",\"type\":\"GlyphRenderer\"},\"glyph27\":{\"id\":\"14952\",\"type\":\"GlyphRenderer\"},\"glyph28\":{\"id\":\"14956\",\"type\":\"GlyphRenderer\"},\"glyph29\":{\"id\":\"14960\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"14856\",\"type\":\"GlyphRenderer\"},\"glyph30\":{\"id\":\"14964\",\"type\":\"GlyphRenderer\"},\"glyph31\":{\"id\":\"14968\",\"type\":\"GlyphRenderer\"},\"glyph32\":{\"id\":\"14972\",\"type\":\"GlyphRenderer\"},\"glyph33\":{\"id\":\"14976\",\"type\":\"GlyphRenderer\"},\"glyph34\":{\"id\":\"14980\",\"type\":\"GlyphRenderer\"},\"glyph35\":{\"id\":\"14984\",\"type\":\"GlyphRenderer\"},\"glyph36\":{\"id\":\"14988\",\"type\":\"GlyphRenderer\"},\"glyph37\":{\"id\":\"14992\",\"type\":\"GlyphRenderer\"},\"glyph38\":{\"id\":\"14996\",\"type\":\"GlyphRenderer\"},\"glyph39\":{\"id\":\"15000\",\"type\":\"GlyphRenderer\"},\"glyph4\":{\"id\":\"14860\",\"type\":\"GlyphRenderer\"},\"glyph40\":{\"id\":\"15004\",\"type\":\"GlyphRenderer\"},\"glyph41\":{\"id\":\"15008\",\"type\":\"GlyphRenderer\"},\"glyph42\":{\"id\":\"15012\",\"type\":\"GlyphRenderer\"},\"glyph43\":{\"id\":\"15016\",\"type\":\"GlyphRenderer\"},\"glyph44\":{\"id\":\"15020\",\"type\":\"GlyphRenderer\"},\"glyph45\":{\"id\":\"15024\",\"type\":\"GlyphRenderer\"},\"glyph46\":{\"id\":\"15028\",\"type\":\"GlyphRenderer\"},\"glyph47\":{\"id\":\"15032\",\"type\":\"GlyphRenderer\"},\"glyph48\":{\"id\":\"15457\",\"type\":\"GlyphRenderer\"},\"glyph49\":{\"id\":\"15461\",\"type\":\"GlyphRenderer\"},\"glyph5\":{\"id\":\"14864\",\"type\":\"GlyphRenderer\"},\"glyph50\":{\"id\":\"15465\",\"type\":\"GlyphRenderer\"},\"glyph51\":{\"id\":\"15469\",\"type\":\"GlyphRenderer\"},\"glyph52\":{\"id\":\"15473\",\"type\":\"GlyphRenderer\"},\"glyph53\":{\"id\":\"15477\",\"type\":\"GlyphRenderer\"},\"glyph54\":{\"id\":\"15481\",\"type\":\"GlyphRenderer\"},\"glyph55\":{\"id\":\"15485\",\"type\":\"GlyphRenderer\"},\"glyph56\":{\"id\":\"15489\",\"type\":\"GlyphRenderer\"},\"glyph57\":{\"id\":\"15493\",\"type\":\"GlyphRenderer\"},\"glyph58\":{\"id\":\"15497\",\"type\":\"GlyphRenderer\"},\"glyph59\":{\"id\":\"15501\",\"type\":\"GlyphRenderer\"},\"glyph6\":{\"id\":\"14868\",\"type\":\"GlyphRenderer\"},\"glyph60\":{\"id\":\"15505\",\"type\":\"GlyphRenderer\"},\"glyph61\":{\"id\":\"15509\",\"type\":\"GlyphRenderer\"},\"glyph62\":{\"id\":\"15513\",\"type\":\"GlyphRenderer\"},\"glyph63\":{\"id\":\"15517\",\"type\":\"GlyphRenderer\"},\"glyph64\":{\"id\":\"15521\",\"type\":\"GlyphRenderer\"},\"glyph65\":{\"id\":\"15525\",\"type\":\"GlyphRenderer\"},\"glyph66\":{\"id\":\"15529\",\"type\":\"GlyphRenderer\"},\"glyph67\":{\"id\":\"15533\",\"type\":\"GlyphRenderer\"},\"glyph68\":{\"id\":\"15537\",\"type\":\"GlyphRenderer\"},\"glyph69\":{\"id\":\"15541\",\"type\":\"GlyphRenderer\"},\"glyph7\":{\"id\":\"14872\",\"type\":\"GlyphRenderer\"},\"glyph70\":{\"id\":\"15545\",\"type\":\"GlyphRenderer\"},\"glyph71\":{\"id\":\"15549\",\"type\":\"GlyphRenderer\"},\"glyph72\":{\"id\":\"15553\",\"type\":\"GlyphRenderer\"},\"glyph73\":{\"id\":\"15557\",\"type\":\"GlyphRenderer\"},\"glyph74\":{\"id\":\"15561\",\"type\":\"GlyphRenderer\"},\"glyph75\":{\"id\":\"15565\",\"type\":\"GlyphRenderer\"},\"glyph76\":{\"id\":\"15569\",\"type\":\"GlyphRenderer\"},\"glyph77\":{\"id\":\"15573\",\"type\":\"GlyphRenderer\"},\"glyph78\":{\"id\":\"15577\",\"type\":\"GlyphRenderer\"},\"glyph79\":{\"id\":\"15581\",\"type\":\"GlyphRenderer\"},\"glyph8\":{\"id\":\"14876\",\"type\":\"GlyphRenderer\"},\"glyph80\":{\"id\":\"15585\",\"type\":\"GlyphRenderer\"},\"glyph81\":{\"id\":\"15589\",\"type\":\"GlyphRenderer\"},\"glyph82\":{\"id\":\"15593\",\"type\":\"GlyphRenderer\"},\"glyph83\":{\"id\":\"15597\",\"type\":\"GlyphRenderer\"},\"glyph84\":{\"id\":\"15601\",\"type\":\"GlyphRenderer\"},\"glyph85\":{\"id\":\"15605\",\"type\":\"GlyphRenderer\"},\"glyph86\":{\"id\":\"15609\",\"type\":\"GlyphRenderer\"},\"glyph87\":{\"id\":\"15613\",\"type\":\"GlyphRenderer\"},\"glyph88\":{\"id\":\"15617\",\"type\":\"GlyphRenderer\"},\"glyph89\":{\"id\":\"15621\",\"type\":\"GlyphRenderer\"},\"glyph9\":{\"id\":\"14880\",\"type\":\"GlyphRenderer\"},\"glyph90\":{\"id\":\"15625\",\"type\":\"GlyphRenderer\"},\"glyph91\":{\"id\":\"15629\",\"type\":\"GlyphRenderer\"},\"glyph92\":{\"id\":\"15633\",\"type\":\"GlyphRenderer\"},\"glyph93\":{\"id\":\"15637\",\"type\":\"GlyphRenderer\"},\"glyph94\":{\"id\":\"15641\",\"type\":\"GlyphRenderer\"},\"glyph95\":{\"id\":\"15645\",\"type\":\"GlyphRenderer\"},\"glyph96\":{\"id\":\"16090\",\"type\":\"GlyphRenderer\"},\"glyph97\":{\"id\":\"16094\",\"type\":\"GlyphRenderer\"},\"glyph98\":{\"id\":\"16098\",\"type\":\"GlyphRenderer\"},\"glyph99\":{\"id\":\"16102\",\"type\":\"GlyphRenderer\"},\"time_slider\":{\"id\":\"17868\",\"type\":\"Slider\"}},\"code\":\"var glyphs = [glyph0, glyph1, glyph2, glyph3, glyph4, glyph5, glyph6, glyph7, glyph8, glyph9, glyph10, glyph11, glyph12, glyph13, glyph14, glyph15, glyph16, glyph17, glyph18, glyph19, glyph20, glyph21, glyph22, glyph23, glyph24, glyph25, glyph26, glyph27, glyph28, glyph29, glyph30, glyph31, glyph32, glyph33, glyph34, glyph35, glyph36, glyph37, glyph38, glyph39, glyph40, glyph41, glyph42, glyph43, glyph44, glyph45, glyph46, glyph47, glyph48, glyph49, glyph50, glyph51, glyph52, glyph53, glyph54, glyph55, glyph56, glyph57, glyph58, glyph59, glyph60, glyph61, glyph62, glyph63, glyph64, glyph65, glyph66, glyph67, glyph68, glyph69, glyph70, glyph71, glyph72, glyph73, glyph74, glyph75, glyph76, glyph77, glyph78, glyph79, glyph80, glyph81, glyph82, glyph83, glyph84, glyph85, glyph86, glyph87, glyph88, glyph89, glyph90, glyph91, glyph92, glyph93, glyph94, glyph95, glyph96, glyph97, glyph98, glyph99, glyph100, glyph101, glyph102, glyph103, glyph104, glyph105, glyph106, glyph107, glyph108, glyph109, glyph110, glyph111, glyph112, glyph113, glyph114, glyph115, glyph116, glyph117, glyph118, glyph119, glyph120, glyph121, glyph122, glyph123, glyph124, glyph125, glyph126, glyph127, glyph128, glyph129, glyph130, glyph131, glyph132, glyph133, glyph134, glyph135, glyph136, glyph137, glyph138, glyph139, glyph140, glyph141, glyph142, glyph143, glyph144, glyph145, glyph146, glyph147, glyph148, glyph149, glyph150, glyph151, glyph152, glyph153, glyph154, glyph155, glyph156, glyph157, glyph158, glyph159, glyph160, glyph161, glyph162, glyph163, glyph164, glyph165, glyph166, glyph167, glyph168, glyph169, glyph170, glyph171, glyph172, glyph173, glyph174, glyph175, glyph176, glyph177, glyph178, glyph179, glyph180, glyph181, glyph182, glyph183, glyph184, glyph185, glyph186, glyph187, glyph188, glyph189, glyph190, glyph191, glyph192, glyph193, glyph194, glyph195, glyph196, glyph197, glyph198, glyph199, glyph200, glyph201, glyph202, glyph203, glyph204, glyph205, glyph206, glyph207, glyph208, glyph209, glyph210, glyph211, glyph212, glyph213, glyph214, glyph215, glyph216, glyph217, glyph218, glyph219, glyph220, glyph221, glyph222, glyph223, glyph224, glyph225, glyph226, glyph227, glyph228, glyph229, glyph230, glyph231, glyph232, glyph233, glyph234, glyph235, glyph236, glyph237, glyph238, glyph239];var overtime = [[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191],[192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239]];var runs = [[0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236],[1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237],[2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238],[3,7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83,87,91,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,163,167,171,175,179,183,187,191,195,199,203,207,211,215,219,223,227,231,235,239]];\\n glyphs.forEach(function(g) {\\n g.visible = false;\\n })\\n // union function\\n function union_arrays(x, y) {\\n var obj = {};\\n for (var i = x.length-1; i >= 0; -- i)\\n obj[x[i]] = x[i];\\n for (var i = y.length-1; i >= 0; -- i)\\n obj[y[i]] = y[i];\\n var res = []\\n for (var k in obj) {\\n if (obj.hasOwnProperty(k)) // <-- optional\\n res.push(obj[k]);\\n }\\n return res;\\n }\\n console.log(\\\"Timeslider: \\\" + time_slider.value);\\n console.log(\\\"Checkbox: \\\" + checkbox.active);var slider_labels = ['39.12', '53.78', '126.60', '323.54', '895.87'];console.log(\\\"Detected slider_labels: \\\" + slider_labels);time_slider.title = \\\"Until wallclocktime \\\" + slider_labels[time_slider.value - 1] + \\\". Step no.\\\"; \\n var activate = [];\\n // if we want multiple checkboxes at the same time, we need to combine the arrays\\n checkbox.active.forEach(function(c) {\\n activate = union_arrays(activate, runs[c]);\\n })\\n // now the intersection of timeslider-activated and checkbox-activated\\n activate = activate.filter(value => -1 !== overtime[time_slider.value - 1].indexOf(value));\\n activate.forEach(function(idx) {\\n glyphs[idx].visible = true;\\n })\\n \"},\"id\":\"17870\",\"type\":\"CustomJS\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15446\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16208\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16209\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16001\",\"type\":\"CDSView\"}},\"id\":\"16210\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15439\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16161\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16857\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16809\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16810\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16589\",\"type\":\"CDSView\"}},\"id\":\"16811\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17289\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16160\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16161\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15941\",\"type\":\"CDSView\"}},\"id\":\"16162\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15434\",\"type\":\"GroupFilter\"},{\"id\":\"15435\",\"type\":\"GroupFilter\"},{\"id\":\"15436\",\"type\":\"GroupFilter\"},{\"id\":\"15437\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15438\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16793\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16152\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16153\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15931\",\"type\":\"CDSView\"}},\"id\":\"16154\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17298\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15463\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16213\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17305\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16156\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17308\",\"type\":\"GroupFilter\"},{\"id\":\"17309\",\"type\":\"GroupFilter\"},{\"id\":\"17310\",\"type\":\"GroupFilter\"},{\"id\":\"17311\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17312\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15619\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15620\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15423\",\"type\":\"CDSView\"}},\"id\":\"15621\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17269\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15459\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15615\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16809\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17283\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15627\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15628\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15433\",\"type\":\"CDSView\"}},\"id\":\"15629\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"17298\",\"type\":\"GroupFilter\"},{\"id\":\"17299\",\"type\":\"GroupFilter\"},{\"id\":\"17300\",\"type\":\"GroupFilter\"},{\"id\":\"17301\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17302\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17260\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16821\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16822\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16604\",\"type\":\"CDSView\"}},\"id\":\"16823\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"17303\",\"type\":\"GroupFilter\"},{\"id\":\"17304\",\"type\":\"GroupFilter\"},{\"id\":\"17305\",\"type\":\"GroupFilter\"},{\"id\":\"17306\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17307\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15442\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15460\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15604\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17261\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17314\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16172\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"15444\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17278\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16212\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16213\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16006\",\"type\":\"CDSView\"}},\"id\":\"16214\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16817\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16818\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16599\",\"type\":\"CDSView\"}},\"id\":\"16819\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15608\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17300\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15467\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15468\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15233\",\"type\":\"CDSView\"}},\"id\":\"15469\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15631\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16164\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16176\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15440\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17288\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"17308\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15607\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15608\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15408\",\"type\":\"CDSView\"}},\"id\":\"15609\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17259\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16153\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16813\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15636\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16157\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16801\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15487\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15488\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15258\",\"type\":\"CDSView\"}},\"id\":\"15489\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16861\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16862\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16654\",\"type\":\"CDSView\"}},\"id\":\"16863\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"17313\",\"type\":\"GroupFilter\"},{\"id\":\"17314\",\"type\":\"GroupFilter\"},{\"id\":\"17315\",\"type\":\"GroupFilter\"},{\"id\":\"17316\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17317\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16533\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16156\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16157\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15936\",\"type\":\"CDSView\"}},\"id\":\"16158\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15439\",\"type\":\"GroupFilter\"},{\"id\":\"15440\",\"type\":\"GroupFilter\"},{\"id\":\"15441\",\"type\":\"GroupFilter\"},{\"id\":\"15442\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15443\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15635\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16152\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16790\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16822\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17278\",\"type\":\"GroupFilter\"},{\"id\":\"17279\",\"type\":\"GroupFilter\"},{\"id\":\"17280\",\"type\":\"GroupFilter\"},{\"id\":\"17281\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17282\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15459\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15460\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15223\",\"type\":\"CDSView\"}},\"id\":\"15461\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15468\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15628\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16861\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17273\",\"type\":\"GroupFilter\"},{\"id\":\"17274\",\"type\":\"GroupFilter\"},{\"id\":\"17275\",\"type\":\"GroupFilter\"},{\"id\":\"17276\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17277\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15623\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15624\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15428\",\"type\":\"CDSView\"}},\"id\":\"15625\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15488\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16818\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17301\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16805\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16806\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16584\",\"type\":\"CDSView\"}},\"id\":\"16807\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15445\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16817\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17321\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16821\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17304\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15467\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17268\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17319\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15487\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16216\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"17263\",\"type\":\"GroupFilter\"},{\"id\":\"17264\",\"type\":\"GroupFilter\"},{\"id\":\"17265\",\"type\":\"GroupFilter\"},{\"id\":\"17266\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17267\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17173\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15611\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16814\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15441\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15603\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15604\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15403\",\"type\":\"CDSView\"}},\"id\":\"15605\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16789\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16790\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16564\",\"type\":\"CDSView\"}},\"id\":\"16791\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15463\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15464\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15228\",\"type\":\"CDSView\"}},\"id\":\"15465\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"16530\",\"type\":\"GroupFilter\"},{\"id\":\"16531\",\"type\":\"GroupFilter\"},{\"id\":\"16532\",\"type\":\"GroupFilter\"},{\"id\":\"16533\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16534\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17279\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17295\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17306\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15471\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15472\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15238\",\"type\":\"CDSView\"}},\"id\":\"15473\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15955\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14661\",\"type\":\"GroupFilter\"},{\"id\":\"14662\",\"type\":\"GroupFilter\"},{\"id\":\"14663\",\"type\":\"GroupFilter\"},{\"id\":\"14664\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14665\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15496\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17478\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15583\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15952\",\"type\":\"GroupFilter\"},{\"id\":\"15953\",\"type\":\"GroupFilter\"},{\"id\":\"15954\",\"type\":\"GroupFilter\"},{\"id\":\"15955\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15956\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14666\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15484\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16276\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17543\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15962\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15579\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15580\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15373\",\"type\":\"CDSView\"}},\"id\":\"15581\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14667\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15957\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14668\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17454\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17455\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17227\",\"type\":\"CDSView\"}},\"id\":\"17456\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15954\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15507\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17483\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14669\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17463\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15953\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14666\",\"type\":\"GroupFilter\"},{\"id\":\"14667\",\"type\":\"GroupFilter\"},{\"id\":\"14668\",\"type\":\"GroupFilter\"},{\"id\":\"14669\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14670\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15584\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16269\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15960\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15495\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14671\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"16300\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15480\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17542\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15965\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17542\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17543\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17337\",\"type\":\"CDSView\"}},\"id\":\"17544\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15959\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15483\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15484\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15253\",\"type\":\"CDSView\"}},\"id\":\"15485\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17479\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14672\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15479\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15480\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15248\",\"type\":\"CDSView\"}},\"id\":\"15481\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15947\",\"type\":\"GroupFilter\"},{\"id\":\"15948\",\"type\":\"GroupFilter\"},{\"id\":\"15949\",\"type\":\"GroupFilter\"},{\"id\":\"15950\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15951\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16277\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17546\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15511\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15512\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15288\",\"type\":\"CDSView\"}},\"id\":\"15513\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17459\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14673\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17458\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17459\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17232\",\"type\":\"CDSView\"}},\"id\":\"17460\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15504\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15499\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15500\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15273\",\"type\":\"CDSView\"}},\"id\":\"15501\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14674\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17538\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17539\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17332\",\"type\":\"CDSView\"}},\"id\":\"17540\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14671\",\"type\":\"GroupFilter\"},{\"id\":\"14672\",\"type\":\"GroupFilter\"},{\"id\":\"14673\",\"type\":\"GroupFilter\"},{\"id\":\"14674\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14675\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17475\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15472\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17462\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15967\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15476\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14676\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17471\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17470\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17471\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17247\",\"type\":\"CDSView\"}},\"id\":\"17472\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15508\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15958\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15491\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15471\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15957\",\"type\":\"GroupFilter\"},{\"id\":\"15958\",\"type\":\"GroupFilter\"},{\"id\":\"15959\",\"type\":\"GroupFilter\"},{\"id\":\"15960\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15961\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14677\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17273\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16272\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17482\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15507\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15508\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15283\",\"type\":\"CDSView\"}},\"id\":\"15509\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14678\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15974\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15491\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15492\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15263\",\"type\":\"CDSView\"}},\"id\":\"15493\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14679\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17276\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16273\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17455\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15943\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14676\",\"type\":\"GroupFilter\"},{\"id\":\"14677\",\"type\":\"GroupFilter\"},{\"id\":\"14678\",\"type\":\"GroupFilter\"},{\"id\":\"14679\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14680\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17474\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15973\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17450\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17451\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17222\",\"type\":\"CDSView\"}},\"id\":\"17452\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15945\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14681\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15964\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15970\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14682\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"16299\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14683\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15503\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15504\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15278\",\"type\":\"CDSView\"}},\"id\":\"15505\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15942\",\"type\":\"GroupFilter\"},{\"id\":\"15943\",\"type\":\"GroupFilter\"},{\"id\":\"15944\",\"type\":\"GroupFilter\"},{\"id\":\"15945\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15946\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17462\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17463\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17237\",\"type\":\"CDSView\"}},\"id\":\"17464\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14684\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16276\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16277\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16086\",\"type\":\"CDSView\"}},\"id\":\"16278\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15492\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17454\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14681\",\"type\":\"GroupFilter\"},{\"id\":\"14682\",\"type\":\"GroupFilter\"},{\"id\":\"14683\",\"type\":\"GroupFilter\"},{\"id\":\"14684\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14685\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15969\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15499\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14686\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16272\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16273\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16081\",\"type\":\"CDSView\"}},\"id\":\"16274\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15972\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16268\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16269\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16076\",\"type\":\"CDSView\"}},\"id\":\"16270\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17466\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17467\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17242\",\"type\":\"CDSView\"}},\"id\":\"17468\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14687\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14688\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15583\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15584\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15378\",\"type\":\"CDSView\"}},\"id\":\"15585\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15962\",\"type\":\"GroupFilter\"},{\"id\":\"15963\",\"type\":\"GroupFilter\"},{\"id\":\"15964\",\"type\":\"GroupFilter\"},{\"id\":\"15965\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15966\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17467\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14689\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17478\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17479\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17257\",\"type\":\"CDSView\"}},\"id\":\"17480\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15952\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14686\",\"type\":\"GroupFilter\"},{\"id\":\"14687\",\"type\":\"GroupFilter\"},{\"id\":\"14688\",\"type\":\"GroupFilter\"},{\"id\":\"14689\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14690\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15511\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16268\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15495\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15496\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15268\",\"type\":\"CDSView\"}},\"id\":\"15497\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15967\",\"type\":\"GroupFilter\"},{\"id\":\"15968\",\"type\":\"GroupFilter\"},{\"id\":\"15969\",\"type\":\"GroupFilter\"},{\"id\":\"15970\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15971\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14691\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15483\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15963\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15512\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17470\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17474\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17475\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17252\",\"type\":\"CDSView\"}},\"id\":\"17476\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14692\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17466\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15948\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14693\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15847\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15949\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15475\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15476\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15243\",\"type\":\"CDSView\"}},\"id\":\"15477\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14694\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15968\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15503\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14691\",\"type\":\"GroupFilter\"},{\"id\":\"14692\",\"type\":\"GroupFilter\"},{\"id\":\"14693\",\"type\":\"GroupFilter\"},{\"id\":\"14694\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14695\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15500\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15947\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15475\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17539\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17458\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14696\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15950\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15479\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15944\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16136\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16137\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15911\",\"type\":\"CDSView\"}},\"id\":\"16138\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15559\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15854\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15555\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17574\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15868\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15894\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16917\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16918\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16724\",\"type\":\"CDSView\"}},\"id\":\"16919\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17566\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17567\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17367\",\"type\":\"CDSView\"}},\"id\":\"17568\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15551\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15857\",\"type\":\"GroupFilter\"},{\"id\":\"15858\",\"type\":\"GroupFilter\"},{\"id\":\"15859\",\"type\":\"GroupFilter\"},{\"id\":\"15860\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15861\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17562\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"16500\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16913\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16914\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16719\",\"type\":\"CDSView\"}},\"id\":\"16915\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15898\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"16954\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17567\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15559\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15560\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15348\",\"type\":\"CDSView\"}},\"id\":\"15561\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17482\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17483\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17262\",\"type\":\"CDSView\"}},\"id\":\"17484\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16108\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16108\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16109\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15876\",\"type\":\"CDSView\"}},\"id\":\"16110\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17523\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15849\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16112\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16925\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15547\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16117\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15869\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16105\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15873\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15912\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15547\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15548\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15333\",\"type\":\"CDSView\"}},\"id\":\"15549\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16124\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16125\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15896\",\"type\":\"CDSView\"}},\"id\":\"16126\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17571\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15874\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15556\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15907\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15909\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17526\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15551\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15552\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15338\",\"type\":\"CDSView\"}},\"id\":\"15553\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16109\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17558\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17559\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15555\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15556\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15343\",\"type\":\"CDSView\"}},\"id\":\"15557\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16220\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15859\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15862\",\"type\":\"GroupFilter\"},{\"id\":\"15863\",\"type\":\"GroupFilter\"},{\"id\":\"15864\",\"type\":\"GroupFilter\"},{\"id\":\"15865\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15866\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16113\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15887\",\"type\":\"GroupFilter\"},{\"id\":\"15888\",\"type\":\"GroupFilter\"},{\"id\":\"15889\",\"type\":\"GroupFilter\"},{\"id\":\"15890\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15891\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15592\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16128\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16930\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15875\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"16955\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16100\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16101\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15866\",\"type\":\"CDSView\"}},\"id\":\"16102\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17526\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17527\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17317\",\"type\":\"CDSView\"}},\"id\":\"17528\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15903\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15564\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15858\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15910\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16104\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16105\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15871\",\"type\":\"CDSView\"}},\"id\":\"16106\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15870\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15899\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16918\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15867\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15897\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16112\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16113\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15881\",\"type\":\"CDSView\"}},\"id\":\"16114\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17550\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15884\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16921\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16922\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16729\",\"type\":\"CDSView\"}},\"id\":\"16923\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15560\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16136\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15878\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15563\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15887\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15596\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15907\",\"type\":\"GroupFilter\"},{\"id\":\"15908\",\"type\":\"GroupFilter\"},{\"id\":\"15909\",\"type\":\"GroupFilter\"},{\"id\":\"15910\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15911\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16917\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17550\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17551\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17347\",\"type\":\"CDSView\"}},\"id\":\"17552\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15591\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16116\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17554\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17570\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15852\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15889\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15855\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15900\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15880\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16129\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17575\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15860\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15563\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15564\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15353\",\"type\":\"CDSView\"}},\"id\":\"15565\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16133\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15865\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16921\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15908\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16116\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16117\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15886\",\"type\":\"CDSView\"}},\"id\":\"16118\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15571\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15892\",\"type\":\"GroupFilter\"},{\"id\":\"15893\",\"type\":\"GroupFilter\"},{\"id\":\"15894\",\"type\":\"GroupFilter\"},{\"id\":\"15895\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15896\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15567\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15568\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15358\",\"type\":\"CDSView\"}},\"id\":\"15569\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17574\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17575\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17377\",\"type\":\"CDSView\"}},\"id\":\"17576\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16922\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15888\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17554\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17555\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17352\",\"type\":\"CDSView\"}},\"id\":\"17556\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16140\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16141\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15916\",\"type\":\"CDSView\"}},\"id\":\"16142\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15882\",\"type\":\"GroupFilter\"},{\"id\":\"15883\",\"type\":\"GroupFilter\"},{\"id\":\"15884\",\"type\":\"GroupFilter\"},{\"id\":\"15885\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15886\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16926\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15872\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15587\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15588\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15383\",\"type\":\"CDSView\"}},\"id\":\"15589\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16929\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16930\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16739\",\"type\":\"CDSView\"}},\"id\":\"16931\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15567\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15848\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16128\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16129\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15901\",\"type\":\"CDSView\"}},\"id\":\"16130\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16925\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16926\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16734\",\"type\":\"CDSView\"}},\"id\":\"16927\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15568\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15572\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15867\",\"type\":\"GroupFilter\"},{\"id\":\"15868\",\"type\":\"GroupFilter\"},{\"id\":\"15869\",\"type\":\"GroupFilter\"},{\"id\":\"15870\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15871\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16770\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15895\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16132\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16133\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15906\",\"type\":\"CDSView\"}},\"id\":\"16134\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15893\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15905\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15850\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15864\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16104\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17551\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15862\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17558\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17559\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17357\",\"type\":\"CDSView\"}},\"id\":\"17560\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15872\",\"type\":\"GroupFilter\"},{\"id\":\"15873\",\"type\":\"GroupFilter\"},{\"id\":\"15874\",\"type\":\"GroupFilter\"},{\"id\":\"15875\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15876\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15595\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15596\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15393\",\"type\":\"CDSView\"}},\"id\":\"15597\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16125\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16929\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16124\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15904\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15599\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15902\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15595\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15863\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17555\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15588\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15877\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15599\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15600\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15398\",\"type\":\"CDSView\"}},\"id\":\"15601\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16137\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17527\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15552\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15890\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16101\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17522\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16132\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15852\",\"type\":\"GroupFilter\"},{\"id\":\"15853\",\"type\":\"GroupFilter\"},{\"id\":\"15854\",\"type\":\"GroupFilter\"},{\"id\":\"15855\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15856\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15591\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15592\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15388\",\"type\":\"CDSView\"}},\"id\":\"15593\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15883\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17562\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17563\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17362\",\"type\":\"CDSView\"}},\"id\":\"17564\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15897\",\"type\":\"GroupFilter\"},{\"id\":\"15898\",\"type\":\"GroupFilter\"},{\"id\":\"15899\",\"type\":\"GroupFilter\"},{\"id\":\"15900\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15901\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17570\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17571\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17372\",\"type\":\"CDSView\"}},\"id\":\"17572\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15600\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17563\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15853\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16216\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16217\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16011\",\"type\":\"CDSView\"}},\"id\":\"16218\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15548\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15879\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16217\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17566\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17522\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17523\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17312\",\"type\":\"CDSView\"}},\"id\":\"17524\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16141\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15892\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15847\",\"type\":\"GroupFilter\"},{\"id\":\"15848\",\"type\":\"GroupFilter\"},{\"id\":\"15849\",\"type\":\"GroupFilter\"},{\"id\":\"15850\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15851\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15902\",\"type\":\"GroupFilter\"},{\"id\":\"15903\",\"type\":\"GroupFilter\"},{\"id\":\"15904\",\"type\":\"GroupFilter\"},{\"id\":\"15905\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15906\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16140\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15857\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16650\",\"type\":\"GroupFilter\"},{\"id\":\"16651\",\"type\":\"GroupFilter\"},{\"id\":\"16652\",\"type\":\"GroupFilter\"},{\"id\":\"16653\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16654\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16660\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16640\",\"type\":\"GroupFilter\"},{\"id\":\"16641\",\"type\":\"GroupFilter\"},{\"id\":\"16642\",\"type\":\"GroupFilter\"},{\"id\":\"16643\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16644\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16640\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16653\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16663\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16660\",\"type\":\"GroupFilter\"},{\"id\":\"16661\",\"type\":\"GroupFilter\"},{\"id\":\"16662\",\"type\":\"GroupFilter\"},{\"id\":\"16663\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16664\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16652\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16641\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16658\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16667\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16648\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16642\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16636\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16637\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16661\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16655\",\"type\":\"GroupFilter\"},{\"id\":\"16656\",\"type\":\"GroupFilter\"},{\"id\":\"16657\",\"type\":\"GroupFilter\"},{\"id\":\"16658\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16659\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16657\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16638\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16646\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16635\",\"type\":\"GroupFilter\"},{\"id\":\"16636\",\"type\":\"GroupFilter\"},{\"id\":\"16637\",\"type\":\"GroupFilter\"},{\"id\":\"16638\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16639\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16645\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16643\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16666\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16655\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16651\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16665\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16645\",\"type\":\"GroupFilter\"},{\"id\":\"16646\",\"type\":\"GroupFilter\"},{\"id\":\"16647\",\"type\":\"GroupFilter\"},{\"id\":\"16648\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16649\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16650\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16656\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16662\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16647\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"end\":2.364114178109612,\"start\":-2.626210846366635},\"id\":\"14551\",\"type\":\"Range1d\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16625\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"14553\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"14555\",\"type\":\"LinearScale\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16611\",\"type\":\"GroupFilter\"},{\"attributes\":{\"axis_label\":\"MDS-X\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"15039\",\"type\":\"BasicTickFormatter\"},\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"14558\",\"type\":\"BasicTicker\"}},\"id\":\"14557\",\"type\":\"LinearAxis\"},{\"attributes\":{\"filters\":[{\"id\":\"16610\",\"type\":\"GroupFilter\"},{\"id\":\"16611\",\"type\":\"GroupFilter\"},{\"id\":\"16612\",\"type\":\"GroupFilter\"},{\"id\":\"16613\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16614\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"14558\",\"type\":\"BasicTicker\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16617\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"15035\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16608\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"ticker\":{\"id\":\"14558\",\"type\":\"BasicTicker\"}},\"id\":\"14561\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"15037\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"filters\":[{\"id\":\"16605\",\"type\":\"GroupFilter\"},{\"id\":\"16606\",\"type\":\"GroupFilter\"},{\"id\":\"16607\",\"type\":\"GroupFilter\"},{\"id\":\"16608\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16609\",\"type\":\"CDSView\"},{\"attributes\":{\"axis_label\":\"MDS-Y\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"15037\",\"type\":\"BasicTickFormatter\"},\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"14563\",\"type\":\"BasicTicker\"}},\"id\":\"14562\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"15039\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16628\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"14563\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"15050\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"dimension\":1,\"ticker\":{\"id\":\"14563\",\"type\":\"BasicTicker\"}},\"id\":\"14566\",\"type\":\"Grid\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16606\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"14567\",\"type\":\"SaveTool\"},{\"attributes\":{\"overlay\":{\"id\":\"15040\",\"type\":\"BoxAnnotation\"}},\"id\":\"14568\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"filters\":[{\"id\":\"16595\",\"type\":\"GroupFilter\"},{\"id\":\"16596\",\"type\":\"GroupFilter\"},{\"id\":\"16597\",\"type\":\"GroupFilter\"},{\"id\":\"16598\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16599\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"14569\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16610\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16623\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"14570\",\"type\":\"ResetTool\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16605\",\"type\":\"GroupFilter\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"14567\",\"type\":\"SaveTool\"},{\"id\":\"14568\",\"type\":\"BoxZoomTool\"},{\"id\":\"14569\",\"type\":\"WheelZoomTool\"},{\"id\":\"14570\",\"type\":\"ResetTool\"},{\"id\":\"17866\",\"type\":\"HoverTool\"}]},\"id\":\"14571\",\"type\":\"Toolbar\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16615\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+kHucQtqUBb6Qe5xC2pQFvpB7nELalAW+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\",\"dtype\":\"float64\",\"shape\":[25,26]}]},\"selected\":{\"id\":\"15041\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15042\",\"type\":\"UnionRenderers\"}},\"id\":\"14578\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16612\",\"type\":\"GroupFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14579\",\"type\":\"Image\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16613\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14580\",\"type\":\"Image\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16626\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14578\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14579\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14580\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"14582\",\"type\":\"CDSView\"}},\"id\":\"14581\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"16615\",\"type\":\"GroupFilter\"},{\"id\":\"16616\",\"type\":\"GroupFilter\"},{\"id\":\"16617\",\"type\":\"GroupFilter\"},{\"id\":\"16618\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16619\",\"type\":\"CDSView\"},{\"attributes\":{\"source\":{\"id\":\"14578\",\"type\":\"ColumnDataSource\"}},\"id\":\"14582\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEHZpDdb8jWkQdmkN1vyNaRB2aQ3W/I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRBUvb8T7I1pEFS9vxPsjWkQVL2/E+yNaRB8qDCYvFAmEHyoMJi8UCYQfKgwmLxQJhB8qDCYvFAmEHyoMJi8UCYQfKgwmLxQJhB8qDCYvFAmEHyoMJi8UCYQfKgwmLxQJhB8qDCYvFAmEHyoMJi8UCYQfKgwmLxQJhBbrxqmfFAmEFuvGqZ8UCYQW68apnxQJhBbrxqmfFAmEHAMKeRPkGYQcAwp5E+QZhB18w5nkNFmEHXzDmeQ0WYQdfMOZ5DRZhB18w5nkNFmEHXzDmeQ0WYQdfMOZ5DRZhB18w5nkNFmEHXzDme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\",\"dtype\":\"float64\",\"shape\":[25,26]}]},\"selected\":{\"id\":\"15043\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15044\",\"type\":\"UnionRenderers\"}},\"id\":\"14583\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14584\",\"type\":\"Image\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14585\",\"type\":\"Image\"},{\"attributes\":{\"filters\":[{\"id\":\"16600\",\"type\":\"GroupFilter\"},{\"id\":\"16601\",\"type\":\"GroupFilter\"},{\"id\":\"16602\",\"type\":\"GroupFilter\"},{\"id\":\"16603\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16604\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14583\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14584\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14585\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"14587\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"14586\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16603\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16616\",\"type\":\"GroupFilter\"},{\"attributes\":{\"source\":{\"id\":\"14583\",\"type\":\"ColumnDataSource\"}},\"id\":\"14587\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16622\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"yAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQevtbb52hUxA6+1tvnaFTEDr7W2+doVMQEq0YL7hb9NAbqnmHXhp40CqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQMgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHr7W2+doVMQOvtbb52hUxA6+1tvnaFTEBKtGC+4W/TQG6p5h14aeNAqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UDIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alB6+1tvnaFTEDr7W2+doVMQOvtbb52hUxASrRgvuFv00BuqeYdeGnjQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1AyAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQevtbb52hUxA6+1tvnaFTEDr7W2+doVMQEq0YL7hb9NAbqnmHXhp40CqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQMgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHr7W2+doVMQOvtbb52hUxA6+1tvnaFTEBKtGC+4W/TQG6p5h14aeNAqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UDIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alB6+1tvnaFTEDr7W2+doVMQOvtbb52hUxASrRgvuFv00BuqeYdeGnjQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1AyAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQevtbb52hUxA6+1tvnaFTEDr7W2+doVMQEq0YL7hb9NAbqnmHXhp40CqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQMgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHr7W2+doVMQOvtbb52hUxA6+1tvnaFTEBKtGC+4W/TQG6p5h14aeNAqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UDIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alB6+1tvnaFTEDr7W2+doVMQOvtbb52hUxASrRgvuFv00BuqeYdeGnjQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1AyAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQevtbb52hUxA6+1tvnaFTEDr7W2+doVMQEq0YL7hb9NAbqnmHXhp40CqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQMgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHr7W2+doVMQOvtbb52hUxA6+1tvnaFTEBKtGC+4W/TQG6p5h14aeNAqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UDIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alB6+1tvnaFTEDr7W2+doVMQOvtbb52hUxASrRgvuFv00BuqeYdeGnjQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1AyAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQevtbb52hUxA6+1tvnaFTEDr7W2+doVMQEq0YL7hb9NAbqnmHXhp40CqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQMgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHr7W2+doVMQOvtbb52hUxA6+1tvnaFTEBKtGC+4W/TQG6p5h14aeNAqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UDIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alByAB1L+PRqUHIAHUv49GpQcgAdS/j0alB6+1tvnaFTEDr7W2+doVMQOvtbb52hUxASrRgvuFv00BuqeYdeGnjQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1Aqhg8bPIZ7UCqGDxs8hntQKoYPGzyGe1A/QlZKn7SqUH9CVkqftKpQf0JWSp+0qlB/QlZKn7SqUH9CVkqftKpQf0JWSp+0qlB/QlZKn7SqUH9CVkqftKpQf0JWSp+0qlB/QlZKn7SqUH9CVkqftKpQf0JWSp+0qlB/QlZKn7SqUH9CVkqftKpQUXihTyfbdNAReKFPJ9t00BF4oU8n23TQMuvwx+fZ+NAFf95XiYZ7UApt2dW0GTzQCm3Z1bQZPNAKbdnVtBk80Apt2dW0GTzQCm3Z1bQZPNAKbdnVtBk80Apt2dW0GTzQPi8PHTL0rlB+Lw8dMvSuUH4vDx0y9K5Qfi8PHTL0rlB+Lw8dMvSuUH4vDx0y9K5Qfi8PHTL0rlB+Lw8dMvSuUH4vDx0y9K5Qfi8PHTL0rlB+Lw8dMvSuUH4vDx0y9K5Qfi8PHTL0rlB+Lw8dMvSuUEiVBortNOpQSJUGiu006lBIlQaK7TTqUEtbBI4T9SpQZJXhlDq1KlBGCnna4XVqUEYKedrhdWpQRgp52uF1alBGCnna4XVqUEYKedrhdWpQRgp52uF1alBGCnna4XVqUElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBZeFUhGbTuUFl4VSEZtO5QWXhVIRm07lBa+3QCrTTuUEe4wqXAdS5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQWXhVIRm07lBZeFUhGbTuUFl4VSEZtO5QWvt0Aq007lBHuMKlwHUuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0Fl4VSEZtO5QWXhVIRm07lBZeFUhGbTuUFr7dAKtNO5QR7jCpcB1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBZeFUhGbTuUFl4VSEZtO5QWXhVIRm07lBa+3QCrTTuUEe4wqXAdS5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQWXhVIRm07lBZeFUhGbTuUFl4VSEZtO5QWvt0Aq007lBHuMKlwHUuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0Fl4VSEZtO5QWXhVIRm07lBZeFUhGbTuUFr7dAKtNO5QR7jCpcB1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBZeFUhGbTuUFl4VSEZtO5QWXhVIRm07lBa+3QCrTTuUEe4wqXAdS5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQSU6gvErXsNBJTqC8Stew0ElOoLxK17DQWXhVIRm07lBZeFUhGbTuUFl4VSEZtO5QWvt0Aq007lBHuMKlwHUuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QeJLuyRP1LlB4ku7JE/UuUHiS7skT9S5QQ==\",\"dtype\":\"float64\",\"shape\":[25,26]}]},\"selected\":{\"id\":\"15045\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15046\",\"type\":\"UnionRenderers\"}},\"id\":\"14588\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14589\",\"type\":\"Image\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14590\",\"type\":\"Image\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16601\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14588\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14589\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14590\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"14592\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"14591\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16627\",\"type\":\"GroupFilter\"},{\"attributes\":{\"source\":{\"id\":\"14588\",\"type\":\"ColumnDataSource\"}},\"id\":\"14592\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16602\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[25,26]}]},\"selected\":{\"id\":\"15047\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15048\",\"type\":\"UnionRenderers\"}},\"id\":\"14593\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16607\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16621\",\"type\":\"GroupFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14594\",\"type\":\"Image\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":4.990325024476247},\"dw\":{\"units\":\"data\",\"value\":5.114014413376522},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-2.7324138021809112},\"y\":{\"value\":-2.626210846366635}},\"id\":\"14595\",\"type\":\"Image\"},{\"attributes\":{\"filters\":[{\"id\":\"16620\",\"type\":\"GroupFilter\"},{\"id\":\"16621\",\"type\":\"GroupFilter\"},{\"id\":\"16622\",\"type\":\"GroupFilter\"},{\"id\":\"16623\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16624\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14593\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14594\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14595\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"14597\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"14596\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16600\",\"type\":\"GroupFilter\"},{\"attributes\":{\"source\":{\"id\":\"14593\",\"type\":\"ColumnDataSource\"}},\"id\":\"14597\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16625\",\"type\":\"GroupFilter\"},{\"id\":\"16626\",\"type\":\"GroupFilter\"},{\"id\":\"16627\",\"type\":\"GroupFilter\"},{\"id\":\"16628\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16629\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16620\",\"type\":\"GroupFilter\"},{\"attributes\":{\"desired_num_ticks\":15},\"id\":\"14598\",\"type\":\"BasicTicker\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16618\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17490\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17491\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17272\",\"type\":\"CDSView\"}},\"id\":\"17492\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"children\":[{\"id\":\"17875\",\"type\":\"Button\"}],\"width\":100},\"id\":\"17884\",\"type\":\"WidgetBox\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16200\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16201\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15991\",\"type\":\"CDSView\"}},\"id\":\"16202\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16220\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16221\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16016\",\"type\":\"CDSView\"}},\"id\":\"16222\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17506\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16204\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16205\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15996\",\"type\":\"CDSView\"}},\"id\":\"16206\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"args\":{\"colormapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"glyph0\":{\"id\":\"14581\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"14586\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"14591\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"14596\",\"type\":\"GlyphRenderer\"}},\"code\":\"var len_labels = 4,glyphs = [ glyph0,glyph1,glyph2,glyph3],mins = [63802.07578277979, 8451.267377410004, 57.042686275173615, 47.21767337766953],maxs = [7829258731877.213, 169539885.60867956, 649877475.0173994, 189.747178259529];\\n for (i = 0; i < len_labels; i++) {\\n if (cb_obj.active === i) {\\n // console.log('Setting to true: ' + i);\\n glyphs[i].visible = true;\\n colormapper.low = mins[i];\\n colormapper.high = maxs[i];\\n } else {\\n // console.log('Setting to false: ' + i);\\n glyphs[i].visible = false;\\n }\\n }\\n \"},\"id\":\"17876\",\"type\":\"CustomJS\"},{\"attributes\":{\"children\":[{\"id\":\"14548\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"17879\",\"type\":\"WidgetBox\"}]},\"id\":\"17880\",\"type\":\"Column\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16181\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17881\",\"type\":\"WidgetBox\"},{\"id\":\"17882\",\"type\":\"WidgetBox\"},{\"id\":\"17885\",\"type\":\"Row\"},{\"id\":\"17886\",\"type\":\"WidgetBox\"},{\"id\":\"17887\",\"type\":\"WidgetBox\"}]},\"id\":\"17888\",\"type\":\"Column\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16200\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17499\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16204\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17518\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17869\",\"type\":\"CheckboxButtonGroup\"}]},\"id\":\"17882\",\"type\":\"WidgetBox\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16184\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16185\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15971\",\"type\":\"CDSView\"}},\"id\":\"16186\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17530\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17871\",\"type\":\"Div\"}]},\"id\":\"17881\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16229\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17531\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17486\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16224\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16196\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17503\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17494\",\"type\":\"Scatter\"},{\"attributes\":{\"text\":\"Data used to estimate contour-plot\"},\"id\":\"17878\",\"type\":\"Div\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16201\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17873\",\"type\":\"Button\"}],\"width\":100},\"id\":\"17883\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17535\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17502\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17519\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17878\",\"type\":\"Div\"}]},\"id\":\"17886\",\"type\":\"WidgetBox\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16196\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16197\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15986\",\"type\":\"CDSView\"}},\"id\":\"16198\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17498\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17499\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17282\",\"type\":\"CDSView\"}},\"id\":\"17500\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17511\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17883\",\"type\":\"WidgetBox\"},{\"id\":\"17884\",\"type\":\"WidgetBox\"}]},\"id\":\"17885\",\"type\":\"Row\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16180\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16189\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16225\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17502\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17503\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17287\",\"type\":\"CDSView\"}},\"id\":\"17504\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16192\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16232\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"17877\",\"type\":\"RadioButtonGroup\"}]},\"id\":\"17887\",\"type\":\"WidgetBox\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16188\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16189\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15976\",\"type\":\"CDSView\"}},\"id\":\"16190\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17515\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17506\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17507\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17292\",\"type\":\"CDSView\"}},\"id\":\"17508\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16185\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17490\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16192\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16193\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15981\",\"type\":\"CDSView\"}},\"id\":\"16194\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17507\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17510\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17511\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17297\",\"type\":\"CDSView\"}},\"id\":\"17512\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17491\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16180\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16181\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15966\",\"type\":\"CDSView\"}},\"id\":\"16182\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17534\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17535\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17327\",\"type\":\"CDSView\"}},\"id\":\"17536\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"active\":0,\"callback\":{\"id\":\"17876\",\"type\":\"CustomJS\"},\"labels\":[\"budget 370.4\",\"budget 1111.1\",\"budget 3333.3\",\"budget 10000\"]},\"id\":\"17877\",\"type\":\"RadioButtonGroup\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17510\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17530\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17531\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17322\",\"type\":\"CDSView\"}},\"id\":\"17532\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16197\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17498\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17494\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17495\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17277\",\"type\":\"CDSView\"}},\"id\":\"17496\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16184\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16228\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16229\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16026\",\"type\":\"CDSView\"}},\"id\":\"16230\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17538\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16176\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16177\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"15961\",\"type\":\"CDSView\"}},\"id\":\"16178\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17486\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17487\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17267\",\"type\":\"CDSView\"}},\"id\":\"17488\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17495\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16193\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17534\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16228\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16205\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17514\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16188\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17487\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17514\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17515\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17302\",\"type\":\"CDSView\"}},\"id\":\"17516\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16224\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16225\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16021\",\"type\":\"CDSView\"}},\"id\":\"16226\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16595\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16889\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16890\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16689\",\"type\":\"CDSView\"}},\"id\":\"16891\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14763\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16568\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15972\",\"type\":\"GroupFilter\"},{\"id\":\"15973\",\"type\":\"GroupFilter\"},{\"id\":\"15974\",\"type\":\"GroupFilter\"},{\"id\":\"15975\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15976\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16885\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16591\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16590\",\"type\":\"GroupFilter\"},{\"id\":\"16591\",\"type\":\"GroupFilter\"},{\"id\":\"16592\",\"type\":\"GroupFilter\"},{\"id\":\"16593\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16594\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16913\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14764\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15985\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17218\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14761\",\"type\":\"GroupFilter\"},{\"id\":\"14762\",\"type\":\"GroupFilter\"},{\"id\":\"14763\",\"type\":\"GroupFilter\"},{\"id\":\"14764\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14765\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15977\",\"type\":\"GroupFilter\"},{\"id\":\"15978\",\"type\":\"GroupFilter\"},{\"id\":\"15979\",\"type\":\"GroupFilter\"},{\"id\":\"15980\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15981\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16575\",\"type\":\"GroupFilter\"},{\"id\":\"16576\",\"type\":\"GroupFilter\"},{\"id\":\"16577\",\"type\":\"GroupFilter\"},{\"id\":\"16578\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16579\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16886\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14766\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15982\",\"type\":\"GroupFilter\"},{\"id\":\"15983\",\"type\":\"GroupFilter\"},{\"id\":\"15984\",\"type\":\"GroupFilter\"},{\"id\":\"15985\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15986\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15994\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16586\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16565\",\"type\":\"GroupFilter\"},{\"id\":\"16566\",\"type\":\"GroupFilter\"},{\"id\":\"16567\",\"type\":\"GroupFilter\"},{\"id\":\"16568\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16569\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15989\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14767\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15988\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16905\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16906\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16709\",\"type\":\"CDSView\"}},\"id\":\"16907\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"16585\",\"type\":\"GroupFilter\"},{\"id\":\"16586\",\"type\":\"GroupFilter\"},{\"id\":\"16587\",\"type\":\"GroupFilter\"},{\"id\":\"16588\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16589\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14768\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16890\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16588\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14769\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16901\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16902\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16704\",\"type\":\"CDSView\"}},\"id\":\"16903\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15979\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16575\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14766\",\"type\":\"GroupFilter\"},{\"id\":\"14767\",\"type\":\"GroupFilter\"},{\"id\":\"14768\",\"type\":\"GroupFilter\"},{\"id\":\"14769\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14770\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15977\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16587\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16897\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16898\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16699\",\"type\":\"CDSView\"}},\"id\":\"16899\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14771\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16881\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15982\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16910\",\"type\":\"Scatter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"red\",\"red\",\"red\",\"red\",\"white\",\"red\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\"],\"origin\":[\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\"],\"p_burn_in\":[0.06095411756804747,0.4074427106852323,0.19103566832105667,0.4614938906314672,0.05379283110893349,0.34424088646527784,0.22534614767267647,0.34193909728758665,0.019702503024473652,0.04199917180247406,0.40614914276269265,0.008166622451853173,0.3060289375823493,0.017833969985921794,0.02306597975800245,0.34515349463529454,0.01461295313831932,0.017235501865167764,0.0116923509310994,0.4430283433889736,0.2407582604885267,0.03843441810140034,0.740831610943143,0.16837108101621034,0.389663720030231,0.013240078967514002,0.31823932597992305,0.4453681293440747,0.4560762540143012,0.4380896816607307,0.6682810162705316,0.3341405680866985,0.22839236467681667,0.36047458233549146,0.7498043706606659,0.16459742441935532,0.24302860840616028,0.3255599665428288],\"p_l_rate\":[1.3140974150295323e-05,0.016155413975493874,0.0911866225591426,0.01930430219941507,0.06953447315355575,5.886622133632225e-05,0.020701751107567005,0.03267167704481297,0.027124415967214835,1.562302425925469e-06,0.055679466924544604,0.05868181462547929,0.0009693701218491181,0.06877680681703875,0.06598368111508776,0.003764111315013184,0.0667009633233298,0.03487282754907394,4.63426031506052e-05,0.03877880710009469,0.0792659340152397,8.218636648622262e-06,0.0034016132586180696,4.231006670769454e-05,0.02974141600383611,0.04218746992189643,0.08855636723219577,0.026186183366574363,0.0030944655662799264,0.03901038193546873,3.554616454872997e-06,0.015422361937275902,2.7429889775972168e-05,2.2071066471092935e-05,0.013232184419079087,5.308241206255325e-06,0.0005797639839531642,1.113473241471851e-06],\"p_mdecay\":[0.6085942693370233,0.9552476693037883,0.23596990879050056,0.5381734081457205,0.5863021854362127,0.6934225820967883,0.24381621169879536,0.5747606389122023,0.8817407352537541,0.24717389794301636,0.021837510517321357,0.2447068090128678,0.14880855373871982,0.3095762923033933,0.09953494272876998,0.11692038084800203,0.3617267080409091,0.2502467932411652,0.5916637069751063,0.05909502727073661,0.29460712740739303,0.3753824880536981,0.6629709112103371,0.7994935341759952,0.32880127706797024,0.3820254234979106,0.2414742383738761,0.3309551130561821,0.661038131085342,0.2649050681581515,0.1690960017403682,0.44012322937234094,0.06071205674502145,0.964126285901498,0.6153477536804737,0.5854839967595509,0.4471707601112981,0.6131932145061313],\"p_n_units_1\":[27,40,352,214,228,288,354,33,276,22,443,33,36,122,20,25,40,21,470,207,264,302,30,17,67,78,312,105,56,168,59,50,360,337,44,56,36,194],\"p_n_units_2\":[409,313,52,48,24,504,55,271,30,54,35,207,42,58,172,27,40,380,58,85,46,19,59,416,184,52,30,232,37,410,320,286,288,60,295,24,17,18],\"runs\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Incumbent\",\"Incumbent\",\"Incumbent\",\"Final Incumbent\",\"Candidate\",\"Incumbent\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"jPLiqERy978IfYUBNT7yvwB02Tqzu/A/2zwpSH6P4j9xTNcy0S/wP2rV8oEhHPG/Y35pbZNI7T9hmjS6YtLlv0XoTLvtp/M/uXLUnP435b8NgBM+CRv2P/ZworNVHsq/wI93oWAhxr8havNecU/kP+gB49NPdcG/rCBI+ttp0b8BlfhtO/PQPxkxeOermNy/+HBBVdtI5T/fjM5It+LpPyMgrVx4sew/pcaj0P317D+f/z7QTpDyvwGZKGGEPfu/gBNRPSpaxL/bERxOZMTaP4BvNVXZ0PE/9GXgaRcAnr/Af4NWL2LXv9opmapjts8/sBj4iPe3+7/Ooh4KnWfgv8E5lrBWcO0/gbZBsVf9xj/D7vWlkWTzv/05vh1FZ9C/L7dyvDShx78ebfzWdV/WPw==\",\"dtype\":\"float64\",\"shape\":[38]},\"y\":{\"__ndarray__\":\"m4VOa/RK4b/mg62ySuvjP1cS/uWu78g/TUmTj6p5z7/P9i570iTev4aDac488uy/r7ri4TbPwz8/VUbDqJ7iPwsH0RK7POW/HMtgP2Jw9L8HoL+/UvDZP0agUm4N9PA/07lJvoN2w78axtf+0bfQP+vZb2Np0/U/AKZoxaserb+rMSk4ZSXFP66XIZS9IvQ/9hmB0eDN8r/jTcXgmX/nP43Zskc5vrQ/htUtwEaP9L+hxG2pHQ+jv/DXRT2MXN2/RBrgR1QK5T+MKNh4RvnBPxw+uo9+1bE/933Vxd6w6D/SrAM3kpjZv/qZe5MSyfA/vUZxfQBW4z/Z7JGjzJPiP3qOBkgUV/M/9hE0ZmHc+L8e5feCIYfrPwHBg7sLGvS/1ak9G60Q578LuRiq9QT6vw==\",\"dtype\":\"float64\",\"shape\":[38]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"17629\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"17630\",\"type\":\"UnionRenderers\"}},\"id\":\"14547\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14772\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17213\",\"type\":\"GroupFilter\"},{\"id\":\"17214\",\"type\":\"GroupFilter\"},{\"id\":\"17215\",\"type\":\"GroupFilter\"},{\"id\":\"17216\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17217\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15983\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16590\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16592\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14773\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16909\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15987\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16570\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14774\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16894\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14771\",\"type\":\"GroupFilter\"},{\"id\":\"14772\",\"type\":\"GroupFilter\"},{\"id\":\"14773\",\"type\":\"GroupFilter\"},{\"id\":\"14774\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14775\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17215\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16889\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14776\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15992\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14777\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16567\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16882\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14778\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15990\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14779\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15993\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15997\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16593\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17216\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16893\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16894\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16694\",\"type\":\"CDSView\"}},\"id\":\"16895\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14776\",\"type\":\"GroupFilter\"},{\"id\":\"14777\",\"type\":\"GroupFilter\"},{\"id\":\"14778\",\"type\":\"GroupFilter\"},{\"id\":\"14779\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14780\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15987\",\"type\":\"GroupFilter\"},{\"id\":\"15988\",\"type\":\"GroupFilter\"},{\"id\":\"15989\",\"type\":\"GroupFilter\"},{\"id\":\"15990\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15991\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15992\",\"type\":\"GroupFilter\"},{\"id\":\"15993\",\"type\":\"GroupFilter\"},{\"id\":\"15994\",\"type\":\"GroupFilter\"},{\"id\":\"15995\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15996\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16893\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14781\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16573\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16898\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16897\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14782\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15995\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16901\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16580\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14783\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16914\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15999\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"16585\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"red\",\"red\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\"],\"origin\":[\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\"],\"p_burn_in\":[0.06095411756804747,0.4074427106852323,0.4614938906314672,0.34424088646527784,0.22534614767267647,0.04199917180247406,0.40614914276269265,0.3060289375823493,0.34515349463529454,0.0116923509310994,0.4430283433889736,0.03843441810140034,0.16837108101621034,0.389663720030231,0.31823932597992305,0.16459742441935532,0.3255599665428288],\"p_l_rate\":[1.3140974150295323e-05,0.016155413975493874,0.01930430219941507,5.886622133632225e-05,0.020701751107567005,1.562302425925469e-06,0.055679466924544604,0.0009693701218491181,0.003764111315013184,4.63426031506052e-05,0.03877880710009469,8.218636648622262e-06,4.231006670769454e-05,0.02974141600383611,0.08855636723219577,5.308241206255325e-06,1.113473241471851e-06],\"p_mdecay\":[0.6085942693370233,0.9552476693037883,0.5381734081457205,0.6934225820967883,0.24381621169879536,0.24717389794301636,0.021837510517321357,0.14880855373871982,0.11692038084800203,0.5916637069751063,0.05909502727073661,0.3753824880536981,0.7994935341759952,0.32880127706797024,0.2414742383738761,0.5854839967595509,0.6131932145061313],\"p_n_units_1\":[27,40,214,288,354,22,443,36,25,470,207,302,17,67,312,56,194],\"p_n_units_2\":[409,313,48,504,55,54,35,42,27,58,85,19,416,184,30,24,18],\"runs\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Incumbent\",\"Incumbent\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"jPLiqERy978IfYUBNT7yv9s8KUh+j+I/atXygSEc8b9jfmltk0jtP7ly1Jz+N+W/DYATPgkb9j/Aj3ehYCHGv6wgSPrbadG/+HBBVdtI5T/fjM5It+LpP6XGo9D99ew/AZkoYYQ9+7+AE1E9KlrEv4BvNVXZ0PE//Tm+HUVn0L8ebfzWdV/WPw==\",\"dtype\":\"float64\",\"shape\":[17]},\"y\":{\"__ndarray__\":\"m4VOa/RK4b/mg62ySuvjP01Jk4+qec+/hoNpzjzy7L+vuuLhNs/DPxzLYD9icPS/B6C/v1Lw2T/TuUm+g3bDvwCmaMWrHq2/9hmB0eDN8r/jTcXgmX/nP4bVLcBGj/S/8NdFPYxc3b9EGuBHVArlPxw+uo9+1bE/AcGDuwsa9L8LuRiq9QT6vw==\",\"dtype\":\"float64\",\"shape\":[17]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"16954\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"16955\",\"type\":\"UnionRenderers\"}},\"id\":\"14546\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14784\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16909\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16910\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16714\",\"type\":\"CDSView\"}},\"id\":\"16911\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16003\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16582\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14781\",\"type\":\"GroupFilter\"},{\"id\":\"14782\",\"type\":\"GroupFilter\"},{\"id\":\"14783\",\"type\":\"GroupFilter\"},{\"id\":\"14784\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14785\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16596\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17213\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16580\",\"type\":\"GroupFilter\"},{\"id\":\"16581\",\"type\":\"GroupFilter\"},{\"id\":\"16582\",\"type\":\"GroupFilter\"},{\"id\":\"16583\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16584\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16005\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17219\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14786\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17214\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14787\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16902\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16583\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14788\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15998\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14789\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16000\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16572\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16881\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16882\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16679\",\"type\":\"CDSView\"}},\"id\":\"16883\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16004\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16578\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14786\",\"type\":\"GroupFilter\"},{\"id\":\"14787\",\"type\":\"GroupFilter\"},{\"id\":\"14788\",\"type\":\"GroupFilter\"},{\"id\":\"14789\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14790\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"white\",\"white\",\"white\",\"white\"],\"origin\":[\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\"],\"p_burn_in\":[0.06095411756804747,0.34424088646527784,0.04199917180247406,0.3060289375823493,0.0116923509310994],\"p_l_rate\":[1.3140974150295323e-05,5.886622133632225e-05,1.562302425925469e-06,0.0009693701218491181,4.63426031506052e-05],\"p_mdecay\":[0.6085942693370233,0.6934225820967883,0.24717389794301636,0.14880855373871982,0.5916637069751063],\"p_n_units_1\":[27,288,22,36,470],\"p_n_units_2\":[409,504,54,42,58],\"runs\":[1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"jPLiqERy979q1fKBIRzxv7ly1Jz+N+W/wI93oWAhxr/4cEFV20jlPw==\",\"dtype\":\"float64\",\"shape\":[5]},\"y\":{\"__ndarray__\":\"m4VOa/RK4b+Gg2nOPPLsvxzLYD9icPS/07lJvoN2w7/2GYHR4M3yvw==\",\"dtype\":\"float64\",\"shape\":[5]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"16299\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"16300\",\"type\":\"UnionRenderers\"}},\"id\":\"14545\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"filters\":[{\"id\":\"15997\",\"type\":\"GroupFilter\"},{\"id\":\"15998\",\"type\":\"GroupFilter\"},{\"id\":\"15999\",\"type\":\"GroupFilter\"},{\"id\":\"16000\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16001\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15980\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16905\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14791\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16577\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16002\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"white\",\"white\"],\"origin\":[\"Random\",\"Random\",\"Random\"],\"p_burn_in\":[0.06095411756804747,0.34424088646527784,0.04199917180247406],\"p_l_rate\":[1.3140974150295323e-05,5.886622133632225e-05,1.562302425925469e-06],\"p_mdecay\":[0.6085942693370233,0.6934225820967883,0.24717389794301636],\"p_n_units_1\":[27,288,22],\"p_n_units_2\":[409,504,54],\"runs\":[1,1,1],\"size\":[12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"jPLiqERy979q1fKBIRzxv7ly1Jz+N+W/\",\"dtype\":\"float64\",\"shape\":[3]},\"y\":{\"__ndarray__\":\"m4VOa/RK4b+Gg2nOPPLsvxzLYD9icPS/\",\"dtype\":\"float64\",\"shape\":[3]},\"zorder\":[\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"15664\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15665\",\"type\":\"UnionRenderers\"}},\"id\":\"14544\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16906\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14792\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15978\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16571\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16002\",\"type\":\"GroupFilter\"},{\"id\":\"16003\",\"type\":\"GroupFilter\"},{\"id\":\"16004\",\"type\":\"GroupFilter\"},{\"id\":\"16005\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16006\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14793\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16885\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16886\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16684\",\"type\":\"CDSView\"}},\"id\":\"16887\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"16570\",\"type\":\"GroupFilter\"},{\"id\":\"16571\",\"type\":\"GroupFilter\"},{\"id\":\"16572\",\"type\":\"GroupFilter\"},{\"id\":\"16573\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16574\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14794\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15984\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"16007\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16581\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14791\",\"type\":\"GroupFilter\"},{\"id\":\"14792\",\"type\":\"GroupFilter\"},{\"id\":\"14793\",\"type\":\"GroupFilter\"},{\"id\":\"14794\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14795\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15975\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16576\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15219\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16059\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15214\",\"type\":\"GroupFilter\"},{\"id\":\"15215\",\"type\":\"GroupFilter\"},{\"id\":\"15216\",\"type\":\"GroupFilter\"},{\"id\":\"15217\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15218\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"16057\",\"type\":\"GroupFilter\"},{\"id\":\"16058\",\"type\":\"GroupFilter\"},{\"id\":\"16059\",\"type\":\"GroupFilter\"},{\"id\":\"16060\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16061\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16057\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16045\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"15214\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16047\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16052\",\"type\":\"GroupFilter\"},{\"id\":\"16053\",\"type\":\"GroupFilter\"},{\"id\":\"16054\",\"type\":\"GroupFilter\"},{\"id\":\"16055\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16056\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16049\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16042\",\"type\":\"GroupFilter\"},{\"id\":\"16043\",\"type\":\"GroupFilter\"},{\"id\":\"16044\",\"type\":\"GroupFilter\"},{\"id\":\"16045\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16046\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15215\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16058\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"16043\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15216\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16053\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16062\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15220\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16037\",\"type\":\"GroupFilter\"},{\"id\":\"16038\",\"type\":\"GroupFilter\"},{\"id\":\"16039\",\"type\":\"GroupFilter\"},{\"id\":\"16040\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16041\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16055\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15217\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16054\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16047\",\"type\":\"GroupFilter\"},{\"id\":\"16048\",\"type\":\"GroupFilter\"},{\"id\":\"16049\",\"type\":\"GroupFilter\"},{\"id\":\"16050\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16051\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16042\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16044\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16052\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16068\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16065\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16067\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16040\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"16050\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16063\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"16060\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16069\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"16070\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16062\",\"type\":\"GroupFilter\"},{\"id\":\"16063\",\"type\":\"GroupFilter\"},{\"id\":\"16064\",\"type\":\"GroupFilter\"},{\"id\":\"16065\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"16066\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16064\",\"type\":\"GroupFilter\"},{\"attributes\":{\"background_fill_color\":{\"value\":null},\"below\":[{\"id\":\"14557\",\"type\":\"LinearAxis\"}],\"border_fill_color\":{\"value\":null},\"center\":[{\"id\":\"14561\",\"type\":\"Grid\"},{\"id\":\"14566\",\"type\":\"Grid\"}],\"left\":[{\"id\":\"14562\",\"type\":\"LinearAxis\"}],\"plot_height\":500,\"renderers\":[{\"id\":\"14581\",\"type\":\"GlyphRenderer\"},{\"id\":\"14586\",\"type\":\"GlyphRenderer\"},{\"id\":\"14591\",\"type\":\"GlyphRenderer\"},{\"id\":\"14596\",\"type\":\"GlyphRenderer\"},{\"id\":\"14844\",\"type\":\"GlyphRenderer\"},{\"id\":\"14848\",\"type\":\"GlyphRenderer\"},{\"id\":\"14852\",\"type\":\"GlyphRenderer\"},{\"id\":\"14856\",\"type\":\"GlyphRenderer\"},{\"id\":\"14860\",\"type\":\"GlyphRenderer\"},{\"id\":\"14864\",\"type\":\"GlyphRenderer\"},{\"id\":\"14868\",\"type\":\"GlyphRenderer\"},{\"id\":\"14872\",\"type\":\"GlyphRenderer\"},{\"id\":\"14876\",\"type\":\"GlyphRenderer\"},{\"id\":\"14880\",\"type\":\"GlyphRenderer\"},{\"id\":\"14884\",\"type\":\"GlyphRenderer\"},{\"id\":\"14888\",\"type\":\"GlyphRenderer\"},{\"id\":\"14892\",\"type\":\"GlyphRenderer\"},{\"id\":\"14896\",\"type\":\"GlyphRenderer\"},{\"id\":\"14900\",\"type\":\"GlyphRenderer\"},{\"id\":\"14904\",\"type\":\"GlyphRenderer\"},{\"id\":\"14908\",\"type\":\"GlyphRenderer\"},{\"id\":\"14912\",\"type\":\"GlyphRenderer\"},{\"id\":\"14916\",\"type\":\"GlyphRenderer\"},{\"id\":\"14920\",\"type\":\"GlyphRenderer\"},{\"id\":\"14924\",\"type\":\"GlyphRenderer\"},{\"id\":\"14928\",\"type\":\"GlyphRenderer\"},{\"id\":\"14932\",\"type\":\"GlyphRenderer\"},{\"id\":\"14936\",\"type\":\"GlyphRenderer\"},{\"id\":\"14940\",\"type\":\"GlyphRenderer\"},{\"id\":\"14944\",\"type\":\"GlyphRenderer\"},{\"id\":\"14948\",\"type\":\"GlyphRenderer\"},{\"id\":\"14952\",\"type\":\"GlyphRenderer\"},{\"id\":\"14956\",\"type\":\"GlyphRenderer\"},{\"id\":\"14960\",\"type\":\"GlyphRenderer\"},{\"id\":\"14964\",\"type\":\"GlyphRenderer\"},{\"id\":\"14968\",\"type\":\"GlyphRenderer\"},{\"id\":\"14972\",\"type\":\"GlyphRenderer\"},{\"id\":\"14976\",\"type\":\"GlyphRenderer\"},{\"id\":\"14980\",\"type\":\"GlyphRenderer\"},{\"id\":\"14984\",\"type\":\"GlyphRenderer\"},{\"id\":\"14988\",\"type\":\"GlyphRenderer\"},{\"id\":\"14992\",\"type\":\"GlyphRenderer\"},{\"id\":\"14996\",\"type\":\"GlyphRenderer\"},{\"id\":\"15000\",\"type\":\"GlyphRenderer\"},{\"id\":\"15004\",\"type\":\"GlyphRenderer\"},{\"id\":\"15008\",\"type\":\"GlyphRenderer\"},{\"id\":\"15012\",\"type\":\"GlyphRenderer\"},{\"id\":\"15016\",\"type\":\"GlyphRenderer\"},{\"id\":\"15020\",\"type\":\"GlyphRenderer\"},{\"id\":\"15024\",\"type\":\"GlyphRenderer\"},{\"id\":\"15028\",\"type\":\"GlyphRenderer\"},{\"id\":\"15032\",\"type\":\"GlyphRenderer\"},{\"id\":\"15457\",\"type\":\"GlyphRenderer\"},{\"id\":\"15461\",\"type\":\"GlyphRenderer\"},{\"id\":\"15465\",\"type\":\"GlyphRenderer\"},{\"id\":\"15469\",\"type\":\"GlyphRenderer\"},{\"id\":\"15473\",\"type\":\"GlyphRenderer\"},{\"id\":\"15477\",\"type\":\"GlyphRenderer\"},{\"id\":\"15481\",\"type\":\"GlyphRenderer\"},{\"id\":\"15485\",\"type\":\"GlyphRenderer\"},{\"id\":\"15489\",\"type\":\"GlyphRenderer\"},{\"id\":\"15493\",\"type\":\"GlyphRenderer\"},{\"id\":\"15497\",\"type\":\"GlyphRenderer\"},{\"id\":\"15501\",\"type\":\"GlyphRenderer\"},{\"id\":\"15505\",\"type\":\"GlyphRenderer\"},{\"id\":\"15509\",\"type\":\"GlyphRenderer\"},{\"id\":\"15513\",\"type\":\"GlyphRenderer\"},{\"id\":\"15517\",\"type\":\"GlyphRenderer\"},{\"id\":\"15521\",\"type\":\"GlyphRenderer\"},{\"id\":\"15525\",\"type\":\"GlyphRenderer\"},{\"id\":\"15529\",\"type\":\"GlyphRenderer\"},{\"id\":\"15533\",\"type\":\"GlyphRenderer\"},{\"id\":\"15537\",\"type\":\"GlyphRenderer\"},{\"id\":\"15541\",\"type\":\"GlyphRenderer\"},{\"id\":\"15545\",\"type\":\"GlyphRenderer\"},{\"id\":\"15549\",\"type\":\"GlyphRenderer\"},{\"id\":\"15553\",\"type\":\"GlyphRenderer\"},{\"id\":\"15557\",\"type\":\"GlyphRenderer\"},{\"id\":\"15561\",\"type\":\"GlyphRenderer\"},{\"id\":\"15565\",\"type\":\"GlyphRenderer\"},{\"id\":\"15569\",\"type\":\"GlyphRenderer\"},{\"id\":\"15573\",\"type\":\"GlyphRenderer\"},{\"id\":\"15577\",\"type\":\"GlyphRenderer\"},{\"id\":\"15581\",\"type\":\"GlyphRenderer\"},{\"id\":\"15585\",\"type\":\"GlyphRenderer\"},{\"id\":\"15589\",\"type\":\"GlyphRenderer\"},{\"id\":\"15593\",\"type\":\"GlyphRenderer\"},{\"id\":\"15597\",\"type\":\"GlyphRenderer\"},{\"id\":\"15601\",\"type\":\"GlyphRenderer\"},{\"id\":\"15605\",\"type\":\"GlyphRenderer\"},{\"id\":\"15609\",\"type\":\"GlyphRenderer\"},{\"id\":\"15613\",\"type\":\"GlyphRenderer\"},{\"id\":\"15617\",\"type\":\"GlyphRenderer\"},{\"id\":\"15621\",\"type\":\"GlyphRenderer\"},{\"id\":\"15625\",\"type\":\"GlyphRenderer\"},{\"id\":\"15629\",\"type\":\"GlyphRenderer\"},{\"id\":\"15633\",\"type\":\"GlyphRenderer\"},{\"id\":\"15637\",\"type\":\"GlyphRenderer\"},{\"id\":\"15641\",\"type\":\"GlyphRenderer\"},{\"id\":\"15645\",\"type\":\"GlyphRenderer\"},{\"id\":\"16090\",\"type\":\"GlyphRenderer\"},{\"id\":\"16094\",\"type\":\"GlyphRenderer\"},{\"id\":\"16098\",\"type\":\"GlyphRenderer\"},{\"id\":\"16102\",\"type\":\"GlyphRenderer\"},{\"id\":\"16106\",\"type\":\"GlyphRenderer\"},{\"id\":\"16110\",\"type\":\"GlyphRenderer\"},{\"id\":\"16114\",\"type\":\"GlyphRenderer\"},{\"id\":\"16118\",\"type\":\"GlyphRenderer\"},{\"id\":\"16122\",\"type\":\"GlyphRenderer\"},{\"id\":\"16126\",\"type\":\"GlyphRenderer\"},{\"id\":\"16130\",\"type\":\"GlyphRenderer\"},{\"id\":\"16134\",\"type\":\"GlyphRenderer\"},{\"id\":\"16138\",\"type\":\"GlyphRenderer\"},{\"id\":\"16142\",\"type\":\"GlyphRenderer\"},{\"id\":\"16146\",\"type\":\"GlyphRenderer\"},{\"id\":\"16150\",\"type\":\"GlyphRenderer\"},{\"id\":\"16154\",\"type\":\"GlyphRenderer\"},{\"id\":\"16158\",\"type\":\"GlyphRenderer\"},{\"id\":\"16162\",\"type\":\"GlyphRenderer\"},{\"id\":\"16166\",\"type\":\"GlyphRenderer\"},{\"id\":\"16170\",\"type\":\"GlyphRenderer\"},{\"id\":\"16174\",\"type\":\"GlyphRenderer\"},{\"id\":\"16178\",\"type\":\"GlyphRenderer\"},{\"id\":\"16182\",\"type\":\"GlyphRenderer\"},{\"id\":\"16186\",\"type\":\"GlyphRenderer\"},{\"id\":\"16190\",\"type\":\"GlyphRenderer\"},{\"id\":\"16194\",\"type\":\"GlyphRenderer\"},{\"id\":\"16198\",\"type\":\"GlyphRenderer\"},{\"id\":\"16202\",\"type\":\"GlyphRenderer\"},{\"id\":\"16206\",\"type\":\"GlyphRenderer\"},{\"id\":\"16210\",\"type\":\"GlyphRenderer\"},{\"id\":\"16214\",\"type\":\"GlyphRenderer\"},{\"id\":\"16218\",\"type\":\"GlyphRenderer\"},{\"id\":\"16222\",\"type\":\"GlyphRenderer\"},{\"id\":\"16226\",\"type\":\"GlyphRenderer\"},{\"id\":\"16230\",\"type\":\"GlyphRenderer\"},{\"id\":\"16234\",\"type\":\"GlyphRenderer\"},{\"id\":\"16238\",\"type\":\"GlyphRenderer\"},{\"id\":\"16242\",\"type\":\"GlyphRenderer\"},{\"id\":\"16246\",\"type\":\"GlyphRenderer\"},{\"id\":\"16250\",\"type\":\"GlyphRenderer\"},{\"id\":\"16254\",\"type\":\"GlyphRenderer\"},{\"id\":\"16258\",\"type\":\"GlyphRenderer\"},{\"id\":\"16262\",\"type\":\"GlyphRenderer\"},{\"id\":\"16266\",\"type\":\"GlyphRenderer\"},{\"id\":\"16270\",\"type\":\"GlyphRenderer\"},{\"id\":\"16274\",\"type\":\"GlyphRenderer\"},{\"id\":\"16278\",\"type\":\"GlyphRenderer\"},{\"id\":\"16743\",\"type\":\"GlyphRenderer\"},{\"id\":\"16747\",\"type\":\"GlyphRenderer\"},{\"id\":\"16751\",\"type\":\"GlyphRenderer\"},{\"id\":\"16755\",\"type\":\"GlyphRenderer\"},{\"id\":\"16759\",\"type\":\"GlyphRenderer\"},{\"id\":\"16763\",\"type\":\"GlyphRenderer\"},{\"id\":\"16767\",\"type\":\"GlyphRenderer\"},{\"id\":\"16771\",\"type\":\"GlyphRenderer\"},{\"id\":\"16775\",\"type\":\"GlyphRenderer\"},{\"id\":\"16779\",\"type\":\"GlyphRenderer\"},{\"id\":\"16783\",\"type\":\"GlyphRenderer\"},{\"id\":\"16787\",\"type\":\"GlyphRenderer\"},{\"id\":\"16791\",\"type\":\"GlyphRenderer\"},{\"id\":\"16795\",\"type\":\"GlyphRenderer\"},{\"id\":\"16799\",\"type\":\"GlyphRenderer\"},{\"id\":\"16803\",\"type\":\"GlyphRenderer\"},{\"id\":\"16807\",\"type\":\"GlyphRenderer\"},{\"id\":\"16811\",\"type\":\"GlyphRenderer\"},{\"id\":\"16815\",\"type\":\"GlyphRenderer\"},{\"id\":\"16819\",\"type\":\"GlyphRenderer\"},{\"id\":\"16823\",\"type\":\"GlyphRenderer\"},{\"id\":\"16827\",\"type\":\"GlyphRenderer\"},{\"id\":\"16831\",\"type\":\"GlyphRenderer\"},{\"id\":\"16835\",\"type\":\"GlyphRenderer\"},{\"id\":\"16839\",\"type\":\"GlyphRenderer\"},{\"id\":\"16843\",\"type\":\"GlyphRenderer\"},{\"id\":\"16847\",\"type\":\"GlyphRenderer\"},{\"id\":\"16851\",\"type\":\"GlyphRenderer\"},{\"id\":\"16855\",\"type\":\"GlyphRenderer\"},{\"id\":\"16859\",\"type\":\"GlyphRenderer\"},{\"id\":\"16863\",\"type\":\"GlyphRenderer\"},{\"id\":\"16867\",\"type\":\"GlyphRenderer\"},{\"id\":\"16871\",\"type\":\"GlyphRenderer\"},{\"id\":\"16875\",\"type\":\"GlyphRenderer\"},{\"id\":\"16879\",\"type\":\"GlyphRenderer\"},{\"id\":\"16883\",\"type\":\"GlyphRenderer\"},{\"id\":\"16887\",\"type\":\"GlyphRenderer\"},{\"id\":\"16891\",\"type\":\"GlyphRenderer\"},{\"id\":\"16895\",\"type\":\"GlyphRenderer\"},{\"id\":\"16899\",\"type\":\"GlyphRenderer\"},{\"id\":\"16903\",\"type\":\"GlyphRenderer\"},{\"id\":\"16907\",\"type\":\"GlyphRenderer\"},{\"id\":\"16911\",\"type\":\"GlyphRenderer\"},{\"id\":\"16915\",\"type\":\"GlyphRenderer\"},{\"id\":\"16919\",\"type\":\"GlyphRenderer\"},{\"id\":\"16923\",\"type\":\"GlyphRenderer\"},{\"id\":\"16927\",\"type\":\"GlyphRenderer\"},{\"id\":\"16931\",\"type\":\"GlyphRenderer\"},{\"id\":\"17416\",\"type\":\"GlyphRenderer\"},{\"id\":\"17420\",\"type\":\"GlyphRenderer\"},{\"id\":\"17424\",\"type\":\"GlyphRenderer\"},{\"id\":\"17428\",\"type\":\"GlyphRenderer\"},{\"id\":\"17432\",\"type\":\"GlyphRenderer\"},{\"id\":\"17436\",\"type\":\"GlyphRenderer\"},{\"id\":\"17440\",\"type\":\"GlyphRenderer\"},{\"id\":\"17444\",\"type\":\"GlyphRenderer\"},{\"id\":\"17448\",\"type\":\"GlyphRenderer\"},{\"id\":\"17452\",\"type\":\"GlyphRenderer\"},{\"id\":\"17456\",\"type\":\"GlyphRenderer\"},{\"id\":\"17460\",\"type\":\"GlyphRenderer\"},{\"id\":\"17464\",\"type\":\"GlyphRenderer\"},{\"id\":\"17468\",\"type\":\"GlyphRenderer\"},{\"id\":\"17472\",\"type\":\"GlyphRenderer\"},{\"id\":\"17476\",\"type\":\"GlyphRenderer\"},{\"id\":\"17480\",\"type\":\"GlyphRenderer\"},{\"id\":\"17484\",\"type\":\"GlyphRenderer\"},{\"id\":\"17488\",\"type\":\"GlyphRenderer\"},{\"id\":\"17492\",\"type\":\"GlyphRenderer\"},{\"id\":\"17496\",\"type\":\"GlyphRenderer\"},{\"id\":\"17500\",\"type\":\"GlyphRenderer\"},{\"id\":\"17504\",\"type\":\"GlyphRenderer\"},{\"id\":\"17508\",\"type\":\"GlyphRenderer\"},{\"id\":\"17512\",\"type\":\"GlyphRenderer\"},{\"id\":\"17516\",\"type\":\"GlyphRenderer\"},{\"id\":\"17520\",\"type\":\"GlyphRenderer\"},{\"id\":\"17524\",\"type\":\"GlyphRenderer\"},{\"id\":\"17528\",\"type\":\"GlyphRenderer\"},{\"id\":\"17532\",\"type\":\"GlyphRenderer\"},{\"id\":\"17536\",\"type\":\"GlyphRenderer\"},{\"id\":\"17540\",\"type\":\"GlyphRenderer\"},{\"id\":\"17544\",\"type\":\"GlyphRenderer\"},{\"id\":\"17548\",\"type\":\"GlyphRenderer\"},{\"id\":\"17552\",\"type\":\"GlyphRenderer\"},{\"id\":\"17556\",\"type\":\"GlyphRenderer\"},{\"id\":\"17560\",\"type\":\"GlyphRenderer\"},{\"id\":\"17564\",\"type\":\"GlyphRenderer\"},{\"id\":\"17568\",\"type\":\"GlyphRenderer\"},{\"id\":\"17572\",\"type\":\"GlyphRenderer\"},{\"id\":\"17576\",\"type\":\"GlyphRenderer\"},{\"id\":\"17580\",\"type\":\"GlyphRenderer\"},{\"id\":\"17584\",\"type\":\"GlyphRenderer\"},{\"id\":\"17588\",\"type\":\"GlyphRenderer\"},{\"id\":\"17592\",\"type\":\"GlyphRenderer\"},{\"id\":\"17596\",\"type\":\"GlyphRenderer\"},{\"id\":\"17600\",\"type\":\"GlyphRenderer\"},{\"id\":\"17604\",\"type\":\"GlyphRenderer\"}],\"right\":[{\"id\":\"14599\",\"type\":\"ColorBar\"}],\"title\":{\"id\":\"14576\",\"type\":\"Title\"},\"toolbar\":{\"id\":\"14571\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"14549\",\"type\":\"Range1d\"},\"x_scale\":{\"id\":\"14553\",\"type\":\"LinearScale\"},\"y_range\":{\"id\":\"14551\",\"type\":\"Range1d\"},\"y_scale\":{\"id\":\"14555\",\"type\":\"LinearScale\"}},\"id\":\"14548\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"text\":\"\",\"text_font_size\":{\"value\":\"15pt\"}},\"id\":\"14576\",\"type\":\"Title\"},{\"attributes\":{\"callback\":null,\"end\":2.381600611195611,\"start\":-2.7324138021809112},\"id\":\"14549\",\"type\":\"Range1d\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"16048\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15913\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15927\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15942\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15922\",\"type\":\"GroupFilter\"},{\"id\":\"15923\",\"type\":\"GroupFilter\"},{\"id\":\"15924\",\"type\":\"GroupFilter\"},{\"id\":\"15925\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15926\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15918\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15915\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15932\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15939\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15935\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16100\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15914\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15922\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15933\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15924\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15912\",\"type\":\"GroupFilter\"},{\"id\":\"15913\",\"type\":\"GroupFilter\"},{\"id\":\"15914\",\"type\":\"GroupFilter\"},{\"id\":\"15915\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15916\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true]},\"id\":\"15930\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15938\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15934\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15925\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15923\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15920\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"15928\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15929\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15917\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15937\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15917\",\"type\":\"GroupFilter\"},{\"id\":\"15918\",\"type\":\"GroupFilter\"},{\"id\":\"15919\",\"type\":\"GroupFilter\"},{\"id\":\"15920\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15921\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15927\",\"type\":\"GroupFilter\"},{\"id\":\"15928\",\"type\":\"GroupFilter\"},{\"id\":\"15929\",\"type\":\"GroupFilter\"},{\"id\":\"15930\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15931\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false]},\"id\":\"15940\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15919\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15937\",\"type\":\"GroupFilter\"},{\"id\":\"15938\",\"type\":\"GroupFilter\"},{\"id\":\"15939\",\"type\":\"GroupFilter\"},{\"id\":\"15940\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15941\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15932\",\"type\":\"GroupFilter\"},{\"id\":\"15933\",\"type\":\"GroupFilter\"},{\"id\":\"15934\",\"type\":\"GroupFilter\"},{\"id\":\"15935\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14545\",\"type\":\"ColumnDataSource\"}},\"id\":\"15936\",\"type\":\"CDSView\"},{\"attributes\":{\"color_mapper\":{\"id\":\"14577\",\"type\":\"LinearColorMapper\"},\"formatter\":{\"id\":\"15035\",\"type\":\"BasicTickFormatter\"},\"label_standoff\":12,\"location\":[0,0],\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"14598\",\"type\":\"BasicTicker\"}},\"id\":\"14599\",\"type\":\"ColorBar\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16745\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16745\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16746\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16509\",\"type\":\"CDSView\"}},\"id\":\"16747\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14911\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14601\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16746\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16742\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14602\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16769\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16770\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16539\",\"type\":\"CDSView\"}},\"id\":\"16771\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14603\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16720\",\"type\":\"GroupFilter\"},{\"id\":\"16721\",\"type\":\"GroupFilter\"},{\"id\":\"16722\",\"type\":\"GroupFilter\"},{\"id\":\"16723\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16724\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16869\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14604\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14601\",\"type\":\"GroupFilter\"},{\"id\":\"14602\",\"type\":\"GroupFilter\"},{\"id\":\"14603\",\"type\":\"GroupFilter\"},{\"id\":\"14604\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14605\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16753\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16754\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16519\",\"type\":\"CDSView\"}},\"id\":\"16755\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14606\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16773\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14607\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16726\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16741\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16742\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16504\",\"type\":\"CDSView\"}},\"id\":\"16743\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14608\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14609\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16722\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14606\",\"type\":\"GroupFilter\"},{\"id\":\"14607\",\"type\":\"GroupFilter\"},{\"id\":\"14608\",\"type\":\"GroupFilter\"},{\"id\":\"14609\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14610\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16731\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14611\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"16723\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14612\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16733\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"16738\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16730\",\"type\":\"GroupFilter\"},{\"id\":\"16731\",\"type\":\"GroupFilter\"},{\"id\":\"16732\",\"type\":\"GroupFilter\"},{\"id\":\"16733\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16734\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14613\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16749\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16754\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14614\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14611\",\"type\":\"GroupFilter\"},{\"id\":\"14612\",\"type\":\"GroupFilter\"},{\"id\":\"14613\",\"type\":\"GroupFilter\"},{\"id\":\"14614\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14615\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14616\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14617\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16735\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14618\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16725\",\"type\":\"GroupFilter\"},{\"id\":\"16726\",\"type\":\"GroupFilter\"},{\"id\":\"16727\",\"type\":\"GroupFilter\"},{\"id\":\"16728\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16729\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14619\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"16736\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"16735\",\"type\":\"GroupFilter\"},{\"id\":\"16736\",\"type\":\"GroupFilter\"},{\"id\":\"16737\",\"type\":\"GroupFilter\"},{\"id\":\"16738\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"}},\"id\":\"16739\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"14616\",\"type\":\"GroupFilter\"},{\"id\":\"14617\",\"type\":\"GroupFilter\"},{\"id\":\"14618\",\"type\":\"GroupFilter\"},{\"id\":\"14619\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14620\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16730\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16753\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14621\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14622\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14623\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16732\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14624\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16750\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14621\",\"type\":\"GroupFilter\"},{\"id\":\"14622\",\"type\":\"GroupFilter\"},{\"id\":\"14623\",\"type\":\"GroupFilter\"},{\"id\":\"14624\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14625\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,true,false,true,false,true,false,false,true,false,false,false]},\"id\":\"16728\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14626\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16727\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16741\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14627\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"16725\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14628\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16749\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16750\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16514\",\"type\":\"CDSView\"}},\"id\":\"16751\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14629\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14626\",\"type\":\"GroupFilter\"},{\"id\":\"14627\",\"type\":\"GroupFilter\"},{\"id\":\"14628\",\"type\":\"GroupFilter\"},{\"id\":\"14629\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14630\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"14631\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"16737\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17418\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17419\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17182\",\"type\":\"CDSView\"}},\"id\":\"17420\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14950\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16878\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17438\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17439\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17207\",\"type\":\"CDSView\"}},\"id\":\"17440\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14951\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16845\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14950\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14951\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14740\",\"type\":\"CDSView\"}},\"id\":\"14952\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17427\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17451\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14998\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14954\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16837\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16842\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17419\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14955\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17426\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14954\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14955\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14745\",\"type\":\"CDSView\"}},\"id\":\"14956\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17426\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17427\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17192\",\"type\":\"CDSView\"}},\"id\":\"17428\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16833\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16834\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16619\",\"type\":\"CDSView\"}},\"id\":\"16835\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"15048\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16841\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14958\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17430\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14959\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16826\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14958\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14959\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14750\",\"type\":\"CDSView\"}},\"id\":\"14960\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16838\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14994\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14995\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14795\",\"type\":\"CDSView\"}},\"id\":\"14996\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16849\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16850\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16639\",\"type\":\"CDSView\"}},\"id\":\"16851\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17431\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16870\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17435\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14962\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17547\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14963\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14962\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14963\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14755\",\"type\":\"CDSView\"}},\"id\":\"14964\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16853\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17423\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14995\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17439\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14966\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16830\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14967\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16837\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16838\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16624\",\"type\":\"CDSView\"}},\"id\":\"16839\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14966\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14967\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14760\",\"type\":\"CDSView\"}},\"id\":\"14968\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16846\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17434\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17434\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17435\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17202\",\"type\":\"CDSView\"}},\"id\":\"17436\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14994\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16854\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16829\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14970\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14971\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16829\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16830\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16614\",\"type\":\"CDSView\"}},\"id\":\"16831\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14970\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14971\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14765\",\"type\":\"CDSView\"}},\"id\":\"14972\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16845\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16846\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16634\",\"type\":\"CDSView\"}},\"id\":\"16847\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16874\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16841\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16842\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16629\",\"type\":\"CDSView\"}},\"id\":\"16843\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"15049\",\"type\":\"Selection\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14974\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16834\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16825\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14975\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17450\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14974\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14975\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14770\",\"type\":\"CDSView\"}},\"id\":\"14976\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16877\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14990\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14991\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14790\",\"type\":\"CDSView\"}},\"id\":\"14992\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17418\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16873\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16874\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16669\",\"type\":\"CDSView\"}},\"id\":\"16875\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17438\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17422\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17423\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17187\",\"type\":\"CDSView\"}},\"id\":\"17424\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14978\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16869\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16870\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16664\",\"type\":\"CDSView\"}},\"id\":\"16871\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16825\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16826\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16609\",\"type\":\"CDSView\"}},\"id\":\"16827\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14979\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17447\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14978\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14979\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14775\",\"type\":\"CDSView\"}},\"id\":\"14980\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16853\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16854\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16644\",\"type\":\"CDSView\"}},\"id\":\"16855\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17422\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17430\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17431\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17197\",\"type\":\"CDSView\"}},\"id\":\"17432\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"end\":5,\"js_property_callbacks\":{\"change:value\":[{\"id\":\"17870\",\"type\":\"CustomJS\"}]},\"start\":1,\"title\":\"Until wallclocktime 895.87. Step no. \",\"value\":5},\"id\":\"17868\",\"type\":\"Slider\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14991\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16873\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17442\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17443\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17212\",\"type\":\"CDSView\"}},\"id\":\"17444\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16833\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17446\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17447\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17217\",\"type\":\"CDSView\"}},\"id\":\"17448\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14982\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16850\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14983\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17446\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14982\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14983\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14780\",\"type\":\"CDSView\"}},\"id\":\"14984\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14546\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"16877\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"16878\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"16674\",\"type\":\"CDSView\"}},\"id\":\"16879\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17546\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17547\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17342\",\"type\":\"CDSView\"}},\"id\":\"17548\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14990\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"16849\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17406\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17398\",\"type\":\"GroupFilter\"},{\"id\":\"17399\",\"type\":\"GroupFilter\"},{\"id\":\"17400\",\"type\":\"GroupFilter\"},{\"id\":\"17401\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17402\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17414\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17386\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17399\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17400\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17393\",\"type\":\"GroupFilter\"},{\"id\":\"17394\",\"type\":\"GroupFilter\"},{\"id\":\"17395\",\"type\":\"GroupFilter\"},{\"id\":\"17396\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17397\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17404\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17405\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17398\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17395\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17408\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17410\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17383\",\"type\":\"GroupFilter\"},{\"id\":\"17384\",\"type\":\"GroupFilter\"},{\"id\":\"17385\",\"type\":\"GroupFilter\"},{\"id\":\"17386\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17387\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17389\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17415\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17401\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17411\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17390\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17403\",\"type\":\"GroupFilter\"},{\"id\":\"17404\",\"type\":\"GroupFilter\"},{\"id\":\"17405\",\"type\":\"GroupFilter\"},{\"id\":\"17406\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17407\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"17414\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"17415\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"17177\",\"type\":\"CDSView\"}},\"id\":\"17416\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17388\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17394\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17388\",\"type\":\"GroupFilter\"},{\"id\":\"17389\",\"type\":\"GroupFilter\"},{\"id\":\"17390\",\"type\":\"GroupFilter\"},{\"id\":\"17391\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17392\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17403\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17391\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"17443\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"17393\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17385\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17408\",\"type\":\"GroupFilter\"},{\"id\":\"17409\",\"type\":\"GroupFilter\"},{\"id\":\"17410\",\"type\":\"GroupFilter\"},{\"id\":\"17411\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17412\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"17409\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17396\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17198\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17183\",\"type\":\"GroupFilter\"},{\"id\":\"17184\",\"type\":\"GroupFilter\"},{\"id\":\"17185\",\"type\":\"GroupFilter\"},{\"id\":\"17186\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17187\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17210\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17186\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17208\",\"type\":\"GroupFilter\"},{\"id\":\"17209\",\"type\":\"GroupFilter\"},{\"id\":\"17210\",\"type\":\"GroupFilter\"},{\"id\":\"17211\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17212\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,false,false,true,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,true,false,true,false,false,false,false,false]},\"id\":\"17206\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17189\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17195\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17193\",\"type\":\"GroupFilter\"},{\"id\":\"17194\",\"type\":\"GroupFilter\"},{\"id\":\"17195\",\"type\":\"GroupFilter\"},{\"id\":\"17196\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17197\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17188\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17190\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17193\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17199\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"17184\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17198\",\"type\":\"GroupFilter\"},{\"id\":\"17199\",\"type\":\"GroupFilter\"},{\"id\":\"17200\",\"type\":\"GroupFilter\"},{\"id\":\"17201\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17202\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"17178\",\"type\":\"GroupFilter\"},{\"id\":\"17179\",\"type\":\"GroupFilter\"},{\"id\":\"17180\",\"type\":\"GroupFilter\"},{\"id\":\"17181\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17182\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17196\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17203\",\"type\":\"GroupFilter\"},{\"id\":\"17204\",\"type\":\"GroupFilter\"},{\"id\":\"17205\",\"type\":\"GroupFilter\"},{\"id\":\"17206\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17207\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17205\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17185\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17201\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17208\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17211\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,true,true,false,true,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false]},\"id\":\"17181\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17194\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17204\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17188\",\"type\":\"GroupFilter\"},{\"id\":\"17189\",\"type\":\"GroupFilter\"},{\"id\":\"17190\",\"type\":\"GroupFilter\"},{\"id\":\"17191\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17192\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17183\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14898\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17200\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17209\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"17203\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17180\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17191\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14863\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14697\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15337\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"17253\",\"type\":\"GroupFilter\"},{\"id\":\"17254\",\"type\":\"GroupFilter\"},{\"id\":\"17255\",\"type\":\"GroupFilter\"},{\"id\":\"17256\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17257\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14862\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14863\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14630\",\"type\":\"CDSView\"}},\"id\":\"14864\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14698\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15339\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15336\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14910\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14699\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17250\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14866\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14696\",\"type\":\"GroupFilter\"},{\"id\":\"14697\",\"type\":\"GroupFilter\"},{\"id\":\"14698\",\"type\":\"GroupFilter\"},{\"id\":\"14699\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14700\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15329\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,false,true,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,false,true,false,true]},\"id\":\"17256\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14867\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14701\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14866\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14867\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14635\",\"type\":\"CDSView\"}},\"id\":\"14868\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"17248\",\"type\":\"GroupFilter\"},{\"id\":\"17249\",\"type\":\"GroupFilter\"},{\"id\":\"17250\",\"type\":\"GroupFilter\"},{\"id\":\"17251\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14547\",\"type\":\"ColumnDataSource\"}},\"id\":\"17252\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14702\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"15045\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14703\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14870\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15330\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14704\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14871\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14701\",\"type\":\"GroupFilter\"},{\"id\":\"14702\",\"type\":\"GroupFilter\"},{\"id\":\"14703\",\"type\":\"GroupFilter\"},{\"id\":\"14704\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14705\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14870\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14871\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14640\",\"type\":\"CDSView\"}},\"id\":\"14872\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15342\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14706\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15319\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14906\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14907\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14685\",\"type\":\"CDSView\"}},\"id\":\"14908\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"15334\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14874\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14707\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15335\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14708\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14875\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14709\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15325\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14874\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14875\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14645\",\"type\":\"CDSView\"}},\"id\":\"14876\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14907\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14706\",\"type\":\"GroupFilter\"},{\"id\":\"14707\",\"type\":\"GroupFilter\"},{\"id\":\"14708\",\"type\":\"GroupFilter\"},{\"id\":\"14709\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14710\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15326\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14878\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14711\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15322\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"17251\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14879\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14712\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"15340\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14878\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14879\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14650\",\"type\":\"CDSView\"}},\"id\":\"14880\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14713\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"15324\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14906\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14714\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14882\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14711\",\"type\":\"GroupFilter\"},{\"id\":\"14712\",\"type\":\"GroupFilter\"},{\"id\":\"14713\",\"type\":\"GroupFilter\"},{\"id\":\"14714\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14715\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15329\",\"type\":\"GroupFilter\"},{\"id\":\"15330\",\"type\":\"GroupFilter\"},{\"id\":\"15331\",\"type\":\"GroupFilter\"},{\"id\":\"15332\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15333\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14883\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14716\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14882\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14883\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14655\",\"type\":\"CDSView\"}},\"id\":\"14884\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"17254\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15010\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15339\",\"type\":\"GroupFilter\"},{\"id\":\"15340\",\"type\":\"GroupFilter\"},{\"id\":\"15341\",\"type\":\"GroupFilter\"},{\"id\":\"15342\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15343\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14717\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15341\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14886\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14718\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15331\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15332\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14887\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14719\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15334\",\"type\":\"GroupFilter\"},{\"id\":\"15335\",\"type\":\"GroupFilter\"},{\"id\":\"15336\",\"type\":\"GroupFilter\"},{\"id\":\"15337\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15338\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"17255\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14886\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14887\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14660\",\"type\":\"CDSView\"}},\"id\":\"14888\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14716\",\"type\":\"GroupFilter\"},{\"id\":\"14717\",\"type\":\"GroupFilter\"},{\"id\":\"14718\",\"type\":\"GroupFilter\"},{\"id\":\"14719\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14720\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14902\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14903\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14680\",\"type\":\"CDSView\"}},\"id\":\"14904\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14721\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"15324\",\"type\":\"GroupFilter\"},{\"id\":\"15325\",\"type\":\"GroupFilter\"},{\"id\":\"15326\",\"type\":\"GroupFilter\"},{\"id\":\"15327\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15328\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15320\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14890\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15321\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14722\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true]},\"id\":\"15317\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14891\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14723\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14890\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14891\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14665\",\"type\":\"CDSView\"}},\"id\":\"14892\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"15314\",\"type\":\"GroupFilter\"},{\"id\":\"15315\",\"type\":\"GroupFilter\"},{\"id\":\"15316\",\"type\":\"GroupFilter\"},{\"id\":\"15317\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15318\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"14724\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14903\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14721\",\"type\":\"GroupFilter\"},{\"id\":\"14722\",\"type\":\"GroupFilter\"},{\"id\":\"14723\",\"type\":\"GroupFilter\"},{\"id\":\"14724\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"}},\"id\":\"14725\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14894\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15319\",\"type\":\"GroupFilter\"},{\"id\":\"15320\",\"type\":\"GroupFilter\"},{\"id\":\"15321\",\"type\":\"GroupFilter\"},{\"id\":\"15322\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"14544\",\"type\":\"ColumnDataSource\"}},\"id\":\"15323\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14726\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14895\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false]},\"id\":\"15327\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"14543\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14894\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14895\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14670\",\"type\":\"CDSView\"}},\"id\":\"14896\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14727\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"17253\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14902\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14728\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"15315\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"14729\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"15316\",\"type\":\"GroupFilter\"}],\"root_ids\":[\"17889\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"75290f88-a0c2-42ce-96cd-331b5cd94b81\",\"roots\":{\"17889\":\"4bd46861-cf33-49cb-a912-a87e4123b09f\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "17889" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.configurator_footprint(use_timeslider=True, num_quantiles=5);" ] }, { "cell_type": "code", - "execution_count": 23, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"18456\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"18456\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '18456' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"18456\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"18456\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"18456\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '18456' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"18456\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"c2174755-313a-4046-8cc5-cf96e2e8ec61\":{\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"18459\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"18563\",\"type\":\"Column\"}]},\"id\":\"18564\",\"type\":\"Row\"},{\"attributes\":{\"filters\":[{\"id\":\"18490\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"}},\"id\":\"18491\",\"type\":\"CDSView\"},{\"attributes\":{\"children\":[{\"id\":\"18550\",\"type\":\"Button\"}],\"width\":50},\"id\":\"18560\",\"type\":\"WidgetBox\"},{\"attributes\":{},\"id\":\"18572\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"18483\",\"type\":\"ResetTool\"},{\"attributes\":{\"overlay\":{\"id\":\"18570\",\"type\":\"BoxAnnotation\"}},\"id\":\"18481\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"18577\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"18574\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAIPvGHkAAAAAU28E2QAAAABTbwTZAAAAAl4jDVkAAAACXiMNWQAAAgPTouWRAAACA9Oi5ZEAAAACKiMVpQAAAAIqIxWlAAACAqzC+akAAAICrML5qQAAAAAhWy21AAAAACFbLbUAAAABHB9BxQAAAAEcH0HFAAABAHrNBdUAAAEAes0F1QAAAQNhkqnZAAABA2GSqdkAAAAAOde96QAAAAA5173pAAAAgLJydgkAAACAsnJ2CQAAAoC30/otAAACgLfT+i0AAAKAt9P6LQAAAoC30/otAAAAgLJydgkAAACAsnJ2CQAAAAA5173pAAAAADnXvekAAAEDYZKp2QAAAQNhkqnZAAABAHrNBdUAAAEAes0F1QAAAAEcH0HFAAAAARwfQcUAAAAAIVsttQAAAAAhWy21AAACAqzC+akAAAICrML5qQAAAAIqIxWlAAAAAiojFaUAAAID06LlkQAAAgPTouWRAAAAAl4jDVkAAAACXiMNWQAAAABTbwTZAAAAAFNvBNkAAAAAg+8YeQA==\",\"dtype\":\"float64\",\"shape\":[50]},\"y\":{\"__ndarray__\":\"A5IGlA5G/kEDkgaUDkb+QQjj/lHVLrRACOP+UdUutEBBygeI1HqsQEHKB4jUeqxAs3g3ORvOUUCzeDc5G85RQJ0PbsVArUpAnQ9uxUCtSkA/QaILwpRDQD9BogvClENAuTXOfPt2MkC5Nc58+3YyQEEZvNYrSR1AQRm81itJHUCjFvgTnwdXQKMW+BOfB1dAM3iuOnlVG0AzeK46eVUbQPGKRc724BdA8YpFzvbgF0C9t/UnPPgTQL239Sc8+BNAvbf1Jzz4E0C9t/UnPPgTQL239Sc8+BNAvbf1Jzz4E0DxikXO9uAXQPGKRc724BdAM3iuOnlVG0AzeK46eVUbQKMW+BOfB1dAoxb4E58HV0BBGbzWK0kdQEEZvNYrSR1AuTXOfPt2MkC5Nc58+3YyQD9BogvClENAP0GiC8KUQ0CdD27FQK1KQJ0PbsVArUpAs3g3ORvOUUCzeDc5G85RQEHKB4jUeqxAQcoHiNR6rEAI4/5R1S60QAjj/lHVLrRAA5IGlA5G/kEDkgaUDkb+QQ==\",\"dtype\":\"float64\",\"shape\":[50]}},\"selected\":{\"id\":\"18573\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"18574\",\"type\":\"UnionRenderers\"}},\"id\":\"18496\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"18495\",\"type\":\"GlyphRenderer\"},{\"id\":\"18499\",\"type\":\"GlyphRenderer\"},{\"id\":\"18506\",\"type\":\"GlyphRenderer\"},{\"id\":\"18510\",\"type\":\"GlyphRenderer\"},{\"id\":\"18517\",\"type\":\"GlyphRenderer\"},{\"id\":\"18521\",\"type\":\"GlyphRenderer\"},{\"id\":\"18528\",\"type\":\"GlyphRenderer\"},{\"id\":\"18532\",\"type\":\"GlyphRenderer\"},{\"id\":\"18539\",\"type\":\"GlyphRenderer\"},{\"id\":\"18543\",\"type\":\"GlyphRenderer\"}],\"tooltips\":[[\"estimated performance\",\"@mean\"],[\"at-time\",\"@time\"]]},\"id\":\"18545\",\"type\":\"HoverTool\"},{\"attributes\":{\"children\":[{\"id\":\"18559\",\"type\":\"WidgetBox\"},{\"id\":\"18562\",\"type\":\"Row\"}]},\"id\":\"18563\",\"type\":\"Column\"},{\"attributes\":{\"children\":[{\"id\":\"18552\",\"type\":\"Button\"}],\"width\":50},\"id\":\"18561\",\"type\":\"WidgetBox\"},{\"attributes\":{},\"id\":\"18580\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"18496\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18497\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18498\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"18500\",\"type\":\"CDSView\"}},\"id\":\"18499\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"18570\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18498\",\"type\":\"Patch\"},{\"attributes\":{\"children\":[{\"id\":\"18560\",\"type\":\"WidgetBox\"},{\"id\":\"18561\",\"type\":\"WidgetBox\"}]},\"id\":\"18562\",\"type\":\"Row\"},{\"attributes\":{},\"id\":\"18480\",\"type\":\"PanTool\"},{\"attributes\":{\"ticker\":null},\"id\":\"18569\",\"type\":\"LogTickFormatter\"},{\"attributes\":{\"dimension\":1,\"ticker\":{\"id\":\"18475\",\"type\":\"BasicTicker\"}},\"id\":\"18478\",\"type\":\"Grid\"},{\"attributes\":{\"label\":{\"value\":\"budget 10000\"},\"renderers\":[{\"id\":\"18539\",\"type\":\"GlyphRenderer\"},{\"id\":\"18543\",\"type\":\"GlyphRenderer\"}]},\"id\":\"18558\",\"type\":\"LegendItem\"},{\"attributes\":{\"data_source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18493\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18494\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"18491\",\"type\":\"CDSView\"}},\"id\":\"18495\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"18578\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"18479\",\"type\":\"SaveTool\"},{\"id\":\"18480\",\"type\":\"PanTool\"},{\"id\":\"18481\",\"type\":\"BoxZoomTool\"},{\"id\":\"18482\",\"type\":\"WheelZoomTool\"},{\"id\":\"18483\",\"type\":\"ResetTool\"},{\"id\":\"18545\",\"type\":\"HoverTool\"}]},\"id\":\"18484\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"18475\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"18567\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"18479\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"18573\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"18482\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"args\":{\"glyph_renderer0\":{\"id\":\"18495\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"18499\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"18506\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"18510\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"18517\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"18521\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"18528\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"18532\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"18539\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"18543\",\"type\":\"GlyphRenderer\"}},\"code\":\"len_labels = 5;glyph_renderers = [[glyph_renderer0,glyph_renderer1],[glyph_renderer2,glyph_renderer3],[glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7],[glyph_renderer8,glyph_renderer9]];\\n for (i = 0; i < len_labels; i++) {\\n if (cb_obj.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"18547\",\"type\":\"CustomJS\"},{\"attributes\":{\"label\":{\"value\":\"budget 370.3703703703703\"},\"renderers\":[{\"id\":\"18506\",\"type\":\"GlyphRenderer\"},{\"id\":\"18510\",\"type\":\"GlyphRenderer\"}]},\"id\":\"18555\",\"type\":\"LegendItem\"},{\"attributes\":{\"label\":{\"value\":\"all budgets\"},\"renderers\":[{\"id\":\"18495\",\"type\":\"GlyphRenderer\"},{\"id\":\"18499\",\"type\":\"GlyphRenderer\"}]},\"id\":\"18554\",\"type\":\"LegendItem\"},{\"attributes\":{},\"id\":\"18582\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18497\",\"type\":\"Patch\"},{\"attributes\":{},\"id\":\"18579\",\"type\":\"Selection\"},{\"attributes\":{\"children\":[{\"id\":\"18548\",\"type\":\"CheckboxButtonGroup\"}],\"width\":100},\"id\":\"18559\",\"type\":\"WidgetBox\"},{\"attributes\":{\"axis_label\":\"estimated cost\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"18567\",\"type\":\"BasicTickFormatter\"},\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"18475\",\"type\":\"BasicTicker\"}},\"id\":\"18474\",\"type\":\"LinearAxis\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18494\",\"type\":\"Line\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AABAHrNBdUAAAEDYZKp2QAAAQNhkqnZAAACg7M0RgUAAAKDszRGBQAAAIDPJCIdAAAAgM8kIh0AAACAzyQiHQAAAIDPJCIdAAACg7M0RgUAAAKDszRGBQAAAQNhkqnZAAABA2GSqdkAAAEAes0F1QA==\",\"dtype\":\"float64\",\"shape\":[14]},\"y\":{\"__ndarray__\":\"oxb4E58HV0CjFvgTnwdXQDN4rjp5VRtAM3iuOnlVG0Acy6lssGcXQBzLqWywZxdAHMupbLBnF0Acy6lssGcXQBzLqWywZxdAHMupbLBnF0AzeK46eVUbQDN4rjp5VRtAoxb4E58HV0CjFvgTnwdXQA==\",\"dtype\":\"float64\",\"shape\":[14]}},\"selected\":{\"id\":\"18579\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"18580\",\"type\":\"UnionRenderers\"}},\"id\":\"18529\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"18576\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 370.3703703703703\"},\"id\":\"18501\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18530\",\"type\":\"Patch\"},{\"attributes\":{},\"id\":\"18571\",\"type\":\"Selection\"},{\"attributes\":{\"data_source\":{\"id\":\"18529\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18530\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18531\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"18533\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18532\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"source\":{\"id\":\"18496\",\"type\":\"ColumnDataSource\"}},\"id\":\"18500\",\"type\":\"CDSView\"},{\"attributes\":{\"source\":{\"id\":\"18529\",\"type\":\"ColumnDataSource\"}},\"id\":\"18533\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18531\",\"type\":\"Patch\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"all budgets\"},\"id\":\"18490\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"18534\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"}},\"id\":\"18535\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"18575\",\"type\":\"Selection\"},{\"attributes\":{\"label\":{\"value\":\"budget 1111.111111111111\"},\"renderers\":[{\"id\":\"18517\",\"type\":\"GlyphRenderer\"},{\"id\":\"18521\",\"type\":\"GlyphRenderer\"}]},\"id\":\"18556\",\"type\":\"LegendItem\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18538\",\"type\":\"Line\"},{\"attributes\":{\"label\":{\"value\":\"budget 3333.333333333333\"},\"renderers\":[{\"id\":\"18528\",\"type\":\"GlyphRenderer\"},{\"id\":\"18532\",\"type\":\"GlyphRenderer\"}]},\"id\":\"18557\",\"type\":\"LegendItem\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 10000\"},\"id\":\"18534\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_color\":\"#1b9e77\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18493\",\"type\":\"Line\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18541\",\"type\":\"Patch\"},{\"attributes\":{},\"id\":\"18581\",\"type\":\"Selection\"},{\"attributes\":{\"line_color\":\"#66a61e\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18537\",\"type\":\"Line\"},{\"attributes\":{\"click_policy\":\"hide\",\"items\":[{\"id\":\"18554\",\"type\":\"LegendItem\"},{\"id\":\"18555\",\"type\":\"LegendItem\"},{\"id\":\"18556\",\"type\":\"LegendItem\"},{\"id\":\"18557\",\"type\":\"LegendItem\"},{\"id\":\"18558\",\"type\":\"LegendItem\"}],\"label_text_font_size\":{\"value\":\"8pt\"},\"location\":\"bottom_left\"},\"id\":\"18553\",\"type\":\"Legend\"},{\"attributes\":{\"callback\":null},\"id\":\"18463\",\"type\":\"DataRange1d\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18542\",\"type\":\"Patch\"},{\"attributes\":{\"axis_label\":\"time (sec)\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"18569\",\"type\":\"LogTickFormatter\"},\"major_label_orientation\":0.75,\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"18470\",\"type\":\"LogTicker\"}},\"id\":\"18469\",\"type\":\"LogAxis\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18520\",\"type\":\"Patch\"},{\"attributes\":{\"source\":{\"id\":\"18507\",\"type\":\"ColumnDataSource\"}},\"id\":\"18511\",\"type\":\"CDSView\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"18548\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"18495\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"18499\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"18506\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"18510\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"18517\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"18521\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"18528\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"18532\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"18539\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"18543\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = []; checkbox.active = labels;len_labels = 5;glyph_renderers = [[glyph_renderer0,glyph_renderer1],[glyph_renderer2,glyph_renderer3],[glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7],[glyph_renderer8,glyph_renderer9]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"18551\",\"type\":\"CustomJS\"},{\"attributes\":{},\"id\":\"18465\",\"type\":\"LogScale\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18509\",\"type\":\"Patch\"},{\"attributes\":{\"callback\":null,\"end\":895.8692276477814,\"start\":7.69431734085083},\"id\":\"18458\",\"type\":\"Range1d\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"18548\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"18495\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"18499\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"18506\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"18510\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"18517\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"18521\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"18528\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"18532\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"18539\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"18543\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = [0, 1, 2, 3, 4]; checkbox.active = labels;len_labels = 5;glyph_renderers = [[glyph_renderer0,glyph_renderer1],[glyph_renderer2,glyph_renderer3],[glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7],[glyph_renderer8,glyph_renderer9]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"18549\",\"type\":\"CustomJS\"},{\"attributes\":{\"data_source\":{\"id\":\"18507\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18508\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18509\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"18511\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18510\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"18512\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"}},\"id\":\"18513\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18516\",\"type\":\"Line\"},{\"attributes\":{\"data_source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18504\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18505\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"18502\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18506\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"18523\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"}},\"id\":\"18524\",\"type\":\"CDSView\"},{\"attributes\":{\"num_minor_ticks\":10},\"id\":\"18470\",\"type\":\"LogTicker\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18505\",\"type\":\"Line\"},{\"attributes\":{\"data_source\":{\"id\":\"18518\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18519\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18520\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"18522\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18521\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAACFbLbUAAAABHB9BxQAAAAEcH0HFAAABA2GInf0AAAEDYYid/QAAAIIjGp4BAAAAgiMangEAAACCIxqeAQAAAIIjGp4BAAABA2GInf0AAAEDYYid/QAAAAEcH0HFAAAAARwfQcUAAAAAIVsttQA==\",\"dtype\":\"float64\",\"shape\":[14]},\"y\":{\"__ndarray__\":\"uTXOfPt2MkC5Nc58+3YyQEEZvNYrSR1AQRm81itJHUDl2AB5+aYVQOXYAHn5phVA5dgAefmmFUDl2AB5+aYVQOXYAHn5phVA5dgAefmmFUBBGbzWK0kdQEEZvNYrSR1AuTXOfPt2MkC5Nc58+3YyQA==\",\"dtype\":\"float64\",\"shape\":[14]}},\"selected\":{\"id\":\"18577\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"18578\",\"type\":\"UnionRenderers\"}},\"id\":\"18518\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAADnXvekAAACAsnJ2CQAAAICycnYJAAACgLfT+i0AAAKAt9P6LQAAAoC30/otAAACgLfT+i0AAACAsnJ2CQAAAICycnYJAAAAADnXvekA=\",\"dtype\":\"float64\",\"shape\":[10]},\"y\":{\"__ndarray__\":\"8YpFzvbgF0DxikXO9uAXQL239Sc8+BNAvbf1Jzz4E0C9t/UnPPgTQL239Sc8+BNAvbf1Jzz4E0C9t/UnPPgTQPGKRc724BdA8YpFzvbgF0A=\",\"dtype\":\"float64\",\"shape\":[10]}},\"selected\":{\"id\":\"18581\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"18582\",\"type\":\"UnionRenderers\"}},\"id\":\"18540\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 1111.111111111111\"},\"id\":\"18512\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18508\",\"type\":\"Patch\"},{\"attributes\":{\"line_color\":\"#7570b3\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18515\",\"type\":\"Line\"},{\"attributes\":{\"data_source\":{\"id\":\"18540\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18541\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18542\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"18544\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18543\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18515\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18516\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"18513\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18517\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"active\":[0],\"callback\":{\"id\":\"18547\",\"type\":\"CustomJS\"},\"labels\":[\"all budgets\",\"budget 370.3703703703703\",\"budget 1111.111111111111\",\"budget 3333.333333333333\",\"budget 10000\"]},\"id\":\"18548\",\"type\":\"CheckboxButtonGroup\"},{\"attributes\":{\"text\":\"Cost over time\",\"text_font_size\":{\"value\":\"15pt\"}},\"id\":\"18460\",\"type\":\"Title\"},{\"attributes\":{\"background_fill_color\":{\"value\":null},\"below\":[{\"id\":\"18469\",\"type\":\"LogAxis\"}],\"border_fill_color\":{\"value\":null},\"center\":[{\"id\":\"18473\",\"type\":\"Grid\"},{\"id\":\"18478\",\"type\":\"Grid\"}],\"left\":[{\"id\":\"18474\",\"type\":\"LinearAxis\"}],\"plot_height\":500,\"plot_width\":700,\"renderers\":[{\"id\":\"18495\",\"type\":\"GlyphRenderer\"},{\"id\":\"18499\",\"type\":\"GlyphRenderer\"},{\"id\":\"18506\",\"type\":\"GlyphRenderer\"},{\"id\":\"18510\",\"type\":\"GlyphRenderer\"},{\"id\":\"18517\",\"type\":\"GlyphRenderer\"},{\"id\":\"18521\",\"type\":\"GlyphRenderer\"},{\"id\":\"18528\",\"type\":\"GlyphRenderer\"},{\"id\":\"18532\",\"type\":\"GlyphRenderer\"},{\"id\":\"18539\",\"type\":\"GlyphRenderer\"},{\"id\":\"18543\",\"type\":\"GlyphRenderer\"}],\"right\":[{\"id\":\"18553\",\"type\":\"Legend\"}],\"title\":{\"id\":\"18460\",\"type\":\"Title\"},\"toolbar\":{\"id\":\"18484\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"18458\",\"type\":\"Range1d\"},\"x_scale\":{\"id\":\"18465\",\"type\":\"LogScale\"},\"y_range\":{\"id\":\"18463\",\"type\":\"DataRange1d\"},\"y_scale\":{\"id\":\"18467\",\"type\":\"LinearScale\"}},\"id\":\"18459\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 3333.333333333333\"},\"id\":\"18523\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":{\"id\":\"18551\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"None\"},\"id\":\"18552\",\"type\":\"Button\"},{\"attributes\":{\"source\":{\"id\":\"18540\",\"type\":\"ColumnDataSource\"}},\"id\":\"18544\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"18519\",\"type\":\"Patch\"},{\"attributes\":{\"data_source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18537\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18538\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"18535\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18539\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAIPvGHkAAAAAU28E2QAAAABTbwTZAAAAAl4jDVkAAAACXiMNWQAAAgPTouWRAAACA9Oi5ZEAAAACKiMVpQAAAAIqIxWlAAACAqzC+akAAAICrML5qQAAAgNaXi2xAAACA1peLbEAAAIDWl4tsQAAAgNaXi2xAAACAqzC+akAAAICrML5qQAAAAIqIxWlAAAAAiojFaUAAAID06LlkQAAAgPTouWRAAAAAl4jDVkAAAACXiMNWQAAAABTbwTZAAAAAFNvBNkAAAAAg+8YeQA==\",\"dtype\":\"float64\",\"shape\":[26]},\"y\":{\"__ndarray__\":\"A5IGlA5G/kEDkgaUDkb+QQjj/lHVLrRACOP+UdUutEBBygeI1HqsQEHKB4jUeqxAs3g3ORvOUUCzeDc5G85RQJ0PbsVArUpAnQ9uxUCtSkA/QaILwpRDQD9BogvClENAP0GiC8KUQ0A/QaILwpRDQD9BogvClENAP0GiC8KUQ0CdD27FQK1KQJ0PbsVArUpAs3g3ORvOUUCzeDc5G85RQEHKB4jUeqxAQcoHiNR6rEAI4/5R1S60QAjj/lHVLrRAA5IGlA5G/kEDkgaUDkb+QQ==\",\"dtype\":\"float64\",\"shape\":[26]}},\"selected\":{\"id\":\"18575\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"18576\",\"type\":\"UnionRenderers\"}},\"id\":\"18507\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"line_color\":\"#e7298a\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18526\",\"type\":\"Line\"},{\"attributes\":{\"filters\":[{\"id\":\"18501\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"}},\"id\":\"18502\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":{\"id\":\"18549\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"All\"},\"id\":\"18550\",\"type\":\"Button\"},{\"attributes\":{},\"id\":\"18467\",\"type\":\"LinearScale\"},{\"attributes\":{\"ticker\":{\"id\":\"18470\",\"type\":\"LogTicker\"}},\"id\":\"18473\",\"type\":\"Grid\"},{\"attributes\":{\"line_color\":\"#d95f02\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18504\",\"type\":\"Line\"},{\"attributes\":{\"callback\":null,\"data\":{\"burn_in\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"l_rate\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"lower\":[8126523712.410647,8126523712.410647,5166.833282404354,5166.833282404354,3645.415100329818,3645.415100329818,71.2204115907396,71.2204115907396,53.35353916048118,53.35353916048118,39.162171797014246,39.162171797014246,18.464774895042613,18.464774895042613,7.3214562942797,7.3214562942797,92.1190843508471,92.1190843508471,6.833470265291953,6.833470265291953,5.96969148921447,5.96969148921447,4.992416977283878,4.992416977283878,4.992416977283878,8126523712.410647,8126523712.410647,5166.833282404354,5166.833282404354,3645.415100329818,3645.415100329818,71.2204115907396,71.2204115907396,53.35353916048118,53.35353916048118,39.162171797014246,39.162171797014246,39.162171797014246,18.464774895042613,18.464774895042613,7.3214562942797,7.3214562942797,5.413061037708961,5.413061037708961,5.413061037708961,92.1190843508471,92.1190843508471,6.833470265291953,6.833470265291953,5.851258943427435,5.851258943427435,5.851258943427435,5.96969148921447,5.96969148921447,4.992416977283878,4.992416977283878,4.992416977283878],\"mdecay\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"mean\":[8126523712.410647,8126523712.410647,5166.833282404354,5166.833282404354,3645.415100329818,3645.415100329818,71.2204115907396,71.2204115907396,53.35353916048118,53.35353916048118,39.162171797014246,39.162171797014246,18.464774895042613,18.464774895042613,7.3214562942797,7.3214562942797,92.1190843508471,92.1190843508471,6.833470265291953,6.833470265291953,5.96969148921447,5.96969148921447,4.992416977283878,4.992416977283878,4.992416977283878,8126523712.410647,8126523712.410647,5166.833282404354,5166.833282404354,3645.415100329818,3645.415100329818,71.2204115907396,71.2204115907396,53.35353916048118,53.35353916048118,39.162171797014246,39.162171797014246,39.162171797014246,18.464774895042613,18.464774895042613,7.3214562942797,7.3214562942797,5.413061037708961,5.413061037708961,5.413061037708961,92.1190843508471,92.1190843508471,6.833470265291953,6.833470265291953,5.851258943427435,5.851258943427435,5.851258943427435,5.96969148921447,5.96969148921447,4.992416977283878,4.992416977283878,4.992416977283878],\"n_units_1\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"n_units_2\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"name\":[\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 370.3703703703703\",\"budget 1111.111111111111\",\"budget 1111.111111111111\",\"budget 1111.111111111111\",\"budget 1111.111111111111\",\"budget 1111.111111111111\",\"budget 1111.111111111111\",\"budget 1111.111111111111\",\"budget 3333.333333333333\",\"budget 3333.333333333333\",\"budget 3333.333333333333\",\"budget 3333.333333333333\",\"budget 3333.333333333333\",\"budget 3333.333333333333\",\"budget 3333.333333333333\",\"budget 10000\",\"budget 10000\",\"budget 10000\",\"budget 10000\",\"budget 10000\"],\"time\":[7.69431734085083,22.757249116897583,22.757249116897583,91.05521178245544,91.05521178245544,165.80968689918518,165.80968689918518,206.17291736602783,206.17291736602783,213.94344115257263,213.94344115257263,238.35425186157227,238.35425186157227,285.00177669525146,285.00177669525146,340.10623002052307,340.10623002052307,362.6496202945709,362.6496202945709,430.96607780456543,430.96607780456543,595.7012560367584,595.7012560367584,895.8692276477814,895.8692276477814,7.69431734085083,22.757249116897583,22.757249116897583,91.05521178245544,91.05521178245544,165.80968689918518,165.80968689918518,206.17291736602783,206.17291736602783,213.94344115257263,213.94344115257263,228.36228489875793,228.36228489875793,238.35425186157227,285.00177669525146,285.00177669525146,498.4616320133209,498.4616320133209,532.9719393253326,532.9719393253326,340.10623002052307,362.6496202945709,362.6496202945709,546.2255489826202,546.2255489826202,737.0982420444489,737.0982420444489,430.96607780456543,595.7012560367584,595.7012560367584,895.8692276477814,895.8692276477814],\"upper\":[8126523712.410647,8126523712.410647,5166.833282404354,5166.833282404354,3645.415100329818,3645.415100329818,71.2204115907396,71.2204115907396,53.35353916048118,53.35353916048118,39.162171797014246,39.162171797014246,18.464774895042613,18.464774895042613,7.3214562942797,7.3214562942797,92.1190843508471,92.1190843508471,6.833470265291953,6.833470265291953,5.96969148921447,5.96969148921447,4.992416977283878,4.992416977283878,4.992416977283878,8126523712.410647,8126523712.410647,5166.833282404354,5166.833282404354,3645.415100329818,3645.415100329818,71.2204115907396,71.2204115907396,53.35353916048118,53.35353916048118,39.162171797014246,39.162171797014246,39.162171797014246,18.464774895042613,18.464774895042613,7.3214562942797,7.3214562942797,5.413061037708961,5.413061037708961,5.413061037708961,92.1190843508471,92.1190843508471,6.833470265291953,6.833470265291953,5.851258943427435,5.851258943427435,5.851258943427435,5.96969148921447,5.96969148921447,4.992416977283878,4.992416977283878,4.992416977283878]},\"selected\":{\"id\":\"18571\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"18572\",\"type\":\"UnionRenderers\"}},\"id\":\"18457\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"source\":{\"id\":\"18518\",\"type\":\"ColumnDataSource\"}},\"id\":\"18522\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"18457\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"18526\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"18527\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"18524\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"18528\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"18527\",\"type\":\"Line\"}],\"root_ids\":[\"18564\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"c2174755-313a-4046-8cc5-cf96e2e8ec61\",\"roots\":{\"18564\":\"a4f5d7d7-4571-41ff-8a30-978065ef774e\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "18564" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.cost_over_time();" ] }, { "cell_type": "code", - "execution_count": 24, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/shuki/Repos/BOHBsCAVE/.ve_BOHBsCAVE/lib/python3.6/site-packages/numpy/core/fromnumeric.py:2389: FutureWarning: Method .ptp is deprecated and will be removed in a future version. Use numpy.ptp instead.\n", - " return ptp(axis=axis, out=out, **kwargs)\n" - ] - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABdwAAAH0CAYAAAAnhe8sAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAPYQAAD2EBqD+naQAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzs3XucjOX/x/HX7LLL5rS0TjmzawkhQlukhJSKUOgblYhKdJbQSemAdCQJCckhvxBFjokSOe86t9aZjXVmD9fvj3tnzOwu5p6dXbt6Px+Peay5Zu5rrlmzc8+87+v+XA5jjEFERERERERERERERDIl4EoPQERERERERERERETkaqDAXURERERERERERETEDxS4i4iIiIiIiIiIiIj4gQJ3ERERERERERERERE/UOAuIiIiIiIiIiIiIuIHCtxFRERERERERERERPxAgbuIiIiIiIiIiIiIiB8ocBcRERERERERERER8QMF7iIiIiIiIiIiIiIifqDAXURERERERERERETEDxS4i4iIiIiIiIiIiIj4gQJ3ERERERERERERERE/UOAuIiIiIiIiIiIiIuIHCtxFRERERERERERERPxAgbuIiIiIiIiIiIiIiB8ocBcRERERERERERER8QMF7iIiIiIiIiIiIiIifqDAXURERERERERERETEDxS4i4iIiIiIiIiIiIj4gQJ3ERERERERERERERE/UOAuIiIiIiIiIiIiIuIHCtxFRERERERERERERPxAgbuIiIiIiIiIiIiIiB8ocBcRERERERERERER8QMF7iIiIiIiIiIiIiIifqDAXURERERERERERETED/Jc6QH816SkpLBv3z4KFiyIw+G40sMRERHxu+TkZLZv306VKlUIDAy80sMRERHxq8TERFasWEGNGjXIk0dfqUVE5OqSkpLCwYMHqVOnjvZzPtJvLZvt27ePsmXLXulhiIiIiIiIiIiIiGTozz//pH79+ld6GLmSAvdsVrBgQQDi4uIoVKjQFR6NiIiI/+3Zs4frr79e+zoREbkqRUdH07BhQ/78809KlSp1pYcjIiLiV/v37+emm26iRIkSV3oouZYC92zmLCNTqFAhhRAiInJVcu7ftK8TEZGrkXPfVqpUKcqUKXOFRyMiIpI1AgK09Kev9JsTEREREREREREREfEDBe4iIiIiIiIiIiIiIn6gwF1ERERERERERERExA8UuIuIiIiIiIiIiIiI+IECdxERERERERERERERP1DgLiIiIiIiIiIiIiLiBwrcrxBjzJUegoiIiIiIiIiIiAgAKSkpDB069EoPI9fLtsB99erVDBkyhLZt21KmTBkcDgcOh8NWH82aNXNtt2fPHlvbdu3a1bVtRpeRI0em2+bIkSOMGTOG7t27U7t2bfLkyYPD4WDcuHG2HjsjDz74IPHx8ZnuR0REcr8zZ84wcOBAIiIiyJcvH6VLl+axxx5j7969tvs6evQozz77LOXLlyc4OJjy5cvTp08fjh07dtFt9uzZw5NPPkm5cuUIDg6mdOnSdO3alV27dmXmaYmIiAD+2c8dO3aMSZMm0bFjRypWrEhQUBAFCxakQYMGjBgxgsTERK/6OX/+PNWrV8fhcJAnTx5fn5KIiMhVJyEhgfvvv5+PPvrIp+39+b12/vz53H333YSFhZE3b16KFStG8+bN+eGHHy66zapVq+jQoQOlS5cmb968FClShFtvvZWxY8dm+8Rnh8mmR7z//vv5v//7v3Tt3j78uHHjePTRR3E4HBhjiIuLo0yZMl4/fteuXRk/fjwtWrSgZMmS6W7v0qULTZs29WibOXMmbdq0SXffsWPH0rVrV68f293x48cpXLgwAGXKlGHy5MnccsstPvUlIiK539mzZ2natCkrV66kVKlS3Hrrrfzzzz/8+eefhIWFsXLlSipVquRVX0eOHKFRo0Zs376dSpUqUa9ePTZt2sSmTZuIiIhgxYoVFC1a1GObjRs30rRpU44cOUKFChWoW7cuO3bsYN26dRQqVIilS5dyww03XPaxY2NjGTBgAMuXLychIYH4+Hjq169Pw4YNadasGc2bNydfvnw+/Y5ERCT38td+7rXXXmPw4ME4HA5q165NREQEhw8fZvny5Zw7d45bbrmFn3/+mZCQkEv28/rrr/Pmm29ijCEwMJCkpKRL3v/UqVNs3bqVmJgYYmJi2LZtG0ePHmXevHm89tpr9OnTh2LFitn6nYiIiOQ0W7Zs4b777mPLli2uNjvZqz+/13700Uf07dsXh8NBo0aNKFu2LHFxcaxYsQJjDK+++iqDBw/22Gb69Ok8+OCDJCcnU7duXapUqcLhw4dZtmwZSUlJdOrUiYkTJ3r/C8ksk02GDBliBgwYYH788Uezf/9+ExwcbLx9+EOHDpmiRYua5s2bm/LlyxvAxMXF2Xr8Ll26GMAsWrTI621+//1306tXL/P111+bDRs2mCeeeMIAZuzYsbYe211CQoIBXJfAwEDzzjvvmOTkZJ/7FBGR3Kt///4GMI0aNTInTpxwtQ8dOtQApkmTJl731blzZwOYtm3bmsTERFf7M888YwDTpUsXj/unpKSYmjVrGsA89thjHtt8/PHHBjDVq1c3SUlJF33M5ORk07FjR+NwODz2bxld8ufPb6pUqWLuu+8+8/7775uYmBivn5uIiORO/trPvfPOO+all14ysbGxHu1bt2415cqVM4Dp16/fJfvYvHmzCQoKMt27d3d9FzPG2h8eOHDALF682HzxxRfm2WefNS1atHB997zUJTg42HTv3t3Ex8fb+8WIiIjkED/++KMpVKiQa99WJPWnnezVX/v7Q4cOmeDgYJM3b16zePFij9uWLFligoODjcPhMDt27HC1JyYmmuLFixvATJw40WObzZs3m6JFixrALFy40Ovnk1nZFrinZSdw79Spk8mXL5/Zvn17tgbuafXo0cNvgfstaT6oNW/e3Bw4cMDnfkVEJPc5d+6cKVy4sAHMmjVr0t1eq1YtA5i//vrrsn3t27fPBAQEmKCgoHT7k7Nnz5qwsDATGBhoDh486GpftmyZAUzRokU9PhQ53XzzzQYwM2fOzPAx//nnH1OqVKnLhhGXugQEBJhixYqZ+vXrm549e5pp06ZlOBYREcl9/Lmfu5RJkyYZwFSoUOGi90lJSTFRUVGmWLFiZuLEiQYwDofDNGzY0BQpUiRT+zLAFC9e3EyePNmkpKRk6rmIiIhkl+TkZPPmm2967M9qgllmM3D35/5+1qxZBjAtWrTI8PZ7773XAGbKlCmutg0bNhjAVK1aNcNtevfubQDz3nvvefV8/CHHL5o6b948Jk2aRP/+/alcufKVHo7f/B8wkAtF9H/55Rdq167NwoULr+CoREQkOznLr1SuXJk6deqku71du3YAzJo167J9zZs3j5SUFG699VZKlCjhcVtwcDCtW7cmOTmZn376ydW+evVqAG688UYKFCiQrk9nqbWMSsJ9++23VKlShf379wPgAB4CVgLRwC5gFjAY6ABEAoEZjDslJYX4+HhWrVrFF198Qbt27ShYsCD58+encuXK3HPPPbz7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\n", - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ - "cave.parallel_coordinates(run='budget_10000');" + "cave.parallel_coordinates(run='budget_1');" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/bohb/configs.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/bohb/configs.json deleted file mode 100644 index 878ee08..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/bohb/configs.json +++ /dev/null @@ -1,3 +0,0 @@ -[[0, 0, 0], {"burn_in": 0.020168911164951543, "l_rate": 7.132250896709421e-05, "mdecay": 0.1590515141746459, "n_units_1": 83, "n_units_2": 57}, {"model_based_pick": false}] -[[0, 0, 1], {"burn_in": 0.44213073623986665, "l_rate": 0.0001683861887471032, "mdecay": 0.4970541633208484, "n_units_1": 241, "n_units_2": 224}, {"model_based_pick": false}] -[[0, 0, 2], {"burn_in": 0.7005031306081873, "l_rate": 1.2137966323520124e-05, "mdecay": 0.020898391794446747, "n_units_1": 221, "n_units_2": 164}, {"model_based_pick": false}] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/bohb/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/bohb/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/bohb/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/bohb/results.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/bohb/results.json deleted file mode 100644 index a331a2e..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/bohb/results.json +++ /dev/null @@ -1,4 +0,0 @@ -[[0, 0, 0], 333.3333333333333, {"submitted": 1556453474.4188616, "started": 1556453474.419506, "finished": 1556453481.6137702}, {"loss": 95414411.10679102, "info": {"function_value": 95414411.10679102, "cost": 7.1828773021698}}, null] -[[0, 0, 1], 333.3333333333333, {"submitted": 1556453481.6190689, "started": 1556453481.619701, "finished": 1556453492.118984}, {"loss": 23043673.394927647, "info": {"function_value": 23043673.394927647, "cost": 10.488747358322144}}, null] -[[0, 0, 2], 333.3333333333333, {"submitted": 1556453492.122976, "started": 1556453492.1236098, "finished": 1556453501.7618592}, {"loss": NaN, "info": {"function_value": NaN, "cost": 9.626276016235352}}, null] -[[0, 0, 1], 1000.0, {"submitted": 1556453501.7659073, "started": 1556453501.7665806, "finished": 1556453519.6029804}, {"loss": 383688.2339534555, "info": {"function_value": 383688.2339534555, "cost": 17.824869871139526}}, null] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/hyperband/configs.json deleted file mode 100644 index c60a980..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/hyperband/configs.json +++ /dev/null @@ -1,3 +0,0 @@ -[[0, 0, 0], {"burn_in": 0.736227503825612, "l_rate": 2.113342867263105e-05, "mdecay": 0.8127638244156333, "n_units_1": 52, "n_units_2": 213}, {}] -[[0, 0, 1], {"burn_in": 0.4766361203743191, "l_rate": 0.004403078815666104, "mdecay": 0.9814528068204328, "n_units_1": 45, "n_units_2": 318}, {}] -[[0, 0, 2], {"burn_in": 0.4872613582263595, "l_rate": 0.0021433532217876657, "mdecay": 0.8088680718410762, "n_units_1": 468, "n_units_2": 23}, {}] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/hyperband/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/hyperband/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/hyperband/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/hyperband/results.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/hyperband/results.json deleted file mode 100644 index e1e4006..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/hyperband/results.json +++ /dev/null @@ -1,4 +0,0 @@ -[[0, 0, 0], 333.3333333333333, {"submitted": 1556453547.7325118, "started": 1556453547.7332506, "finished": 1556453555.3983026}, {"loss": NaN, "info": {"function_value": NaN, "cost": 7.656661748886108}}, null] -[[0, 0, 1], 333.3333333333333, {"submitted": 1556453555.4010687, "started": 1556453555.4016886, "finished": 1556453563.2903898}, {"loss": 73202.04711271578, "info": {"function_value": 73202.04711271578, "cost": 7.876911401748657}}, null] -[[0, 0, 2], 333.3333333333333, {"submitted": 1556453563.2940512, "started": 1556453563.294705, "finished": 1556453571.1946661}, {"loss": 1926166.26089029, "info": {"function_value": 1926166.26089029, "cost": 7.888219118118286}}, null] -[[0, 0, 1], 1000.0, {"submitted": 1556453571.1969137, "started": 1556453571.1975334, "finished": 1556453581.8702674}, {"loss": 2659.042048947347, "info": {"function_value": 2659.042048947347, "cost": 10.660994529724121}}, null] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/randomsearch/configs.json deleted file mode 100644 index 148b985..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/randomsearch/configs.json +++ /dev/null @@ -1,2 +0,0 @@ -[[0, 0, 0], {"burn_in": 0.5097008304908194, "l_rate": 5.105405845195039e-05, "mdecay": 0.9590439801935898, "n_units_1": 482, "n_units_2": 123}, {}] -[[0, 0, 1], {"burn_in": 0.4860934736119618, "l_rate": 0.00032011539830241925, "mdecay": 0.5550032552949724, "n_units_1": 51, "n_units_2": 70}, {}] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/randomsearch/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/randomsearch/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/randomsearch/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/randomsearch/results.json deleted file mode 100644 index 28b857d..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/randomsearch/results.json +++ /dev/null @@ -1,2 +0,0 @@ -[[0, 0, 0], 1000, {"submitted": 1556453519.836012, "started": 1556453519.836674, "finished": 1556453539.5065682}, {"loss": 207214043.50446814, "info": {"function_value": 207214043.50446814, "cost": 19.658586263656616}}, null] -[[0, 0, 1], 1000, {"submitted": 1556453539.509608, "started": 1556453539.5102413, "finished": 1556453547.4989924}, {"loss": 1081102.8535786346, "info": {"function_value": 1081102.8535786346, "cost": 7.979023456573486}}, null] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/configspace.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/configspace.json deleted file mode 100644 index 2603ccd..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/configspace.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "hyperparameters": [ - { - "name": "burn_in", - "type": "uniform_float", - "log": false, - "lower": 0.0, - "upper": 0.8, - "default": 0.3 - }, - { - "name": "l_rate", - "type": "uniform_float", - "log": true, - "lower": 1e-06, - "upper": 0.1, - "default": 0.01 - }, - { - "name": "mdecay", - "type": "uniform_float", - "log": false, - "lower": 0.0, - "upper": 1.0, - "default": 0.05 - }, - { - "name": "n_units_1", - "type": "uniform_int", - "log": true, - "lower": 16, - "upper": 512, - "default": 64 - }, - { - "name": "n_units_2", - "type": "uniform_int", - "log": true, - "lower": 16, - "upper": 512, - "default": 64 - } - ], - "conditions": [], - "forbiddens": [], - "python_module_version": "0.4.10", - "json_format_version": 0.1 -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/runhistory.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/runhistory.json deleted file mode 100644 index d3f2e45..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/runhistory.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "data": [ - [ - [ - 1, - null, - 0 - ], - [ - 12108288955.957333, - 12.57517123222351, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 2, - null, - 0 - ], - [ - 363885.3611315649, - 11.8921058177948, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ] - ], - "config_origins": { - "1": "Random initial design.", - "2": "Random Search (sorted)" - }, - "configs": { - "1": { - "burn_in": 0.07730534357146715, - "l_rate": 6.453051762935362e-06, - "mdecay": 0.1616662331612666, - "n_units_1": 27, - "n_units_2": 50 - }, - "2": { - "burn_in": 0.2361966720884846, - "l_rate": 0.0007815983605891415, - "mdecay": 0.9652106890748028, - "n_units_1": 21, - "n_units_2": 208 - } - } -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/stats.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/stats.json deleted file mode 100644 index eafe77c..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/stats.json +++ /dev/null @@ -1 +0,0 @@ -{"ta_runs": 2, "n_configs": 2, "wallclock_time_used": 25.00510311126709, "ta_time_used": 24.46727705001831, "inc_changed": 2, "_n_configs_per_intensify": 0, "_n_calls_of_intensify": 0, "_ema_n_configs_per_intensifiy": 0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/traj_aclib2.json deleted file mode 100644 index 321eb7a..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/traj_aclib2.json +++ /dev/null @@ -1,3 +0,0 @@ -{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 0.00034046173095703125, "evaluations": 0, "cost": 2147483648, "incumbent": ["burn_in='0.07730534357146715'", "l_rate='6.453051762935362e-06'", "mdecay='0.1616662331612666'", "n_units_1='27'", "n_units_2='50'"], "origin": "Random initial design."} -{"cpu_time": 12.57517123222351, "total_cpu_time": null, "wallclock_time": 12.61007571220398, "evaluations": 1, "cost": 12108288955.957333, "incumbent": ["burn_in='0.07730534357146715'", "l_rate='6.453051762935362e-06'", "mdecay='0.1616662331612666'", "n_units_1='27'", "n_units_2='50'"], "origin": "Random initial design."} -{"cpu_time": 24.46727705001831, "total_cpu_time": null, "wallclock_time": 24.98080062866211, "evaluations": 2, "cost": 363885.3611315649, "incumbent": ["burn_in='0.2361966720884846'", "l_rate='0.0007815983605891415'", "mdecay='0.9652106890748028'", "n_units_1='21'", "n_units_2='208'"], "origin": "Random Search (sorted)"} diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/traj_old.csv b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/traj_old.csv deleted file mode 100644 index f1d4177..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/traj_old.csv +++ /dev/null @@ -1,4 +0,0 @@ -"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." -0.000000, 2147483648.000000, 0.000340, 1, 0.000340, burn_in='0.07730534357146715', l_rate='6.453051762935362e-06', mdecay='0.1616662331612666', n_units_1='27', n_units_2='50' -12.575171, 12108288955.957333, 12.610076, 1, 0.034904, burn_in='0.07730534357146715', l_rate='6.453051762935362e-06', mdecay='0.1616662331612666', n_units_1='27', n_units_2='50' -24.467277, 363885.361132, 24.980801, 2, 0.513524, burn_in='0.2361966720884846', l_rate='0.0007815983605891415', mdecay='0.9652106890748028', n_units_1='21', n_units_2='208' diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/bohb/configs.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/bohb/configs.json deleted file mode 100644 index 5b617c0..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/bohb/configs.json +++ /dev/null @@ -1,3 +0,0 @@ -[[0, 0, 0], {"burn_in": 0.11895609910449051, "l_rate": 0.0012621364575179446, "mdecay": 0.6255911352983117, "n_units_1": 21, "n_units_2": 18}, {"model_based_pick": false}] -[[0, 0, 1], {"burn_in": 0.7564717282792668, "l_rate": 8.406075834446596e-06, "mdecay": 0.3878122066818316, "n_units_1": 360, "n_units_2": 292}, {"model_based_pick": false}] -[[0, 0, 2], {"burn_in": 0.6015983858367551, "l_rate": 1.0477245517407491e-06, "mdecay": 0.5541500390627048, "n_units_1": 25, "n_units_2": 272}, {"model_based_pick": false}] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/bohb/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/bohb/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/bohb/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/bohb/results.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/bohb/results.json deleted file mode 100644 index 0778d30..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/bohb/results.json +++ /dev/null @@ -1,4 +0,0 @@ -[[0, 0, 0], 333.3333333333333, {"submitted": 1556453582.7789817, "started": 1556453582.7798588, "finished": 1556453591.1555967}, {"loss": 5272194.725976925, "info": {"function_value": 5272194.725976925, "cost": 8.370814800262451}}, null] -[[0, 0, 1], 333.3333333333333, {"submitted": 1556453591.1589484, "started": 1556453591.1595201, "finished": 1556453607.7159328}, {"loss": NaN, "info": {"function_value": NaN, "cost": 16.548182010650635}}, null] -[[0, 0, 2], 333.3333333333333, {"submitted": 1556453607.7192967, "started": 1556453607.719883, "finished": 1556453617.502631}, {"loss": 1.2348130758505466e+16, "info": {"function_value": 1.2348130758505466e+16, "cost": 9.77737021446228}}, null] -[[0, 0, 0], 1000.0, {"submitted": 1556453617.5048838, "started": 1556453617.5054667, "finished": 1556453626.9659374}, {"loss": 369264.3536722205, "info": {"function_value": 369264.3536722205, "cost": 9.45181679725647}}, null] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/hyperband/HPB_run_0_pyro.pkl b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/hyperband/HPB_run_0_pyro.pkl deleted file mode 100644 index 0101079..0000000 Binary files a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/hyperband/HPB_run_0_pyro.pkl and /dev/null differ diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/hyperband/configs.json deleted file mode 100644 index 191a9e0..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/hyperband/configs.json +++ /dev/null @@ -1,3 +0,0 @@ -[[0, 0, 0], {"burn_in": 0.5655651805591202, "l_rate": 0.0036194418103026693, "mdecay": 0.895819110819418, "n_units_1": 299, "n_units_2": 16}, {}] -[[0, 0, 1], {"burn_in": 0.11506171334432738, "l_rate": 0.0015622681632850865, "mdecay": 0.5848779882262122, "n_units_1": 16, "n_units_2": 18}, {}] -[[0, 0, 2], {"burn_in": 0.3032773390054258, "l_rate": 9.460006124759109e-06, "mdecay": 0.16575230754028114, "n_units_1": 505, "n_units_2": 31}, {}] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/hyperband/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/hyperband/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/hyperband/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/hyperband/results.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/hyperband/results.json deleted file mode 100644 index cdf1c0b..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/hyperband/results.json +++ /dev/null @@ -1,4 +0,0 @@ -[[0, 0, 0], 333.3333333333333, {"submitted": 1556453661.3982754, "started": 1556453661.399149, "finished": 1556453671.4784374}, {"loss": 4718502.848513162, "info": {"function_value": 4718502.848513162, "cost": 10.072045803070068}}, null] -[[0, 0, 1], 333.3333333333333, {"submitted": 1556453671.480846, "started": 1556453671.4814599, "finished": 1556453679.9797187}, {"loss": 672640.5519018316, "info": {"function_value": 672640.5519018316, "cost": 8.49052906036377}}, null] -[[0, 0, 2], 333.3333333333333, {"submitted": 1556453679.982271, "started": 1556453679.9830306, "finished": 1556453691.6361644}, {"loss": 4402675194788.124, "info": {"function_value": 4402675194788.124, "cost": 11.644686222076416}}, null] -[[0, 0, 1], 1000.0, {"submitted": 1556453691.6382828, "started": 1556453691.6391358, "finished": 1556453700.9302056}, {"loss": 56047.79836117016, "info": {"function_value": 56047.79836117016, "cost": 9.28313946723938}}, null] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/randomsearch/configs.json deleted file mode 100644 index f519c70..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/randomsearch/configs.json +++ /dev/null @@ -1,2 +0,0 @@ -[[0, 0, 0], {"burn_in": 0.7826269676544835, "l_rate": 0.001435517004831512, "mdecay": 0.0721022644724848, "n_units_1": 51, "n_units_2": 174}, {}] -[[0, 0, 1], {"burn_in": 0.2974739265360264, "l_rate": 0.02172182608072676, "mdecay": 0.4106585827652022, "n_units_1": 461, "n_units_2": 61}, {}] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/randomsearch/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/randomsearch/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/randomsearch/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/randomsearch/results.json deleted file mode 100644 index 96d4a74..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/randomsearch/results.json +++ /dev/null @@ -1,2 +0,0 @@ -[[0, 0, 0], 1000, {"submitted": 1556453627.8613157, "started": 1556453627.8620806, "finished": 1556453639.4028065}, {"loss": 19670046.795678582, "info": {"function_value": 19670046.795678582, "cost": 11.536272525787354}}, null] -[[0, 0, 1], 1000, {"submitted": 1556453639.4052353, "started": 1556453639.4058053, "finished": 1556453660.5042295}, {"loss": 10.264865580625292, "info": {"function_value": 10.264865580625292, "cost": 21.090742111206055}}, null] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/configspace.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/configspace.json deleted file mode 100644 index 2603ccd..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/configspace.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "hyperparameters": [ - { - "name": "burn_in", - "type": "uniform_float", - "log": false, - "lower": 0.0, - "upper": 0.8, - "default": 0.3 - }, - { - "name": "l_rate", - "type": "uniform_float", - "log": true, - "lower": 1e-06, - "upper": 0.1, - "default": 0.01 - }, - { - "name": "mdecay", - "type": "uniform_float", - "log": false, - "lower": 0.0, - "upper": 1.0, - "default": 0.05 - }, - { - "name": "n_units_1", - "type": "uniform_int", - "log": true, - "lower": 16, - "upper": 512, - "default": 64 - }, - { - "name": "n_units_2", - "type": "uniform_int", - "log": true, - "lower": 16, - "upper": 512, - "default": 64 - } - ], - "conditions": [], - "forbiddens": [], - "python_module_version": "0.4.10", - "json_format_version": 0.1 -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/runhistory.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/runhistory.json deleted file mode 100644 index ce0203f..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/runhistory.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "data": [ - [ - [ - 1, - null, - 0 - ], - [ - 2542253.717178461, - 25.30118989944458, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 2, - null, - 0 - ], - [ - 1155730007821.2078, - 16.502408027648926, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ] - ], - "config_origins": { - "1": "Random initial design.", - "2": "Random Search" - }, - "configs": { - "1": { - "burn_in": 0.5219030888219071, - "l_rate": 0.0002013234588436348, - "mdecay": 0.6904570102142349, - "n_units_1": 344, - "n_units_2": 39 - }, - "2": { - "burn_in": 0.33955141564157354, - "l_rate": 1.1209242928499935e-06, - "mdecay": 0.5285352619547161, - "n_units_1": 52, - "n_units_2": 91 - } - } -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/stats.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/stats.json deleted file mode 100644 index 09bc3c3..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/stats.json +++ /dev/null @@ -1 +0,0 @@ -{"ta_runs": 2, "n_configs": 2, "wallclock_time_used": 42.72382926940918, "ta_time_used": 41.803597927093506, "inc_changed": 1, "_n_configs_per_intensify": 0, "_n_calls_of_intensify": 0, "_ema_n_configs_per_intensifiy": 0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/traj_aclib2.json deleted file mode 100644 index dcd6d7e..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/traj_aclib2.json +++ /dev/null @@ -1,2 +0,0 @@ -{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 0.00036907196044921875, "evaluations": 0, "cost": 2147483648, "incumbent": ["burn_in='0.5219030888219071'", "l_rate='0.0002013234588436348'", "mdecay='0.6904570102142349'", "n_units_1='344'", "n_units_2='39'"], "origin": "Random initial design."} -{"cpu_time": 25.30118989944458, "total_cpu_time": null, "wallclock_time": 25.369804620742798, "evaluations": 1, "cost": 2542253.717178461, "incumbent": ["burn_in='0.5219030888219071'", "l_rate='0.0002013234588436348'", "mdecay='0.6904570102142349'", "n_units_1='344'", "n_units_2='39'"], "origin": "Random initial design."} diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/traj_old.csv b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/traj_old.csv deleted file mode 100644 index 604e30f..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/traj_old.csv +++ /dev/null @@ -1,3 +0,0 @@ -"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." -0.000000, 2147483648.000000, 0.000369, 1, 0.000369, burn_in='0.5219030888219071', l_rate='0.0002013234588436348', mdecay='0.6904570102142349', n_units_1='344', n_units_2='39' -25.301190, 2542253.717178, 25.369805, 1, 0.068615, burn_in='0.5219030888219071', l_rate='0.0002013234588436348', mdecay='0.6904570102142349', n_units_1='344', n_units_2='39' diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/bohb/configs.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/bohb/configs.json deleted file mode 100644 index b1ed225..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/bohb/configs.json +++ /dev/null @@ -1,4 +0,0 @@ -[[0, 0, 0], {"burn_in": 0.6735386936538554, "l_rate": 0.00014568975467299484, "mdecay": 0.6964194064737661, "n_units_1": 124, "n_units_2": 289}, {"model_based_pick": false}] -[[0, 0, 1], {"burn_in": 0.692386109905649, "l_rate": 2.1356422714555264e-05, "mdecay": 0.6157193408873266, "n_units_1": 75, "n_units_2": 288}, {"model_based_pick": false}] -[[0, 0, 2], {"burn_in": 0.7406153466006189, "l_rate": 0.003221785906851155, "mdecay": 0.33242796956997855, "n_units_1": 438, "n_units_2": 69}, {"model_based_pick": false}] -[[0, 1, 0], {"burn_in": 0.011400273872964651, "l_rate": 2.582082686934922e-05, "mdecay": 0.9092784640114897, "n_units_1": 398, "n_units_2": 364}, {"model_based_pick": false}] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/bohb/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/bohb/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/bohb/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/bohb/results.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/bohb/results.json deleted file mode 100644 index 7a428c0..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/bohb/results.json +++ /dev/null @@ -1,4 +0,0 @@ -[[0, 0, 0], 333.3333333333333, {"submitted": 1556459067.8340747, "started": 1556459067.8381813, "finished": 1556459086.7028923}, {"loss": NaN, "info": {"function_value": NaN, "cost": 18.8304283618927}}, null] -[[0, 0, 1], 333.3333333333333, {"submitted": 1556459086.720635, "started": 1556459086.7254136, "finished": 1556459101.4217832}, {"loss": NaN, "info": {"function_value": NaN, "cost": 14.660250425338745}}, null] -[[0, 0, 2], 333.3333333333333, {"submitted": 1556459101.4800384, "started": 1556459101.489848, "finished": 1556459114.5818865}, {"loss": NaN, "info": {"function_value": NaN, "cost": 13.037848949432373}}, null] -[[0, 1, 0], 1000.0, {"submitted": 1556459114.6021824, "started": 1556459114.605677, "finished": 1556459160.2210982}, {"loss": 23053914.29055861, "info": {"function_value": 23053914.29055861, "cost": 45.5790581703186}}, null] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/hyperband/HPB_run_0_pyro.pkl b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/hyperband/HPB_run_0_pyro.pkl deleted file mode 100644 index 22773a6..0000000 Binary files a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/hyperband/HPB_run_0_pyro.pkl and /dev/null differ diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/hyperband/configs.json deleted file mode 100644 index e69de29..0000000 diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/hyperband/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/hyperband/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/hyperband/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/hyperband/results.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/hyperband/results.json deleted file mode 100644 index e69de29..0000000 diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/randomsearch/configs.json deleted file mode 100644 index a7c0c40..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/randomsearch/configs.json +++ /dev/null @@ -1,2 +0,0 @@ -[[0, 0, 0], {"burn_in": 0.404088404358502, "l_rate": 4.029552714910519e-05, "mdecay": 0.18952899682541624, "n_units_1": 226, "n_units_2": 76}, {}] -[[0, 0, 1], {"burn_in": 0.17147447220545714, "l_rate": 7.467518482329436e-05, "mdecay": 0.9903970055286138, "n_units_1": 23, "n_units_2": 31}, {}] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/randomsearch/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/randomsearch/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/randomsearch/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/randomsearch/results.json deleted file mode 100644 index 48cfbbc..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/randomsearch/results.json +++ /dev/null @@ -1,2 +0,0 @@ -[[0, 0, 0], 1000, {"submitted": 1556459160.5593321, "started": 1556459160.56659, "finished": 1556459178.8378327}, {"loss": 4863768.795786699, "info": {"function_value": 4863768.795786699, "cost": 18.239877223968506}}, null] -[[0, 0, 1], 1000, {"submitted": 1556459178.8554738, "started": 1556459178.8592591, "finished": 1556459191.0689545}, {"loss": 877052297.1778479, "info": {"function_value": 877052297.1778479, "cost": 12.178157329559326}}, null] diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/configspace.pcs deleted file mode 100644 index e69de29..0000000 diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/configspace.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/configspace.json deleted file mode 100644 index 2603ccd..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/configspace.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "hyperparameters": [ - { - "name": "burn_in", - "type": "uniform_float", - "log": false, - "lower": 0.0, - "upper": 0.8, - "default": 0.3 - }, - { - "name": "l_rate", - "type": "uniform_float", - "log": true, - "lower": 1e-06, - "upper": 0.1, - "default": 0.01 - }, - { - "name": "mdecay", - "type": "uniform_float", - "log": false, - "lower": 0.0, - "upper": 1.0, - "default": 0.05 - }, - { - "name": "n_units_1", - "type": "uniform_int", - "log": true, - "lower": 16, - "upper": 512, - "default": 64 - }, - { - "name": "n_units_2", - "type": "uniform_int", - "log": true, - "lower": 16, - "upper": 512, - "default": 64 - } - ], - "conditions": [], - "forbiddens": [], - "python_module_version": "0.4.10", - "json_format_version": 0.1 -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/runhistory.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/runhistory.json deleted file mode 100644 index 5d46979..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/runhistory.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "data": [ - [ - [ - 1, - null, - 0 - ], - [ - 2496882506393.466, - 11.876218318939209, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 2, - null, - 0 - ], - [ - 117868.15552340169, - 14.105368852615356, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ] - ], - "config_origins": { - "1": "Random initial design.", - "2": "Random Search" - }, - "configs": { - "1": { - "burn_in": 0.7666481501473212, - "l_rate": 3.1677545232465474e-05, - "mdecay": 0.5775549331810058, - "n_units_1": 49, - "n_units_2": 68 - }, - "2": { - "burn_in": 0.7991188795129806, - "l_rate": 0.003236196367049643, - "mdecay": 0.688434219359513, - "n_units_1": 29, - "n_units_2": 364 - } - } -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/stats.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/stats.json deleted file mode 100644 index facd188..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/stats.json +++ /dev/null @@ -1 +0,0 @@ -{"ta_runs": 2, "n_configs": 2, "wallclock_time_used": 26.546852588653564, "ta_time_used": 25.981587171554565, "inc_changed": 2, "_n_configs_per_intensify": 0, "_n_calls_of_intensify": 0, "_ema_n_configs_per_intensifiy": 0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/traj_aclib2.json deleted file mode 100644 index 934d232..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/traj_aclib2.json +++ /dev/null @@ -1,3 +0,0 @@ -{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 0.000415802001953125, "evaluations": 0, "cost": 2147483648, "incumbent": ["burn_in='0.7666481501473212'", "l_rate='3.1677545232465474e-05'", "mdecay='0.5775549331810058'", "n_units_1='49'", "n_units_2='68'"], "origin": "Random initial design."} -{"cpu_time": 11.876218318939209, "total_cpu_time": null, "wallclock_time": 11.916321277618408, "evaluations": 1, "cost": 2496882506393.466, "incumbent": ["burn_in='0.7666481501473212'", "l_rate='3.1677545232465474e-05'", "mdecay='0.5775549331810058'", "n_units_1='49'", "n_units_2='68'"], "origin": "Random initial design."} -{"cpu_time": 25.981587171554565, "total_cpu_time": null, "wallclock_time": 26.513108491897583, "evaluations": 2, "cost": 117868.15552340169, "incumbent": ["burn_in='0.7991188795129806'", "l_rate='0.003236196367049643'", "mdecay='0.688434219359513'", "n_units_1='29'", "n_units_2='364'"], "origin": "Random Search"} diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/traj_old.csv b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/traj_old.csv deleted file mode 100644 index 0454e24..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/traj_old.csv +++ /dev/null @@ -1,4 +0,0 @@ -"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." -0.000000, 2147483648.000000, 0.000416, 1, 0.000416, burn_in='0.7666481501473212', l_rate='3.1677545232465474e-05', mdecay='0.5775549331810058', n_units_1='49', n_units_2='68' -11.876218, 2496882506393.465820, 11.916321, 1, 0.040103, burn_in='0.7666481501473212', l_rate='3.1677545232465474e-05', mdecay='0.5775549331810058', n_units_1='49', n_units_2='68' -25.981587, 117868.155523, 26.513108, 2, 0.531521, burn_in='0.7991188795129806', l_rate='0.003236196367049643', mdecay='0.688434219359513', n_units_1='29', n_units_2='364' diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/configspace.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/configspace.json deleted file mode 100644 index 2603ccd..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/configspace.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "hyperparameters": [ - { - "name": "burn_in", - "type": "uniform_float", - "log": false, - "lower": 0.0, - "upper": 0.8, - "default": 0.3 - }, - { - "name": "l_rate", - "type": "uniform_float", - "log": true, - "lower": 1e-06, - "upper": 0.1, - "default": 0.01 - }, - { - "name": "mdecay", - "type": "uniform_float", - "log": false, - "lower": 0.0, - "upper": 1.0, - "default": 0.05 - }, - { - "name": "n_units_1", - "type": "uniform_int", - "log": true, - "lower": 16, - "upper": 512, - "default": 64 - }, - { - "name": "n_units_2", - "type": "uniform_int", - "log": true, - "lower": 16, - "upper": 512, - "default": 64 - } - ], - "conditions": [], - "forbiddens": [], - "python_module_version": "0.4.10", - "json_format_version": 0.1 -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/configspace.pcs b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/configspace.pcs deleted file mode 100644 index 5b925e2..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/configspace.pcs +++ /dev/null @@ -1,5 +0,0 @@ -burn_in real [0.0, 0.8] [0.3] -l_rate real [1e-06, 0.1] [0.01]log -mdecay real [0.0, 1.0] [0.05] -n_units_1 integer [16, 512] [64]log -n_units_2 integer [16, 512] [64]log \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/runhistory.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/runhistory.json deleted file mode 100644 index 130945c..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/runhistory.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "data": [ - [ - [ - 1, - null, - 0 - ], - [ - 16985979.765467405, - 18.060906887054443, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 2, - null, - 0 - ], - [ - 417575418990.3108, - 16.90835189819336, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ] - ], - "config_origins": { - "1": "Random initial design.", - "2": "Random Search (sorted)" - }, - "configs": { - "1": { - "burn_in": 0.4640125438939804, - "l_rate": 7.465279055348597e-05, - "mdecay": 0.7258710561569837, - "n_units_1": 193, - "n_units_2": 18 - }, - "2": { - "burn_in": 0.3049252578240008, - "l_rate": 2.4038749125248136e-06, - "mdecay": 0.31659925197853733, - "n_units_1": 17, - "n_units_2": 189 - } - } -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/stats.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/stats.json deleted file mode 100644 index 6f96efb..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/stats.json +++ /dev/null @@ -1 +0,0 @@ -{"ta_runs": 2, "n_configs": 2, "wallclock_time_used": 35.63742017745972, "ta_time_used": 34.9692587852478, "inc_changed": 1, "_n_configs_per_intensify": 0, "_n_calls_of_intensify": 0, "_ema_n_configs_per_intensifiy": 0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/traj_aclib2.json deleted file mode 100644 index d687591..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/traj_aclib2.json +++ /dev/null @@ -1,2 +0,0 @@ -{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 0.0002872943878173828, "evaluations": 0, "cost": 2147483648, "incumbent": ["burn_in='0.4640125438939804'", "l_rate='7.465279055348597e-05'", "mdecay='0.7258710561569837'", "n_units_1='193'", "n_units_2='18'"], "origin": "Random initial design."} -{"cpu_time": 18.060906887054443, "total_cpu_time": null, "wallclock_time": 18.105103492736816, "evaluations": 1, "cost": 16985979.765467405, "incumbent": ["burn_in='0.4640125438939804'", "l_rate='7.465279055348597e-05'", "mdecay='0.7258710561569837'", "n_units_1='193'", "n_units_2='18'"], "origin": "Random initial design."} diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/traj_old.csv b/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/traj_old.csv deleted file mode 100644 index b79d0f0..0000000 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/traj_old.csv +++ /dev/null @@ -1,3 +0,0 @@ -"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." -0.000000, 2147483648.000000, 0.000287, 1, 0.000287, burn_in='0.4640125438939804', l_rate='7.465279055348597e-05', mdecay='0.7258710561569837', n_units_1='193', n_units_2='18' -18.060907, 16985979.765467, 18.105103, 1, 0.044197, burn_in='0.4640125438939804', l_rate='7.465279055348597e-05', mdecay='0.7258710561569837', n_units_1='193', n_units_2='18' diff --git a/examples/icml_2018_experiments/opt_results/cartpole/bohb/configs.json b/examples/icml_2018_experiments/opt_results/cartpole/bohb/configs.json new file mode 100644 index 0000000..194303c --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/cartpole/bohb/configs.json @@ -0,0 +1,24 @@ +[[0, 0, 0], {"batch_size": 36, "discount": 0.8916812456882308, "entropy_regularization": 0.8333838730734889, "learning_rate": 0.041061319295183085, "likelihood_ratio_clipping": 0.8962714523983293, "n_units_1": 13, "n_units_2": 40}, {"model_based_pick": false}] +[[0, 0, 1], {"batch_size": 11, "discount": 0.11354432595752417, "entropy_regularization": 0.6679133339617315, "learning_rate": 2.1037857847796343e-06, "likelihood_ratio_clipping": 0.5996756437749845, "n_units_1": 18, "n_units_2": 90}, {"model_based_pick": false}] +[[0, 0, 2], {"batch_size": 36, "discount": 0.28818716686783097, "entropy_regularization": 0.538487049836446, "learning_rate": 1.676392952198945e-05, "likelihood_ratio_clipping": 0.2280116473073498, "n_units_1": 90, "n_units_2": 13}, {"model_based_pick": false}] +[[0, 0, 3], {"batch_size": 49, "discount": 0.7934592246552205, "entropy_regularization": 0.7356504490485425, "learning_rate": 0.012218210384034738, "likelihood_ratio_clipping": 0.7635987720371932, "n_units_1": 60, "n_units_2": 82}, {"model_based_pick": false}] +[[0, 0, 4], {"batch_size": 45, "discount": 0.3463751808341604, "entropy_regularization": 0.9620686094530994, "learning_rate": 1.8992657690735556e-05, "likelihood_ratio_clipping": 0.36354125482926614, "n_units_1": 11, "n_units_2": 8}, {"model_based_pick": false}] +[[0, 0, 5], {"batch_size": 28, "discount": 0.9745966753836632, "entropy_regularization": 0.7149147110708117, "learning_rate": 0.00015187320587473036, "likelihood_ratio_clipping": 0.8029036653282596, "n_units_1": 30, "n_units_2": 46}, {"model_based_pick": false}] +[[0, 0, 6], {"batch_size": 11, "discount": 0.8853439129339384, "entropy_regularization": 0.586349609692996, "learning_rate": 3.4754945411117523e-07, "likelihood_ratio_clipping": 0.21503030559569491, "n_units_1": 16, "n_units_2": 98}, {"model_based_pick": false}] +[[0, 0, 7], {"batch_size": 249, "discount": 0.25798212956501754, "entropy_regularization": 0.35949946513829567, "learning_rate": 1.2902919165960168e-05, "likelihood_ratio_clipping": 0.515295794785621, "n_units_1": 33, "n_units_2": 85}, {"model_based_pick": false}] +[[0, 0, 8], {"batch_size": 48, "discount": 0.6656730500351282, "entropy_regularization": 0.8512507940699173, "learning_rate": 8.257685944284106e-06, "likelihood_ratio_clipping": 0.19478619111515705, "n_units_1": 128, "n_units_2": 66}, {"model_based_pick": false}] +[[1, 0, 0], {"batch_size": 243, "discount": 0.6162981363582971, "entropy_regularization": 0.4923618395080702, "learning_rate": 0.0031151139766477333, "likelihood_ratio_clipping": 0.9158120957494549, "n_units_1": 16, "n_units_2": 34}, {"model_based_pick": false}] +[[1, 0, 1], {"batch_size": 17, "discount": 0.4907163132515867, "entropy_regularization": 0.27534015480959584, "learning_rate": 0.02673058207080677, "likelihood_ratio_clipping": 0.6736907123047015, "n_units_1": 23, "n_units_2": 23}, {"model_based_pick": false}] +[[1, 0, 2], {"batch_size": 12, "discount": 0.5534941959337827, "entropy_regularization": 0.039391600860108955, "learning_rate": 0.004767110918385153, "likelihood_ratio_clipping": 0.6761741448443384, "n_units_1": 16, "n_units_2": 116}, {"model_based_pick": false}] +[[2, 0, 0], {"batch_size": 62, "discount": 0.05510359142442112, "entropy_regularization": 0.7920279913730677, "learning_rate": 0.00012076323991966452, "likelihood_ratio_clipping": 0.9016644102745044, "n_units_1": 10, "n_units_2": 14}, {"model_based_pick": false}] +[[2, 0, 1], {"batch_size": 20, "discount": 0.43506020513791166, "entropy_regularization": 0.4676927181665348, "learning_rate": 0.010634574968283975, "likelihood_ratio_clipping": 0.08280042641434959, "n_units_1": 11, "n_units_2": 109}, {"model_based_pick": false}] +[[2, 0, 2], {"batch_size": 66, "discount": 0.47405807609482264, "entropy_regularization": 0.5109335827901745, "learning_rate": 5.653041984356199e-07, "likelihood_ratio_clipping": 0.6344447203185445, "n_units_1": 39, "n_units_2": 61}, {"model_based_pick": false}] +[[3, 0, 0], {"batch_size": 222, "discount": 0.8423602531845176, "entropy_regularization": 0.6991393324836218, "learning_rate": 0.05050245788258806, "likelihood_ratio_clipping": 0.8155427422158511, "n_units_1": 115, "n_units_2": 59}, {"model_based_pick": false}] +[[3, 0, 1], {"batch_size": 173, "discount": 0.9813616286276433, "entropy_regularization": 0.16259806792965326, "learning_rate": 0.007096367753568303, "likelihood_ratio_clipping": 0.3137456031918109, "n_units_1": 13, "n_units_2": 12}, {"model_based_pick": false}] +[[3, 0, 2], {"batch_size": 17, "discount": 0.013090460420825512, "entropy_regularization": 0.9252616057228477, "learning_rate": 0.01513784736722664, "likelihood_ratio_clipping": 0.20748744841867817, "n_units_1": 87, "n_units_2": 42}, {"model_based_pick": false}] +[[3, 0, 3], {"batch_size": 17, "discount": 0.8416687390352744, "entropy_regularization": 0.44633752172933805, "learning_rate": 0.008814289204058674, "likelihood_ratio_clipping": 0.8254506594452383, "n_units_1": 48, "n_units_2": 111}, {"model_based_pick": false}] +[[3, 0, 4], {"batch_size": 10, "discount": 0.7484549104052477, "entropy_regularization": 0.3187403050928973, "learning_rate": 1.9434188799820427e-05, "likelihood_ratio_clipping": 0.2929585680774639, "n_units_1": 107, "n_units_2": 29}, {"model_based_pick": false}] +[[3, 0, 5], {"batch_size": 133, "discount": 0.04240799736013312, "entropy_regularization": 0.3858761646834089, "learning_rate": 1.3704807353853354e-05, "likelihood_ratio_clipping": 0.9138211384039877, "n_units_1": 14, "n_units_2": 59}, {"model_based_pick": false}] +[[3, 0, 6], {"batch_size": 125, "discount": 0.4495976019774215, "entropy_regularization": 0.10859231821721782, "learning_rate": 1.750893791828113e-07, "likelihood_ratio_clipping": 0.2933397882632187, "n_units_1": 80, "n_units_2": 23}, {"model_based_pick": false}] +[[3, 0, 7], {"batch_size": 196, "discount": 0.9277234793663525, "entropy_regularization": 0.9968216134523206, "learning_rate": 3.23791275606606e-07, "likelihood_ratio_clipping": 0.030779342033290025, "n_units_1": 64, "n_units_2": 47}, {"model_based_pick": false}] +[[3, 0, 8], {"batch_size": 14, "discount": 0.4614779672580174, "entropy_regularization": 0.20873742335981493, "learning_rate": 2.606800734289951e-06, "likelihood_ratio_clipping": 0.19485218449529262, "n_units_1": 63, "n_units_2": 109}, {"model_based_pick": false}] diff --git a/examples/icml_2018_experiments/opt_results/cartpole/configspace.pcs b/examples/icml_2018_experiments/opt_results/cartpole/bohb/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/cartpole/configspace.pcs rename to examples/icml_2018_experiments/opt_results/cartpole/bohb/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/cartpole/bohb/results.json b/examples/icml_2018_experiments/opt_results/cartpole/bohb/results.json new file mode 100644 index 0000000..cd33e50 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/cartpole/bohb/results.json @@ -0,0 +1,33 @@ +[[0, 0, 0], 1.0, {"submitted": 1557999773.9176476, "started": 1557999773.9183726, "finished": 1557999808.7098336}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 34.78415060043335, "all_runs": [3000]}}, null] +[[0, 0, 2], 1.0, {"submitted": 1557999773.9289, "started": 1557999773.9311728, "finished": 1557999833.009024}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 59.07099366188049, "all_runs": [3000]}}, null] +[[0, 0, 1], 1.0, {"submitted": 1557999773.9239314, "started": 1557999773.9265645, "finished": 1557999833.397596}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 59.465105056762695, "all_runs": [3000]}}, null] +[[0, 0, 4], 1.0, {"submitted": 1557999808.715524, "started": 1557999808.716008, "finished": 1557999869.4172063}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 60.69570350646973, "all_runs": [3000]}}, null] +[[0, 0, 6], 1.0, {"submitted": 1557999833.404224, "started": 1557999833.4047334, "finished": 1557999897.8340604}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 64.42046523094177, "all_runs": [3000]}}, null] +[[0, 0, 7], 1.0, {"submitted": 1557999869.4232075, "started": 1557999869.4237046, "finished": 1557999931.3039896}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 61.87460207939148, "all_runs": [3000]}}, null] +[[0, 0, 8], 1.0, {"submitted": 1557999897.84255, "started": 1557999897.843041, "finished": 1557999959.7644992}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 61.912662506103516, "all_runs": [3000]}}, null] +[[0, 0, 3], 1.0, {"submitted": 1557999773.9332738, "started": 1557999773.9337273, "finished": 1557999971.8763218}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 197.93659019470215, "all_runs": [3000]}}, null] +[[1, 0, 2], 3.0, {"submitted": 1557999971.8833644, "started": 1557999971.8844252, "finished": 1558000083.0109038}, {"loss": 559.6666666666666, "info": {"function_value": 559.6666666666666, "cost": 111.12002420425415, "all_runs": [581, 362, 736]}}, null] +[[0, 0, 5], 1.0, {"submitted": 1557999833.0162084, "started": 1557999833.0171735, "finished": 1558000093.9193776}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 260.89456272125244, "all_runs": [3000]}}, null] +[[1, 0, 1], 3.0, {"submitted": 1557999959.7741294, "started": 1557999959.7751305, "finished": 1558000108.7097168}, {"loss": 1472.6666666666667, "info": {"function_value": 1472.6666666666667, "cost": 148.927184343338, "all_runs": [2536, 485, 1397]}}, null] +[[0, 0, 0], 3.0, {"submitted": 1558000093.924788, "started": 1558000093.9252913, "finished": 1558000267.3730857}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 173.44161105155945, "all_runs": [3000, 3000, 3000]}}, null] +[[0, 0, 1], 3.0, {"submitted": 1558000108.7122314, "started": 1558000108.7126062, "finished": 1558000291.6478913}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 182.92853212356567, "all_runs": [3000, 3000, 3000]}}, null] +[[1, 0, 0], 3.0, {"submitted": 1557999931.309333, "started": 1557999931.3097847, "finished": 1558000357.4803238}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 426.16481757164, "all_runs": [3000, 3000, 3000]}}, null] +[[0, 0, 2], 3.0, {"submitted": 1558000267.3786578, "started": 1558000267.3796966, "finished": 1558000451.1999407}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 183.81379914283752, "all_runs": [3000, 3000, 3000]}}, null] +[[2, 0, 0], 9.0, {"submitted": 1558000083.0179372, "started": 1558000083.018977, "finished": 1558000623.2673147}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 540.2404110431671, "all_runs": [3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000]}}, null] +[[1, 0, 2], 9.0, {"submitted": 1558000357.4837763, "started": 1558000357.4842541, "finished": 1558000748.3985128}, {"loss": 1111.0, "info": {"function_value": 1111.0, "cost": 390.90883326530457, "all_runs": [292, 1287, 3000, 3000, 360, 415, 668, 588, 389]}}, null] +[[3, 0, 0], 1.0, {"submitted": 1558000748.404484, "started": 1558000748.4049816, "finished": 1558000910.0449052}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 161.63407588005066, "all_runs": [3000]}}, null] +[[0, 0, 0], 9.0, {"submitted": 1558000451.2037613, "started": 1558000451.2042584, "finished": 1558001136.5943773}, {"loss": 2603.4444444444443, "info": {"function_value": 2603.4444444444443, "cost": 685.3832936286926, "all_runs": [3000, 1817, 3000, 3000, 3000, 3000, 3000, 3000, 614]}}, null] +[[2, 0, 2], 9.0, {"submitted": 1558000623.2747567, "started": 1558000623.2761054, "finished": 1558001173.894537}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 550.6107516288757, "all_runs": [3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000]}}, null] +[[3, 0, 1], 1.0, {"submitted": 1558000910.051111, "started": 1558000910.0516088, "finished": 1558001210.6670635}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 300.6095838546753, "all_runs": [3000]}}, null] +[[3, 0, 2], 1.0, {"submitted": 1558001136.5999336, "started": 1558001136.6004212, "finished": 1558001239.1948285}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 102.58712863922119, "all_runs": [3000]}}, null] +[[3, 0, 4], 1.0, {"submitted": 1558001210.6729343, "started": 1558001210.673408, "finished": 1558001289.8738708}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 79.1950409412384, "all_runs": [3000]}}, null] +[[3, 0, 5], 1.0, {"submitted": 1558001239.2005727, "started": 1558001239.2009213, "finished": 1558001296.4117646}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 57.204628229141235, "all_runs": [3000]}}, null] +[[3, 0, 6], 1.0, {"submitted": 1558001289.8795333, "started": 1558001289.880014, "finished": 1558001351.4697378}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 61.583789587020874, "all_runs": [3000]}}, null] +[[3, 0, 7], 1.0, {"submitted": 1558001296.4172087, "started": 1558001296.417698, "finished": 1558001354.8785446}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 58.44518208503723, "all_runs": [3000]}}, null] +[[3, 0, 8], 1.0, {"submitted": 1558001351.4761384, "started": 1558001351.4766495, "finished": 1558001413.500286}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 62.01855492591858, "all_runs": [3000]}}, null] +[[3, 0, 3], 1.0, {"submitted": 1558001173.902361, "started": 1558001173.9029307, "finished": 1558001425.6600337}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 251.75157403945923, "all_runs": [3000]}}, null] +[[3, 0, 2], 3.0, {"submitted": 1558001425.6665852, "started": 1558001425.6670012, "finished": 1558001601.1463916}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 175.4748237133026, "all_runs": [3000, 3000, 3000]}}, null] +[[3, 0, 0], 3.0, {"submitted": 1558001425.6637099, "started": 1558001425.6642425, "finished": 1558001794.727581}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 369.057932138443, "all_runs": [3000, 3000, 3000]}}, null] +[[3, 0, 1], 3.0, {"submitted": 1558001425.6650012, "started": 1558001425.6654487, "finished": 1558002290.7350879}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 865.0639846324921, "all_runs": [3000, 3000, 3000]}}, null] +[[2, 0, 1], 9.0, {"submitted": 1558000291.6569328, "started": 1558000291.657891, "finished": 1558002312.5897393}, {"loss": 2588.5555555555557, "info": {"function_value": 2588.5555555555557, "cost": 2020.9245464801788, "all_runs": [2123, 2885, 3000, 3000, 3000, 1595, 2858, 1836, 3000]}}, null] +[[3, 0, 0], 9.0, {"submitted": 1558002290.7385688, "started": 1558002290.7389574, "finished": 1558003080.9910111}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 790.2470045089722, "all_runs": [3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000]}}, null] diff --git a/examples/icml_2018_experiments/opt_results/cartpole/configs.json b/examples/icml_2018_experiments/opt_results/cartpole/configs.json deleted file mode 100644 index 198a681..0000000 --- a/examples/icml_2018_experiments/opt_results/cartpole/configs.json +++ /dev/null @@ -1,11 +0,0 @@ -[[0, 0, 0], {"batch_size": 14, "discount": 0.9074748755237666, "entropy_regularization": 0.25354799250829685, "learning_rate": 0.00029042469197608836, "likelihood_ratio_clipping": 0.7296343323853594, "n_units_1": 65, "n_units_2": 33}, {"model_based_pick": false}] -[[0, 0, 1], {"batch_size": 120, "discount": 0.6138916696397549, "entropy_regularization": 0.31138663547400325, "learning_rate": 1.037946063973484e-05, "likelihood_ratio_clipping": 0.10428084185237874, "n_units_1": 27, "n_units_2": 18}, {"model_based_pick": false}] -[[0, 0, 2], {"batch_size": 149, "discount": 0.048619764218913564, "entropy_regularization": 0.06689331691892886, "learning_rate": 2.9826138878110668e-06, "likelihood_ratio_clipping": 0.477895283559964, "n_units_1": 77, "n_units_2": 8}, {"model_based_pick": false}] -[[0, 0, 3], {"batch_size": 193, "discount": 0.17674820149368675, "entropy_regularization": 0.09628523709326486, "learning_rate": 3.404523241502047e-06, "likelihood_ratio_clipping": 0.8925075559462429, "n_units_1": 9, "n_units_2": 49}, {"model_based_pick": false}] -[[0, 0, 4], {"batch_size": 74, "discount": 0.793140341664948, "entropy_regularization": 0.8477402392060447, "learning_rate": 2.7873290585747264e-07, "likelihood_ratio_clipping": 0.9433597250009584, "n_units_1": 18, "n_units_2": 12}, {"model_based_pick": false}] -[[0, 0, 5], {"batch_size": 12, "discount": 0.5723396218771001, "entropy_regularization": 0.0872077020799451, "learning_rate": 0.001537401163482402, "likelihood_ratio_clipping": 0.012307282920949403, "n_units_1": 13, "n_units_2": 8}, {"model_based_pick": false}] -[[0, 0, 6], {"batch_size": 14, "discount": 0.7329849856184596, "entropy_regularization": 0.18068595591565617, "learning_rate": 4.953968646940134e-05, "likelihood_ratio_clipping": 0.6070602464417804, "n_units_1": 37, "n_units_2": 16}, {"model_based_pick": false}] -[[0, 0, 7], {"batch_size": 27, "discount": 0.6931052105055558, "entropy_regularization": 0.6052641126465805, "learning_rate": 0.009995429538136301, "likelihood_ratio_clipping": 0.29427973046235867, "n_units_1": 58, "n_units_2": 49}, {"model_based_pick": false}] -[[0, 0, 8], {"batch_size": 19, "discount": 0.24794871259499773, "entropy_regularization": 0.7448008723047101, "learning_rate": 3.257030416036178e-07, "likelihood_ratio_clipping": 0.13772832717839045, "n_units_1": 16, "n_units_2": 101}, {"model_based_pick": false}] -[[1, 0, 0], {"batch_size": 56, "discount": 0.45213372219833203, "entropy_regularization": 0.39362720296418885, "learning_rate": 8.27831544889367e-07, "likelihood_ratio_clipping": 0.7460025368095957, "n_units_1": 76, "n_units_2": 66}, {"model_based_pick": false}] -[[1, 0, 1], {"batch_size": 67, "discount": 0.35753382297033176, "entropy_regularization": 0.33885413634607464, "learning_rate": 0.016391177364547906, "likelihood_ratio_clipping": 0.5164943491139113, "n_units_1": 11, "n_units_2": 113}, {"model_based_pick": false}] diff --git a/examples/icml_2018_experiments/opt_results/cartpole/results.json b/examples/icml_2018_experiments/opt_results/cartpole/results.json deleted file mode 100644 index 375e6f8..0000000 --- a/examples/icml_2018_experiments/opt_results/cartpole/results.json +++ /dev/null @@ -1,14 +0,0 @@ -[[0, 0, 0], 1.0, {"submitted": 1556475401.5771203, "started": 1556475401.5775127, "finished": 1556475552.660031}, {"loss": 1474.0, "info": {"function_value": 1474.0, "cost": 151.07633423805237, "all_runs": [1474]}}, null] -[[0, 0, 1], 1.0, {"submitted": 1556475552.6656623, "started": 1556475552.6660662, "finished": 1556475614.6646633}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 61.991703748703, "all_runs": [3000]}}, null] -[[0, 0, 2], 1.0, {"submitted": 1556475614.6700401, "started": 1556475614.6704407, "finished": 1556475675.7852042}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 61.10818696022034, "all_runs": [3000]}}, null] -[[0, 0, 3], 1.0, {"submitted": 1556475675.7904649, "started": 1556475675.7909136, "finished": 1556475735.8362515}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 60.03895401954651, "all_runs": [3000]}}, null] -[[0, 0, 4], 1.0, {"submitted": 1556475735.8425086, "started": 1556475735.8429127, "finished": 1556475797.4162877}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 61.56663727760315, "all_runs": [3000]}}, null] -[[0, 0, 5], 1.0, {"submitted": 1556475797.4221563, "started": 1556475797.422563, "finished": 1556476082.9848354}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 285.5553033351898, "all_runs": [3000]}}, null] -[[0, 0, 6], 1.0, {"submitted": 1556476082.9904187, "started": 1556476082.990815, "finished": 1556476162.6895978}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 79.6918272972107, "all_runs": [3000]}}, null] -[[0, 0, 7], 1.0, {"submitted": 1556476162.7498834, "started": 1556476162.7503238, "finished": 1556476264.0932097}, {"loss": 1102.0, "info": {"function_value": 1102.0, "cost": 101.33637595176697, "all_runs": [1102]}}, null] -[[0, 0, 8], 1.0, {"submitted": 1556476264.09948, "started": 1556476264.0998929, "finished": 1556476326.8998682}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 62.793140172958374, "all_runs": [3000]}}, null] -[[0, 0, 0], 3.0, {"submitted": 1556476326.9039967, "started": 1556476326.9044373, "finished": 1556476871.74574}, {"loss": 1676.6666666666667, "info": {"function_value": 1676.6666666666667, "cost": 544.8346381187439, "all_runs": [2270, 1744, 1016]}}, null] -[[0, 0, 1], 3.0, {"submitted": 1556476871.7490308, "started": 1556476871.749433, "finished": 1556477057.6119978}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 185.855384349823, "all_runs": [3000, 3000, 3000]}}, null] -[[0, 0, 7], 3.0, {"submitted": 1556477057.6152213, "started": 1556477057.6156647, "finished": 1556477656.9311318}, {"loss": 2221.0, "info": {"function_value": 2221.0, "cost": 599.3086807727814, "all_runs": [663, 3000, 3000]}}, null] -[[0, 0, 0], 9.0, {"submitted": 1556477656.9345636, "started": 1556477656.934963, "finished": 1556479137.7995384}, {"loss": 1533.4444444444443, "info": {"function_value": 1533.4444444444443, "cost": 1480.8580918312073, "all_runs": [936, 2287, 1581, 1734, 1438, 1698, 1725, 1164, 1238]}}, null] -[[1, 0, 0], 3.0, {"submitted": 1556479137.8051965, "started": 1556479137.8056412, "finished": 1556479327.7310317}, {"loss": 3000.0, "info": {"function_value": 3000.0, "cost": 189.91866326332092, "all_runs": [3000, 3000, 3000]}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/bohb/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/bohb/configs.json deleted file mode 100644 index 78a225d..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/bohb/configs.json +++ /dev/null @@ -1,46 +0,0 @@ -[[0, 0, 0], {"x0": -3.007202657934218, "x1": 5.574880045280492, "x2": 7.287978261478034, "x3": -2.958253990479103, "x4": 1.4713673007185046, "x5": 0.16152738493443697}, {"model_based_pick": false}] -[[0, 0, 1], {"x0": -5.761828439568589, "x1": 5.881477209183908, "x2": 4.5794762967094265, "x3": -0.6783533511062143, "x4": 2.3514358444689596, "x5": 0.47799471857403203}, {"model_based_pick": false}] -[[0, 0, 2], {"x0": -4.644291014610685, "x1": 3.749809520715599, "x2": 5.133493052030078, "x3": -1.7530352583570386, "x4": 2.54616450074481, "x5": 0.24789879970423406}, {"model_based_pick": false}] -[[0, 0, 3], {"x0": -5.665573780466296, "x1": 3.9289129251103976, "x2": 5.719846496847571, "x3": -2.184758858457873, "x4": 3.687407381666167, "x5": 0.24498249151093138}, {"model_based_pick": false}] -[[0, 0, 4], {"x0": -4.563741826336017, "x1": 5.493472798739118, "x2": 6.200854753663094, "x3": -0.1050744194585378, "x4": 4.210169503349146, "x5": 0.4188683037887711}, {"model_based_pick": false}] -[[0, 0, 5], {"x0": -3.957603394377251, "x1": 6.88847922809035, "x2": 6.396822360771578, "x3": -2.6752501971777662, "x4": 2.3487854421593206, "x5": 0.3414863739473959}, {"model_based_pick": false}] -[[0, 0, 6], {"x0": -2.8224932262652542, "x1": 7.306479671017987, "x2": 4.626787070016509, "x3": -3.3372792938713935, "x4": 2.349491579038282, "x5": 0.20587526594412703}, {"model_based_pick": false}] -[[0, 0, 7], {"x0": -3.765916650631754, "x1": 3.447175758538872, "x2": 7.32985338436528, "x3": -1.1856900820993608, "x4": 2.7856139209380553, "x5": 0.3988550976459333}, {"model_based_pick": false}] -[[0, 0, 8], {"x0": -2.1972121797002884, "x1": 4.170103263557896, "x2": 7.964147103727196, "x3": -0.39076003097292, "x4": 2.1567132414870125, "x5": 0.2672426636421448}, {"model_based_pick": false}] -[[0, 0, 9], {"x0": -5.797905043836481, "x1": 3.7502638132209025, "x2": 4.933949745528168, "x3": -0.2757644204506282, "x4": 4.160966609315833, "x5": 0.21840669033829407}, {"model_based_pick": false}] -[[0, 0, 10], {"x0": -4.048570197368081, "x1": 3.0656116855075055, "x2": 6.264872831800922, "x3": -1.8406628285496192, "x4": 1.8945654162767815, "x5": 0.11831207345615752}, {"model_based_pick": false}] -[[0, 0, 11], {"x0": -2.0973193705030133, "x1": 6.707646674914437, "x2": 6.696334674071908, "x3": -3.0092155559653024, "x4": 2.564965976584379, "x5": 0.49554637382611244}, {"model_based_pick": false}] -[[0, 0, 12], {"x0": -4.7004014335204225, "x1": 5.381506838489348, "x2": 7.551134595392718, "x3": -3.9087934501683463, "x4": 4.090545112707379, "x5": 0.051313474841778395}, {"model_based_pick": false}] -[[0, 0, 13], {"x0": -4.505887515049553, "x1": 3.119806852703447, "x2": 5.27842430745978, "x3": -0.41598295968640375, "x4": 2.378036078040809, "x5": 0.45290202969151633}, {"model_based_pick": false}] -[[0, 0, 14], {"x0": -3.1591278729420442, "x1": 3.908797285026182, "x2": 7.715614421139328, "x3": -3.8840577857983405, "x4": 1.5144856347640787, "x5": 0.012333917749240864}, {"model_based_pick": true}] -[[0, 0, 15], {"x0": -2.8303597702870467, "x1": 6.183072575881077, "x2": 7.000197330527723, "x3": -1.8929066197790316, "x4": 1.5791048277915762, "x5": 0.02288509325412058}, {"model_based_pick": true}] -[[0, 0, 16], {"x0": -2.5406726964740773, "x1": 5.392595430505831, "x2": 7.372547300869116, "x3": -1.5390908298554988, "x4": 1.215581652960183, "x5": 0.09142937834974796}, {"model_based_pick": true}] -[[0, 0, 17], {"x0": -2.910201476429002, "x1": 4.894416088452941, "x2": 7.6849971193842155, "x3": -1.0997423394547572, "x4": 1.2918012769052662, "x5": 0.026500249630787998}, {"model_based_pick": true}] -[[0, 0, 18], {"x0": -3.156782202683721, "x1": 7.756126023578702, "x2": 6.182686022333105, "x3": -1.2505767032020323, "x4": 1.0197038479219147, "x5": 0.02687710306899853}, {"model_based_pick": true}] -[[0, 0, 19], {"x0": -2.7770731149535135, "x1": 6.375904032734905, "x2": 6.480072312761466, "x3": -3.3685856444660356, "x4": 1.6052294046498141, "x5": 0.018547602936529267}, {"model_based_pick": true}] -[[0, 0, 20], {"x0": -2.0087358824635273, "x1": 6.829058525468447, "x2": 4.812961893637212, "x3": -2.6019213136884303, "x4": 1.6826677633570397, "x5": 0.009126201015808522}, {"model_based_pick": false}] -[[0, 0, 21], {"x0": -4.805350385479915, "x1": 4.890906468948361, "x2": 6.5609675705058885, "x3": -3.717478785240175, "x4": 4.187919768392872, "x5": 0.4720958418985993}, {"model_based_pick": false}] -[[0, 0, 22], {"x0": -3.270435774075786, "x1": 7.741678421641618, "x2": 6.97363069222602, "x3": -2.219696894480935, "x4": 1.1124011602872201, "x5": 0.008430361916929533}, {"model_based_pick": true}] -[[0, 0, 23], {"x0": -3.318763666906024, "x1": 7.488849083231207, "x2": 7.691742419628887, "x3": -2.3472046648240337, "x4": 1.4613938682909673, "x5": 0.008504129251983024}, {"model_based_pick": true}] -[[0, 0, 24], {"x0": -4.1296827034172106, "x1": 6.855907622776818, "x2": 7.218542945961152, "x3": -0.23244493789996845, "x4": 1.7720701544254216, "x5": 0.21700914168196606}, {"model_based_pick": false}] -[[0, 0, 25], {"x0": -5.420981498674028, "x1": 5.3000957196806215, "x2": 4.968001087597127, "x3": -1.6774862985800154, "x4": 2.1982827900305235, "x5": 0.1343719580714256}, {"model_based_pick": false}] -[[0, 0, 26], {"x0": -2.81444713892075, "x1": 5.528354657628176, "x2": 6.994648562326192, "x3": -3.639320143921046, "x4": 1.3634129315273507, "x5": 0.17726135319025121}, {"model_based_pick": true}] -[[1, 0, 0], {"x0": -2.730293614423597, "x1": 4.573252930489533, "x2": 7.124845149321762, "x3": -3.8118724939827553, "x4": 1.261791544199216, "x5": 0.23938520298360938}, {"model_based_pick": true}] -[[1, 0, 1], {"x0": -5.972177569462322, "x1": 4.666076737806304, "x2": 6.1574503269951055, "x3": -1.197307916559137, "x4": 2.9261620235232417, "x5": 0.4696259315945264}, {"model_based_pick": false}] -[[1, 0, 2], {"x0": -3.5293434552777123, "x1": 7.623857288241223, "x2": 7.490012834296204, "x3": -2.5382291769530827, "x4": 1.5072939990922498, "x5": 0.03402889661041637}, {"model_based_pick": true}] -[[1, 0, 3], {"x0": -2.823460766105796, "x1": 5.745175307905763, "x2": 7.439591222155874, "x3": -2.7278820489666336, "x4": 1.182368041285013, "x5": 0.2868146339101797}, {"model_based_pick": true}] -[[1, 0, 4], {"x0": -5.360082736333358, "x1": 3.4426677355195787, "x2": 6.554085183546492, "x3": -2.7637382280721168, "x4": 4.068787705724491, "x5": 0.23278186166157505}, {"model_based_pick": false}] -[[1, 0, 5], {"x0": -2.7929619382316586, "x1": 6.235667484674134, "x2": 7.1097036952205315, "x3": -0.15940959858766757, "x4": 1.293136256451214, "x5": 0.12703149151397877}, {"model_based_pick": true}] -[[1, 0, 6], {"x0": -2.892168085765233, "x1": 7.653876749691081, "x2": 7.487215141842952, "x3": -0.1614319183453179, "x4": 1.2497320254018909, "x5": 0.3028952959744604}, {"model_based_pick": true}] -[[1, 0, 7], {"x0": -2.839462834047402, "x1": 4.545943151405406, "x2": 6.6335616942738245, "x3": -3.0847164050475873, "x4": 1.1194296515556625, "x5": 0.4456213095890142}, {"model_based_pick": true}] -[[1, 0, 8], {"x0": -2.843953349667218, "x1": 6.801046089381215, "x2": 7.165476204980688, "x3": -3.9258152299757905, "x4": 1.2674960449985404, "x5": 0.20234115295316285}, {"model_based_pick": true}] -[[2, 0, 0], {"x0": -2.768840331238166, "x1": 7.31946946760252, "x2": 6.9654677046795275, "x3": -0.7016342586158251, "x4": 1.21320271970418, "x5": 0.4007559792199177}, {"model_based_pick": true}] -[[2, 0, 1], {"x0": -2.4974690175271235, "x1": 4.285216187295866, "x2": 6.990898733876472, "x3": -0.6774043499425675, "x4": 1.1715249072568537, "x5": 0.0960709032295698}, {"model_based_pick": true}] -[[2, 0, 2], {"x0": -2.5949823173165942, "x1": 3.51990011219769, "x2": 7.053983065467023, "x3": -3.981107165709268, "x4": 1.4308979398973503, "x5": 0.1241086912782029}, {"model_based_pick": true}] -[[2, 0, 3], {"x0": -2.4266866798518216, "x1": 4.123070641202399, "x2": 7.4572573155716455, "x3": -1.5511156680740865, "x4": 1.350287000530724, "x5": 0.14415400238299558}, {"model_based_pick": true}] -[[2, 0, 4], {"x0": -4.785321694122134, "x1": 3.671937547490022, "x2": 5.728192298430435, "x3": -0.05340145895853654, "x4": 2.8034451137885803, "x5": 0.4178342139105831}, {"model_based_pick": false}] -[[2, 0, 5], {"x0": -2.6373655307107704, "x1": 5.6540903382758785, "x2": 7.471696400760793, "x3": -2.7719005202627445, "x4": 2.3054187263597266, "x5": 0.0027417339637706983}, {"model_based_pick": false}] -[[3, 0, 0], {"x0": -2.453793621568136, "x1": 4.762726591108629, "x2": 7.689192532323589, "x3": -2.2786523923417423, "x4": 1.1539536248938793, "x5": 0.1850283705033141}, {"model_based_pick": true}] -[[3, 0, 1], {"x0": -3.004504020109297, "x1": 6.69576626777744, "x2": 7.868840302785186, "x3": -1.6071631724273363, "x4": 1.2982159443621941, "x5": 0.42877943465142077}, {"model_based_pick": true}] -[[3, 0, 2], {"x0": -2.749717239689805, "x1": 3.842334153485428, "x2": 7.326795690426701, "x3": -3.959882341374019, "x4": 1.5083020102146014, "x5": 0.14004495226882388}, {"model_based_pick": true}] -[[3, 0, 3], {"x0": -2.8215645067504553, "x1": 3.762303657805772, "x2": 7.283688838403511, "x3": -3.757430324740038, "x4": 1.4846131373291125, "x5": 0.18373831190848167}, {"model_based_pick": true}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/bohb/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/bohb/results.json deleted file mode 100644 index 649dd69..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/bohb/results.json +++ /dev/null @@ -1,65 +0,0 @@ -[[0, 0, 0], 9.0, {"submitted": 1557070093.8875203, "started": 1557070093.8876321, "finished": 1557070093.8951972}, {"loss": 0.14737962716155587, "info": {"x0": -3.007202657934218, "x1": 5.574880045280492, "x2": 7.287978261478034, "x3": -2.958253990479103, "x4": 1.4713673007185046, "x5": 0.16152738493443697}}, null] -[[0, 0, 1], 9.0, {"submitted": 1557070093.897069, "started": 1557070093.89717, "finished": 1557070093.9055765}, {"loss": 0.3965555489733815, "info": {"x0": -5.761828439568589, "x1": 5.881477209183908, "x2": 4.5794762967094265, "x3": -0.6783533511062143, "x4": 2.3514358444689596, "x5": 0.47799471857403203}}, null] -[[0, 0, 2], 9.0, {"submitted": 1557070093.907739, "started": 1557070093.9078166, "finished": 1557070093.913313}, {"loss": 0.226166664134711, "info": {"x0": -4.644291014610685, "x1": 3.749809520715599, "x2": 5.133493052030078, "x3": -1.7530352583570386, "x4": 2.54616450074481, "x5": 0.24789879970423406}}, null] -[[0, 0, 3], 9.0, {"submitted": 1557070093.9147134, "started": 1557070093.9147913, "finished": 1557070093.9202788}, {"loss": 0.24674073849563244, "info": {"x0": -5.665573780466296, "x1": 3.9289129251103976, "x2": 5.719846496847571, "x3": -2.184758858457873, "x4": 3.687407381666167, "x5": 0.24498249151093138}}, null] -[[0, 0, 4], 9.0, {"submitted": 1557070093.9220452, "started": 1557070093.9221282, "finished": 1557070093.9286978}, {"loss": 0.17663888692800647, "info": {"x0": -4.563741826336017, "x1": 5.493472798739118, "x2": 6.200854753663094, "x3": -0.1050744194585378, "x4": 4.210169503349146, "x5": 0.4188683037887711}}, null] -[[0, 0, 5], 9.0, {"submitted": 1557070093.930533, "started": 1557070093.9306195, "finished": 1557070093.943899}, {"loss": 0.1602407414405434, "info": {"x0": -3.957603394377251, "x1": 6.88847922809035, "x2": 6.396822360771578, "x3": -2.6752501971777662, "x4": 2.3487854421593206, "x5": 0.3414863739473959}}, null] -[[0, 0, 6], 9.0, {"submitted": 1557070093.9462128, "started": 1557070093.9463098, "finished": 1557070093.9527001}, {"loss": 0.15415509386264065, "info": {"x0": -2.8224932262652542, "x1": 7.306479671017987, "x2": 4.626787070016509, "x3": -3.3372792938713935, "x4": 2.349491579038282, "x5": 0.20587526594412703}}, null] -[[0, 0, 7], 9.0, {"submitted": 1557070093.954444, "started": 1557070093.9545324, "finished": 1557070093.960778}, {"loss": 0.1612685170195721, "info": {"x0": -3.765916650631754, "x1": 3.447175758538872, "x2": 7.32985338436528, "x3": -1.1856900820993608, "x4": 2.7856139209380553, "x5": 0.3988550976459333}}, null] -[[0, 0, 8], 9.0, {"submitted": 1557070093.9625542, "started": 1557070093.9626145, "finished": 1557070093.9703498}, {"loss": 0.15908333379416556, "info": {"x0": -2.1972121797002884, "x1": 4.170103263557896, "x2": 7.964147103727196, "x3": -0.39076003097292, "x4": 2.1567132414870125, "x5": 0.2672426636421448}}, null] -[[0, 0, 9], 9.0, {"submitted": 1557070093.972035, "started": 1557070093.9721167, "finished": 1557070093.979601}, {"loss": 0.23406295494095045, "info": {"x0": -5.797905043836481, "x1": 3.7502638132209025, "x2": 4.933949745528168, "x3": -0.2757644204506282, "x4": 4.160966609315833, "x5": 0.21840669033829407}}, null] -[[0, 0, 10], 9.0, {"submitted": 1557070093.9821916, "started": 1557070093.982282, "finished": 1557070093.9879098}, {"loss": 0.15633333197429225, "info": {"x0": -4.048570197368081, "x1": 3.0656116855075055, "x2": 6.264872831800922, "x3": -1.8406628285496192, "x4": 1.8945654162767815, "x5": 0.11831207345615752}}, null] -[[0, 0, 11], 9.0, {"submitted": 1557070093.9894195, "started": 1557070093.9894984, "finished": 1557070093.994936}, {"loss": 0.18332406878912888, "info": {"x0": -2.0973193705030133, "x1": 6.707646674914437, "x2": 6.696334674071908, "x3": -3.0092155559653024, "x4": 2.564965976584379, "x5": 0.49554637382611244}}, null] -[[0, 0, 12], 9.0, {"submitted": 1557070093.9968975, "started": 1557070093.9969776, "finished": 1557070094.003225}, {"loss": 0.16471296347732897, "info": {"x0": -4.7004014335204225, "x1": 5.381506838489348, "x2": 7.551134595392718, "x3": -3.9087934501683463, "x4": 4.090545112707379, "x5": 0.051313474841778395}}, null] -[[0, 0, 13], 9.0, {"submitted": 1557070094.0048246, "started": 1557070094.0048912, "finished": 1557070094.013115}, {"loss": 0.21097222130966403, "info": {"x0": -4.505887515049553, "x1": 3.119806852703447, "x2": 5.27842430745978, "x3": -0.41598295968640375, "x4": 2.378036078040809, "x5": 0.45290202969151633}}, null] -[[0, 0, 14], 9.0, {"submitted": 1557070094.0687914, "started": 1557070094.0688791, "finished": 1557070094.0747921}, {"loss": 0.15462036972423945, "info": {"x0": -3.1591278729420442, "x1": 3.908797285026182, "x2": 7.715614421139328, "x3": -3.8840577857983405, "x4": 1.5144856347640787, "x5": 0.012333917749240864}}, null] -[[0, 0, 15], 9.0, {"submitted": 1557070094.1298134, "started": 1557070094.1298964, "finished": 1557070094.1352994}, {"loss": 0.1508981461511166, "info": {"x0": -2.8303597702870467, "x1": 6.183072575881077, "x2": 7.000197330527723, "x3": -1.8929066197790316, "x4": 1.5791048277915762, "x5": 0.02288509325412058}}, null] -[[0, 0, 16], 9.0, {"submitted": 1557070094.1891809, "started": 1557070094.1892664, "finished": 1557070094.194526}, {"loss": 0.15041666611256418, "info": {"x0": -2.5406726964740773, "x1": 5.392595430505831, "x2": 7.372547300869116, "x3": -1.5390908298554988, "x4": 1.215581652960183, "x5": 0.09142937834974796}}, null] -[[0, 0, 17], 9.0, {"submitted": 1557070094.2492943, "started": 1557070094.249378, "finished": 1557070094.2549114}, {"loss": 0.15218518286281163, "info": {"x0": -2.910201476429002, "x1": 4.894416088452941, "x2": 7.6849971193842155, "x3": -1.0997423394547572, "x4": 1.2918012769052662, "x5": 0.026500249630787998}}, null] -[[0, 0, 18], 9.0, {"submitted": 1557070094.3088872, "started": 1557070094.3089702, "finished": 1557070094.3132727}, {"loss": 0.1499814821509299, "info": {"x0": -3.156782202683721, "x1": 7.756126023578702, "x2": 6.182686022333105, "x3": -1.2505767032020323, "x4": 1.0197038479219147, "x5": 0.02687710306899853}}, null] -[[0, 0, 19], 9.0, {"submitted": 1557070094.3685358, "started": 1557070094.3686178, "finished": 1557070094.3734548}, {"loss": 0.15073147489903146, "info": {"x0": -2.7770731149535135, "x1": 6.375904032734905, "x2": 6.480072312761466, "x3": -3.3685856444660356, "x4": 1.6052294046498141, "x5": 0.018547602936529267}}, null] -[[0, 0, 20], 9.0, {"submitted": 1557070094.3754706, "started": 1557070094.3755503, "finished": 1557070094.3808537}, {"loss": 0.15199999841219852, "info": {"x0": -2.0087358824635273, "x1": 6.829058525468447, "x2": 4.812961893637212, "x3": -2.6019213136884303, "x4": 1.6826677633570397, "x5": 0.009126201015808522}}, null] -[[0, 0, 21], 9.0, {"submitted": 1557070094.3829863, "started": 1557070094.383042, "finished": 1557070094.3882933}, {"loss": 0.20661111055038592, "info": {"x0": -4.805350385479915, "x1": 4.890906468948361, "x2": 6.5609675705058885, "x3": -3.717478785240175, "x4": 4.187919768392872, "x5": 0.4720958418985993}}, null] -[[0, 0, 22], 9.0, {"submitted": 1557070094.4430025, "started": 1557070094.4430835, "finished": 1557070094.4489217}, {"loss": 0.1507222235473218, "info": {"x0": -3.270435774075786, "x1": 7.741678421641618, "x2": 6.97363069222602, "x3": -2.219696894480935, "x4": 1.1124011602872201, "x5": 0.008430361916929533}}, null] -[[0, 0, 23], 9.0, {"submitted": 1557070094.5018108, "started": 1557070094.5018911, "finished": 1557070094.5066063}, {"loss": 0.15056296159282878, "info": {"x0": -3.318763666906024, "x1": 7.488849083231207, "x2": 7.691742419628887, "x3": -2.3472046648240337, "x4": 1.4613938682909673, "x5": 0.008504129251983024}}, null] -[[0, 0, 24], 9.0, {"submitted": 1557070094.5088108, "started": 1557070094.5088704, "finished": 1557070094.5132182}, {"loss": 0.15819444646493153, "info": {"x0": -4.1296827034172106, "x1": 6.855907622776818, "x2": 7.218542945961152, "x3": -0.23244493789996845, "x4": 1.7720701544254216, "x5": 0.21700914168196606}}, null] -[[0, 0, 25], 9.0, {"submitted": 1557070094.5153964, "started": 1557070094.51545, "finished": 1557070094.5200336}, {"loss": 0.3407129566187935, "info": {"x0": -5.420981498674028, "x1": 5.3000957196806215, "x2": 4.968001087597127, "x3": -1.6774862985800154, "x4": 2.1982827900305235, "x5": 0.1343719580714256}}, null] -[[0, 0, 26], 9.0, {"submitted": 1557070094.57372, "started": 1557070094.5738063, "finished": 1557070094.5789957}, {"loss": 0.1494537012041719, "info": {"x0": -2.81444713892075, "x1": 5.528354657628176, "x2": 6.994648562326192, "x3": -3.639320143921046, "x4": 1.3634129315273507, "x5": 0.17726135319025121}}, null] -[[0, 0, 0], 27.0, {"submitted": 1557070094.5805607, "started": 1557070094.5806265, "finished": 1557070094.5863504}, {"loss": 0.14756481241352032, "info": {"x0": -3.007202657934218, "x1": 5.574880045280492, "x2": 7.287978261478034, "x3": -2.958253990479103, "x4": 1.4713673007185046, "x5": 0.16152738493443697}}, null] -[[0, 0, 15], 27.0, {"submitted": 1557070094.5874035, "started": 1557070094.5874815, "finished": 1557070094.5938308}, {"loss": 0.1511666643735435, "info": {"x0": -2.8303597702870467, "x1": 6.183072575881077, "x2": 7.000197330527723, "x3": -1.8929066197790316, "x4": 1.5791048277915762, "x5": 0.02288509325412058}}, null] -[[0, 0, 16], 27.0, {"submitted": 1557070094.5948212, "started": 1557070094.5949066, "finished": 1557070094.6017237}, {"loss": 0.15015740632127833, "info": {"x0": -2.5406726964740773, "x1": 5.392595430505831, "x2": 7.372547300869116, "x3": -1.5390908298554988, "x4": 1.215581652960183, "x5": 0.09142937834974796}}, null] -[[0, 0, 18], 27.0, {"submitted": 1557070094.6029663, "started": 1557070094.6030457, "finished": 1557070094.6108642}, {"loss": 0.15012037137095574, "info": {"x0": -3.156782202683721, "x1": 7.756126023578702, "x2": 6.182686022333105, "x3": -1.2505767032020323, "x4": 1.0197038479219147, "x5": 0.02687710306899853}}, null] -[[0, 0, 19], 27.0, {"submitted": 1557070094.612079, "started": 1557070094.6121664, "finished": 1557070094.6184342}, {"loss": 0.1508518452953409, "info": {"x0": -2.7770731149535135, "x1": 6.375904032734905, "x2": 6.480072312761466, "x3": -3.3685856444660356, "x4": 1.6052294046498141, "x5": 0.018547602936529267}}, null] -[[0, 0, 20], 27.0, {"submitted": 1557070094.6192558, "started": 1557070094.6193135, "finished": 1557070094.6240761}, {"loss": 0.15233333190916865, "info": {"x0": -2.0087358824635273, "x1": 6.829058525468447, "x2": 4.812961893637212, "x3": -2.6019213136884303, "x4": 1.6826677633570397, "x5": 0.009126201015808522}}, null] -[[0, 0, 22], 27.0, {"submitted": 1557070094.624879, "started": 1557070094.6249301, "finished": 1557070094.6296744}, {"loss": 0.1510000009255277, "info": {"x0": -3.270435774075786, "x1": 7.741678421641618, "x2": 6.97363069222602, "x3": -2.219696894480935, "x4": 1.1124011602872201, "x5": 0.008430361916929533}}, null] -[[0, 0, 23], 27.0, {"submitted": 1557070094.6307867, "started": 1557070094.63086, "finished": 1557070094.6360316}, {"loss": 0.1515370348414889, "info": {"x0": -3.318763666906024, "x1": 7.488849083231207, "x2": 7.691742419628887, "x3": -2.3472046648240337, "x4": 1.4613938682909673, "x5": 0.008504129251983024}}, null] -[[0, 0, 26], 27.0, {"submitted": 1557070094.6370862, "started": 1557070094.6371455, "finished": 1557070094.6429434}, {"loss": 0.14951851649306439, "info": {"x0": -2.81444713892075, "x1": 5.528354657628176, "x2": 6.994648562326192, "x3": -3.639320143921046, "x4": 1.3634129315273507, "x5": 0.17726135319025121}}, null] -[[0, 0, 0], 81.0, {"submitted": 1557070094.6443312, "started": 1557070094.6444113, "finished": 1557070094.6507125}, {"loss": 0.14752777539911094, "info": {"x0": -3.007202657934218, "x1": 5.574880045280492, "x2": 7.287978261478034, "x3": -2.958253990479103, "x4": 1.4713673007185046, "x5": 0.16152738493443697}}, null] -[[0, 0, 18], 81.0, {"submitted": 1557070094.6516323, "started": 1557070094.6517317, "finished": 1557070094.6577523}, {"loss": 0.15012037137095574, "info": {"x0": -3.156782202683721, "x1": 7.756126023578702, "x2": 6.182686022333105, "x3": -1.2505767032020323, "x4": 1.0197038479219147, "x5": 0.02687710306899853}}, null] -[[0, 0, 26], 81.0, {"submitted": 1557070094.6585526, "started": 1557070094.6586168, "finished": 1557070094.6635256}, {"loss": 0.14930555357149355, "info": {"x0": -2.81444713892075, "x1": 5.528354657628176, "x2": 6.994648562326192, "x3": -3.639320143921046, "x4": 1.3634129315273507, "x5": 0.17726135319025121}}, null] -[[0, 0, 0], 243.0, {"submitted": 1557070094.6642985, "started": 1557070094.6643577, "finished": 1557070094.6699014}, {"loss": 0.14752777539911094, "info": {"x0": -3.007202657934218, "x1": 5.574880045280492, "x2": 7.287978261478034, "x3": -2.958253990479103, "x4": 1.4713673007185046, "x5": 0.16152738493443697}}, null] -[[1, 0, 0], 27.0, {"submitted": 1557070094.725362, "started": 1557070094.7254467, "finished": 1557070094.7299473}, {"loss": 0.1492500007638225, "info": {"x0": -2.730293614423597, "x1": 4.573252930489533, "x2": 7.124845149321762, "x3": -3.8118724939827553, "x4": 1.261791544199216, "x5": 0.23938520298360938}}, null] -[[1, 0, 1], 27.0, {"submitted": 1557070094.7318218, "started": 1557070094.7319, "finished": 1557070094.7375078}, {"loss": 0.230249999554069, "info": {"x0": -5.972177569462322, "x1": 4.666076737806304, "x2": 6.1574503269951055, "x3": -1.197307916559137, "x4": 2.9261620235232417, "x5": 0.4696259315945264}}, null] -[[1, 0, 2], 27.0, {"submitted": 1557070094.7911298, "started": 1557070094.791215, "finished": 1557070094.7966707}, {"loss": 0.1515740742854498, "info": {"x0": -3.5293434552777123, "x1": 7.623857288241223, "x2": 7.490012834296204, "x3": -2.5382291769530827, "x4": 1.5072939990922498, "x5": 0.03402889661041637}}, null] -[[1, 0, 3], 27.0, {"submitted": 1557070094.8511949, "started": 1557070094.8512638, "finished": 1557070094.8562691}, {"loss": 0.14828703620036446, "info": {"x0": -2.823460766105796, "x1": 5.745175307905763, "x2": 7.439591222155874, "x3": -2.7278820489666336, "x4": 1.182368041285013, "x5": 0.2868146339101797}}, null] -[[1, 0, 4], 27.0, {"submitted": 1557070094.8581374, "started": 1557070094.8582168, "finished": 1557070094.863457}, {"loss": 0.20474382437875976, "info": {"x0": -5.360082736333358, "x1": 3.4426677355195787, "x2": 6.554085183546492, "x3": -2.7637382280721168, "x4": 4.068787705724491, "x5": 0.23278186166157505}}, null] -[[1, 0, 5], 27.0, {"submitted": 1557070094.9172697, "started": 1557070094.9173512, "finished": 1557070094.9225426}, {"loss": 0.15017592654570383, "info": {"x0": -2.7929619382316586, "x1": 6.235667484674134, "x2": 7.1097036952205315, "x3": -0.15940959858766757, "x4": 1.293136256451214, "x5": 0.12703149151397877}}, null] -[[1, 0, 6], 27.0, {"submitted": 1557070094.976109, "started": 1557070094.9761913, "finished": 1557070094.9814813}, {"loss": 0.14989815040484622, "info": {"x0": -2.892168085765233, "x1": 7.653876749691081, "x2": 7.487215141842952, "x3": -0.1614319183453179, "x4": 1.2497320254018909, "x5": 0.3028952959744604}}, null] -[[1, 0, 7], 27.0, {"submitted": 1557070095.041628, "started": 1557070095.0417104, "finished": 1557070095.047287}, {"loss": 0.15126851695555227, "info": {"x0": -2.839462834047402, "x1": 4.545943151405406, "x2": 6.6335616942738245, "x3": -3.0847164050475873, "x4": 1.1194296515556625, "x5": 0.4456213095890142}}, null] -[[1, 0, 8], 27.0, {"submitted": 1557070095.1072776, "started": 1557070095.1073606, "finished": 1557070095.1129274}, {"loss": 0.1510925930445945, "info": {"x0": -2.843953349667218, "x1": 6.801046089381215, "x2": 7.165476204980688, "x3": -3.9258152299757905, "x4": 1.2674960449985404, "x5": 0.20234115295316285}}, null] -[[1, 0, 0], 81.0, {"submitted": 1557070095.1144347, "started": 1557070095.1145039, "finished": 1557070095.12021}, {"loss": 0.1489166674150361, "info": {"x0": -2.730293614423597, "x1": 4.573252930489533, "x2": 7.124845149321762, "x3": -3.8118724939827553, "x4": 1.261791544199216, "x5": 0.23938520298360938}}, null] -[[1, 0, 3], 81.0, {"submitted": 1557070095.1209123, "started": 1557070095.120977, "finished": 1557070095.125731}, {"loss": 0.14852777696318092, "info": {"x0": -2.823460766105796, "x1": 5.745175307905763, "x2": 7.439591222155874, "x3": -2.7278820489666336, "x4": 1.182368041285013, "x5": 0.2868146339101797}}, null] -[[1, 0, 6], 81.0, {"submitted": 1557070095.1265512, "started": 1557070095.1266053, "finished": 1557070095.1316514}, {"loss": 0.14989815040484622, "info": {"x0": -2.892168085765233, "x1": 7.653876749691081, "x2": 7.487215141842952, "x3": -0.1614319183453179, "x4": 1.2497320254018909, "x5": 0.3028952959744604}}, null] -[[1, 0, 3], 243.0, {"submitted": 1557070095.1325278, "started": 1557070095.1325912, "finished": 1557070095.137682}, {"loss": 0.14852777696318092, "info": {"x0": -2.823460766105796, "x1": 5.745175307905763, "x2": 7.439591222155874, "x3": -2.7278820489666336, "x4": 1.182368041285013, "x5": 0.2868146339101797}}, null] -[[2, 0, 0], 81.0, {"submitted": 1557070095.1961198, "started": 1557070095.1962056, "finished": 1557070095.2016888}, {"loss": 0.15092592308421932, "info": {"x0": -2.768840331238166, "x1": 7.31946946760252, "x2": 6.9654677046795275, "x3": -0.7016342586158251, "x4": 1.21320271970418, "x5": 0.4007559792199177}}, null] -[[2, 0, 1], 81.0, {"submitted": 1557070095.2609673, "started": 1557070095.261049, "finished": 1557070095.2659194}, {"loss": 0.14938888510702936, "info": {"x0": -2.4974690175271235, "x1": 4.285216187295866, "x2": 6.990898733876472, "x3": -0.6774043499425675, "x4": 1.1715249072568537, "x5": 0.0960709032295698}}, null] -[[2, 0, 2], 81.0, {"submitted": 1557070095.3233397, "started": 1557070095.3234224, "finished": 1557070095.3289177}, {"loss": 0.1502870369181037, "info": {"x0": -2.5949823173165942, "x1": 3.51990011219769, "x2": 7.053983065467023, "x3": -3.981107165709268, "x4": 1.4308979398973503, "x5": 0.1241086912782029}}, null] -[[2, 0, 3], 81.0, {"submitted": 1557070095.3887143, "started": 1557070095.3888152, "finished": 1557070095.3961287}, {"loss": 0.14787962640490798, "info": {"x0": -2.4266866798518216, "x1": 4.123070641202399, "x2": 7.4572573155716455, "x3": -1.5511156680740865, "x4": 1.350287000530724, "x5": 0.14415400238299558}}, null] -[[2, 0, 4], 81.0, {"submitted": 1557070095.3988569, "started": 1557070095.3989909, "finished": 1557070095.404941}, {"loss": 0.1631203694315972, "info": {"x0": -4.785321694122134, "x1": 3.671937547490022, "x2": 5.728192298430435, "x3": -0.05340145895853654, "x4": 2.8034451137885803, "x5": 0.4178342139105831}}, null] -[[2, 0, 5], 81.0, {"submitted": 1557070095.40717, "started": 1557070095.407257, "finished": 1557070095.413812}, {"loss": 0.1550555524318306, "info": {"x0": -2.6373655307107704, "x1": 5.6540903382758785, "x2": 7.471696400760793, "x3": -2.7719005202627445, "x4": 2.3054187263597266, "x5": 0.0027417339637706983}}, null] -[[2, 0, 1], 243.0, {"submitted": 1557070095.4149728, "started": 1557070095.4150448, "finished": 1557070095.4203856}, {"loss": 0.14938888510702936, "info": {"x0": -2.4974690175271235, "x1": 4.285216187295866, "x2": 6.990898733876472, "x3": -0.6774043499425675, "x4": 1.1715249072568537, "x5": 0.0960709032295698}}, null] -[[2, 0, 3], 243.0, {"submitted": 1557070095.4211996, "started": 1557070095.4212742, "finished": 1557070095.426695}, {"loss": 0.14836110787976672, "info": {"x0": -2.4266866798518216, "x1": 4.123070641202399, "x2": 7.4572573155716455, "x3": -1.5511156680740865, "x4": 1.350287000530724, "x5": 0.14415400238299558}}, null] -[[3, 0, 0], 243.0, {"submitted": 1557070095.5007691, "started": 1557070095.500841, "finished": 1557070095.505659}, {"loss": 0.14874999757662966, "info": {"x0": -2.453793621568136, "x1": 4.762726591108629, "x2": 7.689192532323589, "x3": -2.2786523923417423, "x4": 1.1539536248938793, "x5": 0.1850283705033141}}, null] -[[3, 0, 1], 243.0, {"submitted": 1557070095.5586202, "started": 1557070095.5587044, "finished": 1557070095.5635312}, {"loss": 0.15009259073877773, "info": {"x0": -3.004504020109297, "x1": 6.69576626777744, "x2": 7.868840302785186, "x3": -1.6071631724273363, "x4": 1.2982159443621941, "x5": 0.42877943465142077}}, null] -[[3, 0, 2], 243.0, {"submitted": 1557070095.6172128, "started": 1557070095.6172779, "finished": 1557070095.6220164}, {"loss": 0.1502592579970757, "info": {"x0": -2.749717239689805, "x1": 3.842334153485428, "x2": 7.326795690426701, "x3": -3.959882341374019, "x4": 1.5083020102146014, "x5": 0.14004495226882388}}, null] -[[3, 0, 3], 243.0, {"submitted": 1557070095.676535, "started": 1557070095.6766114, "finished": 1557070095.6811123}, {"loss": 0.14890740575034309, "info": {"x0": -2.8215645067504553, "x1": 3.762303657805772, "x2": 7.283688838403511, "x3": -3.757430324740038, "x4": 1.4846131373291125, "x5": 0.18373831190848167}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/hyperband/configs.json deleted file mode 100644 index b8d6279..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/hyperband/configs.json +++ /dev/null @@ -1,46 +0,0 @@ -[[0, 0, 0], {"x0": -2.7084578459103246, "x1": 5.375807998832387, "x2": 5.696704668278407, "x3": -1.7637355120518499, "x4": 1.986576472715893, "x5": 0.16941418645493928}, {}] -[[0, 0, 1], {"x0": -4.0902204543625205, "x1": 4.107531905372759, "x2": 6.003227391013857, "x3": -2.8377876205183528, "x4": 4.825293650445974, "x5": 0.1076868161988842}, {}] -[[0, 0, 2], {"x0": -2.2872551930055987, "x1": 7.876468516579539, "x2": 6.439008581000343, "x3": -1.7379694753714583, "x4": 1.3731286169869041, "x5": 0.46554876581402427}, {}] -[[0, 0, 3], {"x0": -5.615337199138887, "x1": 3.4953799656345677, "x2": 4.195510342266251, "x3": -0.41714672712762146, "x4": 1.7722189799666688, "x5": 0.46772258666732963}, {}] -[[0, 0, 4], {"x0": -2.6172689748618416, "x1": 3.638407329041877, "x2": 7.950117196615958, "x3": -0.10863710895745582, "x4": 2.441081704476742, "x5": 0.10748625834761427}, {}] -[[0, 0, 5], {"x0": -4.525890454825733, "x1": 5.7506555102697305, "x2": 7.906291933447182, "x3": -1.5541603211666906, "x4": 1.0150754076077986, "x5": 0.12475813238987987}, {}] -[[0, 0, 6], {"x0": -2.0770750897616588, "x1": 4.032642185190198, "x2": 5.963538137428799, "x3": -1.1932500346582038, "x4": 3.7393459472441406, "x5": 0.34589458535220224}, {}] -[[0, 0, 7], {"x0": -2.743568079168682, "x1": 3.630438205305763, "x2": 7.850178518872891, "x3": -0.8253994773279119, "x4": 2.010527077464862, "x5": 0.08045370249641298}, {}] -[[0, 0, 8], {"x0": -4.916875795739467, "x1": 7.343412293408819, "x2": 7.5632103106573645, "x3": -1.4655021443597422, "x4": 1.999089247161812, "x5": 0.16577664561592242}, {}] -[[0, 0, 9], {"x0": -3.0624067140005615, "x1": 4.896226404375998, "x2": 6.363273313081203, "x3": -1.2035976377734938, "x4": 2.439370275140798, "x5": 0.13995655092731424}, {}] -[[0, 0, 10], {"x0": -4.324147314108162, "x1": 3.8755774242179255, "x2": 5.438206421792137, "x3": -3.7533625776113464, "x4": 1.441013376066024, "x5": 0.08041780476255944}, {}] -[[0, 0, 11], {"x0": -2.664983684548362, "x1": 7.330280443187473, "x2": 5.718938043308036, "x3": -3.869833232492958, "x4": 4.407708928137952, "x5": 0.12734243061651568}, {}] -[[0, 0, 12], {"x0": -2.823562008176214, "x1": 4.120502639332566, "x2": 6.590151036997037, "x3": -2.8286211723577344, "x4": 4.50382843873988, "x5": 0.4865039113282634}, {}] -[[0, 0, 13], {"x0": -3.15872626940544, "x1": 7.4689487007144875, "x2": 5.341697422425717, "x3": -1.7412620123541793, "x4": 2.834388474221893, "x5": 0.26164754198432455}, {}] -[[0, 0, 14], {"x0": -3.683718820282467, "x1": 3.7924375421068452, "x2": 5.378770302290148, "x3": -1.252511683251825, "x4": 2.3960302408620278, "x5": 0.4433278585000841}, {}] -[[0, 0, 15], {"x0": -3.143695288700392, "x1": 4.167116357103556, "x2": 7.906559350451089, "x3": -1.5982943857579315, "x4": 2.80075432872626, "x5": 0.32528448189992176}, {}] -[[0, 0, 16], {"x0": -2.9791265105547273, "x1": 7.6796889249121545, "x2": 5.920879162404273, "x3": -0.684550730239315, "x4": 3.308729868488051, "x5": 0.38995322582066355}, {}] -[[0, 0, 17], {"x0": -5.270340550387274, "x1": 3.2985878022700184, "x2": 4.521038369260769, "x3": -1.4070059683149339, "x4": 4.51261603353562, "x5": 0.23426644210027353}, {}] -[[0, 0, 18], {"x0": -5.693836541152653, "x1": 3.9513843506688286, "x2": 7.878260742902931, "x3": -3.9362239624459043, "x4": 3.5019376950581305, "x5": 0.22282024986384608}, {}] -[[0, 0, 19], {"x0": -3.642550577490759, "x1": 5.61626886977832, "x2": 6.8782010461140075, "x3": -3.808022971435944, "x4": 3.529083334305541, "x5": 0.47413806270406245}, {}] -[[0, 0, 20], {"x0": -5.469899206508877, "x1": 7.0744068192432525, "x2": 4.122899231853726, "x3": -0.27788769962445814, "x4": 2.1155795241485, "x5": 0.12808324657815556}, {}] -[[0, 0, 21], {"x0": -4.892544228948976, "x1": 5.325628826704005, "x2": 4.097656805076715, "x3": -1.4550033304993684, "x4": 2.6574454503237157, "x5": 0.36122941249570073}, {}] -[[0, 0, 22], {"x0": -2.644924111063964, "x1": 4.977927207329404, "x2": 6.7268464980927245, "x3": -1.6330169555984733, "x4": 4.271439003815603, "x5": 0.4465422277844857}, {}] -[[0, 0, 23], {"x0": -2.8159148288179847, "x1": 3.397837159702776, "x2": 6.679013196456213, "x3": -0.4120549589688123, "x4": 2.017811740274428, "x5": 0.4230239394627947}, {}] -[[0, 0, 24], {"x0": -4.646746286184843, "x1": 7.523314939011419, "x2": 5.693912668782035, "x3": -0.045584275889356984, "x4": 1.6322924160462073, "x5": 0.17520426207519624}, {}] -[[0, 0, 25], {"x0": -4.351403388634825, "x1": 4.462789456018423, "x2": 5.912368870889179, "x3": -1.3038998701262927, "x4": 1.7555798404048173, "x5": 0.2751192988963962}, {}] -[[0, 0, 26], {"x0": -4.108173953388902, "x1": 7.682650767311694, "x2": 5.566022054604891, "x3": -1.6801689043409906, "x4": 2.475447811570843, "x5": 0.10132923269276689}, {}] -[[1, 0, 0], {"x0": -3.8838045759423916, "x1": 5.491734442609593, "x2": 5.566982594110215, "x3": -1.4064552776754966, "x4": 2.041562417507744, "x5": 0.23479619296969745}, {}] -[[1, 0, 1], {"x0": -3.614660837134894, "x1": 6.896180519932196, "x2": 7.907148536389355, "x3": -2.2609232664422705, "x4": 4.26033188514253, "x5": 0.25501608370388273}, {}] -[[1, 0, 2], {"x0": -5.768445098900742, "x1": 4.465827142982938, "x2": 5.0340156188223055, "x3": -1.349461283261637, "x4": 1.8541636084528657, "x5": 0.02062292105895841}, {}] -[[1, 0, 3], {"x0": -4.993822903061641, "x1": 7.426103110496175, "x2": 6.082317911174048, "x3": -2.6934331153961932, "x4": 2.915686948264745, "x5": 0.22393866154820913}, {}] -[[1, 0, 4], {"x0": -5.233460903843813, "x1": 5.266787231262866, "x2": 6.8270251065208285, "x3": -0.4027437823905764, "x4": 1.6263763264268567, "x5": 0.11994575626749798}, {}] -[[1, 0, 5], {"x0": -2.1680133325026536, "x1": 3.9186254444752335, "x2": 5.43668633417535, "x3": -3.514169738371884, "x4": 3.8014764676621984, "x5": 0.16027029934003806}, {}] -[[1, 0, 6], {"x0": -5.488289837042545, "x1": 5.119548845534933, "x2": 7.4141612766582945, "x3": -3.501893649632452, "x4": 2.750142049100775, "x5": 0.2218009885426364}, {}] -[[1, 0, 7], {"x0": -4.0462262333111045, "x1": 6.952931377141253, "x2": 4.816410290174101, "x3": -3.7582025426017522, "x4": 4.6928277586802105, "x5": 0.4046918859698351}, {}] -[[1, 0, 8], {"x0": -2.7143330170426614, "x1": 6.4574586622723285, "x2": 5.843536839443409, "x3": -2.182808322864212, "x4": 2.40115187233408, "x5": 0.11003076356122798}, {}] -[[2, 0, 0], {"x0": -2.9607337191980405, "x1": 4.04792424384717, "x2": 4.185394558784442, "x3": -0.8212065787396958, "x4": 4.735883976062592, "x5": 0.38320928011037136}, {}] -[[2, 0, 1], {"x0": -2.0161773025159615, "x1": 3.2899884386450875, "x2": 6.829025981168293, "x3": -3.2236980844458074, "x4": 3.6819548703048866, "x5": 0.20751417121573368}, {}] -[[2, 0, 2], {"x0": -2.9692061345330902, "x1": 5.766649341871071, "x2": 4.199811897532998, "x3": -1.9187274128658132, "x4": 3.545673110583301, "x5": 0.42540124402774904}, {}] -[[2, 0, 3], {"x0": -5.952775142551204, "x1": 3.7653695799012117, "x2": 4.467219747469578, "x3": -2.6159344027105846, "x4": 3.8482748447251307, "x5": 0.16991365064914377}, {}] -[[2, 0, 4], {"x0": -3.1487073432349586, "x1": 5.780799518092063, "x2": 5.65157339237539, "x3": -2.205438105090724, "x4": 4.595903783044254, "x5": 0.3372703617926606}, {}] -[[2, 0, 5], {"x0": -5.051564103587327, "x1": 3.3428735775097542, "x2": 5.937031669859659, "x3": -0.26748748136027967, "x4": 2.3928402726626423, "x5": 0.18309939594516633}, {}] -[[3, 0, 0], {"x0": -2.4411513795999533, "x1": 4.915465533743211, "x2": 7.978469586723325, "x3": -3.7677337611154784, "x4": 4.393427181758699, "x5": 0.1841390826748357}, {}] -[[3, 0, 1], {"x0": -3.7436952640467274, "x1": 7.999153045286317, "x2": 6.14793841289456, "x3": -2.369557753290667, "x4": 3.1744160109990016, "x5": 0.09345078407075225}, {}] -[[3, 0, 2], {"x0": -2.7658817957309845, "x1": 7.279268224290712, "x2": 5.815518595181453, "x3": -0.8395410621824464, "x4": 3.434897063863189, "x5": 0.4270347856029656}, {}] -[[3, 0, 3], {"x0": -2.9287039532736903, "x1": 4.713051628765241, "x2": 4.390225146128504, "x3": -0.28879568097227626, "x4": 4.590683775843852, "x5": 0.3898352630826181}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/hyperband/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/hyperband/results.json deleted file mode 100644 index d31feb5..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/hyperband/results.json +++ /dev/null @@ -1,65 +0,0 @@ -[[0, 0, 0], 9.0, {"submitted": 1557070096.3335347, "started": 1557070096.333612, "finished": 1557070096.3391979}, {"loss": 0.15173148292413466, "info": {"x0": -2.7084578459103246, "x1": 5.375807998832387, "x2": 5.696704668278407, "x3": -1.7637355120518499, "x4": 1.986576472715893, "x5": 0.16941418645493928}}, null] -[[0, 0, 1], 9.0, {"submitted": 1557070096.340366, "started": 1557070096.340426, "finished": 1557070096.3461635}, {"loss": 0.15912962707739187, "info": {"x0": -4.0902204543625205, "x1": 4.107531905372759, "x2": 6.003227391013857, "x3": -2.8377876205183528, "x4": 4.825293650445974, "x5": 0.1076868161988842}}, null] -[[0, 0, 2], 9.0, {"submitted": 1557070096.3475394, "started": 1557070096.3476074, "finished": 1557070096.3525617}, {"loss": 0.15175925743800628, "info": {"x0": -2.2872551930055987, "x1": 7.876468516579539, "x2": 6.439008581000343, "x3": -1.7379694753714583, "x4": 1.3731286169869041, "x5": 0.46554876581402427}}, null] -[[0, 0, 3], 9.0, {"submitted": 1557070096.353611, "started": 1557070096.3536685, "finished": 1557070096.358274}, {"loss": 0.3223518429503397, "info": {"x0": -5.615337199138887, "x1": 3.4953799656345677, "x2": 4.195510342266251, "x3": -0.41714672712762146, "x4": 1.7722189799666688, "x5": 0.46772258666732963}}, null] -[[0, 0, 4], 9.0, {"submitted": 1557070096.3592758, "started": 1557070096.3593466, "finished": 1557070096.3650827}, {"loss": 0.15421296263844878, "info": {"x0": -2.6172689748618416, "x1": 3.638407329041877, "x2": 7.950117196615958, "x3": -0.10863710895745582, "x4": 2.441081704476742, "x5": 0.10748625834761427}}, null] -[[0, 0, 5], 9.0, {"submitted": 1557070096.3660667, "started": 1557070096.3661335, "finished": 1557070096.371138}, {"loss": 0.1627962935793179, "info": {"x0": -4.525890454825733, "x1": 5.7506555102697305, "x2": 7.906291933447182, "x3": -1.5541603211666906, "x4": 1.0150754076077986, "x5": 0.12475813238987987}}, null] -[[0, 0, 6], 9.0, {"submitted": 1557070096.3721445, "started": 1557070096.3722012, "finished": 1557070096.3777635}, {"loss": 0.16638888423586334, "info": {"x0": -2.0770750897616588, "x1": 4.032642185190198, "x2": 5.963538137428799, "x3": -1.1932500346582038, "x4": 3.7393459472441406, "x5": 0.34589458535220224}}, null] -[[0, 0, 7], 9.0, {"submitted": 1557070096.3790398, "started": 1557070096.379121, "finished": 1557070096.3848906}, {"loss": 0.15413888920402088, "info": {"x0": -2.743568079168682, "x1": 3.630438205305763, "x2": 7.850178518872891, "x3": -0.8253994773279119, "x4": 2.010527077464862, "x5": 0.08045370249641298}}, null] -[[0, 0, 8], 9.0, {"submitted": 1557070096.3858328, "started": 1557070096.3858988, "finished": 1557070096.3913617}, {"loss": 0.20851851744784247, "info": {"x0": -4.916875795739467, "x1": 7.343412293408819, "x2": 7.5632103106573645, "x3": -1.4655021443597422, "x4": 1.999089247161812, "x5": 0.16577664561592242}}, null] -[[0, 0, 9], 9.0, {"submitted": 1557070096.3922496, "started": 1557070096.392307, "finished": 1557070096.3972852}, {"loss": 0.15121295836623072, "info": {"x0": -3.0624067140005615, "x1": 4.896226404375998, "x2": 6.363273313081203, "x3": -1.2035976377734938, "x4": 2.439370275140798, "x5": 0.13995655092731424}}, null] -[[0, 0, 10], 9.0, {"submitted": 1557070096.398641, "started": 1557070096.3987105, "finished": 1557070096.4032936}, {"loss": 0.15982407316869054, "info": {"x0": -4.324147314108162, "x1": 3.8755774242179255, "x2": 5.438206421792137, "x3": -3.7533625776113464, "x4": 1.441013376066024, "x5": 0.08041780476255944}}, null] -[[0, 0, 11], 9.0, {"submitted": 1557070096.4043539, "started": 1557070096.4044147, "finished": 1557070096.4095612}, {"loss": 0.15135493617606016, "info": {"x0": -2.664983684548362, "x1": 7.330280443187473, "x2": 5.718938043308036, "x3": -3.869833232492958, "x4": 4.407708928137952, "x5": 0.12734243061651568}}, null] -[[0, 0, 12], 9.0, {"submitted": 1557070096.4105659, "started": 1557070096.4106536, "finished": 1557070096.416069}, {"loss": 0.1586296327367977, "info": {"x0": -2.823562008176214, "x1": 4.120502639332566, "x2": 6.590151036997037, "x3": -2.8286211723577344, "x4": 4.50382843873988, "x5": 0.4865039113282634}}, null] -[[0, 0, 13], 9.0, {"submitted": 1557070096.4171662, "started": 1557070096.417231, "finished": 1557070096.4238672}, {"loss": 0.15393518748769053, "info": {"x0": -3.15872626940544, "x1": 7.4689487007144875, "x2": 5.341697422425717, "x3": -1.7412620123541793, "x4": 2.834388474221893, "x5": 0.26164754198432455}}, null] -[[0, 0, 14], 9.0, {"submitted": 1557070096.4251218, "started": 1557070096.4251962, "finished": 1557070096.4313161}, {"loss": 0.16140740677052073, "info": {"x0": -3.683718820282467, "x1": 3.7924375421068452, "x2": 5.378770302290148, "x3": -1.252511683251825, "x4": 2.3960302408620278, "x5": 0.4433278585000841}}, null] -[[0, 0, 15], 9.0, {"submitted": 1557070096.4323368, "started": 1557070096.4324, "finished": 1557070096.4374814}, {"loss": 0.15226851728779298, "info": {"x0": -3.143695288700392, "x1": 4.167116357103556, "x2": 7.906559350451089, "x3": -1.5982943857579315, "x4": 2.80075432872626, "x5": 0.32528448189992176}}, null] -[[0, 0, 16], 9.0, {"submitted": 1557070096.4387858, "started": 1557070096.4388545, "finished": 1557070096.4437788}, {"loss": 0.15512962632819458, "info": {"x0": -2.9791265105547273, "x1": 7.6796889249121545, "x2": 5.920879162404273, "x3": -0.684550730239315, "x4": 3.308729868488051, "x5": 0.38995322582066355}}, null] -[[0, 0, 17], 9.0, {"submitted": 1557070096.4449518, "started": 1557070096.4450197, "finished": 1557070096.4508786}, {"loss": 0.2952592570831379, "info": {"x0": -5.270340550387274, "x1": 3.2985878022700184, "x2": 4.521038369260769, "x3": -1.4070059683149339, "x4": 4.51261603353562, "x5": 0.23426644210027353}}, null] -[[0, 0, 18], 9.0, {"submitted": 1557070096.4520595, "started": 1557070096.4521368, "finished": 1557070096.4576988}, {"loss": 0.2971203632500989, "info": {"x0": -5.693836541152653, "x1": 3.9513843506688286, "x2": 7.878260742902931, "x3": -3.9362239624459043, "x4": 3.5019376950581305, "x5": 0.22282024986384608}}, null] -[[0, 0, 19], 9.0, {"submitted": 1557070096.4588282, "started": 1557070096.458942, "finished": 1557070096.465298}, {"loss": 0.1570138855535123, "info": {"x0": -3.642550577490759, "x1": 5.61626886977832, "x2": 6.8782010461140075, "x3": -3.808022971435944, "x4": 3.529083334305541, "x5": 0.47413806270406245}}, null] -[[0, 0, 20], 9.0, {"submitted": 1557070096.466481, "started": 1557070096.46656, "finished": 1557070096.4721625}, {"loss": 0.3514814819395542, "info": {"x0": -5.469899206508877, "x1": 7.0744068192432525, "x2": 4.122899231853726, "x3": -0.27788769962445814, "x4": 2.1155795241485, "x5": 0.12808324657815556}}, null] -[[0, 0, 21], 9.0, {"submitted": 1557070096.4732258, "started": 1557070096.4732857, "finished": 1557070096.4784894}, {"loss": 0.2470092523848569, "info": {"x0": -4.892544228948976, "x1": 5.325628826704005, "x2": 4.097656805076715, "x3": -1.4550033304993684, "x4": 2.6574454503237157, "x5": 0.36122941249570073}}, null] -[[0, 0, 22], 9.0, {"submitted": 1557070096.4799693, "started": 1557070096.4800696, "finished": 1557070096.4866598}, {"loss": 0.1544259284762321, "info": {"x0": -2.644924111063964, "x1": 4.977927207329404, "x2": 6.7268464980927245, "x3": -1.6330169555984733, "x4": 4.271439003815603, "x5": 0.4465422277844857}}, null] -[[0, 0, 23], 9.0, {"submitted": 1557070096.4876556, "started": 1557070096.4877417, "finished": 1557070096.4937105}, {"loss": 0.15419444263850646, "info": {"x0": -2.8159148288179847, "x1": 3.397837159702776, "x2": 6.679013196456213, "x3": -0.4120549589688123, "x4": 2.017811740274428, "x5": 0.4230239394627947}}, null] -[[0, 0, 24], 9.0, {"submitted": 1557070096.495113, "started": 1557070096.4951868, "finished": 1557070096.5006056}, {"loss": 0.175250000288641, "info": {"x0": -4.646746286184843, "x1": 7.523314939011419, "x2": 5.693912668782035, "x3": -0.045584275889356984, "x4": 1.6322924160462073, "x5": 0.17520426207519624}}, null] -[[0, 0, 25], 9.0, {"submitted": 1557070096.5016186, "started": 1557070096.501687, "finished": 1557070096.5066247}, {"loss": 0.16689814653440763, "info": {"x0": -4.351403388634825, "x1": 4.462789456018423, "x2": 5.912368870889179, "x3": -1.3038998701262927, "x4": 1.7555798404048173, "x5": 0.2751192988963962}}, null] -[[0, 0, 26], 9.0, {"submitted": 1557070096.5076509, "started": 1557070096.5077336, "finished": 1557070096.513558}, {"loss": 0.16482407366843138, "info": {"x0": -4.108173953388902, "x1": 7.682650767311694, "x2": 5.566022054604891, "x3": -1.6801689043409906, "x4": 2.475447811570843, "x5": 0.10132923269276689}}, null] -[[0, 0, 0], 27.0, {"submitted": 1557070096.5143573, "started": 1557070096.5144238, "finished": 1557070096.519608}, {"loss": 0.15000000162091523, "info": {"x0": -2.7084578459103246, "x1": 5.375807998832387, "x2": 5.696704668278407, "x3": -1.7637355120518499, "x4": 1.986576472715893, "x5": 0.16941418645493928}}, null] -[[0, 0, 2], 27.0, {"submitted": 1557070096.5204585, "started": 1557070096.5205417, "finished": 1557070096.5267167}, {"loss": 0.1524351833799371, "info": {"x0": -2.2872551930055987, "x1": 7.876468516579539, "x2": 6.439008581000343, "x3": -1.7379694753714583, "x4": 1.3731286169869041, "x5": 0.46554876581402427}}, null] -[[0, 0, 4], 27.0, {"submitted": 1557070096.5276651, "started": 1557070096.5277655, "finished": 1557070096.5347698}, {"loss": 0.15255555496668372, "info": {"x0": -2.6172689748618416, "x1": 3.638407329041877, "x2": 7.950117196615958, "x3": -0.10863710895745582, "x4": 2.441081704476742, "x5": 0.10748625834761427}}, null] -[[0, 0, 7], 27.0, {"submitted": 1557070096.535621, "started": 1557070096.5356936, "finished": 1557070096.5412047}, {"loss": 0.15078703732457424, "info": {"x0": -2.743568079168682, "x1": 3.630438205305763, "x2": 7.850178518872891, "x3": -0.8253994773279119, "x4": 2.010527077464862, "x5": 0.08045370249641298}}, null] -[[0, 0, 9], 27.0, {"submitted": 1557070096.5417314, "started": 1557070096.5417864, "finished": 1557070096.547206}, {"loss": 0.14980555112494365, "info": {"x0": -3.0624067140005615, "x1": 4.896226404375998, "x2": 6.363273313081203, "x3": -1.2035976377734938, "x4": 2.439370275140798, "x5": 0.13995655092731424}}, null] -[[0, 0, 11], 27.0, {"submitted": 1557070096.5479069, "started": 1557070096.5479643, "finished": 1557070096.5537882}, {"loss": 0.1521049361390832, "info": {"x0": -2.664983684548362, "x1": 7.330280443187473, "x2": 5.718938043308036, "x3": -3.869833232492958, "x4": 4.407708928137952, "x5": 0.12734243061651568}}, null] -[[0, 0, 13], 27.0, {"submitted": 1557070096.5543478, "started": 1557070096.5543985, "finished": 1557070096.5594313}, {"loss": 0.15360185426749565, "info": {"x0": -3.15872626940544, "x1": 7.4689487007144875, "x2": 5.341697422425717, "x3": -1.7412620123541793, "x4": 2.834388474221893, "x5": 0.26164754198432455}}, null] -[[0, 0, 15], 27.0, {"submitted": 1557070096.5600686, "started": 1557070096.5601487, "finished": 1557070096.5652406}, {"loss": 0.1489444433412066, "info": {"x0": -3.143695288700392, "x1": 4.167116357103556, "x2": 7.906559350451089, "x3": -1.5982943857579315, "x4": 2.80075432872626, "x5": 0.32528448189992176}}, null] -[[0, 0, 23], 27.0, {"submitted": 1557070096.565848, "started": 1557070096.5659044, "finished": 1557070096.5706995}, {"loss": 0.15194444220085387, "info": {"x0": -2.8159148288179847, "x1": 3.397837159702776, "x2": 6.679013196456213, "x3": -0.4120549589688123, "x4": 2.017811740274428, "x5": 0.4230239394627947}}, null] -[[0, 0, 0], 81.0, {"submitted": 1557070096.571569, "started": 1557070096.571632, "finished": 1557070096.5768228}, {"loss": 0.15023148323154006, "info": {"x0": -2.7084578459103246, "x1": 5.375807998832387, "x2": 5.696704668278407, "x3": -1.7637355120518499, "x4": 1.986576472715893, "x5": 0.16941418645493928}}, null] -[[0, 0, 9], 81.0, {"submitted": 1557070096.5775518, "started": 1557070096.5777042, "finished": 1557070096.5845017}, {"loss": 0.1496666621990778, "info": {"x0": -3.0624067140005615, "x1": 4.896226404375998, "x2": 6.363273313081203, "x3": -1.2035976377734938, "x4": 2.439370275140798, "x5": 0.13995655092731424}}, null] -[[0, 0, 15], 81.0, {"submitted": 1557070096.585098, "started": 1557070096.5851552, "finished": 1557070096.5899482}, {"loss": 0.1471574062884406, "info": {"x0": -3.143695288700392, "x1": 4.167116357103556, "x2": 7.906559350451089, "x3": -1.5982943857579315, "x4": 2.80075432872626, "x5": 0.32528448189992176}}, null] -[[0, 0, 15], 243.0, {"submitted": 1557070096.590843, "started": 1557070096.5909367, "finished": 1557070096.596815}, {"loss": 0.14768518408305115, "info": {"x0": -3.143695288700392, "x1": 4.167116357103556, "x2": 7.906559350451089, "x3": -1.5982943857579315, "x4": 2.80075432872626, "x5": 0.32528448189992176}}, null] -[[1, 0, 0], 27.0, {"submitted": 1557070096.5981007, "started": 1557070096.5981686, "finished": 1557070096.6042683}, {"loss": 0.15606481472071673, "info": {"x0": -3.8838045759423916, "x1": 5.491734442609593, "x2": 5.566982594110215, "x3": -1.4064552776754966, "x4": 2.041562417507744, "x5": 0.23479619296969745}}, null] -[[1, 0, 1], 27.0, {"submitted": 1557070096.6052358, "started": 1557070096.605304, "finished": 1557070096.6105452}, {"loss": 0.15139814581528857, "info": {"x0": -3.614660837134894, "x1": 6.896180519932196, "x2": 7.907148536389355, "x3": -2.2609232664422705, "x4": 4.26033188514253, "x5": 0.25501608370388273}}, null] -[[1, 0, 2], 27.0, {"submitted": 1557070096.611823, "started": 1557070096.611927, "finished": 1557070096.617287}, {"loss": 0.3488425919848184, "info": {"x0": -5.768445098900742, "x1": 4.465827142982938, "x2": 5.0340156188223055, "x3": -1.349461283261637, "x4": 1.8541636084528657, "x5": 0.02062292105895841}}, null] -[[1, 0, 3], 27.0, {"submitted": 1557070096.6185062, "started": 1557070096.6185806, "finished": 1557070096.6236467}, {"loss": 0.2655370329651568, "info": {"x0": -4.993822903061641, "x1": 7.426103110496175, "x2": 6.082317911174048, "x3": -2.6934331153961932, "x4": 2.915686948264745, "x5": 0.22393866154820913}}, null] -[[1, 0, 4], 27.0, {"submitted": 1557070096.6246946, "started": 1557070096.6247556, "finished": 1557070096.6308713}, {"loss": 0.16012963033053607, "info": {"x0": -5.233460903843813, "x1": 5.266787231262866, "x2": 6.8270251065208285, "x3": -0.4027437823905764, "x4": 1.6263763264268567, "x5": 0.11994575626749798}}, null] -[[1, 0, 5], 27.0, {"submitted": 1557070096.6320903, "started": 1557070096.6321683, "finished": 1557070096.6369402}, {"loss": 0.15428703521136886, "info": {"x0": -2.1680133325026536, "x1": 3.9186254444752335, "x2": 5.43668633417535, "x3": -3.514169738371884, "x4": 3.8014764676621984, "x5": 0.16027029934003806}}, null] -[[1, 0, 6], 27.0, {"submitted": 1557070096.6381302, "started": 1557070096.6382027, "finished": 1557070096.643233}, {"loss": 0.1993611072561255, "info": {"x0": -5.488289837042545, "x1": 5.119548845534933, "x2": 7.4141612766582945, "x3": -3.501893649632452, "x4": 2.750142049100775, "x5": 0.2218009885426364}}, null] -[[1, 0, 7], 27.0, {"submitted": 1557070096.6441808, "started": 1557070096.6442473, "finished": 1557070096.6491191}, {"loss": 0.220907405120907, "info": {"x0": -4.0462262333111045, "x1": 6.952931377141253, "x2": 4.816410290174101, "x3": -3.7582025426017522, "x4": 4.6928277586802105, "x5": 0.4046918859698351}}, null] -[[1, 0, 8], 27.0, {"submitted": 1557070096.6503396, "started": 1557070096.6503985, "finished": 1557070096.6555796}, {"loss": 0.14955555495399014, "info": {"x0": -2.7143330170426614, "x1": 6.4574586622723285, "x2": 5.843536839443409, "x3": -2.182808322864212, "x4": 2.40115187233408, "x5": 0.11003076356122798}}, null] -[[1, 0, 1], 81.0, {"submitted": 1557070096.6563263, "started": 1557070096.6563969, "finished": 1557070096.6620908}, {"loss": 0.1501481455145059, "info": {"x0": -3.614660837134894, "x1": 6.896180519932196, "x2": 7.907148536389355, "x3": -2.2609232664422705, "x4": 4.26033188514253, "x5": 0.25501608370388273}}, null] -[[1, 0, 5], 81.0, {"submitted": 1557070096.662885, "started": 1557070096.6629548, "finished": 1557070096.669837}, {"loss": 0.1533981465904249, "info": {"x0": -2.1680133325026536, "x1": 3.9186254444752335, "x2": 5.43668633417535, "x3": -3.514169738371884, "x4": 3.8014764676621984, "x5": 0.16027029934003806}}, null] -[[1, 0, 8], 81.0, {"submitted": 1557070096.6707761, "started": 1557070096.6708567, "finished": 1557070096.677513}, {"loss": 0.14955555495399014, "info": {"x0": -2.7143330170426614, "x1": 6.4574586622723285, "x2": 5.843536839443409, "x3": -2.182808322864212, "x4": 2.40115187233408, "x5": 0.11003076356122798}}, null] -[[1, 0, 8], 243.0, {"submitted": 1557070096.678516, "started": 1557070096.6786056, "finished": 1557070096.683655}, {"loss": 0.14955555495399014, "info": {"x0": -2.7143330170426614, "x1": 6.4574586622723285, "x2": 5.843536839443409, "x3": -2.182808322864212, "x4": 2.40115187233408, "x5": 0.11003076356122798}}, null] -[[2, 0, 0], 81.0, {"submitted": 1557070096.684722, "started": 1557070096.6847773, "finished": 1557070096.6898513}, {"loss": 0.1532685195527695, "info": {"x0": -2.9607337191980405, "x1": 4.04792424384717, "x2": 4.185394558784442, "x3": -0.8212065787396958, "x4": 4.735883976062592, "x5": 0.38320928011037136}}, null] -[[2, 0, 1], 81.0, {"submitted": 1557070096.6910932, "started": 1557070096.6911788, "finished": 1557070096.698145}, {"loss": 0.1622962963059545, "info": {"x0": -2.0161773025159615, "x1": 3.2899884386450875, "x2": 6.829025981168293, "x3": -3.2236980844458074, "x4": 3.6819548703048866, "x5": 0.20751417121573368}}, null] -[[2, 0, 2], 81.0, {"submitted": 1557070096.6994257, "started": 1557070096.699512, "finished": 1557070096.706119}, {"loss": 0.15528703722136994, "info": {"x0": -2.9692061345330902, "x1": 5.766649341871071, "x2": 4.199811897532998, "x3": -1.9187274128658132, "x4": 3.545673110583301, "x5": 0.42540124402774904}}, null] -[[2, 0, 3], 81.0, {"submitted": 1557070096.7077527, "started": 1557070096.70784, "finished": 1557070096.7146196}, {"loss": 0.26207638093725677, "info": {"x0": -5.952775142551204, "x1": 3.7653695799012117, "x2": 4.467219747469578, "x3": -2.6159344027105846, "x4": 3.8482748447251307, "x5": 0.16991365064914377}}, null] -[[2, 0, 4], 81.0, {"submitted": 1557070096.7162507, "started": 1557070096.7163591, "finished": 1557070096.7241528}, {"loss": 0.15317592573993735, "info": {"x0": -3.1487073432349586, "x1": 5.780799518092063, "x2": 5.65157339237539, "x3": -2.205438105090724, "x4": 4.595903783044254, "x5": 0.3372703617926606}}, null] -[[2, 0, 5], 81.0, {"submitted": 1557070096.7254305, "started": 1557070096.7255085, "finished": 1557070096.7313852}, {"loss": 0.16239814642734, "info": {"x0": -5.051564103587327, "x1": 3.3428735775097542, "x2": 5.937031669859659, "x3": -0.26748748136027967, "x4": 2.3928402726626423, "x5": 0.18309939594516633}}, null] -[[2, 0, 0], 243.0, {"submitted": 1557070096.7322164, "started": 1557070096.7322888, "finished": 1557070096.7383952}, {"loss": 0.153555556503159, "info": {"x0": -2.9607337191980405, "x1": 4.04792424384717, "x2": 4.185394558784442, "x3": -0.8212065787396958, "x4": 4.735883976062592, "x5": 0.38320928011037136}}, null] -[[2, 0, 4], 243.0, {"submitted": 1557070096.7390964, "started": 1557070096.7392428, "finished": 1557070096.7462196}, {"loss": 0.15317592573993735, "info": {"x0": -3.1487073432349586, "x1": 5.780799518092063, "x2": 5.65157339237539, "x3": -2.205438105090724, "x4": 4.595903783044254, "x5": 0.3372703617926606}}, null] -[[3, 0, 0], 243.0, {"submitted": 1557070096.7474675, "started": 1557070096.7475438, "finished": 1557070096.7529533}, {"loss": 0.14949999849277512, "info": {"x0": -2.4411513795999533, "x1": 4.915465533743211, "x2": 7.978469586723325, "x3": -3.7677337611154784, "x4": 4.393427181758699, "x5": 0.1841390826748357}}, null] -[[3, 0, 1], 243.0, {"submitted": 1557070096.7541397, "started": 1557070096.75421, "finished": 1557070096.7616432}, {"loss": 0.15452777567616216, "info": {"x0": -3.7436952640467274, "x1": 7.999153045286317, "x2": 6.14793841289456, "x3": -2.369557753290667, "x4": 3.1744160109990016, "x5": 0.09345078407075225}}, null] -[[3, 0, 2], 243.0, {"submitted": 1557070096.7629564, "started": 1557070096.7630398, "finished": 1557070096.7696114}, {"loss": 0.15493518277395654, "info": {"x0": -2.7658817957309845, "x1": 7.279268224290712, "x2": 5.815518595181453, "x3": -0.8395410621824464, "x4": 3.434897063863189, "x5": 0.4270347856029656}}, null] -[[3, 0, 3], 243.0, {"submitted": 1557070096.7710192, "started": 1557070096.771106, "finished": 1557070096.778037}, {"loss": 0.1548796294326032, "info": {"x0": -2.9287039532736903, "x1": 4.713051628765241, "x2": 4.390225146128504, "x3": -0.28879568097227626, "x4": 4.590683775843852, "x5": 0.3898352630826181}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/randomsearch/configs.json deleted file mode 100644 index 7c6fecf..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/randomsearch/configs.json +++ /dev/null @@ -1,16 +0,0 @@ -[[0, 0, 0], {"x0": -3.4977328672730463, "x1": 5.013703879744728, "x2": 7.42245421903851, "x3": -0.7649428565690535, "x4": 3.2199398231542498, "x5": 0.04375470814826732}, {}] -[[0, 0, 1], {"x0": -3.171684324379116, "x1": 3.2757697498804, "x2": 5.346959069008701, "x3": -2.4852204665094844, "x4": 2.0743905402441776, "x5": 0.09293113290840882}, {}] -[[0, 0, 2], {"x0": -4.887374855658463, "x1": 5.969690555295692, "x2": 7.847454347506603, "x3": -0.09824855094016804, "x4": 2.093142327663624, "x5": 0.42925328825986053}, {}] -[[0, 0, 3], {"x0": -4.099733827266741, "x1": 3.0865811514058885, "x2": 6.887302045534491, "x3": -1.0800255328106179, "x4": 2.62753276068495, "x5": 0.43499494318571563}, {}] -[[1, 0, 0], {"x0": -4.819172886051993, "x1": 4.441252000542191, "x2": 5.969411801872285, "x3": -3.8012531390928057, "x4": 2.8313060185825916, "x5": 0.05395308491314582}, {}] -[[1, 0, 1], {"x0": -2.804904310837637, "x1": 6.0064706072560305, "x2": 6.402854708957457, "x3": -3.1044922626275797, "x4": 2.126176122933178, "x5": 0.08672260785787372}, {}] -[[1, 0, 2], {"x0": -4.24861056451266, "x1": 7.197811405395042, "x2": 7.277050729415865, "x3": -3.936161479258095, "x4": 4.540577953660144, "x5": 0.3010462406267083}, {}] -[[1, 0, 3], {"x0": -2.631159492089412, "x1": 5.81315838151451, "x2": 4.204822676483054, "x3": -3.4005797667712145, "x4": 2.436174904841674, "x5": 0.0859034135059018}, {}] -[[2, 0, 0], {"x0": -3.992274611934683, "x1": 3.6785595839688945, "x2": 4.55449743512428, "x3": -2.6311110735148473, "x4": 2.1381363352397806, "x5": 0.057583020152020714}, {}] -[[2, 0, 1], {"x0": -3.8289928610820767, "x1": 4.192781346398253, "x2": 5.082524433984297, "x3": -3.3514221314470376, "x4": 3.881884879120326, "x5": 0.35500204901411575}, {}] -[[2, 0, 2], {"x0": -5.905316629631688, "x1": 3.9313190269376115, "x2": 7.538388049671787, "x3": -2.3800709319999185, "x4": 3.49038143222603, "x5": 0.3651181592331263}, {}] -[[2, 0, 3], {"x0": -4.7099597291256465, "x1": 6.788233795277709, "x2": 6.101659261923178, "x3": -0.2598416576629452, "x4": 3.5898827641949818, "x5": 0.058767198746861704}, {}] -[[3, 0, 0], {"x0": -2.4097538473540565, "x1": 7.008622363012008, "x2": 6.221940522772643, "x3": -1.9963409334621844, "x4": 4.332513764094125, "x5": 0.24661251911650406}, {}] -[[3, 0, 1], {"x0": -3.1919870788787064, "x1": 3.372593147670897, "x2": 7.9485102584762855, "x3": -1.087997788915012, "x4": 4.030546224833749, "x5": 0.25151945658237823}, {}] -[[3, 0, 2], {"x0": -3.5044093038166357, "x1": 4.585317898235951, "x2": 4.082146485407824, "x3": -2.590597732832736, "x4": 1.0206005817577446, "x5": 0.4693191710985152}, {}] -[[3, 0, 3], {"x0": -5.72961806492207, "x1": 5.196880455076206, "x2": 4.7687290090583065, "x3": -1.2389347499858157, "x4": 4.685097869825325, "x5": 0.17754994787242595}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/randomsearch/results.json deleted file mode 100644 index 65fbfab..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/randomsearch/results.json +++ /dev/null @@ -1,16 +0,0 @@ -[[0, 0, 0], 243, {"submitted": 1557070095.9528987, "started": 1557070095.952953, "finished": 1557070095.9574342}, {"loss": 0.15249074107077387, "info": {"x0": -3.4977328672730463, "x1": 5.013703879744728, "x2": 7.42245421903851, "x3": -0.7649428565690535, "x4": 3.2199398231542498, "x5": 0.04375470814826732}}, null] -[[0, 0, 1], 243, {"submitted": 1557070095.958846, "started": 1557070095.958923, "finished": 1557070095.9663188}, {"loss": 0.15160185230247403, "info": {"x0": -3.171684324379116, "x1": 3.2757697498804, "x2": 5.346959069008701, "x3": -2.4852204665094844, "x4": 2.0743905402441776, "x5": 0.09293113290840882}}, null] -[[0, 0, 2], 243, {"submitted": 1557070095.9673781, "started": 1557070095.9674375, "finished": 1557070095.9724262}, {"loss": 0.16061110943169501, "info": {"x0": -4.887374855658463, "x1": 5.969690555295692, "x2": 7.847454347506603, "x3": -0.09824855094016804, "x4": 2.093142327663624, "x5": 0.42925328825986053}}, null] -[[0, 0, 3], 243, {"submitted": 1557070095.973446, "started": 1557070095.9735017, "finished": 1557070095.9781287}, {"loss": 0.15585184984323056, "info": {"x0": -4.099733827266741, "x1": 3.0865811514058885, "x2": 6.887302045534491, "x3": -1.0800255328106179, "x4": 2.62753276068495, "x5": 0.43499494318571563}}, null] -[[1, 0, 0], 243, {"submitted": 1557070095.979165, "started": 1557070095.979221, "finished": 1557070095.9851363}, {"loss": 0.1795648120923175, "info": {"x0": -4.819172886051993, "x1": 4.441252000542191, "x2": 5.969411801872285, "x3": -3.8012531390928057, "x4": 2.8313060185825916, "x5": 0.05395308491314582}}, null] -[[1, 0, 1], 243, {"submitted": 1557070095.9862409, "started": 1557070095.9863114, "finished": 1557070095.9912107}, {"loss": 0.15144444107926552, "info": {"x0": -2.804904310837637, "x1": 6.0064706072560305, "x2": 6.402854708957457, "x3": -3.1044922626275797, "x4": 2.126176122933178, "x5": 0.08672260785787372}}, null] -[[1, 0, 2], 243, {"submitted": 1557070095.9923694, "started": 1557070095.9925067, "finished": 1557070095.9975557}, {"loss": 0.1634351848071372, "info": {"x0": -4.24861056451266, "x1": 7.197811405395042, "x2": 7.277050729415865, "x3": -3.936161479258095, "x4": 4.540577953660144, "x5": 0.3010462406267083}}, null] -[[1, 0, 3], 243, {"submitted": 1557070095.998491, "started": 1557070095.9985726, "finished": 1557070096.0041757}, {"loss": 0.1500555558204651, "info": {"x0": -2.631159492089412, "x1": 5.81315838151451, "x2": 4.204822676483054, "x3": -3.4005797667712145, "x4": 2.436174904841674, "x5": 0.0859034135059018}}, null] -[[2, 0, 0], 243, {"submitted": 1557070096.0054216, "started": 1557070096.0054996, "finished": 1557070096.0110118}, {"loss": 0.15902777852531938, "info": {"x0": -3.992274611934683, "x1": 3.6785595839688945, "x2": 4.55449743512428, "x3": -2.6311110735148473, "x4": 2.1381363352397806, "x5": 0.057583020152020714}}, null] -[[2, 0, 1], 243, {"submitted": 1557070096.0121164, "started": 1557070096.0122035, "finished": 1557070096.0180027}, {"loss": 0.15768518189533992, "info": {"x0": -3.8289928610820767, "x1": 4.192781346398253, "x2": 5.082524433984297, "x3": -3.3514221314470376, "x4": 3.881884879120326, "x5": 0.35500204901411575}}, null] -[[2, 0, 2], 243, {"submitted": 1557070096.0192049, "started": 1557070096.0192754, "finished": 1557070096.0249453}, {"loss": 0.19892592388529468, "info": {"x0": -5.905316629631688, "x1": 3.9313190269376115, "x2": 7.538388049671787, "x3": -2.3800709319999185, "x4": 3.49038143222603, "x5": 0.3651181592331263}}, null] -[[2, 0, 3], 243, {"submitted": 1557070096.0259717, "started": 1557070096.0260391, "finished": 1557070096.0308595}, {"loss": 0.1676111118661033, "info": {"x0": -4.7099597291256465, "x1": 6.788233795277709, "x2": 6.101659261923178, "x3": -0.2598416576629452, "x4": 3.5898827641949818, "x5": 0.058767198746861704}}, null] -[[3, 0, 0], 243, {"submitted": 1557070096.032438, "started": 1557070096.0325313, "finished": 1557070096.0394795}, {"loss": 0.15121296005392515, "info": {"x0": -2.4097538473540565, "x1": 7.008622363012008, "x2": 6.221940522772643, "x3": -1.9963409334621844, "x4": 4.332513764094125, "x5": 0.24661251911650406}}, null] -[[3, 0, 1], 243, {"submitted": 1557070096.0407584, "started": 1557070096.040846, "finished": 1557070096.0478983}, {"loss": 0.14984259045234433, "info": {"x0": -3.1919870788787064, "x1": 3.372593147670897, "x2": 7.9485102584762855, "x3": -1.087997788915012, "x4": 4.030546224833749, "x5": 0.25151945658237823}}, null] -[[3, 0, 2], 243, {"submitted": 1557070096.0497825, "started": 1557070096.0498936, "finished": 1557070096.0566502}, {"loss": 0.1578148129571367, "info": {"x0": -3.5044093038166357, "x1": 4.585317898235951, "x2": 4.082146485407824, "x3": -2.590597732832736, "x4": 1.0206005817577446, "x5": 0.4693191710985152}}, null] -[[3, 0, 3], 243, {"submitted": 1557070096.0577261, "started": 1557070096.0577898, "finished": 1557070096.0626638}, {"loss": 0.24433332983680348, "info": {"x0": -5.72961806492207, "x1": 5.196880455076206, "x2": 4.7687290090583065, "x3": -1.2389347499858157, "x4": 4.685097869825325, "x5": 0.17754994787242595}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/runhistory.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/runhistory.json deleted file mode 100644 index e109e75..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/runhistory.json +++ /dev/null @@ -1,368 +0,0 @@ -{ - "data": [ - [ - [ - 1, - null, - 0 - ], - [ - 0.20624074077909746, - 0.04296588897705078, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 2, - null, - 0 - ], - [ - 0.20497531019335175, - 0.013379573822021484, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 3, - null, - 0 - ], - [ - 0.29349074098191885, - 0.017225027084350586, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 4, - null, - 0 - ], - [ - 0.3678611120835499, - 0.018761873245239258, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 5, - null, - 0 - ], - [ - 0.1494814805134579, - 0.019130229949951172, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 6, - null, - 0 - ], - [ - 0.1507962938795487, - 0.014690399169921875, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 7, - null, - 0 - ], - [ - 0.22791666507113867, - 0.11826229095458984, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 8, - null, - 0 - ], - [ - 0.14987962445975458, - 0.018313884735107422, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 9, - null, - 0 - ], - [ - 0.15136110755470064, - 0.020287036895751953, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 10, - null, - 0 - ], - [ - 0.2548240722442666, - 0.017348527908325195, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 11, - null, - 0 - ], - [ - 0.15296296041817575, - 0.03742170333862305, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 12, - null, - 0 - ], - [ - 0.2259004622776935, - 0.017505168914794922, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 13, - null, - 0 - ], - [ - 0.15081481555325013, - 0.016803741455078125, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 14, - null, - 0 - ], - [ - 0.1502711642526287, - 0.017245054244995117, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 15, - null, - 0 - ], - [ - 0.15167592620297712, - 0.016823291778564453, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ] - ], - "config_origins": { - "1": "Random initial design.", - "2": "Random Search", - "3": "Random Search", - "4": "Random Search", - "5": "Random Search (sorted)", - "6": "Random Search", - "7": "Random Search", - "8": "Random Search (sorted)", - "9": "Random Search (sorted)", - "10": "Random Search", - "11": "Random Search (sorted)", - "12": "Random Search", - "13": "Random Search (sorted)", - "14": "Random Search (sorted)", - "15": "Random Search" - }, - "configs": { - "1": { - "x0": -4.8863531013191, - "x1": 3.714082035496408, - "x2": 5.334658485360944, - "x3": -1.976851650781677, - "x4": 4.598756534240658, - "x5": 0.3959630417703522 - }, - "2": { - "x0": -3.775464100739464, - "x1": 7.0729225676557395, - "x2": 4.1244362645325365, - "x3": -3.9202798884885177, - "x4": 3.987603246882777, - "x5": 0.446331129091648 - }, - "3": { - "x0": -4.844720431598409, - "x1": 7.102743787943187, - "x2": 5.460522095778339, - "x3": -1.3096115234321415, - "x4": 1.2721759371828147, - "x5": 0.01604429403458646 - }, - "4": { - "x0": -5.648097560739432, - "x1": 5.795131874746314, - "x2": 5.0808405531852605, - "x3": -1.7962653499440133, - "x4": 2.5467166184705348, - "x5": 0.329442531592728 - }, - "5": { - "x0": -2.145543181209814, - "x1": 6.384460817279176, - "x2": 7.129129793167451, - "x3": -1.699940501074166, - "x4": 4.264302725689381, - "x5": 0.10965197964972168 - }, - "6": { - "x0": -2.920509653355356, - "x1": 6.209818888862426, - "x2": 7.780510475298777, - "x3": -0.828172678239333, - "x4": 1.0240067332046618, - "x5": 0.39379371054539275 - }, - "7": { - "x0": -5.037997438618113, - "x1": 6.7703948684742725, - "x2": 4.723059239404056, - "x3": -0.6887181588091749, - "x4": 2.6504412074075483, - "x5": 0.2183524084823087 - }, - "8": { - "x0": -3.029850533179202, - "x1": 4.876247675189736, - "x2": 7.046019194864595, - "x3": -1.238757136647561, - "x4": 2.853598664434336, - "x5": 0.1377023684930544 - }, - "9": { - "x0": -3.4971837576575195, - "x1": 4.547660333266444, - "x2": 6.638990360215478, - "x3": -0.18415379086295092, - "x4": 3.7767208168686177, - "x5": 0.0030384998794605877 - }, - "10": { - "x0": -5.716912375846627, - "x1": 7.040321959237497, - "x2": 7.685710163519217, - "x3": -2.8244738375597054, - "x4": 1.551961673892956, - "x5": 0.08581981139937189 - }, - "11": { - "x0": -2.360157381283362, - "x1": 7.642648168261034, - "x2": 6.843983245549454, - "x3": -0.7948860778624645, - "x4": 4.9688658902749605, - "x5": 0.3320976337581304 - }, - "12": { - "x0": -4.596951111964008, - "x1": 6.876244750222268, - "x2": 5.035322634832787, - "x3": -3.5360669928796447, - "x4": 3.176379242762447, - "x5": 0.14443648894083805 - }, - "13": { - "x0": -2.256820197303176, - "x1": 5.890661582657546, - "x2": 5.925331090578034, - "x3": -0.3229725865071278, - "x4": 2.0967469372633416, - "x5": 0.22346570493307155 - }, - "14": { - "x0": -3.291044640475014, - "x1": 6.627403353761753, - "x2": 7.2954235953880655, - "x3": -2.855237393433491, - "x4": 2.1913910639988403, - "x5": 0.12835033721936268 - }, - "15": { - "x0": -2.971811749531511, - "x1": 7.926054810517015, - "x2": 5.883499733485062, - "x3": -2.3410283460709724, - "x4": 3.184584677427921, - "x5": 0.08693370125041033 - } - } -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/scenario.txt b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/scenario.txt deleted file mode 100644 index a229390..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/scenario.txt +++ /dev/null @@ -1,12 +0,0 @@ -execdir = . -deterministic = True -run_obj = quality -overall_obj = par10 -par_factor = 10 -cost_for_crash = 2147483647.0 -algo_runs_timelimit = inf -wallclock_limit = inf -always_race_default = False -ta_run_limit = 15.0 -initial_incumbent = RANDOM -pcs_fn = opt_results/paramnet_surrogate/adult/smac/run_1712039260/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/stats.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/stats.json deleted file mode 100644 index b570bf7..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/stats.json +++ /dev/null @@ -1 +0,0 @@ -{"ta_runs": 15, "n_configs": 15, "wallclock_time_used": 10.532288074493408, "ta_time_used": 0.40616369247436523, "inc_changed": 3, "_n_configs_per_intensify": 14, "_n_calls_of_intensify": 7, "_ema_n_configs_per_intensifiy": 2.0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/traj_aclib2.json deleted file mode 100644 index e43b5d1..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/traj_aclib2.json +++ /dev/null @@ -1,4 +0,0 @@ -{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 0.009428262710571289, "evaluations": 0, "cost": 2147483648, "incumbent": ["x0='-4.8863531013191'", "x1='3.714082035496408'", "x2='5.334658485360944'", "x3='-1.976851650781677'", "x4='4.598756534240658'", "x5='0.3959630417703522'"], "origin": "Random initial design."} -{"cpu_time": 0.04296588897705078, "total_cpu_time": null, "wallclock_time": 0.07055258750915527, "evaluations": 1, "cost": 0.20624074077909746, "incumbent": ["x0='-4.8863531013191'", "x1='3.714082035496408'", "x2='5.334658485360944'", "x3='-1.976851650781677'", "x4='4.598756534240658'", "x5='0.3959630417703522'"], "origin": "Random initial design."} -{"cpu_time": 0.056345462799072266, "total_cpu_time": null, "wallclock_time": 0.36924314498901367, "evaluations": 2, "cost": 0.20497531019335175, "incumbent": ["x0='-3.775464100739464'", "x1='7.0729225676557395'", "x2='4.1244362645325365'", "x3='-3.9202798884885177'", "x4='3.987603246882777'", "x5='0.446331129091648'"], "origin": "Random Search"} -{"cpu_time": 0.11146259307861328, "total_cpu_time": null, "wallclock_time": 1.1278026103973389, "evaluations": 5, "cost": 0.1494814805134579, "incumbent": ["x0='-2.145543181209814'", "x1='6.384460817279176'", "x2='7.129129793167451'", "x3='-1.699940501074166'", "x4='4.264302725689381'", "x5='0.10965197964972168'"], "origin": "Random Search (sorted)"} diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/traj_old.csv b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/traj_old.csv deleted file mode 100644 index 13d39c9..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/traj_old.csv +++ /dev/null @@ -1,5 +0,0 @@ -"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." -0.000000, 2147483648.000000, 0.009428, 1, 0.009428, x0='-4.8863531013191', x1='3.714082035496408', x2='5.334658485360944', x3='-1.976851650781677', x4='4.598756534240658', x5='0.3959630417703522' -0.042966, 0.206241, 0.070553, 1, 0.027587, x0='-4.8863531013191', x1='3.714082035496408', x2='5.334658485360944', x3='-1.976851650781677', x4='4.598756534240658', x5='0.3959630417703522' -0.056345, 0.204975, 0.369243, 2, 0.312898, x0='-3.775464100739464', x1='7.0729225676557395', x2='4.1244362645325365', x3='-3.9202798884885177', x4='3.987603246882777', x5='0.446331129091648' -0.111463, 0.149481, 1.127803, 3, 1.016340, x0='-2.145543181209814', x1='6.384460817279176', x2='7.129129793167451', x3='-1.699940501074166', x4='4.264302725689381', x5='0.10965197964972168' diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/bohb/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/bohb/configs.json deleted file mode 100644 index 8e6ba1d..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/bohb/configs.json +++ /dev/null @@ -1,46 +0,0 @@ -[[0, 0, 0], {"x0": -2.5065890763359486, "x1": 4.461821665649573, "x2": 5.056698253106777, "x3": -1.1339098186925822, "x4": 3.7352004360676117, "x5": 0.2988768542025726}, {"model_based_pick": false}] -[[0, 0, 1], {"x0": -4.39155001402561, "x1": 4.565362891367393, "x2": 6.80641376776804, "x3": -1.716121020751443, "x4": 4.1691131359272475, "x5": 0.1330383388947161}, {"model_based_pick": false}] -[[0, 0, 2], {"x0": -3.2065904362076485, "x1": 3.228692950733555, "x2": 5.351343247762823, "x3": -0.9744191405551481, "x4": 2.2539640646424757, "x5": 0.10052408766201831}, {"model_based_pick": false}] -[[0, 0, 3], {"x0": -3.5055561540449935, "x1": 6.682080453489949, "x2": 6.247078778942028, "x3": -3.0364110908090876, "x4": 3.5644096213687586, "x5": 0.13846276032774746}, {"model_based_pick": false}] -[[0, 0, 4], {"x0": -5.332697396163201, "x1": 4.6463559753686745, "x2": 4.609203792320564, "x3": -3.0590630446045837, "x4": 1.6171970712369985, "x5": 0.2949315845317597}, {"model_based_pick": false}] -[[0, 0, 5], {"x0": -2.605059170531719, "x1": 5.873161166859299, "x2": 5.900602185452282, "x3": -1.611896527656317, "x4": 3.767737482085177, "x5": 0.49600703760094716}, {"model_based_pick": false}] -[[0, 0, 6], {"x0": -4.641929850961576, "x1": 3.339901056210377, "x2": 5.200425824857474, "x3": -0.5212975023690745, "x4": 4.761333635543263, "x5": 0.31433878008511557}, {"model_based_pick": false}] -[[0, 0, 7], {"x0": -5.88489393744292, "x1": 5.17839964400616, "x2": 5.685082083236257, "x3": -2.6149667109840964, "x4": 1.6079261377710985, "x5": 0.14365687112701336}, {"model_based_pick": false}] -[[0, 0, 8], {"x0": -3.7734192966621105, "x1": 4.85221290784018, "x2": 6.53108629732704, "x3": -2.776226739066425, "x4": 4.985834103556041, "x5": 0.4551802357515008}, {"model_based_pick": false}] -[[0, 0, 9], {"x0": -2.9414285851219595, "x1": 6.8907175535874305, "x2": 6.45111930547508, "x3": -0.2894199659137433, "x4": 4.62916549063462, "x5": 0.1587986558174712}, {"model_based_pick": false}] -[[0, 0, 10], {"x0": -5.386145185815302, "x1": 3.03875655614379, "x2": 4.925515177694803, "x3": -1.7741013348886616, "x4": 4.940053646691746, "x5": 0.2433854651727428}, {"model_based_pick": false}] -[[0, 0, 11], {"x0": -5.255129569615514, "x1": 4.310772652677306, "x2": 6.279752674991901, "x3": -0.7762734604447408, "x4": 1.5166620597465226, "x5": 0.34533772208315044}, {"model_based_pick": false}] -[[0, 0, 12], {"x0": -3.0835647413895377, "x1": 6.284888069398461, "x2": 6.921161190685736, "x3": -2.2530655855198676, "x4": 4.311010692123949, "x5": 0.3291321154217501}, {"model_based_pick": false}] -[[0, 0, 13], {"x0": -4.886926846497815, "x1": 5.551236637947849, "x2": 4.597774025475708, "x3": -0.588179044116889, "x4": 4.468988087236539, "x5": 0.4593672373559663}, {"model_based_pick": false}] -[[0, 0, 14], {"x0": -2.0337552827432726, "x1": 3.8696364986538727, "x2": 4.304395318737389, "x3": -3.8537245040315886, "x4": 4.2815969505536025, "x5": 0.4302018846887885}, {"model_based_pick": true}] -[[0, 0, 15], {"x0": -3.0693289223342353, "x1": 7.732668311145533, "x2": 4.291607385609261, "x3": -3.461087400150263, "x4": 1.79415524663438, "x5": 0.1559164322669218}, {"model_based_pick": false}] -[[0, 0, 16], {"x0": -2.597501429651885, "x1": 6.344616533424656, "x2": 4.317481464780085, "x3": -0.7246768251757483, "x4": 4.463311739230007, "x5": 0.027538897696750275}, {"model_based_pick": false}] -[[0, 0, 17], {"x0": -3.6583101037812837, "x1": 5.207792862950759, "x2": 7.702262206384037, "x3": -0.1335320077915978, "x4": 2.175922592129343, "x5": 0.4598499467490786}, {"model_based_pick": false}] -[[0, 0, 18], {"x0": -3.948889996316198, "x1": 7.639302153455494, "x2": 6.6356163859839175, "x3": -2.853360222310532, "x4": 3.8203767109704945, "x5": 0.030228190256577928}, {"model_based_pick": true}] -[[0, 0, 19], {"x0": -3.9790484220444364, "x1": 3.7611812413546466, "x2": 7.043051984847846, "x3": -1.6223624578756146, "x4": 4.5483699934263955, "x5": 0.05331469280904799}, {"model_based_pick": false}] -[[0, 0, 20], {"x0": -2.2802604688167345, "x1": 5.767016639530814, "x2": 4.7537898775265885, "x3": -0.7029591084292042, "x4": 3.427493490456716, "x5": 0.48781773576874043}, {"model_based_pick": true}] -[[0, 0, 21], {"x0": -2.8749501298075786, "x1": 6.577661168022782, "x2": 4.050986238565307, "x3": -0.5681045314663593, "x4": 4.294611325878515, "x5": 0.1792971528650919}, {"model_based_pick": true}] -[[0, 0, 22], {"x0": -4.5723018430049684, "x1": 4.698039208048985, "x2": 4.833753354873139, "x3": -0.19667071661663504, "x4": 2.2157236672652005, "x5": 0.13063797379053999}, {"model_based_pick": false}] -[[0, 0, 23], {"x0": -2.618670731132614, "x1": 6.955007407910499, "x2": 4.52910522835774, "x3": -0.3705258315383042, "x4": 4.242278368997587, "x5": 0.020481772678285076}, {"model_based_pick": true}] -[[0, 0, 24], {"x0": -2.7103272780184215, "x1": 6.541339485397708, "x2": 5.985216563117403, "x3": -0.8705067381762999, "x4": 4.914567950320173, "x5": 0.4546909324268388}, {"model_based_pick": false}] -[[0, 0, 25], {"x0": -2.4389584731894383, "x1": 6.6917451412864875, "x2": 5.041646773429198, "x3": -0.2508662057236224, "x4": 3.5760681880072744, "x5": 0.030860650289091008}, {"model_based_pick": true}] -[[0, 0, 26], {"x0": -4.005640324114484, "x1": 6.953384666519639, "x2": 5.473486145134563, "x3": -1.7703276412633224, "x4": 4.186620622950883, "x5": 0.33934527422531857}, {"model_based_pick": false}] -[[1, 0, 0], {"x0": -2.813250744625598, "x1": 3.9819921429075302, "x2": 4.89629926468183, "x3": -0.7852044644013709, "x4": 4.936927610225046, "x5": 0.17989131371446282}, {"model_based_pick": false}] -[[1, 0, 1], {"x0": -2.4235367177375675, "x1": 6.58794988296078, "x2": 4.018975933250277, "x3": -0.42379313272078667, "x4": 3.8877678752931146, "x5": 0.17468530372590008}, {"model_based_pick": true}] -[[1, 0, 2], {"x0": -4.2418083630408425, "x1": 3.9798819752756884, "x2": 5.341810937487686, "x3": -2.59475476454976, "x4": 1.801355217152981, "x5": 0.08600410031760358}, {"model_based_pick": false}] -[[1, 0, 3], {"x0": -5.012321047419874, "x1": 3.676931150654368, "x2": 6.2994617573102465, "x3": -1.6883681213263606, "x4": 4.761014379646836, "x5": 0.2396936089693511}, {"model_based_pick": false}] -[[1, 0, 4], {"x0": -2.861385294309301, "x1": 6.820011063424848, "x2": 4.129778596157302, "x3": -0.20081671959651048, "x4": 4.148152494689819, "x5": 0.0782486576049661}, {"model_based_pick": true}] -[[1, 0, 5], {"x0": -2.4613180705189155, "x1": 6.9376484078543506, "x2": 7.965576433021855, "x3": -0.36786445574663373, "x4": 3.048152085463, "x5": 0.008460649847695397}, {"model_based_pick": true}] -[[1, 0, 6], {"x0": -2.741053347908192, "x1": 6.750623716384487, "x2": 7.170450132564399, "x3": -1.0854812676629177, "x4": 4.487838646274174, "x5": 0.05378721360846847}, {"model_based_pick": true}] -[[1, 0, 7], {"x0": -4.145066130035293, "x1": 7.830890483427065, "x2": 6.15392369400187, "x3": -0.21870285116487453, "x4": 1.9282429105425147, "x5": 0.050544970066844275}, {"model_based_pick": false}] -[[1, 0, 8], {"x0": -2.4596484133137793, "x1": 6.813299879031181, "x2": 6.7050713059400575, "x3": -0.5719797100784554, "x4": 3.0637829663413005, "x5": 0.06452161453963498}, {"model_based_pick": true}] -[[2, 0, 0], {"x0": -5.81942628548133, "x1": 4.634740536791398, "x2": 7.409125506730863, "x3": -2.8176024852168924, "x4": 4.380728610180624, "x5": 0.2972519845470536}, {"model_based_pick": false}] -[[2, 0, 1], {"x0": -3.364637302249942, "x1": 6.0795983890108065, "x2": 6.22827694740851, "x3": -2.6319971256270325, "x4": 4.571181871258345, "x5": 0.126293515431755}, {"model_based_pick": false}] -[[2, 0, 2], {"x0": -2.5005100891808203, "x1": 6.966782059498742, "x2": 7.367049836852322, "x3": -0.028476140158216534, "x4": 3.2610943752637587, "x5": 0.016398081170998738}, {"model_based_pick": true}] -[[2, 0, 3], {"x0": -2.2371680185168317, "x1": 7.102875147968517, "x2": 7.455475906749537, "x3": -0.3365030236827198, "x4": 3.8983956348112865, "x5": 0.03374414842578564}, {"model_based_pick": true}] -[[2, 0, 4], {"x0": -3.0305899635336218, "x1": 6.892563744268697, "x2": 7.29558399760765, "x3": -0.20174735337500538, "x4": 4.490882774750068, "x5": 0.16065712305703558}, {"model_based_pick": true}] -[[2, 0, 5], {"x0": -3.18029211845285, "x1": 6.861411309718278, "x2": 7.19027851707858, "x3": -0.4061422324695725, "x4": 4.103997057576186, "x5": 0.1389781738235218}, {"model_based_pick": true}] -[[3, 0, 0], {"x0": -2.0996798353729504, "x1": 4.9636374641303345, "x2": 5.251965772720789, "x3": -3.9542735844598735, "x4": 1.0963204568092517, "x5": 0.16374903702024013}, {"model_based_pick": false}] -[[3, 0, 1], {"x0": -5.071038723941209, "x1": 7.934812845671951, "x2": 4.777892240069113, "x3": -0.4583313486066105, "x4": 4.906213790602175, "x5": 0.27409995029401096}, {"model_based_pick": false}] -[[3, 0, 2], {"x0": -5.56701824248846, "x1": 7.74160287044974, "x2": 5.592845461139718, "x3": -2.063553368266295, "x4": 4.352250121413407, "x5": 0.09316593037279447}, {"model_based_pick": false}] -[[3, 0, 3], {"x0": -5.795055637234213, "x1": 7.271411779142536, "x2": 6.6835229229585815, "x3": -2.9651643870510416, "x4": 2.483711901523497, "x5": 0.31013359491394216}, {"model_based_pick": false}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/bohb/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/bohb/results.json deleted file mode 100644 index 5f616a7..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/bohb/results.json +++ /dev/null @@ -1,65 +0,0 @@ -[[0, 0, 0], 9.0, {"submitted": 1557070324.5663352, "started": 1557070324.566408, "finished": 1557070324.5707285}, {"loss": 0.334506454154526, "info": {"x0": -2.5065890763359486, "x1": 4.461821665649573, "x2": 5.056698253106777, "x3": -1.1339098186925822, "x4": 3.7352004360676117, "x5": 0.2988768542025726}}, null] -[[0, 0, 1], 9.0, {"submitted": 1557070324.5721874, "started": 1557070324.572248, "finished": 1557070324.5788844}, {"loss": 0.4052905856444058, "info": {"x0": -4.39155001402561, "x1": 4.565362891367393, "x2": 6.80641376776804, "x3": -1.716121020751443, "x4": 4.1691131359272475, "x5": 0.1330383388947161}}, null] -[[0, 0, 2], 9.0, {"submitted": 1557070324.5801642, "started": 1557070324.5802279, "finished": 1557070324.5856903}, {"loss": 0.3538699190064275, "info": {"x0": -3.2065904362076485, "x1": 3.228692950733555, "x2": 5.351343247762823, "x3": -0.9744191405551481, "x4": 2.2539640646424757, "x5": 0.10052408766201831}}, null] -[[0, 0, 3], 9.0, {"submitted": 1557070324.5874686, "started": 1557070324.58753, "finished": 1557070324.592655}, {"loss": 0.3495479701500647, "info": {"x0": -3.5055561540449935, "x1": 6.682080453489949, "x2": 6.247078778942028, "x3": -3.0364110908090876, "x4": 3.5644096213687586, "x5": 0.13846276032774746}}, null] -[[0, 0, 4], 9.0, {"submitted": 1557070324.594041, "started": 1557070324.5941079, "finished": 1557070324.6660924}, {"loss": 0.48678966508659344, "info": {"x0": -5.332697396163201, "x1": 4.6463559753686745, "x2": 4.609203792320564, "x3": -3.0590630446045837, "x4": 1.6171970712369985, "x5": 0.2949315845317597}}, null] -[[0, 0, 5], 9.0, {"submitted": 1557070324.6676302, "started": 1557070324.6677153, "finished": 1557070324.6733346}, {"loss": 0.3263791466513958, "info": {"x0": -2.605059170531719, "x1": 5.873161166859299, "x2": 5.900602185452282, "x3": -1.611896527656317, "x4": 3.767737482085177, "x5": 0.49600703760094716}}, null] -[[0, 0, 6], 9.0, {"submitted": 1557070324.6748006, "started": 1557070324.6748757, "finished": 1557070324.6800292}, {"loss": 0.46910054609591895, "info": {"x0": -4.641929850961576, "x1": 3.339901056210377, "x2": 5.200425824857474, "x3": -0.5212975023690745, "x4": 4.761333635543263, "x5": 0.31433878008511557}}, null] -[[0, 0, 7], 9.0, {"submitted": 1557070324.6816223, "started": 1557070324.681706, "finished": 1557070324.6880493}, {"loss": 0.4901153102761814, "info": {"x0": -5.88489393744292, "x1": 5.17839964400616, "x2": 5.685082083236257, "x3": -2.6149667109840964, "x4": 1.6079261377710985, "x5": 0.14365687112701336}}, null] -[[0, 0, 8], 9.0, {"submitted": 1557070324.6902838, "started": 1557070324.690383, "finished": 1557070324.6971896}, {"loss": 0.40303043578620795, "info": {"x0": -3.7734192966621105, "x1": 4.85221290784018, "x2": 6.53108629732704, "x3": -2.776226739066425, "x4": 4.985834103556041, "x5": 0.4551802357515008}}, null] -[[0, 0, 9], 9.0, {"submitted": 1557070324.6996238, "started": 1557070324.6997387, "finished": 1557070324.7063384}, {"loss": 0.3094280427916326, "info": {"x0": -2.9414285851219595, "x1": 6.8907175535874305, "x2": 6.45111930547508, "x3": -0.2894199659137433, "x4": 4.62916549063462, "x5": 0.1587986558174712}}, null] -[[0, 0, 10], 9.0, {"submitted": 1557070324.7082567, "started": 1557070324.7083223, "finished": 1557070324.7130682}, {"loss": 1, "info": {"x0": -5.386145185815302, "x1": 3.03875655614379, "x2": 4.925515177694803, "x3": -1.7741013348886616, "x4": 4.940053646691746, "x5": 0.2433854651727428}}, null] -[[0, 0, 11], 9.0, {"submitted": 1557070324.715087, "started": 1557070324.7151806, "finished": 1557070324.7218623}, {"loss": 0.471771212817888, "info": {"x0": -5.255129569615514, "x1": 4.310772652677306, "x2": 6.279752674991901, "x3": -0.7762734604447408, "x4": 1.5166620597465226, "x5": 0.34533772208315044}}, null] -[[0, 0, 12], 9.0, {"submitted": 1557070324.7242, "started": 1557070324.7242892, "finished": 1557070324.7314503}, {"loss": 0.3217850523943776, "info": {"x0": -3.0835647413895377, "x1": 6.284888069398461, "x2": 6.921161190685736, "x3": -2.2530655855198676, "x4": 4.311010692123949, "x5": 0.3291321154217501}}, null] -[[0, 0, 13], 9.0, {"submitted": 1557070324.7337694, "started": 1557070324.733861, "finished": 1557070324.740567}, {"loss": 0.4694280383980239, "info": {"x0": -4.886926846497815, "x1": 5.551236637947849, "x2": 4.597774025475708, "x3": -0.588179044116889, "x4": 4.468988087236539, "x5": 0.4593672373559663}}, null] -[[0, 0, 14], 9.0, {"submitted": 1557070324.7972646, "started": 1557070324.7973435, "finished": 1557070324.8023303}, {"loss": 0.42018910581593116, "info": {"x0": -2.0337552827432726, "x1": 3.8696364986538727, "x2": 4.304395318737389, "x3": -3.8537245040315886, "x4": 4.2815969505536025, "x5": 0.4302018846887885}}, null] -[[0, 0, 15], 9.0, {"submitted": 1557070324.8042424, "started": 1557070324.804302, "finished": 1557070324.8090208}, {"loss": 0.3397832106484094, "info": {"x0": -3.0693289223342353, "x1": 7.732668311145533, "x2": 4.291607385609261, "x3": -3.461087400150263, "x4": 1.79415524663438, "x5": 0.1559164322669218}}, null] -[[0, 0, 16], 9.0, {"submitted": 1557070324.8111432, "started": 1557070324.8112223, "finished": 1557070324.8163707}, {"loss": 0.296116233189415, "info": {"x0": -2.597501429651885, "x1": 6.344616533424656, "x2": 4.317481464780085, "x3": -0.7246768251757483, "x4": 4.463311739230007, "x5": 0.027538897696750275}}, null] -[[0, 0, 17], 9.0, {"submitted": 1557070324.8183002, "started": 1557070324.8183575, "finished": 1557070324.8236532}, {"loss": 0.3796079279067221, "info": {"x0": -3.6583101037812837, "x1": 5.207792862950759, "x2": 7.702262206384037, "x3": -0.1335320077915978, "x4": 2.175922592129343, "x5": 0.4598499467490786}}, null] -[[0, 0, 18], 9.0, {"submitted": 1557070324.8772373, "started": 1557070324.8773246, "finished": 1557070324.8823316}, {"loss": 0.3665175181033426, "info": {"x0": -3.948889996316198, "x1": 7.639302153455494, "x2": 6.6356163859839175, "x3": -2.853360222310532, "x4": 3.8203767109704945, "x5": 0.030228190256577928}}, null] -[[0, 0, 19], 9.0, {"submitted": 1557070324.8846974, "started": 1557070324.884785, "finished": 1557070324.8898866}, {"loss": 1, "info": {"x0": -3.9790484220444364, "x1": 3.7611812413546466, "x2": 7.043051984847846, "x3": -1.6223624578756146, "x4": 4.5483699934263955, "x5": 0.05331469280904799}}, null] -[[0, 0, 20], 9.0, {"submitted": 1557070324.9442883, "started": 1557070324.9443748, "finished": 1557070324.949274}, {"loss": 0.32434962959554586, "info": {"x0": -2.2802604688167345, "x1": 5.767016639530814, "x2": 4.7537898775265885, "x3": -0.7029591084292042, "x4": 3.427493490456716, "x5": 0.48781773576874043}}, null] -[[0, 0, 21], 9.0, {"submitted": 1557070325.0029936, "started": 1557070325.003075, "finished": 1557070325.007717}, {"loss": 0.32005995630681844, "info": {"x0": -2.8749501298075786, "x1": 6.577661168022782, "x2": 4.050986238565307, "x3": -0.5681045314663593, "x4": 4.294611325878515, "x5": 0.1792971528650919}}, null] -[[0, 0, 22], 9.0, {"submitted": 1557070325.009983, "started": 1557070325.0100465, "finished": 1557070325.0150518}, {"loss": 0.43886069632695496, "info": {"x0": -4.5723018430049684, "x1": 4.698039208048985, "x2": 4.833753354873139, "x3": -0.19667071661663504, "x4": 2.2157236672652005, "x5": 0.13063797379053999}}, null] -[[0, 0, 23], 9.0, {"submitted": 1557070325.071886, "started": 1557070325.0719478, "finished": 1557070325.0766256}, {"loss": 0.298408667937306, "info": {"x0": -2.618670731132614, "x1": 6.955007407910499, "x2": 4.52910522835774, "x3": -0.3705258315383042, "x4": 4.242278368997587, "x5": 0.020481772678285076}}, null] -[[0, 0, 24], 9.0, {"submitted": 1557070325.0789719, "started": 1557070325.0790617, "finished": 1557070325.0843709}, {"loss": 0.34373616239887655, "info": {"x0": -2.7103272780184215, "x1": 6.541339485397708, "x2": 5.985216563117403, "x3": -0.8705067381762999, "x4": 4.914567950320173, "x5": 0.4546909324268388}}, null] -[[0, 0, 25], 9.0, {"submitted": 1557070325.1376696, "started": 1557070325.137751, "finished": 1557070325.1426404}, {"loss": 0.298270291681178, "info": {"x0": -2.4389584731894383, "x1": 6.6917451412864875, "x2": 5.041646773429198, "x3": -0.2508662057236224, "x4": 3.5760681880072744, "x5": 0.030860650289091008}}, null] -[[0, 0, 26], 9.0, {"submitted": 1557070325.1446536, "started": 1557070325.1447132, "finished": 1557070325.1504948}, {"loss": 0.4512730569392442, "info": {"x0": -4.005640324114484, "x1": 6.953384666519639, "x2": 5.473486145134563, "x3": -1.7703276412633224, "x4": 4.186620622950883, "x5": 0.33934527422531857}}, null] -[[0, 0, 0], 27.0, {"submitted": 1557070325.1526608, "started": 1557070325.152738, "finished": 1557070325.1591148}, {"loss": 0.3099538710070052, "info": {"x0": -2.5065890763359486, "x1": 4.461821665649573, "x2": 5.056698253106777, "x3": -1.1339098186925822, "x4": 3.7352004360676117, "x5": 0.2988768542025726}}, null] -[[0, 0, 5], 27.0, {"submitted": 1557070325.1600268, "started": 1557070325.160106, "finished": 1557070325.165625}, {"loss": 0.30136530975725273, "info": {"x0": -2.605059170531719, "x1": 5.873161166859299, "x2": 5.900602185452282, "x3": -1.611896527656317, "x4": 3.767737482085177, "x5": 0.49600703760094716}}, null] -[[0, 0, 9], 27.0, {"submitted": 1557070325.1664183, "started": 1557070325.1664762, "finished": 1557070325.1716375}, {"loss": 0.2919095936149524, "info": {"x0": -2.9414285851219595, "x1": 6.8907175535874305, "x2": 6.45111930547508, "x3": -0.2894199659137433, "x4": 4.62916549063462, "x5": 0.1587986558174712}}, null] -[[0, 0, 12], 27.0, {"submitted": 1557070325.172642, "started": 1557070325.172712, "finished": 1557070325.1791763}, {"loss": 0.2991190011736102, "info": {"x0": -3.0835647413895377, "x1": 6.284888069398461, "x2": 6.921161190685736, "x3": -2.2530655855198676, "x4": 4.311010692123949, "x5": 0.3291321154217501}}, null] -[[0, 0, 16], 27.0, {"submitted": 1557070325.1801279, "started": 1557070325.1802146, "finished": 1557070325.1868966}, {"loss": 0.28842711833061657, "info": {"x0": -2.597501429651885, "x1": 6.344616533424656, "x2": 4.317481464780085, "x3": -0.7246768251757483, "x4": 4.463311739230007, "x5": 0.027538897696750275}}, null] -[[0, 0, 20], 27.0, {"submitted": 1557070325.1878808, "started": 1557070325.1879687, "finished": 1557070325.1946797}, {"loss": 0.30398062611610466, "info": {"x0": -2.2802604688167345, "x1": 5.767016639530814, "x2": 4.7537898775265885, "x3": -0.7029591084292042, "x4": 3.427493490456716, "x5": 0.48781773576874043}}, null] -[[0, 0, 21], 27.0, {"submitted": 1557070325.1958382, "started": 1557070325.1959229, "finished": 1557070325.203587}, {"loss": 0.3018496250905564, "info": {"x0": -2.8749501298075786, "x1": 6.577661168022782, "x2": 4.050986238565307, "x3": -0.5681045314663593, "x4": 4.294611325878515, "x5": 0.1792971528650919}}, null] -[[0, 0, 23], 27.0, {"submitted": 1557070325.205099, "started": 1557070325.2051764, "finished": 1557070325.2114055}, {"loss": 0.2918265646313939, "info": {"x0": -2.618670731132614, "x1": 6.955007407910499, "x2": 4.52910522835774, "x3": -0.3705258315383042, "x4": 4.242278368997587, "x5": 0.020481772678285076}}, null] -[[0, 0, 25], 27.0, {"submitted": 1557070325.2127593, "started": 1557070325.2128341, "finished": 1557070325.2194915}, {"loss": 0.28766143557674007, "info": {"x0": -2.4389584731894383, "x1": 6.6917451412864875, "x2": 5.041646773429198, "x3": -0.2508662057236224, "x4": 3.5760681880072744, "x5": 0.030860650289091008}}, null] -[[0, 0, 16], 81.0, {"submitted": 1557070325.2213945, "started": 1557070325.2214868, "finished": 1557070325.2285473}, {"loss": 0.28679427791180645, "info": {"x0": -2.597501429651885, "x1": 6.344616533424656, "x2": 4.317481464780085, "x3": -0.7246768251757483, "x4": 4.463311739230007, "x5": 0.027538897696750275}}, null] -[[0, 0, 23], 81.0, {"submitted": 1557070325.2295728, "started": 1557070325.229643, "finished": 1557070325.2347338}, {"loss": 0.29061346594670384, "info": {"x0": -2.618670731132614, "x1": 6.955007407910499, "x2": 4.52910522835774, "x3": -0.3705258315383042, "x4": 4.242278368997587, "x5": 0.020481772678285076}}, null] -[[0, 0, 25], 81.0, {"submitted": 1557070325.2356472, "started": 1557070325.23573, "finished": 1557070325.241122}, {"loss": 0.2857472291602529, "info": {"x0": -2.4389584731894383, "x1": 6.6917451412864875, "x2": 5.041646773429198, "x3": -0.2508662057236224, "x4": 3.5760681880072744, "x5": 0.030860650289091008}}, null] -[[0, 0, 25], 243.0, {"submitted": 1557070325.2420735, "started": 1557070325.2421348, "finished": 1557070325.247163}, {"loss": 0.2857472291602529, "info": {"x0": -2.4389584731894383, "x1": 6.6917451412864875, "x2": 5.041646773429198, "x3": -0.2508662057236224, "x4": 3.5760681880072744, "x5": 0.030860650289091008}}, null] -[[1, 0, 0], 27.0, {"submitted": 1557070325.2484767, "started": 1557070325.2485478, "finished": 1557070325.253638}, {"loss": 0.30846863203358965, "info": {"x0": -2.813250744625598, "x1": 3.9819921429075302, "x2": 4.89629926468183, "x3": -0.7852044644013709, "x4": 4.936927610225046, "x5": 0.17989131371446282}}, null] -[[1, 0, 1], 27.0, {"submitted": 1557070325.306925, "started": 1557070325.3070118, "finished": 1557070325.3125386}, {"loss": 0.29602859759600186, "info": {"x0": -2.4235367177375675, "x1": 6.58794988296078, "x2": 4.018975933250277, "x3": -0.42379313272078667, "x4": 3.8877678752931146, "x5": 0.17468530372590008}}, null] -[[1, 0, 2], 27.0, {"submitted": 1557070325.3140006, "started": 1557070325.314062, "finished": 1557070325.3188002}, {"loss": 0.3915590325221969, "info": {"x0": -4.2418083630408425, "x1": 3.9798819752756884, "x2": 5.341810937487686, "x3": -2.59475476454976, "x4": 1.801355217152981, "x5": 0.08600410031760358}}, null] -[[1, 0, 3], 27.0, {"submitted": 1557070325.320898, "started": 1557070325.320979, "finished": 1557070325.3274758}, {"loss": 0.44784593525232674, "info": {"x0": -5.012321047419874, "x1": 3.676931150654368, "x2": 6.2994617573102465, "x3": -1.6883681213263606, "x4": 4.761014379646836, "x5": 0.2396936089693511}}, null] -[[1, 0, 4], 27.0, {"submitted": 1557070325.383378, "started": 1557070325.38346, "finished": 1557070325.3891184}, {"loss": 0.2995987046879761, "info": {"x0": -2.861385294309301, "x1": 6.820011063424848, "x2": 4.129778596157302, "x3": -0.20081671959651048, "x4": 4.148152494689819, "x5": 0.0782486576049661}}, null] -[[1, 0, 5], 27.0, {"submitted": 1557070325.4421906, "started": 1557070325.4422712, "finished": 1557070325.4473794}, {"loss": 0.29535055023057877, "info": {"x0": -2.4613180705189155, "x1": 6.9376484078543506, "x2": 7.965576433021855, "x3": -0.36786445574663373, "x4": 3.048152085463, "x5": 0.008460649847695397}}, null] -[[1, 0, 6], 27.0, {"submitted": 1557070325.5007708, "started": 1557070325.5008366, "finished": 1557070325.5059884}, {"loss": 0.2921725086018278, "info": {"x0": -2.741053347908192, "x1": 6.750623716384487, "x2": 7.170450132564399, "x3": -1.0854812676629177, "x4": 4.487838646274174, "x5": 0.05378721360846847}}, null] -[[1, 0, 7], 27.0, {"submitted": 1557070325.5080695, "started": 1557070325.508132, "finished": 1557070325.512707}, {"loss": 0.3414022149997884, "info": {"x0": -4.145066130035293, "x1": 7.830890483427065, "x2": 6.15392369400187, "x3": -0.21870285116487453, "x4": 1.9282429105425147, "x5": 0.050544970066844275}}, null] -[[1, 0, 8], 27.0, {"submitted": 1557070325.5664256, "started": 1557070325.5664845, "finished": 1557070325.5708895}, {"loss": 0.2907057170454426, "info": {"x0": -2.4596484133137793, "x1": 6.813299879031181, "x2": 6.7050713059400575, "x3": -0.5719797100784554, "x4": 3.0637829663413005, "x5": 0.06452161453963498}}, null] -[[1, 0, 5], 81.0, {"submitted": 1557070325.5723836, "started": 1557070325.5724397, "finished": 1557070325.5776486}, {"loss": 0.2941282264000265, "info": {"x0": -2.4613180705189155, "x1": 6.9376484078543506, "x2": 7.965576433021855, "x3": -0.36786445574663373, "x4": 3.048152085463, "x5": 0.008460649847695397}}, null] -[[1, 0, 6], 81.0, {"submitted": 1557070325.5784354, "started": 1557070325.5784867, "finished": 1557070325.583317}, {"loss": 0.29440498116546443, "info": {"x0": -2.741053347908192, "x1": 6.750623716384487, "x2": 7.170450132564399, "x3": -1.0854812676629177, "x4": 4.487838646274174, "x5": 0.05378721360846847}}, null] -[[1, 0, 8], 81.0, {"submitted": 1557070325.5841703, "started": 1557070325.5842388, "finished": 1557070325.589516}, {"loss": 0.2992112520095167, "info": {"x0": -2.4596484133137793, "x1": 6.813299879031181, "x2": 6.7050713059400575, "x3": -0.5719797100784554, "x4": 3.0637829663413005, "x5": 0.06452161453963498}}, null] -[[1, 0, 5], 243.0, {"submitted": 1557070325.5906692, "started": 1557070325.5907457, "finished": 1557070325.5970464}, {"loss": 0.3047324697434132, "info": {"x0": -2.4613180705189155, "x1": 6.9376484078543506, "x2": 7.965576433021855, "x3": -0.36786445574663373, "x4": 3.048152085463, "x5": 0.008460649847695397}}, null] -[[2, 0, 0], 81.0, {"submitted": 1557070325.5988984, "started": 1557070325.5989723, "finished": 1557070325.6042407}, {"loss": 0.44380534082788603, "info": {"x0": -5.81942628548133, "x1": 4.634740536791398, "x2": 7.409125506730863, "x3": -2.8176024852168924, "x4": 4.380728610180624, "x5": 0.2972519845470536}}, null] -[[2, 0, 1], 81.0, {"submitted": 1557070325.6058092, "started": 1557070325.6058664, "finished": 1557070325.6107826}, {"loss": 0.3144511047104627, "info": {"x0": -3.364637302249942, "x1": 6.0795983890108065, "x2": 6.22827694740851, "x3": -2.6319971256270325, "x4": 4.571181871258345, "x5": 0.126293515431755}}, null] -[[2, 0, 2], 81.0, {"submitted": 1557070325.6707077, "started": 1557070325.670766, "finished": 1557070325.6756217}, {"loss": 0.30047509159081753, "info": {"x0": -2.5005100891808203, "x1": 6.966782059498742, "x2": 7.367049836852322, "x3": -0.028476140158216534, "x4": 3.2610943752637587, "x5": 0.016398081170998738}}, null] -[[2, 0, 3], 81.0, {"submitted": 1557070325.7289977, "started": 1557070325.7290597, "finished": 1557070325.7339618}, {"loss": 0.2956503638403828, "info": {"x0": -2.2371680185168317, "x1": 7.102875147968517, "x2": 7.455475906749537, "x3": -0.3365030236827198, "x4": 3.8983956348112865, "x5": 0.03374414842578564}}, null] -[[2, 0, 4], 81.0, {"submitted": 1557070325.787279, "started": 1557070325.7873397, "finished": 1557070325.792248}, {"loss": 0.2884547972982935, "info": {"x0": -3.0305899635336218, "x1": 6.892563744268697, "x2": 7.29558399760765, "x3": -0.20174735337500538, "x4": 4.490882774750068, "x5": 0.16065712305703558}}, null] -[[2, 0, 5], 81.0, {"submitted": 1557070325.845306, "started": 1557070325.845384, "finished": 1557070325.8507879}, {"loss": 0.28873154542597895, "info": {"x0": -3.18029211845285, "x1": 6.861411309718278, "x2": 7.19027851707858, "x3": -0.4061422324695725, "x4": 4.103997057576186, "x5": 0.1389781738235218}}, null] -[[2, 0, 4], 243.0, {"submitted": 1557070325.8520627, "started": 1557070325.8521326, "finished": 1557070325.8572533}, {"loss": 0.29115774885232387, "info": {"x0": -3.0305899635336218, "x1": 6.892563744268697, "x2": 7.29558399760765, "x3": -0.20174735337500538, "x4": 4.490882774750068, "x5": 0.16065712305703558}}, null] -[[2, 0, 5], 243.0, {"submitted": 1557070325.8580117, "started": 1557070325.8580742, "finished": 1557070325.862978}, {"loss": 0.28890220881484424, "info": {"x0": -3.18029211845285, "x1": 6.861411309718278, "x2": 7.19027851707858, "x3": -0.4061422324695725, "x4": 4.103997057576186, "x5": 0.1389781738235218}}, null] -[[3, 0, 0], 243.0, {"submitted": 1557070325.8647134, "started": 1557070325.8647902, "finished": 1557070325.86997}, {"loss": 0.2943634682561088, "info": {"x0": -2.0996798353729504, "x1": 4.9636374641303345, "x2": 5.251965772720789, "x3": -3.9542735844598735, "x4": 1.0963204568092517, "x5": 0.16374903702024013}}, null] -[[3, 0, 1], 243.0, {"submitted": 1557070325.8712714, "started": 1557070325.871324, "finished": 1557070325.8777437}, {"loss": 0.48344557461593424, "info": {"x0": -5.071038723941209, "x1": 7.934812845671951, "x2": 4.777892240069113, "x3": -0.4583313486066105, "x4": 4.906213790602175, "x5": 0.27409995029401096}}, null] -[[3, 0, 2], 243.0, {"submitted": 1557070325.8795137, "started": 1557070325.8795962, "finished": 1557070325.8857188}, {"loss": 0.4864160541494503, "info": {"x0": -5.56701824248846, "x1": 7.74160287044974, "x2": 5.592845461139718, "x3": -2.063553368266295, "x4": 4.352250121413407, "x5": 0.09316593037279447}}, null] -[[3, 0, 3], 243.0, {"submitted": 1557070325.887466, "started": 1557070325.8875444, "finished": 1557070325.892651}, {"loss": 0.47245848632991533, "info": {"x0": -5.795055637234213, "x1": 7.271411779142536, "x2": 6.6835229229585815, "x3": -2.9651643870510416, "x4": 2.483711901523497, "x5": 0.31013359491394216}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/hyperband/configs.json deleted file mode 100644 index 543c880..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/hyperband/configs.json +++ /dev/null @@ -1,46 +0,0 @@ -[[0, 0, 0], {"x0": -2.353237746850475, "x1": 3.2263840856443586, "x2": 5.339272173192542, "x3": -2.7473601519758244, "x4": 4.228242952578803, "x5": 0.05932316647896063}, {}] -[[0, 0, 1], {"x0": -5.123876223016712, "x1": 7.0245999232386795, "x2": 4.419642376121276, "x3": -0.7905526791707178, "x4": 4.1312698911127725, "x5": 0.09844491991881099}, {}] -[[0, 0, 2], {"x0": -2.1754750861516046, "x1": 5.645377979108634, "x2": 5.782394044991543, "x3": -0.581341797908768, "x4": 3.5085534616008087, "x5": 0.006979983961406255}, {}] -[[0, 0, 3], {"x0": -2.8365223555851107, "x1": 6.469156509304472, "x2": 4.2362770764215405, "x3": -3.6207120231589696, "x4": 4.814726768486213, "x5": 0.05085369238099352}, {}] -[[0, 0, 4], {"x0": -2.30392076064103, "x1": 3.495661732787467, "x2": 7.4704556511052065, "x3": -0.29911725353444174, "x4": 2.65395064586261, "x5": 0.1765647941590588}, {}] -[[0, 0, 5], {"x0": -2.317895887507979, "x1": 4.620027274960217, "x2": 6.1087416121239, "x3": -0.456488127335283, "x4": 4.428445952951223, "x5": 0.3686656334591689}, {}] -[[0, 0, 6], {"x0": -5.7921232291693805, "x1": 3.5154200721757825, "x2": 6.524894750744753, "x3": -0.9165824811164636, "x4": 1.2608584430916157, "x5": 0.49253401305481903}, {}] -[[0, 0, 7], {"x0": -2.1840023988925896, "x1": 7.12730449457041, "x2": 4.57219497822631, "x3": -2.762763806607559, "x4": 1.624941987472417, "x5": 0.2808126021902334}, {}] -[[0, 0, 8], {"x0": -2.4519644476766063, "x1": 5.179528949724958, "x2": 6.107877509772367, "x3": -3.3662295945591962, "x4": 2.815045893795863, "x5": 0.43055239478320106}, {}] -[[0, 0, 9], {"x0": -4.742878991019868, "x1": 4.16517518178999, "x2": 7.533593609678832, "x3": -3.7261810285426367, "x4": 2.8467783937197795, "x5": 0.36358060459372094}, {}] -[[0, 0, 10], {"x0": -2.07179882977379, "x1": 5.007089000285017, "x2": 5.810153855190842, "x3": -3.7465159864646713, "x4": 1.006660368594218, "x5": 0.04045199761180929}, {}] -[[0, 0, 11], {"x0": -4.948599292486633, "x1": 6.377739694095089, "x2": 4.663868401729896, "x3": -2.5579310627996916, "x4": 4.651507440828239, "x5": 0.06716327411492878}, {}] -[[0, 0, 12], {"x0": -3.9192314787798535, "x1": 4.417118101155971, "x2": 4.17137260020705, "x3": -1.7330776472480456, "x4": 1.8361051671979811, "x5": 0.22258220404548407}, {}] -[[0, 0, 13], {"x0": -3.5394048630946884, "x1": 5.226792422637652, "x2": 7.868059378239796, "x3": -0.2741780751224212, "x4": 1.2498713816623868, "x5": 0.46882205151619405}, {}] -[[0, 0, 14], {"x0": -3.462888144062028, "x1": 4.239908541998927, "x2": 7.762607867992062, "x3": -2.0211562216189454, "x4": 2.3923088190979405, "x5": 0.3539216017004603}, {}] -[[0, 0, 15], {"x0": -4.031476505479009, "x1": 5.461687639567765, "x2": 7.728565722909798, "x3": -3.325581842131721, "x4": 1.0919016796649648, "x5": 0.22347661304555339}, {}] -[[0, 0, 16], {"x0": -2.090346354247063, "x1": 7.379328167452934, "x2": 4.478369947969059, "x3": -2.0491635049659083, "x4": 2.2542346177686103, "x5": 0.4301030521692579}, {}] -[[0, 0, 17], {"x0": -3.45095530827791, "x1": 7.241373919895284, "x2": 4.372098220407222, "x3": -3.917462093342912, "x4": 3.8631797272129242, "x5": 0.06704319707331086}, {}] -[[0, 0, 18], {"x0": -5.260696747072846, "x1": 5.479217023818957, "x2": 7.665017240901477, "x3": -1.9268215930150525, "x4": 4.917489240829611, "x5": 0.1449765018684237}, {}] -[[0, 0, 19], {"x0": -5.073122924935138, "x1": 3.802769188904037, "x2": 5.5921109538455855, "x3": -0.13833110014122108, "x4": 1.1704045358564197, "x5": 0.31072986545480447}, {}] -[[0, 0, 20], {"x0": -5.0921210409775295, "x1": 5.3001587715970535, "x2": 7.344093038144373, "x3": -1.162134861406006, "x4": 2.4634960839280464, "x5": 0.4628840703028751}, {}] -[[0, 0, 21], {"x0": -2.216515010625661, "x1": 7.667503420022048, "x2": 5.33220629549424, "x3": -2.964216706778144, "x4": 1.400339480130346, "x5": 0.17955380710076307}, {}] -[[0, 0, 22], {"x0": -4.595786540002947, "x1": 5.758727283094508, "x2": 5.474505252535165, "x3": -2.188690177633308, "x4": 4.113735157490523, "x5": 0.23348794927249023}, {}] -[[0, 0, 23], {"x0": -4.897082803044366, "x1": 4.5593155994190635, "x2": 4.820855524702634, "x3": -1.9145282459798767, "x4": 1.3638736022013345, "x5": 0.27930926246999316}, {}] -[[0, 0, 24], {"x0": -3.5793997810957654, "x1": 6.587165772472128, "x2": 6.2146417793266675, "x3": -1.4199210360146775, "x4": 2.77181776594178, "x5": 0.23442473472395509}, {}] -[[0, 0, 25], {"x0": -3.3969769884546643, "x1": 7.5796783006289195, "x2": 7.724200148109565, "x3": -0.1989866647732268, "x4": 1.9713557815272322, "x5": 0.2814654943769376}, {}] -[[0, 0, 26], {"x0": -5.237659037937545, "x1": 4.99987448525138, "x2": 4.899737744864039, "x3": -2.656182418299718, "x4": 1.4572701490561313, "x5": 0.37721421085885554}, {}] -[[1, 0, 0], {"x0": -2.4573825072042172, "x1": 7.145468194589322, "x2": 7.1721341646749135, "x3": -1.1970970527640072, "x4": 4.341571328554803, "x5": 0.45440784455667377}, {}] -[[1, 0, 1], {"x0": -4.25115105984938, "x1": 4.206353715993558, "x2": 7.543957740163867, "x3": -0.11143185932315358, "x4": 2.867171317914857, "x5": 0.296188341811735}, {}] -[[1, 0, 2], {"x0": -3.8827504050481663, "x1": 5.596199657789645, "x2": 7.11553711638493, "x3": -2.0587995701013733, "x4": 1.6554292175560694, "x5": 0.4761904425629763}, {}] -[[1, 0, 3], {"x0": -4.146568435439002, "x1": 6.437251502537446, "x2": 6.754789836831133, "x3": -3.4076946578179306, "x4": 3.7280924672370648, "x5": 0.35182209008030585}, {}] -[[1, 0, 4], {"x0": -4.087249500278768, "x1": 5.309986420273797, "x2": 5.777314682329669, "x3": -0.5206988223065396, "x4": 1.5801539116446208, "x5": 0.31572691846848155}, {}] -[[1, 0, 5], {"x0": -3.223084306934546, "x1": 4.629643481766051, "x2": 7.311170456859841, "x3": -1.8493936124088117, "x4": 2.108112953196356, "x5": 0.10276986558064743}, {}] -[[1, 0, 6], {"x0": -3.435545113442841, "x1": 4.765011930716375, "x2": 6.163772169623325, "x3": -0.8829814284863207, "x4": 4.064434842294315, "x5": 0.3670929510758135}, {}] -[[1, 0, 7], {"x0": -5.3407962931319375, "x1": 7.876029613985564, "x2": 6.857506900849485, "x3": -1.2116060448929566, "x4": 2.7056081870699606, "x5": 0.30572347000086686}, {}] -[[1, 0, 8], {"x0": -5.683215694010723, "x1": 3.2302551777647928, "x2": 6.643353664523586, "x3": -1.5029026451444958, "x4": 3.6490569187668878, "x5": 0.4437975295633689}, {}] -[[2, 0, 0], {"x0": -4.791645954071484, "x1": 4.661281382177119, "x2": 4.9226540090441, "x3": -0.6844051141960548, "x4": 1.7621969521432108, "x5": 0.18806433637896985}, {}] -[[2, 0, 1], {"x0": -2.19262418082623, "x1": 5.761948223551412, "x2": 4.745493877575319, "x3": -1.0883828672308615, "x4": 4.910242567468989, "x5": 0.3614105088775087}, {}] -[[2, 0, 2], {"x0": -2.890346370930922, "x1": 4.692389731615991, "x2": 6.165146739791447, "x3": -3.21038689732487, "x4": 3.5921477714785137, "x5": 0.3424997970453899}, {}] -[[2, 0, 3], {"x0": -4.689154497178636, "x1": 5.192747684809952, "x2": 6.430449128807361, "x3": -0.8989643600765156, "x4": 4.752677573805608, "x5": 0.14104039331378093}, {}] -[[2, 0, 4], {"x0": -2.6646605931450957, "x1": 3.9860886904995736, "x2": 7.046856933320328, "x3": -1.5154829814425073, "x4": 2.062060511616275, "x5": 0.0500216923927746}, {}] -[[2, 0, 5], {"x0": -2.444920737684224, "x1": 6.539133724796664, "x2": 5.564994258685076, "x3": -2.823832684971445, "x4": 2.8936574150146885, "x5": 0.07241855369854994}, {}] -[[3, 0, 0], {"x0": -3.925530811811835, "x1": 3.8107183443376362, "x2": 6.731765968832094, "x3": -3.651920769353101, "x4": 2.650644108967365, "x5": 0.24112743403519982}, {}] -[[3, 0, 1], {"x0": -2.0119939480550983, "x1": 6.087663471286881, "x2": 4.185554751162176, "x3": -3.0693761508591475, "x4": 4.627474160839547, "x5": 0.30215969543942345}, {}] -[[3, 0, 2], {"x0": -5.273212884556571, "x1": 4.246741008271011, "x2": 4.49784031300305, "x3": -2.218346726849276, "x4": 1.437895721196186, "x5": 0.052486953261530356}, {}] -[[3, 0, 3], {"x0": -4.194194058812625, "x1": 4.093712630032663, "x2": 6.605731363613058, "x3": -1.8912711880957067, "x4": 2.3092124601577253, "x5": 0.3200947034727096}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/hyperband/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/hyperband/results.json deleted file mode 100644 index 724db71..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/hyperband/results.json +++ /dev/null @@ -1,65 +0,0 @@ -[[0, 0, 0], 9.0, {"submitted": 1557070326.5314164, "started": 1557070326.531488, "finished": 1557070326.5369048}, {"loss": 0.3355765636526461, "info": {"x0": -2.353237746850475, "x1": 3.2263840856443586, "x2": 5.339272173192542, "x3": -2.7473601519758244, "x4": 4.228242952578803, "x5": 0.05932316647896063}}, null] -[[0, 0, 1], 9.0, {"submitted": 1557070326.5380857, "started": 1557070326.5381536, "finished": 1557070326.544676}, {"loss": 0.4955304432542122, "info": {"x0": -5.123876223016712, "x1": 7.0245999232386795, "x2": 4.419642376121276, "x3": -0.7905526791707178, "x4": 4.1312698911127725, "x5": 0.09844491991881099}}, null] -[[0, 0, 2], 9.0, {"submitted": 1557070326.54579, "started": 1557070326.5458598, "finished": 1557070326.5508156}, {"loss": 0.30077029345880135, "info": {"x0": -2.1754750861516046, "x1": 5.645377979108634, "x2": 5.782394044991543, "x3": -0.581341797908768, "x4": 3.5085534616008087, "x5": 0.006979983961406255}}, null] -[[0, 0, 3], 9.0, {"submitted": 1557070326.5519063, "started": 1557070326.5519657, "finished": 1557070326.5569603}, {"loss": 0.3161346801532591, "info": {"x0": -2.8365223555851107, "x1": 6.469156509304472, "x2": 4.2362770764215405, "x3": -3.6207120231589696, "x4": 4.814726768486213, "x5": 0.05085369238099352}}, null] -[[0, 0, 4], 9.0, {"submitted": 1557070326.55799, "started": 1557070326.5580564, "finished": 1557070326.5631015}, {"loss": 1, "info": {"x0": -2.30392076064103, "x1": 3.495661732787467, "x2": 7.4704556511052065, "x3": -0.29911725353444174, "x4": 2.65395064586261, "x5": 0.1765647941590588}}, null] -[[0, 0, 5], 9.0, {"submitted": 1557070326.5642638, "started": 1557070326.5643373, "finished": 1557070326.5697303}, {"loss": 0.33570109997686975, "info": {"x0": -2.317895887507979, "x1": 4.620027274960217, "x2": 6.1087416121239, "x3": -0.456488127335283, "x4": 4.428445952951223, "x5": 0.3686656334591689}}, null] -[[0, 0, 6], 9.0, {"submitted": 1557070326.5707319, "started": 1557070326.5707874, "finished": 1557070326.5755074}, {"loss": 0.4890959344316288, "info": {"x0": -5.7921232291693805, "x1": 3.5154200721757825, "x2": 6.524894750744753, "x3": -0.9165824811164636, "x4": 1.2608584430916157, "x5": 0.49253401305481903}}, null] -[[0, 0, 7], 9.0, {"submitted": 1557070326.5765657, "started": 1557070326.5766327, "finished": 1557070326.5817494}, {"loss": 0.3010009215171432, "info": {"x0": -2.1840023988925896, "x1": 7.12730449457041, "x2": 4.57219497822631, "x3": -2.762763806607559, "x4": 1.624941987472417, "x5": 0.2808126021902334}}, null] -[[0, 0, 8], 9.0, {"submitted": 1557070326.5826435, "started": 1557070326.5827007, "finished": 1557070326.5879326}, {"loss": 0.32645755977442015, "info": {"x0": -2.4519644476766063, "x1": 5.179528949724958, "x2": 6.107877509772367, "x3": -3.3662295945591962, "x4": 2.815045893795863, "x5": 0.43055239478320106}}, null] -[[0, 0, 9], 9.0, {"submitted": 1557070326.5889308, "started": 1557070326.5890126, "finished": 1557070326.593989}, {"loss": 0.41907748396408734, "info": {"x0": -4.742878991019868, "x1": 4.16517518178999, "x2": 7.533593609678832, "x3": -3.7261810285426367, "x4": 2.8467783937197795, "x5": 0.36358060459372094}}, null] -[[0, 0, 10], 9.0, {"submitted": 1557070326.594954, "started": 1557070326.5950115, "finished": 1557070326.5999606}, {"loss": 0.30768911397050225, "info": {"x0": -2.07179882977379, "x1": 5.007089000285017, "x2": 5.810153855190842, "x3": -3.7465159864646713, "x4": 1.006660368594218, "x5": 0.04045199761180929}}, null] -[[0, 0, 11], 9.0, {"submitted": 1557070326.601136, "started": 1557070326.6012073, "finished": 1557070326.60633}, {"loss": 0.4671171607244829, "info": {"x0": -4.948599292486633, "x1": 6.377739694095089, "x2": 4.663868401729896, "x3": -2.5579310627996916, "x4": 4.651507440828239, "x5": 0.06716327411492878}}, null] -[[0, 0, 12], 9.0, {"submitted": 1557070326.6075485, "started": 1557070326.6076236, "finished": 1557070326.612831}, {"loss": 0.41569187512078304, "info": {"x0": -3.9192314787798535, "x1": 4.417118101155971, "x2": 4.17137260020705, "x3": -1.7330776472480456, "x4": 1.8361051671979811, "x5": 0.22258220404548407}}, null] -[[0, 0, 13], 9.0, {"submitted": 1557070326.6143186, "started": 1557070326.6144137, "finished": 1557070326.6203718}, {"loss": 0.3450046067415458, "info": {"x0": -3.5394048630946884, "x1": 5.226792422637652, "x2": 7.868059378239796, "x3": -0.2741780751224212, "x4": 1.2498713816623868, "x5": 0.46882205151619405}}, null] -[[0, 0, 14], 9.0, {"submitted": 1557070326.6217022, "started": 1557070326.6217802, "finished": 1557070326.6272063}, {"loss": 0.363482466027986, "info": {"x0": -3.462888144062028, "x1": 4.239908541998927, "x2": 7.762607867992062, "x3": -2.0211562216189454, "x4": 2.3923088190979405, "x5": 0.3539216017004603}}, null] -[[0, 0, 15], 9.0, {"submitted": 1557070326.6281807, "started": 1557070326.6282432, "finished": 1557070326.6337624}, {"loss": 0.33670663870087514, "info": {"x0": -4.031476505479009, "x1": 5.461687639567765, "x2": 7.728565722909798, "x3": -3.325581842131721, "x4": 1.0919016796649648, "x5": 0.22347661304555339}}, null] -[[0, 0, 16], 9.0, {"submitted": 1557070326.6348834, "started": 1557070326.6349397, "finished": 1557070326.6400611}, {"loss": 0.30803966818934103, "info": {"x0": -2.090346354247063, "x1": 7.379328167452934, "x2": 4.478369947969059, "x3": -2.0491635049659083, "x4": 2.2542346177686103, "x5": 0.4301030521692579}}, null] -[[0, 0, 17], 9.0, {"submitted": 1557070326.6411285, "started": 1557070326.6411881, "finished": 1557070326.6465209}, {"loss": 0.35846863345878816, "info": {"x0": -3.45095530827791, "x1": 7.241373919895284, "x2": 4.372098220407222, "x3": -3.917462093342912, "x4": 3.8631797272129242, "x5": 0.06704319707331086}}, null] -[[0, 0, 18], 9.0, {"submitted": 1557070326.6475515, "started": 1557070326.6476254, "finished": 1557070326.6528823}, {"loss": 0.4696725089562115, "info": {"x0": -5.260696747072846, "x1": 5.479217023818957, "x2": 7.665017240901477, "x3": -1.9268215930150525, "x4": 4.917489240829611, "x5": 0.1449765018684237}}, null] -[[0, 0, 19], 9.0, {"submitted": 1557070326.6539357, "started": 1557070326.6539946, "finished": 1557070326.6601515}, {"loss": 0.47396216501485267, "info": {"x0": -5.073122924935138, "x1": 3.802769188904037, "x2": 5.5921109538455855, "x3": -0.13833110014122108, "x4": 1.1704045358564197, "x5": 0.31072986545480447}}, null] -[[0, 0, 20], 9.0, {"submitted": 1557070326.661422, "started": 1557070326.6614997, "finished": 1557070326.667531}, {"loss": 0.4450738005646645, "info": {"x0": -5.0921210409775295, "x1": 5.3001587715970535, "x2": 7.344093038144373, "x3": -1.162134861406006, "x4": 2.4634960839280464, "x5": 0.4628840703028751}}, null] -[[0, 0, 21], 9.0, {"submitted": 1557070326.6687536, "started": 1557070326.6688225, "finished": 1557070326.6742432}, {"loss": 0.2951429888012225, "info": {"x0": -2.216515010625661, "x1": 7.667503420022048, "x2": 5.33220629549424, "x3": -2.964216706778144, "x4": 1.400339480130346, "x5": 0.17955380710076307}}, null] -[[0, 0, 22], 9.0, {"submitted": 1557070326.6752522, "started": 1557070326.6753087, "finished": 1557070326.6816704}, {"loss": 0.43069649280409755, "info": {"x0": -4.595786540002947, "x1": 5.758727283094508, "x2": 5.474505252535165, "x3": -2.188690177633308, "x4": 4.113735157490523, "x5": 0.23348794927249023}}, null] -[[0, 0, 23], 9.0, {"submitted": 1557070326.6832078, "started": 1557070326.683309, "finished": 1557070326.6905186}, {"loss": 0.4697232413541429, "info": {"x0": -4.897082803044366, "x1": 4.5593155994190635, "x2": 4.820855524702634, "x3": -1.9145282459798767, "x4": 1.3638736022013345, "x5": 0.27930926246999316}}, null] -[[0, 0, 24], 9.0, {"submitted": 1557070326.691763, "started": 1557070326.6918333, "finished": 1557070326.6968}, {"loss": 0.35302121603043535, "info": {"x0": -3.5793997810957654, "x1": 6.587165772472128, "x2": 6.2146417793266675, "x3": -1.4199210360146775, "x4": 2.77181776594178, "x5": 0.23442473472395509}}, null] -[[0, 0, 25], 9.0, {"submitted": 1557070326.6979017, "started": 1557070326.6979747, "finished": 1557070326.7031686}, {"loss": 0.334953874439221, "info": {"x0": -3.3969769884546643, "x1": 7.5796783006289195, "x2": 7.724200148109565, "x3": -0.1989866647732268, "x4": 1.9713557815272322, "x5": 0.2814654943769376}}, null] -[[0, 0, 26], 9.0, {"submitted": 1557070326.7044039, "started": 1557070326.7044897, "finished": 1557070326.7096908}, {"loss": 0.47377305346987864, "info": {"x0": -5.237659037937545, "x1": 4.99987448525138, "x2": 4.899737744864039, "x3": -2.656182418299718, "x4": 1.4572701490561313, "x5": 0.37721421085885554}}, null] -[[0, 0, 0], 27.0, {"submitted": 1557070326.7104683, "started": 1557070326.710548, "finished": 1557070326.7166874}, {"loss": 0.3107103281539635, "info": {"x0": -2.353237746850475, "x1": 3.2263840856443586, "x2": 5.339272173192542, "x3": -2.7473601519758244, "x4": 4.228242952578803, "x5": 0.05932316647896063}}, null] -[[0, 0, 2], 27.0, {"submitted": 1557070326.71777, "started": 1557070326.7178597, "finished": 1557070326.7241354}, {"loss": 0.2913791488494545, "info": {"x0": -2.1754750861516046, "x1": 5.645377979108634, "x2": 5.782394044991543, "x3": -0.581341797908768, "x4": 3.5085534616008087, "x5": 0.006979983961406255}}, null] -[[0, 0, 3], 27.0, {"submitted": 1557070326.7247136, "started": 1557070326.7247655, "finished": 1557070326.7298682}, {"loss": 0.30622231899537283, "info": {"x0": -2.8365223555851107, "x1": 6.469156509304472, "x2": 4.2362770764215405, "x3": -3.6207120231589696, "x4": 4.814726768486213, "x5": 0.05085369238099352}}, null] -[[0, 0, 7], 27.0, {"submitted": 1557070326.7306073, "started": 1557070326.7306602, "finished": 1557070326.7359617}, {"loss": 0.2978690034098841, "info": {"x0": -2.1840023988925896, "x1": 7.12730449457041, "x2": 4.57219497822631, "x3": -2.762763806607559, "x4": 1.624941987472417, "x5": 0.2808126021902334}}, null] -[[0, 0, 8], 27.0, {"submitted": 1557070326.7366188, "started": 1557070326.7367322, "finished": 1557070326.7418966}, {"loss": 0.3002629111610985, "info": {"x0": -2.4519644476766063, "x1": 5.179528949724958, "x2": 6.107877509772367, "x3": -3.3662295945591962, "x4": 2.815045893795863, "x5": 0.43055239478320106}}, null] -[[0, 0, 10], 27.0, {"submitted": 1557070326.7427344, "started": 1557070326.7428176, "finished": 1557070326.748068}, {"loss": 0.29373616219955284, "info": {"x0": -2.07179882977379, "x1": 5.007089000285017, "x2": 5.810153855190842, "x3": -3.7465159864646713, "x4": 1.006660368594218, "x5": 0.04045199761180929}}, null] -[[0, 0, 16], 27.0, {"submitted": 1557070326.7488313, "started": 1557070326.7489176, "finished": 1557070326.7540536}, {"loss": 0.30402675289358266, "info": {"x0": -2.090346354247063, "x1": 7.379328167452934, "x2": 4.478369947969059, "x3": -2.0491635049659083, "x4": 2.2542346177686103, "x5": 0.4301030521692579}}, null] -[[0, 0, 21], 27.0, {"submitted": 1557070326.7548797, "started": 1557070326.754957, "finished": 1557070326.7612114}, {"loss": 0.2935424347285085, "info": {"x0": -2.216515010625661, "x1": 7.667503420022048, "x2": 5.33220629549424, "x3": -2.964216706778144, "x4": 1.400339480130346, "x5": 0.17955380710076307}}, null] -[[0, 0, 25], 27.0, {"submitted": 1557070326.7619407, "started": 1557070326.7620146, "finished": 1557070326.7682555}, {"loss": 0.3123754616073467, "info": {"x0": -3.3969769884546643, "x1": 7.5796783006289195, "x2": 7.724200148109565, "x3": -0.1989866647732268, "x4": 1.9713557815272322, "x5": 0.2814654943769376}}, null] -[[0, 0, 2], 81.0, {"submitted": 1557070326.7693224, "started": 1557070326.769421, "finished": 1557070326.775998}, {"loss": 0.2984547945397916, "info": {"x0": -2.1754750861516046, "x1": 5.645377979108634, "x2": 5.782394044991543, "x3": -0.581341797908768, "x4": 3.5085534616008087, "x5": 0.006979983961406255}}, null] -[[0, 0, 10], 81.0, {"submitted": 1557070326.7769396, "started": 1557070326.7770214, "finished": 1557070326.7838848}, {"loss": 0.2952029517343838, "info": {"x0": -2.07179882977379, "x1": 5.007089000285017, "x2": 5.810153855190842, "x3": -3.7465159864646713, "x4": 1.006660368594218, "x5": 0.04045199761180929}}, null] -[[0, 0, 21], 81.0, {"submitted": 1557070326.784846, "started": 1557070326.7849288, "finished": 1557070326.790823}, {"loss": 0.2935424347285085, "info": {"x0": -2.216515010625661, "x1": 7.667503420022048, "x2": 5.33220629549424, "x3": -2.964216706778144, "x4": 1.400339480130346, "x5": 0.17955380710076307}}, null] -[[0, 0, 21], 243.0, {"submitted": 1557070326.791662, "started": 1557070326.7917502, "finished": 1557070326.797443}, {"loss": 0.2935424347285085, "info": {"x0": -2.216515010625661, "x1": 7.667503420022048, "x2": 5.33220629549424, "x3": -2.964216706778144, "x4": 1.400339480130346, "x5": 0.17955380710076307}}, null] -[[1, 0, 0], 27.0, {"submitted": 1557070326.798855, "started": 1557070326.7989376, "finished": 1557070326.8052266}, {"loss": 0.30475552934933303, "info": {"x0": -2.4573825072042172, "x1": 7.145468194589322, "x2": 7.1721341646749135, "x3": -1.1970970527640072, "x4": 4.341571328554803, "x5": 0.45440784455667377}}, null] -[[1, 0, 1], 27.0, {"submitted": 1557070326.8066242, "started": 1557070326.8067043, "finished": 1557070326.814665}, {"loss": 0.354381910679532, "info": {"x0": -4.25115105984938, "x1": 4.206353715993558, "x2": 7.543957740163867, "x3": -0.11143185932315358, "x4": 2.867171317914857, "x5": 0.296188341811735}}, null] -[[1, 0, 2], 27.0, {"submitted": 1557070326.816758, "started": 1557070326.8168738, "finished": 1557070326.82496}, {"loss": 0.36212177032831633, "info": {"x0": -3.8827504050481663, "x1": 5.596199657789645, "x2": 7.11553711638493, "x3": -2.0587995701013733, "x4": 1.6554292175560694, "x5": 0.4761904425629763}}, null] -[[1, 0, 3], 27.0, {"submitted": 1557070326.826571, "started": 1557070326.826658, "finished": 1557070326.8324296}, {"loss": 0.4078413288123438, "info": {"x0": -4.146568435439002, "x1": 6.437251502537446, "x2": 6.754789836831133, "x3": -3.4076946578179306, "x4": 3.7280924672370648, "x5": 0.35182209008030585}}, null] -[[1, 0, 4], 27.0, {"submitted": 1557070326.8337595, "started": 1557070326.8338587, "finished": 1557070326.8406267}, {"loss": 0.3569880029027147, "info": {"x0": -4.087249500278768, "x1": 5.309986420273797, "x2": 5.777314682329669, "x3": -0.5206988223065396, "x4": 1.5801539116446208, "x5": 0.31572691846848155}}, null] -[[1, 0, 5], 27.0, {"submitted": 1557070326.842224, "started": 1557070326.8423374, "finished": 1557070326.84806}, {"loss": 0.2937546095507721, "info": {"x0": -3.223084306934546, "x1": 4.629643481766051, "x2": 7.311170456859841, "x3": -1.8493936124088117, "x4": 2.108112953196356, "x5": 0.10276986558064743}}, null] -[[1, 0, 6], 27.0, {"submitted": 1557070326.8492296, "started": 1557070326.8493514, "finished": 1557070326.8556304}, {"loss": 0.3248108807312002, "info": {"x0": -3.435545113442841, "x1": 4.765011930716375, "x2": 6.163772169623325, "x3": -0.8829814284863207, "x4": 4.064434842294315, "x5": 0.3670929510758135}}, null] -[[1, 0, 7], 27.0, {"submitted": 1557070326.856635, "started": 1557070326.8566976, "finished": 1557070326.862886}, {"loss": 0.4415774885756118, "info": {"x0": -5.3407962931319375, "x1": 7.876029613985564, "x2": 6.857506900849485, "x3": -1.2116060448929566, "x4": 2.7056081870699606, "x5": 0.30572347000086686}}, null] -[[1, 0, 8], 27.0, {"submitted": 1557070326.8641682, "started": 1557070326.8642402, "finished": 1557070326.8691902}, {"loss": 0.47037360888630897, "info": {"x0": -5.683215694010723, "x1": 3.2302551777647928, "x2": 6.643353664523586, "x3": -1.5029026451444958, "x4": 3.6490569187668878, "x5": 0.4437975295633689}}, null] -[[1, 0, 0], 81.0, {"submitted": 1557070326.8698726, "started": 1557070326.8699389, "finished": 1557070326.875226}, {"loss": 0.2948385556171411, "info": {"x0": -2.4573825072042172, "x1": 7.145468194589322, "x2": 7.1721341646749135, "x3": -1.1970970527640072, "x4": 4.341571328554803, "x5": 0.45440784455667377}}, null] -[[1, 0, 5], 81.0, {"submitted": 1557070326.8762312, "started": 1557070326.8763268, "finished": 1557070326.8823578}, {"loss": 0.2887961222851353, "info": {"x0": -3.223084306934546, "x1": 4.629643481766051, "x2": 7.311170456859841, "x3": -1.8493936124088117, "x4": 2.108112953196356, "x5": 0.10276986558064743}}, null] -[[1, 0, 6], 81.0, {"submitted": 1557070326.883223, "started": 1557070326.8832996, "finished": 1557070326.8893218}, {"loss": 0.2994787772751767, "info": {"x0": -3.435545113442841, "x1": 4.765011930716375, "x2": 6.163772169623325, "x3": -0.8829814284863207, "x4": 4.064434842294315, "x5": 0.3670929510758135}}, null] -[[1, 0, 5], 243.0, {"submitted": 1557070326.8900657, "started": 1557070326.8901792, "finished": 1557070326.8951838}, {"loss": 0.2888975985638275, "info": {"x0": -3.223084306934546, "x1": 4.629643481766051, "x2": 7.311170456859841, "x3": -1.8493936124088117, "x4": 2.108112953196356, "x5": 0.10276986558064743}}, null] -[[2, 0, 0], 81.0, {"submitted": 1557070326.8961885, "started": 1557070326.896253, "finished": 1557070326.902313}, {"loss": 0.40476014584110465, "info": {"x0": -4.791645954071484, "x1": 4.661281382177119, "x2": 4.9226540090441, "x3": -0.6844051141960548, "x4": 1.7621969521432108, "x5": 0.18806433637896985}}, null] -[[2, 0, 1], 81.0, {"submitted": 1557070326.9036427, "started": 1557070326.9037426, "finished": 1557070326.9098594}, {"loss": 0.35080719323368315, "info": {"x0": -2.19262418082623, "x1": 5.761948223551412, "x2": 4.745493877575319, "x3": -1.0883828672308615, "x4": 4.910242567468989, "x5": 0.3614105088775087}}, null] -[[2, 0, 2], 81.0, {"submitted": 1557070326.9112496, "started": 1557070326.9113386, "finished": 1557070326.917849}, {"loss": 0.290673426186934, "info": {"x0": -2.890346370930922, "x1": 4.692389731615991, "x2": 6.165146739791447, "x3": -3.21038689732487, "x4": 3.5921477714785137, "x5": 0.3424997970453899}}, null] -[[2, 0, 3], 81.0, {"submitted": 1557070326.919291, "started": 1557070326.9193735, "finished": 1557070326.9264767}, {"loss": 0.36993080449349, "info": {"x0": -4.689154497178636, "x1": 5.192747684809952, "x2": 6.430449128807361, "x3": -0.8989643600765156, "x4": 4.752677573805608, "x5": 0.14104039331378093}}, null] -[[2, 0, 4], 81.0, {"submitted": 1557070326.9277222, "started": 1557070326.9277992, "finished": 1557070326.9341862}, {"loss": 0.28940497634004514, "info": {"x0": -2.6646605931450957, "x1": 3.9860886904995736, "x2": 7.046856933320328, "x3": -1.5154829814425073, "x4": 2.062060511616275, "x5": 0.0500216923927746}}, null] -[[2, 0, 5], 81.0, {"submitted": 1557070326.9353983, "started": 1557070326.9354734, "finished": 1557070326.941955}, {"loss": 0.2909870818888295, "info": {"x0": -2.444920737684224, "x1": 6.539133724796664, "x2": 5.564994258685076, "x3": -2.823832684971445, "x4": 2.8936574150146885, "x5": 0.07241855369854994}}, null] -[[2, 0, 2], 243.0, {"submitted": 1557070326.9430041, "started": 1557070326.9430797, "finished": 1557070326.9497907}, {"loss": 0.2891605112165543, "info": {"x0": -2.890346370930922, "x1": 4.692389731615991, "x2": 6.165146739791447, "x3": -3.21038689732487, "x4": 3.5921477714785137, "x5": 0.3424997970453899}}, null] -[[2, 0, 4], 243.0, {"submitted": 1557070326.9507725, "started": 1557070326.9508595, "finished": 1557070326.9578896}, {"loss": 0.29591327889722757, "info": {"x0": -2.6646605931450957, "x1": 3.9860886904995736, "x2": 7.046856933320328, "x3": -1.5154829814425073, "x4": 2.062060511616275, "x5": 0.0500216923927746}}, null] -[[3, 0, 0], 243.0, {"submitted": 1557070326.9596713, "started": 1557070326.9598117, "finished": 1557070326.967191}, {"loss": 0.3228551638498902, "info": {"x0": -3.925530811811835, "x1": 3.8107183443376362, "x2": 6.731765968832094, "x3": -3.651920769353101, "x4": 2.650644108967365, "x5": 0.24112743403519982}}, null] -[[3, 0, 1], 243.0, {"submitted": 1557070326.9684048, "started": 1557070326.9684846, "finished": 1557070326.9736228}, {"loss": 0.3363007360762776, "info": {"x0": -2.0119939480550983, "x1": 6.087663471286881, "x2": 4.185554751162176, "x3": -3.0693761508591475, "x4": 4.627474160839547, "x5": 0.30215969543942345}}, null] -[[3, 0, 2], 243.0, {"submitted": 1557070326.974497, "started": 1557070326.9745584, "finished": 1557070326.9795516}, {"loss": 0.45288283403144936, "info": {"x0": -5.273212884556571, "x1": 4.246741008271011, "x2": 4.49784031300305, "x3": -2.218346726849276, "x4": 1.437895721196186, "x5": 0.052486953261530356}}, null] -[[3, 0, 3], 243.0, {"submitted": 1557070326.9804761, "started": 1557070326.980549, "finished": 1557070326.9858642}, {"loss": 0.3371402182741043, "info": {"x0": -4.194194058812625, "x1": 4.093712630032663, "x2": 6.605731363613058, "x3": -1.8912711880957067, "x4": 2.3092124601577253, "x5": 0.3200947034727096}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/randomsearch/configs.json deleted file mode 100644 index acbfabf..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/randomsearch/configs.json +++ /dev/null @@ -1,16 +0,0 @@ -[[0, 0, 0], {"x0": -4.602563169510937, "x1": 6.63508748705487, "x2": 5.9798657592000435, "x3": -0.9055086629214011, "x4": 1.775145535219735, "x5": 0.4539617573368575}, {}] -[[0, 0, 1], {"x0": -5.650566699995441, "x1": 4.932870335990698, "x2": 5.126296564752153, "x3": -2.575302295489342, "x4": 3.0772400706412673, "x5": 0.07803674423611862}, {}] -[[0, 0, 2], {"x0": -3.209280315234384, "x1": 4.999429402877109, "x2": 5.468652041625724, "x3": -2.578169828145898, "x4": 1.7969832700852422, "x5": 0.06843330405521031}, {}] -[[0, 0, 3], {"x0": -2.7743198243638623, "x1": 3.5836076166031527, "x2": 5.288273915504026, "x3": -1.3417309877512378, "x4": 4.431392999355524, "x5": 0.40706411669350795}, {}] -[[1, 0, 0], {"x0": -3.0037910108481043, "x1": 3.947452067333621, "x2": 7.532081612714211, "x3": -2.764395730664168, "x4": 2.606570903404153, "x5": 0.1953261307256266}, {}] -[[1, 0, 1], {"x0": -2.0791662791838896, "x1": 7.962673784961843, "x2": 5.044626719441254, "x3": -0.2698825114891128, "x4": 3.36030612582482, "x5": 0.20811897371229748}, {}] -[[1, 0, 2], {"x0": -2.5982362153535683, "x1": 3.3605081376365247, "x2": 5.710066091872557, "x3": -0.8011182299762556, "x4": 1.5909657984826642, "x5": 0.22171288784116633}, {}] -[[1, 0, 3], {"x0": -2.487177686333156, "x1": 3.211174350161742, "x2": 5.572492143707781, "x3": -0.17123822019618107, "x4": 4.7991423727479, "x5": 0.24031605843426995}, {}] -[[2, 0, 0], {"x0": -5.601690932746933, "x1": 6.284889869866484, "x2": 5.935806715588656, "x3": -3.0806817922247047, "x4": 4.300575127974501, "x5": 0.3182323947521625}, {}] -[[2, 0, 1], {"x0": -5.079446810539201, "x1": 3.8560105509057756, "x2": 6.940684171094403, "x3": -3.7413954296831493, "x4": 4.264718674803362, "x5": 0.45710983457658166}, {}] -[[2, 0, 2], {"x0": -4.996597790389474, "x1": 7.287970975920398, "x2": 7.699144627424371, "x3": -1.8497694228242123, "x4": 3.78876244920609, "x5": 0.45150987836753204}, {}] -[[2, 0, 3], {"x0": -3.7827591249619896, "x1": 4.051479450817543, "x2": 6.136643401268058, "x3": -1.8996309524721915, "x4": 4.526965730408506, "x5": 0.3509146954329937}, {}] -[[3, 0, 0], {"x0": -4.594489769679223, "x1": 3.8319461829637054, "x2": 4.417353227674712, "x3": -2.363041742502011, "x4": 1.8634460245600626, "x5": 0.20707221750204857}, {}] -[[3, 0, 1], {"x0": -4.282397425374844, "x1": 4.452794206229779, "x2": 4.001512946663139, "x3": -3.9325200858996086, "x4": 1.445087203462518, "x5": 0.4873074629577714}, {}] -[[3, 0, 2], {"x0": -5.650322391255338, "x1": 6.472003678661947, "x2": 4.427660520050539, "x3": -1.6833051201412355, "x4": 2.893129463354631, "x5": 0.24550949147460527}, {}] -[[3, 0, 3], {"x0": -3.6235916251398916, "x1": 4.177589919681694, "x2": 4.219334263290376, "x3": -2.708761307421159, "x4": 1.458534714789553, "x5": 0.1944992085777006}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/randomsearch/results.json deleted file mode 100644 index 2879f5e..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/randomsearch/results.json +++ /dev/null @@ -1,16 +0,0 @@ -[[0, 0, 0], 243, {"submitted": 1557070326.1600409, "started": 1557070326.1601212, "finished": 1557070326.1646419}, {"loss": 0.4005119913318829, "info": {"x0": -4.602563169510937, "x1": 6.63508748705487, "x2": 5.9798657592000435, "x3": -0.9055086629214011, "x4": 1.775145535219735, "x5": 0.4539617573368575}}, null] -[[0, 0, 1], 243, {"submitted": 1557070326.1658444, "started": 1557070326.165918, "finished": 1557070326.171388}, {"loss": 0.47826567979398904, "info": {"x0": -5.650566699995441, "x1": 4.932870335990698, "x2": 5.126296564752153, "x3": -2.575302295489342, "x4": 3.0772400706412673, "x5": 0.07803674423611862}}, null] -[[0, 0, 2], 243, {"submitted": 1557070326.1725852, "started": 1557070326.1726623, "finished": 1557070326.1778383}, {"loss": 0.2965221351923978, "info": {"x0": -3.209280315234384, "x1": 4.999429402877109, "x2": 5.468652041625724, "x3": -2.578169828145898, "x4": 1.7969832700852422, "x5": 0.06843330405521031}}, null] -[[0, 0, 3], 243, {"submitted": 1557070326.1787047, "started": 1557070326.178767, "finished": 1557070326.1842983}, {"loss": 0.31362084438068955, "info": {"x0": -2.7743198243638623, "x1": 3.5836076166031527, "x2": 5.288273915504026, "x3": -1.3417309877512378, "x4": 4.431392999355524, "x5": 0.40706411669350795}}, null] -[[1, 0, 0], 243, {"submitted": 1557070326.1856472, "started": 1557070326.1857333, "finished": 1557070326.1924646}, {"loss": 0.2868588514468629, "info": {"x0": -3.0037910108481043, "x1": 3.947452067333621, "x2": 7.532081612714211, "x3": -2.764395730664168, "x4": 2.606570903404153, "x5": 0.1953261307256266}}, null] -[[1, 0, 1], 243, {"submitted": 1557070326.1938891, "started": 1557070326.1939726, "finished": 1557070326.2007296}, {"loss": 0.29561808079261176, "info": {"x0": -2.0791662791838896, "x1": 7.962673784961843, "x2": 5.044626719441254, "x3": -0.2698825114891128, "x4": 3.36030612582482, "x5": 0.20811897371229748}}, null] -[[1, 0, 2], 243, {"submitted": 1557070326.202046, "started": 1557070326.2021441, "finished": 1557070326.2070322}, {"loss": 0.28377305551263676, "info": {"x0": -2.5982362153535683, "x1": 3.3605081376365247, "x2": 5.710066091872557, "x3": -0.8011182299762556, "x4": 1.5909657984826642, "x5": 0.22171288784116633}}, null] -[[1, 0, 3], 243, {"submitted": 1557070326.2083328, "started": 1557070326.208412, "finished": 1557070326.2143147}, {"loss": 0.28571955568964735, "info": {"x0": -2.487177686333156, "x1": 3.211174350161742, "x2": 5.572492143707781, "x3": -0.17123822019618107, "x4": 4.7991423727479, "x5": 0.24031605843426995}}, null] -[[2, 0, 0], 243, {"submitted": 1557070326.2156703, "started": 1557070326.2158022, "finished": 1557070326.2221153}, {"loss": 0.47052121590809187, "info": {"x0": -5.601690932746933, "x1": 6.284889869866484, "x2": 5.935806715588656, "x3": -3.0806817922247047, "x4": 4.300575127974501, "x5": 0.3182323947521625}}, null] -[[2, 0, 1], 243, {"submitted": 1557070326.2234502, "started": 1557070326.2235234, "finished": 1557070326.2296934}, {"loss": 0.420977855006171, "info": {"x0": -5.079446810539201, "x1": 3.8560105509057756, "x2": 6.940684171094403, "x3": -3.7413954296831493, "x4": 4.264718674803362, "x5": 0.45710983457658166}}, null] -[[2, 0, 2], 243, {"submitted": 1557070326.2310736, "started": 1557070326.2311547, "finished": 1557070326.2362359}, {"loss": 0.3988422504413832, "info": {"x0": -4.996597790389474, "x1": 7.287970975920398, "x2": 7.699144627424371, "x3": -1.8497694228242123, "x4": 3.78876244920609, "x5": 0.45150987836753204}}, null] -[[2, 0, 3], 243, {"submitted": 1557070326.2372854, "started": 1557070326.2373557, "finished": 1557070326.2422874}, {"loss": 0.3200553451082583, "info": {"x0": -3.7827591249619896, "x1": 4.051479450817543, "x2": 6.136643401268058, "x3": -1.8996309524721915, "x4": 4.526965730408506, "x5": 0.3509146954329937}}, null] -[[3, 0, 0], 243, {"submitted": 1557070326.24337, "started": 1557070326.2434375, "finished": 1557070326.2485285}, {"loss": 0.41690959030418656, "info": {"x0": -4.594489769679223, "x1": 3.8319461829637054, "x2": 4.417353227674712, "x3": -2.363041742502011, "x4": 1.8634460245600626, "x5": 0.20707221750204857}}, null] -[[3, 0, 1], 243, {"submitted": 1557070326.2495675, "started": 1557070326.24964, "finished": 1557070326.2549875}, {"loss": 0.40184039792667975, "info": {"x0": -4.282397425374844, "x1": 4.452794206229779, "x2": 4.001512946663139, "x3": -3.9325200858996086, "x4": 1.445087203462518, "x5": 0.4873074629577714}}, null] -[[3, 0, 2], 243, {"submitted": 1557070326.2558846, "started": 1557070326.2559435, "finished": 1557070326.2605183}, {"loss": 0.49237085021152477, "info": {"x0": -5.650322391255338, "x1": 6.472003678661947, "x2": 4.427660520050539, "x3": -1.6833051201412355, "x4": 2.893129463354631, "x5": 0.24550949147460527}}, null] -[[3, 0, 3], 243, {"submitted": 1557070326.2616837, "started": 1557070326.2617488, "finished": 1557070326.2667875}, {"loss": 0.34018449946550644, "info": {"x0": -3.6235916251398916, "x1": 4.177589919681694, "x2": 4.219334263290376, "x3": -2.708761307421159, "x4": 1.458534714789553, "x5": 0.1944992085777006}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/runhistory.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/runhistory.json deleted file mode 100644 index c829fa0..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/runhistory.json +++ /dev/null @@ -1,368 +0,0 @@ -{ - "data": [ - [ - [ - 1, - null, - 0 - ], - [ - 0.42730165588762264, - 0.018544673919677734, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 2, - null, - 0 - ], - [ - 0.4344095903367656, - 0.016689538955688477, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 3, - null, - 0 - ], - [ - 0.2868957534633109, - 0.017454147338867188, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 4, - null, - 0 - ], - [ - 0.3112499959249998, - 0.022437334060668945, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 5, - null, - 0 - ], - [ - 0.29321955696930524, - 0.022179126739501953, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 6, - null, - 0 - ], - [ - 0.41792435506468717, - 0.01970839500427246, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 7, - null, - 0 - ], - [ - 0.4248154968489993, - 0.019430160522460938, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 8, - null, - 0 - ], - [ - 0.39742619283957836, - 0.02307271957397461, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 9, - null, - 0 - ], - [ - 0.43052582419343377, - 0.0235593318939209, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 10, - null, - 0 - ], - [ - 0.4832149413192294, - 0.019633054733276367, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 11, - null, - 0 - ], - [ - 0.2977444631915636, - 0.022193193435668945, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 12, - null, - 0 - ], - [ - 0.3700737983624819, - 0.02472066879272461, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 13, - null, - 0 - ], - [ - 0.31061807867002117, - 0.02635979652404785, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 14, - null, - 0 - ], - [ - 0.2933256418156228, - 0.022034645080566406, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 15, - null, - 0 - ], - [ - 0.28402213341566807, - 0.022078752517700195, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ] - ], - "config_origins": { - "1": "Random initial design.", - "2": "Random Search", - "3": "Random Search", - "4": "Random Search (sorted)", - "5": "Random Search (sorted)", - "6": "Random Search", - "7": "Random Search", - "8": "Random Search", - "9": "Random Search", - "10": "Random Search", - "11": "Random Search", - "12": "Random Search (sorted)", - "13": "Random Search (sorted)", - "14": "Random Search (sorted)", - "15": "Random Search (sorted)" - }, - "configs": { - "1": { - "x0": -4.883873400348966, - "x1": 5.395071371233329, - "x2": 5.850207574667986, - "x3": -2.466976196963293, - "x4": 3.5783326110298836, - "x5": 0.3000528495112813 - }, - "2": { - "x0": -5.208150866054624, - "x1": 4.717735121227211, - "x2": 6.211086697483785, - "x3": -2.0408457432462623, - "x4": 2.0964110577829413, - "x5": 0.2470588109428815 - }, - "3": { - "x0": -2.4861177598532462, - "x1": 6.478288568019359, - "x2": 7.333864369866159, - "x3": -3.4124638323261696, - "x4": 2.9318593269725737, - "x5": 0.3098095053361572 - }, - "4": { - "x0": -3.6155889364463043, - "x1": 4.5772306667273615, - "x2": 6.5514358876613645, - "x3": -3.3598842407512666, - "x4": 3.1299004437044915, - "x5": 0.20422288862797128 - }, - "5": { - "x0": -2.3480955987243326, - "x1": 6.87868878720622, - "x2": 4.601227915534806, - "x3": -0.7667962368709156, - "x4": 3.209524158882502, - "x5": 0.2727317287828728 - }, - "6": { - "x0": -5.3467627003879485, - "x1": 6.306951593926348, - "x2": 7.37440617524953, - "x3": -1.653168510346838, - "x4": 3.825061437324838, - "x5": 0.3131249735258295 - }, - "7": { - "x0": -5.852325303503337, - "x1": 4.148919695756195, - "x2": 6.533887857645859, - "x3": -0.646444314973023, - "x4": 1.9776774789755676, - "x5": 0.05791177405148412 - }, - "8": { - "x0": -5.8955609910174385, - "x1": 3.980367019120022, - "x2": 7.970990405097577, - "x3": -3.0935140555873843, - "x4": 2.412084872719525, - "x5": 0.23534965570161104 - }, - "9": { - "x0": -5.927028898797143, - "x1": 3.1451845581541584, - "x2": 6.233436443839825, - "x3": -0.9656628774634175, - "x4": 2.7678580436931637, - "x5": 0.27314983837046475 - }, - "10": { - "x0": -5.042729491382618, - "x1": 7.114881007288119, - "x2": 5.316756659154166, - "x3": -1.7135364126315844, - "x4": 4.486824433364829, - "x5": 0.4260000094133169 - }, - "11": { - "x0": -2.0903408903216074, - "x1": 7.743530461601772, - "x2": 6.6857972327826545, - "x3": -0.4007656512826956, - "x4": 2.2291678201388114, - "x5": 0.2209580031982828 - }, - "12": { - "x0": -3.8673495224272103, - "x1": 6.326687096190668, - "x2": 6.9560291992069665, - "x3": -3.883824732428349, - "x4": 2.137132254296386, - "x5": 0.43117018883486696 - }, - "13": { - "x0": -3.4474684950257335, - "x1": 6.395496961603708, - "x2": 7.813888563081479, - "x3": -3.8204211573075613, - "x4": 1.7903804338129419, - "x5": 0.42176898577520966 - }, - "14": { - "x0": -2.1876162399813803, - "x1": 4.721851368467906, - "x2": 5.273707809848702, - "x3": -1.761137634836012, - "x4": 2.111129231346983, - "x5": 0.37545460713804696 - }, - "15": { - "x0": -2.7139382394488707, - "x1": 4.8241444007432035, - "x2": 6.437806712727886, - "x3": -1.4733864555122596, - "x4": 3.99905848060725, - "x5": 0.32877140885414735 - } - } -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/scenario.txt b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/scenario.txt deleted file mode 100644 index 2a70f03..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/scenario.txt +++ /dev/null @@ -1,12 +0,0 @@ -execdir = . -deterministic = True -run_obj = quality -overall_obj = par10 -par_factor = 10 -cost_for_crash = 2147483647.0 -algo_runs_timelimit = inf -wallclock_limit = inf -always_race_default = False -ta_run_limit = 15.0 -initial_incumbent = RANDOM -pcs_fn = opt_results/paramnet_surrogate/higgs/smac/run_1153890554/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/stats.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/stats.json deleted file mode 100644 index 455d5ea..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/stats.json +++ /dev/null @@ -1 +0,0 @@ -{"ta_runs": 15, "n_configs": 15, "wallclock_time_used": 10.405389308929443, "ta_time_used": 0.3200955390930176, "inc_changed": 3, "_n_configs_per_intensify": 14, "_n_calls_of_intensify": 7, "_ema_n_configs_per_intensifiy": 2.0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/traj_aclib2.json deleted file mode 100644 index e578a57..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/traj_aclib2.json +++ /dev/null @@ -1,4 +0,0 @@ -{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 6.890296936035156e-05, "evaluations": 0, "cost": 2147483648, "incumbent": ["x0='-4.883873400348966'", "x1='5.395071371233329'", "x2='5.850207574667986'", "x3='-2.466976196963293'", "x4='3.5783326110298836'", "x5='0.3000528495112813'"], "origin": "Random initial design."} -{"cpu_time": 0.018544673919677734, "total_cpu_time": null, "wallclock_time": 0.04565715789794922, "evaluations": 1, "cost": 0.42730165588762264, "incumbent": ["x0='-4.883873400348966'", "x1='5.395071371233329'", "x2='5.850207574667986'", "x3='-2.466976196963293'", "x4='3.5783326110298836'", "x5='0.3000528495112813'"], "origin": "Random initial design."} -{"cpu_time": 0.0526883602142334, "total_cpu_time": null, "wallclock_time": 0.35910844802856445, "evaluations": 3, "cost": 0.2868957534633109, "incumbent": ["x0='-2.4861177598532462'", "x1='6.478288568019359'", "x2='7.333864369866159'", "x3='-3.4124638323261696'", "x4='2.9318593269725737'", "x5='0.3098095053361572'"], "origin": "Random Search"} -{"cpu_time": 0.3200955390930176, "total_cpu_time": null, "wallclock_time": 10.395714282989502, "evaluations": 15, "cost": 0.28402213341566807, "incumbent": ["x0='-2.7139382394488707'", "x1='4.8241444007432035'", "x2='6.437806712727886'", "x3='-1.4733864555122596'", "x4='3.99905848060725'", "x5='0.32877140885414735'"], "origin": "Random Search (sorted)"} diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/traj_old.csv b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/traj_old.csv deleted file mode 100644 index 2ab2bfb..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/traj_old.csv +++ /dev/null @@ -1,5 +0,0 @@ -"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." -0.000000, 2147483648.000000, 0.000069, 1, 0.000069, x0='-4.883873400348966', x1='5.395071371233329', x2='5.850207574667986', x3='-2.466976196963293', x4='3.5783326110298836', x5='0.3000528495112813' -0.018545, 0.427302, 0.045657, 1, 0.027112, x0='-4.883873400348966', x1='5.395071371233329', x2='5.850207574667986', x3='-2.466976196963293', x4='3.5783326110298836', x5='0.3000528495112813' -0.052688, 0.286896, 0.359108, 2, 0.306420, x0='-2.4861177598532462', x1='6.478288568019359', x2='7.333864369866159', x3='-3.4124638323261696', x4='2.9318593269725737', x5='0.3098095053361572' -0.320096, 0.284022, 10.395714, 3, 10.075619, x0='-2.7139382394488707', x1='4.8241444007432035', x2='6.437806712727886', x3='-1.4733864555122596', x4='3.99905848060725', x5='0.32877140885414735' diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/bohb/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/bohb/configs.json deleted file mode 100644 index c33b081..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/bohb/configs.json +++ /dev/null @@ -1,46 +0,0 @@ -[[0, 0, 0], {"x0": -3.8190913177024726, "x1": 7.66107789704711, "x2": 6.72958561079361, "x3": -2.0958921077673867, "x4": 3.7853641443447206, "x5": 0.40972279816453205}, {"model_based_pick": false}] -[[0, 0, 1], {"x0": -5.844122599662729, "x1": 7.386498380210163, "x2": 6.134849865617962, "x3": -0.1291547483568154, "x4": 2.0317440458199467, "x5": 0.30279540726097337}, {"model_based_pick": false}] -[[0, 0, 2], {"x0": -4.348349804465943, "x1": 4.609663573799423, "x2": 5.382439311973266, "x3": -0.5083055227466886, "x4": 3.685212349094488, "x5": 0.19404342510127187}, {"model_based_pick": false}] -[[0, 0, 3], {"x0": -3.354431968065257, "x1": 7.513356037865355, "x2": 6.457273021992797, "x3": -2.4740485921005817, "x4": 2.6641630409879897, "x5": 0.4802432828906829}, {"model_based_pick": false}] -[[0, 0, 4], {"x0": -2.018570740193104, "x1": 3.244627984386856, "x2": 4.435603675532014, "x3": -1.8440785295344786, "x4": 1.1950908221433907, "x5": 0.20012725789451535}, {"model_based_pick": false}] -[[0, 0, 5], {"x0": -5.3883673024444985, "x1": 4.548349989864688, "x2": 7.593653743668148, "x3": -2.945137037716542, "x4": 2.2687504262222746, "x5": 0.1964521913579927}, {"model_based_pick": false}] -[[0, 0, 6], {"x0": -5.525360490477656, "x1": 5.478136131864801, "x2": 7.1348952646338955, "x3": -3.149111979958698, "x4": 2.0445934177056784, "x5": 0.16224470986954376}, {"model_based_pick": false}] -[[0, 0, 7], {"x0": -4.155281242061198, "x1": 5.586133397871185, "x2": 6.29192848730777, "x3": -1.5848157301337218, "x4": 1.8864344444546632, "x5": 0.01604635810086502}, {"model_based_pick": false}] -[[0, 0, 8], {"x0": -2.4009778921347604, "x1": 6.57972935311774, "x2": 5.492514949394247, "x3": -3.290054591458892, "x4": 1.5557832178108595, "x5": 0.10984971439201557}, {"model_based_pick": false}] -[[0, 0, 9], {"x0": -4.888637585950065, "x1": 6.8304845603967665, "x2": 5.261463725154692, "x3": -1.0779285165542487, "x4": 4.786951714086621, "x5": 0.39589800253322643}, {"model_based_pick": false}] -[[0, 0, 10], {"x0": -4.774974167669532, "x1": 3.8775894490544296, "x2": 7.157530067256243, "x3": -0.849608032992784, "x4": 2.5578626190668836, "x5": 0.07807030820089172}, {"model_based_pick": false}] -[[0, 0, 11], {"x0": -3.2726519878225204, "x1": 4.201841586118386, "x2": 5.444146325969707, "x3": -2.6247400981221785, "x4": 3.1201908735441606, "x5": 0.1518575146581495}, {"model_based_pick": false}] -[[0, 0, 12], {"x0": -5.198314197901234, "x1": 3.9563796674399057, "x2": 4.099573283428226, "x3": -0.39047138539905424, "x4": 3.4859275150411655, "x5": 0.2161630938183039}, {"model_based_pick": false}] -[[0, 0, 13], {"x0": -5.902722830001683, "x1": 3.9437755492377784, "x2": 7.506881121153857, "x3": -3.303873875224691, "x4": 2.4468120564676776, "x5": 0.49174947690643295}, {"model_based_pick": false}] -[[0, 0, 14], {"x0": -4.256886602668384, "x1": 5.667686927697391, "x2": 5.326483656889957, "x3": -0.47383019559824247, "x4": 2.1815281158838604, "x5": 0.2998220345645676}, {"model_based_pick": false}] -[[0, 0, 15], {"x0": -2.156783578091967, "x1": 7.164910453688976, "x2": 5.58408737814643, "x3": -3.5473803048652033, "x4": 1.44564346790039, "x5": 0.44832221956007506}, {"model_based_pick": true}] -[[0, 0, 16], {"x0": -2.4738995286932774, "x1": 7.7869007467365785, "x2": 5.948593259287788, "x3": -2.518552507586609, "x4": 2.252686094044035, "x5": 0.023429787847873806}, {"model_based_pick": true}] -[[0, 0, 17], {"x0": -2.545992171993796, "x1": 6.5863234947785045, "x2": 6.435941353317249, "x3": -2.8777985439453553, "x4": 1.997283949208731, "x5": 0.24804404833452395}, {"model_based_pick": true}] -[[0, 0, 18], {"x0": -2.222715271413347, "x1": 4.395955949226651, "x2": 4.510785307817168, "x3": -3.9122210481751543, "x4": 1.4281047643853049, "x5": 0.23212536447873988}, {"model_based_pick": true}] -[[0, 0, 19], {"x0": -2.438703765203627, "x1": 3.666120540611303, "x2": 4.077796158246586, "x3": -3.177242426411279, "x4": 1.1683047454743556, "x5": 0.2730893946883684}, {"model_based_pick": true}] -[[0, 0, 20], {"x0": -4.575904587436357, "x1": 3.0467852816197203, "x2": 4.115814514087271, "x3": -3.5170046521449034, "x4": 3.653282087599489, "x5": 0.16604809628895462}, {"model_based_pick": false}] -[[0, 0, 21], {"x0": -2.0996399104279515, "x1": 4.342577296736032, "x2": 4.309374296592254, "x3": -2.70571151398551, "x4": 1.3440688497398812, "x5": 0.49414406720104276}, {"model_based_pick": true}] -[[0, 0, 22], {"x0": -2.544205522438146, "x1": 7.787516410992217, "x2": 4.938531301056414, "x3": -3.351195496551999, "x4": 1.4474795344390137, "x5": 0.0544736394532796}, {"model_based_pick": true}] -[[0, 0, 23], {"x0": -5.211487101346923, "x1": 7.104130537684549, "x2": 5.466529540612095, "x3": -3.281855226804454, "x4": 2.56314954793691, "x5": 0.21471891007914684}, {"model_based_pick": false}] -[[0, 0, 24], {"x0": -2.6926513682717537, "x1": 6.655707281221529, "x2": 5.210769174712068, "x3": -1.482762023877409, "x4": 2.05451218563513, "x5": 0.1579967258309833}, {"model_based_pick": false}] -[[0, 0, 25], {"x0": -2.3325240609730535, "x1": 6.914770404229113, "x2": 5.701983479358948, "x3": -3.264495959639037, "x4": 1.556873762750642, "x5": 0.24517027529834517}, {"model_based_pick": true}] -[[0, 0, 26], {"x0": -5.438274541713619, "x1": 7.1470444326727565, "x2": 6.7068935509589025, "x3": -1.857736601480421, "x4": 1.6116418264355268, "x5": 0.1232902261537841}, {"model_based_pick": false}] -[[1, 0, 0], {"x0": -2.0825746305177573, "x1": 7.315749769750012, "x2": 5.283661253362642, "x3": -3.7148308624818127, "x4": 1.38530693232926, "x5": 0.49116444844097784}, {"model_based_pick": true}] -[[1, 0, 1], {"x0": -3.1411102083913205, "x1": 3.1661118119283045, "x2": 4.212013244581297, "x3": -0.8744258868684476, "x4": 2.3603559759263697, "x5": 0.46560564256005943}, {"model_based_pick": false}] -[[1, 0, 2], {"x0": -2.723849115469843, "x1": 6.844748890271987, "x2": 5.828947445897337, "x3": -0.5830265842691587, "x4": 4.30237830174671, "x5": 0.0627767990210884}, {"model_based_pick": false}] -[[1, 0, 3], {"x0": -3.316152505239931, "x1": 4.276971783346372, "x2": 6.70244849939189, "x3": -0.15810661631477485, "x4": 1.4205342102729563, "x5": 0.20732986714768942}, {"model_based_pick": false}] -[[1, 0, 4], {"x0": -2.6296591823376043, "x1": 7.579312940076056, "x2": 4.57117910066105, "x3": -2.919418650635714, "x4": 1.5486642571269038, "x5": 0.02492234366703398}, {"model_based_pick": true}] -[[1, 0, 5], {"x0": -3.3641566468693, "x1": 3.9447724171382093, "x2": 7.91038619732125, "x3": -1.3439493393460369, "x4": 4.10405827264799, "x5": 0.22566567528929507}, {"model_based_pick": true}] -[[1, 0, 6], {"x0": -3.1540070633186534, "x1": 4.639572041290031, "x2": 7.4066498656137725, "x3": -0.8591241010737889, "x4": 1.4513336517985678, "x5": 0.2937189682882199}, {"model_based_pick": true}] -[[1, 0, 7], {"x0": -3.8128833845711467, "x1": 3.706592559155216, "x2": 7.564244720762937, "x3": -0.3407499521515507, "x4": 1.0483331044448962, "x5": 0.30268153787919383}, {"model_based_pick": true}] -[[1, 0, 8], {"x0": -2.0418045821991586, "x1": 7.4976468278290485, "x2": 4.38382666857059, "x3": -1.9782283331208599, "x4": 4.898338816071649, "x5": 0.0693471211856321}, {"model_based_pick": true}] -[[2, 0, 0], {"x0": -2.648611557660446, "x1": 7.202033613233324, "x2": 6.16275700189872, "x3": -0.4048424636604899, "x4": 2.612597434448755, "x5": 0.10559546765493803}, {"model_based_pick": true}] -[[2, 0, 1], {"x0": -5.254322767716886, "x1": 5.544003874270109, "x2": 7.892690998659106, "x3": -1.41245634547413, "x4": 3.9657752270160658, "x5": 0.031130562089598746}, {"model_based_pick": false}] -[[2, 0, 2], {"x0": -2.8152827213401106, "x1": 7.927206776972781, "x2": 6.48539107547397, "x3": -0.20841046874423297, "x4": 2.454606297007015, "x5": 0.2219344818202442}, {"model_based_pick": true}] -[[2, 0, 3], {"x0": -2.482842771235733, "x1": 6.8354184746369295, "x2": 7.1258956920508325, "x3": -0.5904959905507048, "x4": 3.0041781021939524, "x5": 0.08349512778761337}, {"model_based_pick": true}] -[[2, 0, 4], {"x0": -2.809207627147998, "x1": 7.266981985588137, "x2": 6.984233324987457, "x3": -1.122565003196896, "x4": 3.990089575688682, "x5": 0.04429766586396447}, {"model_based_pick": true}] -[[2, 0, 5], {"x0": -2.706999209504462, "x1": 6.7497114612869495, "x2": 5.193815428932748, "x3": -0.2479261804246975, "x4": 1.8825427446756027, "x5": 0.25185688379083326}, {"model_based_pick": true}] -[[3, 0, 0], {"x0": -2.2890738733776574, "x1": 6.45404767985361, "x2": 6.024869434765927, "x3": -0.9196807117379016, "x4": 3.1234001982467143, "x5": 0.056923278232743575}, {"model_based_pick": true}] -[[3, 0, 1], {"x0": -2.2843638304939637, "x1": 7.092276432664562, "x2": 6.220042326281472, "x3": -0.820106437362226, "x4": 2.3145342202208767, "x5": 0.09683761137018437}, {"model_based_pick": true}] -[[3, 0, 2], {"x0": -2.9591607759664442, "x1": 5.444471200321129, "x2": 7.770342913866234, "x3": -0.056177170084228845, "x4": 1.5631077509681335, "x5": 0.27912086097973404}, {"model_based_pick": true}] -[[3, 0, 3], {"x0": -2.642391223183169, "x1": 7.156855627721601, "x2": 5.519399995737761, "x3": -0.692571517810638, "x4": 2.8225807631326756, "x5": 0.1228958601812931}, {"model_based_pick": true}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/bohb/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/bohb/results.json deleted file mode 100644 index 3fdc07d..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/bohb/results.json +++ /dev/null @@ -1,65 +0,0 @@ -[[0, 0, 0], 3.0, {"submitted": 1557070507.1936185, "started": 1557070507.1937113, "finished": 1557070507.200418}, {"loss": 0.7148123014209458, "info": {"x0": -3.8190913177024726, "x1": 7.66107789704711, "x2": 6.72958561079361, "x3": -2.0958921077673867, "x4": 3.7853641443447206, "x5": 0.40972279816453205}}, null] -[[0, 0, 1], 3.0, {"submitted": 1557070507.2023046, "started": 1557070507.2023926, "finished": 1557070507.2077587}, {"loss": 0.961374943356368, "info": {"x0": -5.844122599662729, "x1": 7.386498380210163, "x2": 6.134849865617962, "x3": -0.1291547483568154, "x4": 2.0317440458199467, "x5": 0.30279540726097337}}, null] -[[0, 0, 2], 3.0, {"submitted": 1557070507.2090936, "started": 1557070507.2091548, "finished": 1557070507.2155173}, {"loss": 0.8738579801713003, "info": {"x0": -4.348349804465943, "x1": 4.609663573799423, "x2": 5.382439311973266, "x3": -0.5083055227466886, "x4": 3.685212349094488, "x5": 0.19404342510127187}}, null] -[[0, 0, 3], 3.0, {"submitted": 1557070507.2170084, "started": 1557070507.21707, "finished": 1557070507.2230885}, {"loss": 0.46408864167724895, "info": {"x0": -3.354431968065257, "x1": 7.513356037865355, "x2": 6.457273021992797, "x3": -2.4740485921005817, "x4": 2.6641630409879897, "x5": 0.4802432828906829}}, null] -[[0, 0, 4], 3.0, {"submitted": 1557070507.225115, "started": 1557070507.2252047, "finished": 1557070507.231175}, {"loss": 0.25217096224555274, "info": {"x0": -2.018570740193104, "x1": 3.244627984386856, "x2": 4.435603675532014, "x3": -1.8440785295344786, "x4": 1.1950908221433907, "x5": 0.20012725789451535}}, null] -[[0, 0, 5], 3.0, {"submitted": 1557070507.232436, "started": 1557070507.232495, "finished": 1557070507.2373466}, {"loss": 0.9326549064458151, "info": {"x0": -5.3883673024444985, "x1": 4.548349989864688, "x2": 7.593653743668148, "x3": -2.945137037716542, "x4": 2.2687504262222746, "x5": 0.1964521913579927}}, null] -[[0, 0, 6], 3.0, {"submitted": 1557070507.238852, "started": 1557070507.2389202, "finished": 1557070507.2454138}, {"loss": 0.9506558112934492, "info": {"x0": -5.525360490477656, "x1": 5.478136131864801, "x2": 7.1348952646338955, "x3": -3.149111979958698, "x4": 2.0445934177056784, "x5": 0.16224470986954376}}, null] -[[0, 0, 7], 3.0, {"submitted": 1557070507.247259, "started": 1557070507.2473335, "finished": 1557070507.252325}, {"loss": 0.694572588375107, "info": {"x0": -4.155281242061198, "x1": 5.586133397871185, "x2": 6.29192848730777, "x3": -1.5848157301337218, "x4": 1.8864344444546632, "x5": 0.01604635810086502}}, null] -[[0, 0, 8], 3.0, {"submitted": 1557070507.253932, "started": 1557070507.2539976, "finished": 1557070507.2595832}, {"loss": 0.1825644517439569, "info": {"x0": -2.4009778921347604, "x1": 6.57972935311774, "x2": 5.492514949394247, "x3": -3.290054591458892, "x4": 1.5557832178108595, "x5": 0.10984971439201557}}, null] -[[0, 0, 9], 3.0, {"submitted": 1557070507.2613368, "started": 1557070507.26141, "finished": 1557070507.2667336}, {"loss": 0.956648575175492, "info": {"x0": -4.888637585950065, "x1": 6.8304845603967665, "x2": 5.261463725154692, "x3": -1.0779285165542487, "x4": 4.786951714086621, "x5": 0.39589800253322643}}, null] -[[0, 0, 10], 3.0, {"submitted": 1557070507.2686365, "started": 1557070507.2686977, "finished": 1557070507.273718}, {"loss": 0.8051334210838709, "info": {"x0": -4.774974167669532, "x1": 3.8775894490544296, "x2": 7.157530067256243, "x3": -0.849608032992784, "x4": 2.5578626190668836, "x5": 0.07807030820089172}}, null] -[[0, 0, 11], 3.0, {"submitted": 1557070507.2751458, "started": 1557070507.2752113, "finished": 1557070507.280642}, {"loss": 0.3170511009334197, "info": {"x0": -3.2726519878225204, "x1": 4.201841586118386, "x2": 5.444146325969707, "x3": -2.6247400981221785, "x4": 3.1201908735441606, "x5": 0.1518575146581495}}, null] -[[0, 0, 12], 3.0, {"submitted": 1557070507.2822003, "started": 1557070507.2822566, "finished": 1557070507.2873733}, {"loss": 0.9640434186941427, "info": {"x0": -5.198314197901234, "x1": 3.9563796674399057, "x2": 4.099573283428226, "x3": -0.39047138539905424, "x4": 3.4859275150411655, "x5": 0.2161630938183039}}, null] -[[0, 0, 13], 3.0, {"submitted": 1557070507.2892885, "started": 1557070507.289353, "finished": 1557070507.2951555}, {"loss": 0.9598145629286476, "info": {"x0": -5.902722830001683, "x1": 3.9437755492377784, "x2": 7.506881121153857, "x3": -3.303873875224691, "x4": 2.4468120564676776, "x5": 0.49174947690643295}}, null] -[[0, 0, 14], 3.0, {"submitted": 1557070507.297399, "started": 1557070507.2974613, "finished": 1557070507.3040028}, {"loss": 0.8670737210902952, "info": {"x0": -4.256886602668384, "x1": 5.667686927697391, "x2": 5.326483656889957, "x3": -0.47383019559824247, "x4": 2.1815281158838604, "x5": 0.2998220345645676}}, null] -[[0, 0, 15], 3.0, {"submitted": 1557070507.363516, "started": 1557070507.3636012, "finished": 1557070507.3686152}, {"loss": 0.21078697164058147, "info": {"x0": -2.156783578091967, "x1": 7.164910453688976, "x2": 5.58408737814643, "x3": -3.5473803048652033, "x4": 1.44564346790039, "x5": 0.44832221956007506}}, null] -[[0, 0, 16], 3.0, {"submitted": 1557070507.4255805, "started": 1557070507.425678, "finished": 1557070507.4314563}, {"loss": 0.17903663519818772, "info": {"x0": -2.4738995286932774, "x1": 7.7869007467365785, "x2": 5.948593259287788, "x3": -2.518552507586609, "x4": 2.252686094044035, "x5": 0.023429787847873806}}, null] -[[0, 0, 17], 3.0, {"submitted": 1557070507.4892378, "started": 1557070507.4893258, "finished": 1557070507.4946294}, {"loss": 0.15612844887334046, "info": {"x0": -2.545992171993796, "x1": 6.5863234947785045, "x2": 6.435941353317249, "x3": -2.8777985439453553, "x4": 1.997283949208731, "x5": 0.24804404833452395}}, null] -[[0, 0, 18], 3.0, {"submitted": 1557070507.5527549, "started": 1557070507.552841, "finished": 1557070507.5573044}, {"loss": 0.22856173429997031, "info": {"x0": -2.222715271413347, "x1": 4.395955949226651, "x2": 4.510785307817168, "x3": -3.9122210481751543, "x4": 1.4281047643853049, "x5": 0.23212536447873988}}, null] -[[0, 0, 19], 3.0, {"submitted": 1557070507.614806, "started": 1557070507.6148894, "finished": 1557070507.620206}, {"loss": 0.27306648270070744, "info": {"x0": -2.438703765203627, "x1": 3.666120540611303, "x2": 4.077796158246586, "x3": -3.177242426411279, "x4": 1.1683047454743556, "x5": 0.2730893946883684}}, null] -[[0, 0, 20], 3.0, {"submitted": 1557070507.6222003, "started": 1557070507.622291, "finished": 1557070507.6283267}, {"loss": 0.9511985518553849, "info": {"x0": -4.575904587436357, "x1": 3.0467852816197203, "x2": 4.115814514087271, "x3": -3.5170046521449034, "x4": 3.653282087599489, "x5": 0.16604809628895462}}, null] -[[0, 0, 21], 3.0, {"submitted": 1557070507.70612, "started": 1557070507.7062383, "finished": 1557070507.7146037}, {"loss": 0.2936906335446588, "info": {"x0": -2.0996399104279515, "x1": 4.342577296736032, "x2": 4.309374296592254, "x3": -2.70571151398551, "x4": 1.3440688497398812, "x5": 0.49414406720104276}}, null] -[[0, 0, 22], 3.0, {"submitted": 1557070507.8044324, "started": 1557070507.8045115, "finished": 1557070507.8099253}, {"loss": 0.21630483928146216, "info": {"x0": -2.544205522438146, "x1": 7.787516410992217, "x2": 4.938531301056414, "x3": -3.351195496551999, "x4": 1.4474795344390137, "x5": 0.0544736394532796}}, null] -[[0, 0, 23], 3.0, {"submitted": 1557070507.8120143, "started": 1557070507.8120933, "finished": 1557070507.8176434}, {"loss": 0.9613862502216902, "info": {"x0": -5.211487101346923, "x1": 7.104130537684549, "x2": 5.466529540612095, "x3": -3.281855226804454, "x4": 2.56314954793691, "x5": 0.21471891007914684}}, null] -[[0, 0, 24], 3.0, {"submitted": 1557070507.8196635, "started": 1557070507.8197355, "finished": 1557070507.8244023}, {"loss": 0.20341474450804536, "info": {"x0": -2.6926513682717537, "x1": 6.655707281221529, "x2": 5.210769174712068, "x3": -1.482762023877409, "x4": 2.05451218563513, "x5": 0.1579967258309833}}, null] -[[0, 0, 25], 3.0, {"submitted": 1557070507.884168, "started": 1557070507.8842506, "finished": 1557070507.8895543}, {"loss": 0.2193577551089601, "info": {"x0": -2.3325240609730535, "x1": 6.914770404229113, "x2": 5.701983479358948, "x3": -3.264495959639037, "x4": 1.556873762750642, "x5": 0.24517027529834517}}, null] -[[0, 0, 26], 3.0, {"submitted": 1557070507.8922617, "started": 1557070507.8923395, "finished": 1557070507.8980281}, {"loss": 0.9514020802698523, "info": {"x0": -5.438274541713619, "x1": 7.1470444326727565, "x2": 6.7068935509589025, "x3": -1.857736601480421, "x4": 1.6116418264355268, "x5": 0.1232902261537841}}, null] -[[0, 0, 4], 9.0, {"submitted": 1557070507.8998814, "started": 1557070507.8999465, "finished": 1557070507.9049735}, {"loss": 0.2072591579685595, "info": {"x0": -2.018570740193104, "x1": 3.244627984386856, "x2": 4.435603675532014, "x3": -1.8440785295344786, "x4": 1.1950908221433907, "x5": 0.20012725789451535}}, null] -[[0, 0, 8], 9.0, {"submitted": 1557070507.9057548, "started": 1557070507.9058063, "finished": 1557070507.910723}, {"loss": 0.16322930694529503, "info": {"x0": -2.4009778921347604, "x1": 6.57972935311774, "x2": 5.492514949394247, "x3": -3.290054591458892, "x4": 1.5557832178108595, "x5": 0.10984971439201557}}, null] -[[0, 0, 15], 9.0, {"submitted": 1557070507.9114773, "started": 1557070507.9115307, "finished": 1557070507.9170575}, {"loss": 0.19296697982629463, "info": {"x0": -2.156783578091967, "x1": 7.164910453688976, "x2": 5.58408737814643, "x3": -3.5473803048652033, "x4": 1.44564346790039, "x5": 0.44832221956007506}}, null] -[[0, 0, 16], 9.0, {"submitted": 1557070507.917841, "started": 1557070507.9178927, "finished": 1557070507.9227152}, {"loss": 0.16241519756038933, "info": {"x0": -2.4738995286932774, "x1": 7.7869007467365785, "x2": 5.948593259287788, "x3": -2.518552507586609, "x4": 2.252686094044035, "x5": 0.023429787847873806}}, null] -[[0, 0, 17], 9.0, {"submitted": 1557070507.9234996, "started": 1557070507.9235625, "finished": 1557070507.9287572}, {"loss": 0.1259384911114789, "info": {"x0": -2.545992171993796, "x1": 6.5863234947785045, "x2": 6.435941353317249, "x3": -2.8777985439453553, "x4": 1.997283949208731, "x5": 0.24804404833452395}}, null] -[[0, 0, 18], 9.0, {"submitted": 1557070507.9296908, "started": 1557070507.9297469, "finished": 1557070507.934813}, {"loss": 0.1986205342774583, "info": {"x0": -2.222715271413347, "x1": 4.395955949226651, "x2": 4.510785307817168, "x3": -3.9122210481751543, "x4": 1.4281047643853049, "x5": 0.23212536447873988}}, null] -[[0, 0, 22], 9.0, {"submitted": 1557070507.9354646, "started": 1557070507.9355202, "finished": 1557070507.9402285}, {"loss": 0.20431931193114297, "info": {"x0": -2.544205522438146, "x1": 7.787516410992217, "x2": 4.938531301056414, "x3": -3.351195496551999, "x4": 1.4474795344390137, "x5": 0.0544736394532796}}, null] -[[0, 0, 24], 9.0, {"submitted": 1557070507.941322, "started": 1557070507.9413772, "finished": 1557070507.948393}, {"loss": 0.17539575107897748, "info": {"x0": -2.6926513682717537, "x1": 6.655707281221529, "x2": 5.210769174712068, "x3": -1.482762023877409, "x4": 2.05451218563513, "x5": 0.1579967258309833}}, null] -[[0, 0, 25], 9.0, {"submitted": 1557070507.9495287, "started": 1557070507.949602, "finished": 1557070507.955061}, {"loss": 0.19737675104244756, "info": {"x0": -2.3325240609730535, "x1": 6.914770404229113, "x2": 5.701983479358948, "x3": -3.264495959639037, "x4": 1.556873762750642, "x5": 0.24517027529834517}}, null] -[[0, 0, 8], 27.0, {"submitted": 1557070507.9564884, "started": 1557070507.9565687, "finished": 1557070507.963806}, {"loss": 0.16142017201148562, "info": {"x0": -2.4009778921347604, "x1": 6.57972935311774, "x2": 5.492514949394247, "x3": -3.290054591458892, "x4": 1.5557832178108595, "x5": 0.10984971439201557}}, null] -[[0, 0, 16], 27.0, {"submitted": 1557070507.9647563, "started": 1557070507.9648407, "finished": 1557070507.9696798}, {"loss": 0.1620307560893865, "info": {"x0": -2.4738995286932774, "x1": 7.7869007467365785, "x2": 5.948593259287788, "x3": -2.518552507586609, "x4": 2.252686094044035, "x5": 0.023429787847873806}}, null] -[[0, 0, 17], 27.0, {"submitted": 1557070507.9704692, "started": 1557070507.970527, "finished": 1557070507.975813}, {"loss": 0.1207146106856487, "info": {"x0": -2.545992171993796, "x1": 6.5863234947785045, "x2": 6.435941353317249, "x3": -2.8777985439453553, "x4": 1.997283949208731, "x5": 0.24804404833452395}}, null] -[[0, 0, 17], 81.0, {"submitted": 1557070507.9768941, "started": 1557070507.9769664, "finished": 1557070507.9824698}, {"loss": 0.1207146106856487, "info": {"x0": -2.545992171993796, "x1": 6.5863234947785045, "x2": 6.435941353317249, "x3": -2.8777985439453553, "x4": 1.997283949208731, "x5": 0.24804404833452395}}, null] -[[1, 0, 0], 9.0, {"submitted": 1557070508.0406702, "started": 1557070508.0407588, "finished": 1557070508.0483036}, {"loss": 0.22903663532489138, "info": {"x0": -2.0825746305177573, "x1": 7.315749769750012, "x2": 5.283661253362642, "x3": -3.7148308624818127, "x4": 1.38530693232926, "x5": 0.49116444844097784}}, null] -[[1, 0, 1], 9.0, {"submitted": 1557070508.0500176, "started": 1557070508.0500922, "finished": 1557070508.055611}, {"loss": 0.45633197200987097, "info": {"x0": -3.1411102083913205, "x1": 3.1661118119283045, "x2": 4.212013244581297, "x3": -0.8744258868684476, "x4": 2.3603559759263697, "x5": 0.46560564256005943}}, null] -[[1, 0, 2], 9.0, {"submitted": 1557070508.0571895, "started": 1557070508.0572565, "finished": 1557070508.0620549}, {"loss": 0.16363635531301038, "info": {"x0": -2.723849115469843, "x1": 6.844748890271987, "x2": 5.828947445897337, "x3": -0.5830265842691587, "x4": 4.30237830174671, "x5": 0.0627767990210884}}, null] -[[1, 0, 3], 9.0, {"submitted": 1557070508.0640469, "started": 1557070508.0641198, "finished": 1557070508.0694306}, {"loss": 0.1570556315117862, "info": {"x0": -3.316152505239931, "x1": 4.276971783346372, "x2": 6.70244849939189, "x3": -0.15810661631477485, "x4": 1.4205342102729563, "x5": 0.20732986714768942}}, null] -[[1, 0, 4], 9.0, {"submitted": 1557070508.1265047, "started": 1557070508.1265874, "finished": 1557070508.1318707}, {"loss": 0.19780642348331115, "info": {"x0": -2.6296591823376043, "x1": 7.579312940076056, "x2": 4.57117910066105, "x3": -2.919418650635714, "x4": 1.5486642571269038, "x5": 0.02492234366703398}}, null] -[[1, 0, 5], 9.0, {"submitted": 1557070508.195459, "started": 1557070508.195603, "finished": 1557070508.201011}, {"loss": 0.26490275660544055, "info": {"x0": -3.3641566468693, "x1": 3.9447724171382093, "x2": 7.91038619732125, "x3": -1.3439493393460369, "x4": 4.10405827264799, "x5": 0.22566567528929507}}, null] -[[1, 0, 6], 9.0, {"submitted": 1557070508.2591498, "started": 1557070508.259235, "finished": 1557070508.2650127}, {"loss": 0.12584803490577268, "info": {"x0": -3.1540070633186534, "x1": 4.639572041290031, "x2": 7.4066498656137725, "x3": -0.8591241010737889, "x4": 1.4513336517985678, "x5": 0.2937189682882199}}, null] -[[1, 0, 7], 9.0, {"submitted": 1557070508.3233252, "started": 1557070508.3234138, "finished": 1557070508.3291802}, {"loss": 0.27408412388550757, "info": {"x0": -3.8128833845711467, "x1": 3.706592559155216, "x2": 7.564244720762937, "x3": -0.3407499521515507, "x4": 1.0483331044448962, "x5": 0.30268153787919383}}, null] -[[1, 0, 8], 9.0, {"submitted": 1557070508.3876865, "started": 1557070508.3877904, "finished": 1557070508.3935645}, {"loss": 0.2371325116737673, "info": {"x0": -2.0418045821991586, "x1": 7.4976468278290485, "x2": 4.38382666857059, "x3": -1.9782283331208599, "x4": 4.898338816071649, "x5": 0.0693471211856321}}, null] -[[1, 0, 2], 27.0, {"submitted": 1557070508.3950994, "started": 1557070508.395177, "finished": 1557070508.4004784}, {"loss": 0.1501130632001423, "info": {"x0": -2.723849115469843, "x1": 6.844748890271987, "x2": 5.828947445897337, "x3": -0.5830265842691587, "x4": 4.30237830174671, "x5": 0.0627767990210884}}, null] -[[1, 0, 3], 27.0, {"submitted": 1557070508.4012904, "started": 1557070508.4013593, "finished": 1557070508.4061356}, {"loss": 0.11338760868786471, "info": {"x0": -3.316152505239931, "x1": 4.276971783346372, "x2": 6.70244849939189, "x3": -0.15810661631477485, "x4": 1.4205342102729563, "x5": 0.20732986714768942}}, null] -[[1, 0, 6], 27.0, {"submitted": 1557070508.4069135, "started": 1557070508.4069805, "finished": 1557070508.4126348}, {"loss": 0.09240163058676047, "info": {"x0": -3.1540070633186534, "x1": 4.639572041290031, "x2": 7.4066498656137725, "x3": -0.8591241010737889, "x4": 1.4513336517985678, "x5": 0.2937189682882199}}, null] -[[1, 0, 6], 81.0, {"submitted": 1557070508.4137719, "started": 1557070508.4138348, "finished": 1557070508.4190335}, {"loss": 0.09054726603639338, "info": {"x0": -3.1540070633186534, "x1": 4.639572041290031, "x2": 7.4066498656137725, "x3": -0.8591241010737889, "x4": 1.4513336517985678, "x5": 0.2937189682882199}}, null] -[[2, 0, 0], 27.0, {"submitted": 1557070508.4754548, "started": 1557070508.475525, "finished": 1557070508.4814017}, {"loss": 0.10714608825665697, "info": {"x0": -2.648611557660446, "x1": 7.202033613233324, "x2": 6.16275700189872, "x3": -0.4048424636604899, "x4": 2.612597434448755, "x5": 0.10559546765493803}}, null] -[[2, 0, 1], 27.0, {"submitted": 1557070508.4830568, "started": 1557070508.4831305, "finished": 1557070508.4882026}, {"loss": 0.790140207781579, "info": {"x0": -5.254322767716886, "x1": 5.544003874270109, "x2": 7.892690998659106, "x3": -1.41245634547413, "x4": 3.9657752270160658, "x5": 0.031130562089598746}}, null] -[[2, 0, 2], 27.0, {"submitted": 1557070508.545114, "started": 1557070508.545187, "finished": 1557070508.5503092}, {"loss": 0.11345545143118167, "info": {"x0": -2.8152827213401106, "x1": 7.927206776972781, "x2": 6.48539107547397, "x3": -0.20841046874423297, "x4": 2.454606297007015, "x5": 0.2219344818202442}}, null] -[[2, 0, 3], 27.0, {"submitted": 1557070508.6090524, "started": 1557070508.6091561, "finished": 1557070508.6151617}, {"loss": 0.06438263083194404, "info": {"x0": -2.482842771235733, "x1": 6.8354184746369295, "x2": 7.1258956920508325, "x3": -0.5904959905507048, "x4": 3.0041781021939524, "x5": 0.08349512778761337}}, null] -[[2, 0, 4], 27.0, {"submitted": 1557070508.6699536, "started": 1557070508.6700475, "finished": 1557070508.6758761}, {"loss": 0.0957485281143292, "info": {"x0": -2.809207627147998, "x1": 7.266981985588137, "x2": 6.984233324987457, "x3": -1.122565003196896, "x4": 3.990089575688682, "x5": 0.04429766586396447}}, null] -[[2, 0, 5], 27.0, {"submitted": 1557070508.7324584, "started": 1557070508.7325478, "finished": 1557070508.73732}, {"loss": 0.21132971469577436, "info": {"x0": -2.706999209504462, "x1": 6.7497114612869495, "x2": 5.193815428932748, "x3": -0.2479261804246975, "x4": 1.8825427446756027, "x5": 0.25185688379083326}}, null] -[[2, 0, 3], 81.0, {"submitted": 1557070508.7384784, "started": 1557070508.7385418, "finished": 1557070508.743015}, {"loss": 0.06438263083194404, "info": {"x0": -2.482842771235733, "x1": 6.8354184746369295, "x2": 7.1258956920508325, "x3": -0.5904959905507048, "x4": 3.0041781021939524, "x5": 0.08349512778761337}}, null] -[[2, 0, 4], 81.0, {"submitted": 1557070508.7444444, "started": 1557070508.744522, "finished": 1557070508.7498412}, {"loss": 0.0957485281143292, "info": {"x0": -2.809207627147998, "x1": 7.266981985588137, "x2": 6.984233324987457, "x3": -1.122565003196896, "x4": 3.990089575688682, "x5": 0.04429766586396447}}, null] -[[3, 0, 0], 81.0, {"submitted": 1557070508.8261094, "started": 1557070508.8261957, "finished": 1557070508.832214}, {"loss": 0.10246494532116716, "info": {"x0": -2.2890738733776574, "x1": 6.45404767985361, "x2": 6.024869434765927, "x3": -0.9196807117379016, "x4": 3.1234001982467143, "x5": 0.056923278232743575}}, null] -[[3, 0, 1], 81.0, {"submitted": 1557070508.8888495, "started": 1557070508.8889287, "finished": 1557070508.894873}, {"loss": 0.07180008906980598, "info": {"x0": -2.2843638304939637, "x1": 7.092276432664562, "x2": 6.220042326281472, "x3": -0.820106437362226, "x4": 2.3145342202208767, "x5": 0.09683761137018437}}, null] -[[3, 0, 2], 81.0, {"submitted": 1557070508.9513505, "started": 1557070508.951449, "finished": 1557070508.9569051}, {"loss": 0.14687924262950025, "info": {"x0": -2.9591607759664442, "x1": 5.444471200321129, "x2": 7.770342913866234, "x3": -0.056177170084228845, "x4": 1.5631077509681335, "x5": 0.27912086097973404}}, null] -[[3, 0, 3], 81.0, {"submitted": 1557070509.013455, "started": 1557070509.0135458, "finished": 1557070509.0185702}, {"loss": 0.13857982406676594, "info": {"x0": -2.642391223183169, "x1": 7.156855627721601, "x2": 5.519399995737761, "x3": -0.692571517810638, "x4": 2.8225807631326756, "x5": 0.1228958601812931}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/hyperband/configs.json deleted file mode 100644 index a03f91d..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/hyperband/configs.json +++ /dev/null @@ -1,46 +0,0 @@ -[[0, 0, 0], {"x0": -3.3232617621750364, "x1": 5.994712287077052, "x2": 7.969514387156359, "x3": -3.736202353174738, "x4": 1.4886267145705445, "x5": 0.019628765680109017}, {}] -[[0, 0, 1], {"x0": -2.856154551706202, "x1": 4.404257775031736, "x2": 5.527252406242214, "x3": -1.3823285312637656, "x4": 3.847018980159207, "x5": 0.37121782361377365}, {}] -[[0, 0, 2], {"x0": -4.735589585312546, "x1": 4.658823537712883, "x2": 6.389520060812266, "x3": -3.3352839665144742, "x4": 2.1344758898630425, "x5": 0.29628465232967277}, {}] -[[0, 0, 3], {"x0": -2.4464878259453604, "x1": 6.410909325008273, "x2": 5.123338428855917, "x3": -1.3013539887906642, "x4": 3.8142031808566133, "x5": 0.0815448837305891}, {}] -[[0, 0, 4], {"x0": -2.180868559854636, "x1": 6.281160373108999, "x2": 6.144166610404994, "x3": -3.0532422346732067, "x4": 4.591612672676879, "x5": 0.4553899254501817}, {}] -[[0, 0, 5], {"x0": -5.057658719200695, "x1": 3.9595001973212716, "x2": 6.274525477402372, "x3": -3.7333582914990084, "x4": 3.8943314847199995, "x5": 0.40157149935685865}, {}] -[[0, 0, 6], {"x0": -4.545826633523188, "x1": 6.4851801707194285, "x2": 7.841468204641991, "x3": -0.6093076927436196, "x4": 4.656427457958651, "x5": 0.31824697098951205}, {}] -[[0, 0, 7], {"x0": -5.901240360674931, "x1": 6.936697418903368, "x2": 6.3494187222433025, "x3": -0.3316265056352039, "x4": 2.687365886038965, "x5": 0.4330093716955256}, {}] -[[0, 0, 8], {"x0": -4.155816286646661, "x1": 3.1057943859710404, "x2": 5.31060242566728, "x3": -0.8823260337332273, "x4": 3.943353960429333, "x5": 0.373243382053658}, {}] -[[0, 0, 9], {"x0": -4.0658188200650365, "x1": 3.581103559356895, "x2": 4.462318709853317, "x3": -3.131033364708765, "x4": 4.567691355791181, "x5": 0.28349651305901374}, {}] -[[0, 0, 10], {"x0": -2.7522678081124505, "x1": 7.497587072459229, "x2": 5.141923044588594, "x3": -3.8178036400150406, "x4": 4.87366798095502, "x5": 0.22013400361810498}, {}] -[[0, 0, 11], {"x0": -4.592097886151295, "x1": 3.8857779261915946, "x2": 4.7115748105660895, "x3": -3.340845192345687, "x4": 4.522020954987447, "x5": 0.4903449407301879}, {}] -[[0, 0, 12], {"x0": -4.882139280099332, "x1": 3.507580148208496, "x2": 7.939264006922526, "x3": -1.8797909315438157, "x4": 2.5474940637297183, "x5": 0.05593058694300779}, {}] -[[0, 0, 13], {"x0": -4.393989292008935, "x1": 7.597957541147132, "x2": 4.33054979533339, "x3": -1.3857849262149204, "x4": 3.6612805648663205, "x5": 0.4349769543279364}, {}] -[[0, 0, 14], {"x0": -5.741883764021548, "x1": 7.569049506605451, "x2": 7.316452059428343, "x3": -3.463821786280534, "x4": 1.8584910362525724, "x5": 0.41535859401855985}, {}] -[[0, 0, 15], {"x0": -4.596199683274692, "x1": 4.090821960268514, "x2": 6.558976459648435, "x3": -2.5479367190621454, "x4": 3.114809169698294, "x5": 0.009996389207611422}, {}] -[[0, 0, 16], {"x0": -4.422040760616122, "x1": 5.705578516249702, "x2": 4.9371223308625405, "x3": -2.8416308173569798, "x4": 1.853633237887442, "x5": 0.4182127053843077}, {}] -[[0, 0, 17], {"x0": -4.156402839887015, "x1": 5.4402589299266655, "x2": 5.263343864352755, "x3": -2.947272315294674, "x4": 4.085769638340141, "x5": 0.28842494287495807}, {}] -[[0, 0, 18], {"x0": -3.0293288713101463, "x1": 7.185664431652275, "x2": 7.382025228441708, "x3": -1.6559077833000657, "x4": 2.113325194719408, "x5": 0.36629998447252127}, {}] -[[0, 0, 19], {"x0": -2.4007250958985695, "x1": 4.789342431780326, "x2": 6.3781017849937705, "x3": -0.7994485753475935, "x4": 1.7602943978651586, "x5": 0.0448561653164517}, {}] -[[0, 0, 20], {"x0": -4.445658211791897, "x1": 3.0154549397399757, "x2": 6.1848914305840035, "x3": -3.3951505329979517, "x4": 2.538669168650558, "x5": 0.047248787928967084}, {}] -[[0, 0, 21], {"x0": -2.355831856996039, "x1": 7.85226465800374, "x2": 6.684378836750788, "x3": -2.887976050100302, "x4": 1.1412633250621198, "x5": 0.2816085817850915}, {}] -[[0, 0, 22], {"x0": -5.938856028457298, "x1": 6.022705649378997, "x2": 5.352067176908603, "x3": -2.3711339743508764, "x4": 3.4334592747699895, "x5": 0.42996331036660457}, {}] -[[0, 0, 23], {"x0": -2.694371035455868, "x1": 6.18946869652972, "x2": 4.574998324546596, "x3": -1.9486810869910292, "x4": 3.551435886807996, "x5": 0.02853991822999352}, {}] -[[0, 0, 24], {"x0": -3.1633566405007736, "x1": 6.740792403621169, "x2": 7.362839392596153, "x3": -1.675495064177217, "x4": 2.351016355026453, "x5": 0.33046658460100625}, {}] -[[0, 0, 25], {"x0": -2.13514685509089, "x1": 6.804124925177877, "x2": 7.295998068010412, "x3": -2.361144814665751, "x4": 2.8143880660012424, "x5": 0.4221755107969618}, {}] -[[0, 0, 26], {"x0": -5.747349935930044, "x1": 3.8534363952417, "x2": 5.876949998647554, "x3": -1.568190439953156, "x4": 3.170612238468455, "x5": 0.3519538225817331}, {}] -[[1, 0, 0], {"x0": -4.213460909841531, "x1": 4.10858912503894, "x2": 7.315374006605905, "x3": -2.4135888240405308, "x4": 4.6001331922255595, "x5": 0.39774664280551153}, {}] -[[1, 0, 1], {"x0": -5.624782825908507, "x1": 7.873788747712851, "x2": 7.016952777666759, "x3": -0.2565986710571466, "x4": 1.8171578732064404, "x5": 0.1118100899804026}, {}] -[[1, 0, 2], {"x0": -2.5305337359897964, "x1": 7.814446637992644, "x2": 7.777367259554772, "x3": -2.4706832578553173, "x4": 3.9149907558962895, "x5": 0.3873441448493087}, {}] -[[1, 0, 3], {"x0": -5.456730799056723, "x1": 4.615605928427784, "x2": 5.841263662519255, "x3": -2.6650233214841705, "x4": 3.7213347899218534, "x5": 0.4767235749538446}, {}] -[[1, 0, 4], {"x0": -3.2274320161881893, "x1": 6.917157864228718, "x2": 4.041775639346613, "x3": -3.5089505808135364, "x4": 4.714311865319766, "x5": 0.13390851139477566}, {}] -[[1, 0, 5], {"x0": -2.4210183458241326, "x1": 6.950228923085405, "x2": 5.644871670792843, "x3": -1.7088811738204894, "x4": 1.2425241054992564, "x5": 0.0013249982268991323}, {}] -[[1, 0, 6], {"x0": -5.936169030940041, "x1": 6.43400730004338, "x2": 4.291974526206563, "x3": -0.1905817459578949, "x4": 4.005448390306023, "x5": 0.03297460349320175}, {}] -[[1, 0, 7], {"x0": -4.317841629775115, "x1": 4.3184385415074935, "x2": 5.254604230941023, "x3": -2.281679450389963, "x4": 4.162515151250165, "x5": 0.24276487029480653}, {}] -[[1, 0, 8], {"x0": -2.9326990258937635, "x1": 7.206596888073931, "x2": 7.6637784962991224, "x3": -3.8621989667514782, "x4": 2.9013756048036, "x5": 0.21428542880391277}, {}] -[[2, 0, 0], {"x0": -3.07799832067854, "x1": 6.787912050777986, "x2": 7.743682708025558, "x3": -3.1050095939690143, "x4": 1.6976015596053546, "x5": 0.1490464708090955}, {}] -[[2, 0, 1], {"x0": -5.890007356438458, "x1": 4.7578873468067755, "x2": 4.944497234786445, "x3": -0.501128907320902, "x4": 4.3682470535052875, "x5": 0.40010411499918896}, {}] -[[2, 0, 2], {"x0": -3.4231841725887264, "x1": 4.960688397281498, "x2": 7.0541993676771195, "x3": -3.510175604656195, "x4": 2.3340094140421326, "x5": 0.31070312701341474}, {}] -[[2, 0, 3], {"x0": -3.540570727035884, "x1": 4.22053822619337, "x2": 7.633856317215118, "x3": -1.0828335529054551, "x4": 1.6843757262427896, "x5": 0.2569875083217933}, {}] -[[2, 0, 4], {"x0": -5.636573270236708, "x1": 3.959029063359763, "x2": 5.505251085044735, "x3": -0.9824374471584703, "x4": 3.2761203313506884, "x5": 0.3587418552380696}, {}] -[[2, 0, 5], {"x0": -2.5664987397291354, "x1": 7.732084366200046, "x2": 6.395019777171276, "x3": -3.345478476950959, "x4": 4.9043339569187, "x5": 0.20358144982457765}, {}] -[[3, 0, 0], {"x0": -4.522223429576409, "x1": 6.329871671765403, "x2": 7.40119617323278, "x3": -0.9208302622513913, "x4": 1.971687825763187, "x5": 0.4511869926799114}, {}] -[[3, 0, 1], {"x0": -2.4643796377147034, "x1": 5.127232685485594, "x2": 4.968122612068299, "x3": -0.29445614420932564, "x4": 3.0423817171558625, "x5": 0.44241795383729365}, {}] -[[3, 0, 2], {"x0": -2.6411081732717987, "x1": 6.302827393713546, "x2": 5.894962154197906, "x3": -2.075927649335681, "x4": 4.19714991053866, "x5": 0.46263380607973237}, {}] -[[3, 0, 3], {"x0": -2.2860914093287557, "x1": 4.296333081032298, "x2": 4.056026851985406, "x3": -2.3281148901494433, "x4": 1.7958282829079852, "x5": 0.21374855962121053}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/hyperband/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/hyperband/results.json deleted file mode 100644 index e3dc185..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/hyperband/results.json +++ /dev/null @@ -1,65 +0,0 @@ -[[0, 0, 0], 3.0, {"submitted": 1557070509.6705163, "started": 1557070509.6706138, "finished": 1557070509.6777759}, {"loss": 0.24255992395475623, "info": {"x0": -3.3232617621750364, "x1": 5.994712287077052, "x2": 7.969514387156359, "x3": -3.736202353174738, "x4": 1.4886267145705445, "x5": 0.019628765680109017}}, null] -[[0, 0, 1], 3.0, {"submitted": 1557070509.679028, "started": 1557070509.67909, "finished": 1557070509.6846595}, {"loss": 0.6237449098241943, "info": {"x0": -2.856154551706202, "x1": 4.404257775031736, "x2": 5.527252406242214, "x3": -1.3823285312637656, "x4": 3.847018980159207, "x5": 0.37121782361377365}}, null] -[[0, 0, 2], 3.0, {"submitted": 1557070509.6857233, "started": 1557070509.6857805, "finished": 1557070509.6913033}, {"loss": 0.8941881485424062, "info": {"x0": -4.735589585312546, "x1": 4.658823537712883, "x2": 6.389520060812266, "x3": -3.3352839665144742, "x4": 2.1344758898630425, "x5": 0.29628465232967277}}, null] -[[0, 0, 3], 3.0, {"submitted": 1557070509.6922498, "started": 1557070509.6923287, "finished": 1557070509.6975994}, {"loss": 0.3241293530663528, "info": {"x0": -2.4464878259453604, "x1": 6.410909325008273, "x2": 5.123338428855917, "x3": -1.3013539887906642, "x4": 3.8142031808566133, "x5": 0.0815448837305891}}, null] -[[0, 0, 4], 3.0, {"submitted": 1557070509.6988046, "started": 1557070509.6988792, "finished": 1557070509.7045348}, {"loss": 0.39934418636754543, "info": {"x0": -2.180868559854636, "x1": 6.281160373108999, "x2": 6.144166610404994, "x3": -3.0532422346732067, "x4": 4.591612672676879, "x5": 0.4553899254501817}}, null] -[[0, 0, 5], 3.0, {"submitted": 1557070509.705593, "started": 1557070509.705669, "finished": 1557070509.7118568}, {"loss": 0.9655811846979916, "info": {"x0": -5.057658719200695, "x1": 3.9595001973212716, "x2": 6.274525477402372, "x3": -3.7333582914990084, "x4": 3.8943314847199995, "x5": 0.40157149935685865}}, null] -[[0, 0, 6], 3.0, {"submitted": 1557070509.7131813, "started": 1557070509.713275, "finished": 1557070509.7190106}, {"loss": 0.9289914061423612, "info": {"x0": -4.545826633523188, "x1": 6.4851801707194285, "x2": 7.841468204641991, "x3": -0.6093076927436196, "x4": 4.656427457958651, "x5": 0.31824697098951205}}, null] -[[0, 0, 7], 3.0, {"submitted": 1557070509.720084, "started": 1557070509.7201543, "finished": 1557070509.725676}, {"loss": 0.9626865671768581, "info": {"x0": -5.901240360674931, "x1": 6.936697418903368, "x2": 6.3494187222433025, "x3": -0.3316265056352039, "x4": 2.687365886038965, "x5": 0.4330093716955256}}, null] -[[0, 0, 8], 3.0, {"submitted": 1557070509.7268388, "started": 1557070509.726913, "finished": 1557070509.732726}, {"loss": 0.9289914052065736, "info": {"x0": -4.155816286646661, "x1": 3.1057943859710404, "x2": 5.31060242566728, "x3": -0.8823260337332273, "x4": 3.943353960429333, "x5": 0.373243382053658}}, null] -[[0, 0, 9], 3.0, {"submitted": 1557070509.7339342, "started": 1557070509.7340121, "finished": 1557070509.7389252}, {"loss": 0.9363410205738253, "info": {"x0": -4.0658188200650365, "x1": 3.581103559356895, "x2": 4.462318709853317, "x3": -3.131033364708765, "x4": 4.567691355791181, "x5": 0.28349651305901374}}, null] -[[0, 0, 10], 3.0, {"submitted": 1557070509.740215, "started": 1557070509.740293, "finished": 1557070509.7456634}, {"loss": 0.4049072810595713, "info": {"x0": -2.7522678081124505, "x1": 7.497587072459229, "x2": 5.141923044588594, "x3": -3.8178036400150406, "x4": 4.87366798095502, "x5": 0.22013400361810498}}, null] -[[0, 0, 11], 3.0, {"submitted": 1557070509.7474387, "started": 1557070509.747508, "finished": 1557070509.7528741}, {"loss": 0.9553369507623211, "info": {"x0": -4.592097886151295, "x1": 3.8857779261915946, "x2": 4.7115748105660895, "x3": -3.340845192345687, "x4": 4.522020954987447, "x5": 0.4903449407301879}}, null] -[[0, 0, 12], 3.0, {"submitted": 1557070509.7541492, "started": 1557070509.7542238, "finished": 1557070509.7602599}, {"loss": 0.8680009017480692, "info": {"x0": -4.882139280099332, "x1": 3.507580148208496, "x2": 7.939264006922526, "x3": -1.8797909315438157, "x4": 2.5474940637297183, "x5": 0.05593058694300779}}, null] -[[0, 0, 13], 3.0, {"submitted": 1557070509.7615345, "started": 1557070509.7616158, "finished": 1557070509.7679615}, {"loss": 0.9536861149220355, "info": {"x0": -4.393989292008935, "x1": 7.597957541147132, "x2": 4.33054979533339, "x3": -1.3857849262149204, "x4": 3.6612805648663205, "x5": 0.4349769543279364}}, null] -[[0, 0, 14], 3.0, {"submitted": 1557070509.7689035, "started": 1557070509.7689688, "finished": 1557070509.774538}, {"loss": 0.9567051107501117, "info": {"x0": -5.741883764021548, "x1": 7.569049506605451, "x2": 7.316452059428343, "x3": -3.463821786280534, "x4": 1.8584910362525724, "x5": 0.41535859401855985}}, null] -[[0, 0, 15], 3.0, {"submitted": 1557070509.7755413, "started": 1557070509.7755945, "finished": 1557070509.7823067}, {"loss": 0.8680913590588946, "info": {"x0": -4.596199683274692, "x1": 4.090821960268514, "x2": 6.558976459648435, "x3": -2.5479367190621454, "x4": 3.114809169698294, "x5": 0.009996389207611422}}, null] -[[0, 0, 16], 3.0, {"submitted": 1557070509.7833717, "started": 1557070509.7834332, "finished": 1557070509.7887623}, {"loss": 0.9526910901183582, "info": {"x0": -4.422040760616122, "x1": 5.705578516249702, "x2": 4.9371223308625405, "x3": -2.8416308173569798, "x4": 1.853633237887442, "x5": 0.4182127053843077}}, null] -[[0, 0, 17], 3.0, {"submitted": 1557070509.7897153, "started": 1557070509.789796, "finished": 1557070509.7947285}, {"loss": 0.8870646756538747, "info": {"x0": -4.156402839887015, "x1": 5.4402589299266655, "x2": 5.263343864352755, "x3": -2.947272315294674, "x4": 4.085769638340141, "x5": 0.28842494287495807}}, null] -[[0, 0, 18], 3.0, {"submitted": 1557070509.795628, "started": 1557070509.7956803, "finished": 1557070509.8006687}, {"loss": 0.2145409312724312, "info": {"x0": -3.0293288713101463, "x1": 7.185664431652275, "x2": 7.382025228441708, "x3": -1.6559077833000657, "x4": 2.113325194719408, "x5": 0.36629998447252127}}, null] -[[0, 0, 19], 3.0, {"submitted": 1557070509.8017066, "started": 1557070509.8017652, "finished": 1557070509.8069208}, {"loss": 0.1306648580885645, "info": {"x0": -2.4007250958985695, "x1": 4.789342431780326, "x2": 6.3781017849937705, "x3": -0.7994485753475935, "x4": 1.7602943978651586, "x5": 0.0448561653164517}}, null] -[[0, 0, 20], 3.0, {"submitted": 1557070509.8080728, "started": 1557070509.8081532, "finished": 1557070509.8166425}, {"loss": 0.9338082300831004, "info": {"x0": -4.445658211791897, "x1": 3.0154549397399757, "x2": 6.1848914305840035, "x3": -3.3951505329979517, "x4": 2.538669168650558, "x5": 0.047248787928967084}}, null] -[[0, 0, 21], 3.0, {"submitted": 1557070509.817594, "started": 1557070509.8176734, "finished": 1557070509.8226507}, {"loss": 0.11218905450126693, "info": {"x0": -2.355831856996039, "x1": 7.85226465800374, "x2": 6.684378836750788, "x3": -2.887976050100302, "x4": 1.1412633250621198, "x5": 0.2816085817850915}}, null] -[[0, 0, 22], 3.0, {"submitted": 1557070509.8239114, "started": 1557070509.8240407, "finished": 1557070509.8299835}, {"loss": 0.964880144801467, "info": {"x0": -5.938856028457298, "x1": 6.022705649378997, "x2": 5.352067176908603, "x3": -2.3711339743508764, "x4": 3.4334592747699895, "x5": 0.42996331036660457}}, null] -[[0, 0, 23], 3.0, {"submitted": 1557070509.8310938, "started": 1557070509.8311622, "finished": 1557070509.8363247}, {"loss": 0.32030755231036473, "info": {"x0": -2.694371035455868, "x1": 6.18946869652972, "x2": 4.574998324546596, "x3": -1.9486810869910292, "x4": 3.551435886807996, "x5": 0.02853991822999352}}, null] -[[0, 0, 24], 3.0, {"submitted": 1557070509.8373718, "started": 1557070509.8374424, "finished": 1557070509.8430834}, {"loss": 0.24172320163584252, "info": {"x0": -3.1633566405007736, "x1": 6.740792403621169, "x2": 7.362839392596153, "x3": -1.675495064177217, "x4": 2.351016355026453, "x5": 0.33046658460100625}}, null] -[[0, 0, 25], 3.0, {"submitted": 1557070509.8443933, "started": 1557070509.8444726, "finished": 1557070509.8495307}, {"loss": 0.20445499741508105, "info": {"x0": -2.13514685509089, "x1": 6.804124925177877, "x2": 7.295998068010412, "x3": -2.361144814665751, "x4": 2.8143880660012424, "x5": 0.4221755107969618}}, null] -[[0, 0, 26], 3.0, {"submitted": 1557070509.8505428, "started": 1557070509.8506012, "finished": 1557070509.8559132}, {"loss": 0.9603346889645656, "info": {"x0": -5.747349935930044, "x1": 3.8534363952417, "x2": 5.876949998647554, "x3": -1.568190439953156, "x4": 3.170612238468455, "x5": 0.3519538225817331}}, null] -[[0, 0, 0], 9.0, {"submitted": 1557070509.8568711, "started": 1557070509.8569603, "finished": 1557070509.8628361}, {"loss": 0.20289461626450117, "info": {"x0": -3.3232617621750364, "x1": 5.994712287077052, "x2": 7.969514387156359, "x3": -3.736202353174738, "x4": 1.4886267145705445, "x5": 0.019628765680109017}}, null] -[[0, 0, 3], 9.0, {"submitted": 1557070509.8633714, "started": 1557070509.8634222, "finished": 1557070509.868384}, {"loss": 0.2504070543665952, "info": {"x0": -2.4464878259453604, "x1": 6.410909325008273, "x2": 5.123338428855917, "x3": -1.3013539887906642, "x4": 3.8142031808566133, "x5": 0.0815448837305891}}, null] -[[0, 0, 4], 9.0, {"submitted": 1557070509.8690584, "started": 1557070509.8691325, "finished": 1557070509.8752065}, {"loss": 0.3158751681406592, "info": {"x0": -2.180868559854636, "x1": 6.281160373108999, "x2": 6.144166610404994, "x3": -3.0532422346732067, "x4": 4.591612672676879, "x5": 0.4553899254501817}}, null] -[[0, 0, 18], 9.0, {"submitted": 1557070509.8764603, "started": 1557070509.8765671, "finished": 1557070509.8840206}, {"loss": 0.15468113858443153, "info": {"x0": -3.0293288713101463, "x1": 7.185664431652275, "x2": 7.382025228441708, "x3": -1.6559077833000657, "x4": 2.113325194719408, "x5": 0.36629998447252127}}, null] -[[0, 0, 19], 9.0, {"submitted": 1557070509.8848329, "started": 1557070509.8848996, "finished": 1557070509.8906357}, {"loss": 0.08265490721842113, "info": {"x0": -2.4007250958985695, "x1": 4.789342431780326, "x2": 6.3781017849937705, "x3": -0.7994485753475935, "x4": 1.7602943978651586, "x5": 0.0448561653164517}}, null] -[[0, 0, 21], 9.0, {"submitted": 1557070509.8913915, "started": 1557070509.8914535, "finished": 1557070509.8970022}, {"loss": 0.09886928923202283, "info": {"x0": -2.355831856996039, "x1": 7.85226465800374, "x2": 6.684378836750788, "x3": -2.887976050100302, "x4": 1.1412633250621198, "x5": 0.2816085817850915}}, null] -[[0, 0, 23], 9.0, {"submitted": 1557070509.8978198, "started": 1557070509.8978915, "finished": 1557070509.9032087}, {"loss": 0.2689733167058038, "info": {"x0": -2.694371035455868, "x1": 6.18946869652972, "x2": 4.574998324546596, "x3": -1.9486810869910292, "x4": 3.551435886807996, "x5": 0.02853991822999352}}, null] -[[0, 0, 24], 9.0, {"submitted": 1557070509.9038956, "started": 1557070509.9039533, "finished": 1557070509.908871}, {"loss": 0.18274536318150325, "info": {"x0": -3.1633566405007736, "x1": 6.740792403621169, "x2": 7.362839392596153, "x3": -1.675495064177217, "x4": 2.351016355026453, "x5": 0.33046658460100625}}, null] -[[0, 0, 25], 9.0, {"submitted": 1557070509.9096866, "started": 1557070509.9097474, "finished": 1557070509.9154177}, {"loss": 0.1404115769818378, "info": {"x0": -2.13514685509089, "x1": 6.804124925177877, "x2": 7.295998068010412, "x3": -2.361144814665751, "x4": 2.8143880660012424, "x5": 0.4221755107969618}}, null] -[[0, 0, 19], 27.0, {"submitted": 1557070509.9162366, "started": 1557070509.91632, "finished": 1557070509.921677}, {"loss": 0.0616236994866061, "info": {"x0": -2.4007250958985695, "x1": 4.789342431780326, "x2": 6.3781017849937705, "x3": -0.7994485753475935, "x4": 1.7602943978651586, "x5": 0.0448561653164517}}, null] -[[0, 0, 21], 27.0, {"submitted": 1557070509.922265, "started": 1557070509.922341, "finished": 1557070509.9277694}, {"loss": 0.0985074619371284, "info": {"x0": -2.355831856996039, "x1": 7.85226465800374, "x2": 6.684378836750788, "x3": -2.887976050100302, "x4": 1.1412633250621198, "x5": 0.2816085817850915}}, null] -[[0, 0, 25], 27.0, {"submitted": 1557070509.9284744, "started": 1557070509.92853, "finished": 1557070509.9332507}, {"loss": 0.11763907801587352, "info": {"x0": -2.13514685509089, "x1": 6.804124925177877, "x2": 7.295998068010412, "x3": -2.361144814665751, "x4": 2.8143880660012424, "x5": 0.4221755107969618}}, null] -[[0, 0, 19], 81.0, {"submitted": 1557070509.9339314, "started": 1557070509.933993, "finished": 1557070509.9392016}, {"loss": 0.06047037526500112, "info": {"x0": -2.4007250958985695, "x1": 4.789342431780326, "x2": 6.3781017849937705, "x3": -0.7994485753475935, "x4": 1.7602943978651586, "x5": 0.0448561653164517}}, null] -[[1, 0, 0], 9.0, {"submitted": 1557070509.9402268, "started": 1557070509.9402847, "finished": 1557070509.9458222}, {"loss": 0.7072817700241503, "info": {"x0": -4.213460909841531, "x1": 4.10858912503894, "x2": 7.315374006605905, "x3": -2.4135888240405308, "x4": 4.6001331922255595, "x5": 0.39774664280551153}}, null] -[[1, 0, 1], 9.0, {"submitted": 1557070509.9478383, "started": 1557070509.9479067, "finished": 1557070509.9529443}, {"loss": 0.9102668474451944, "info": {"x0": -5.624782825908507, "x1": 7.873788747712851, "x2": 7.016952777666759, "x3": -0.2565986710571466, "x4": 1.8171578732064404, "x5": 0.1118100899804026}}, null] -[[1, 0, 2], 9.0, {"submitted": 1557070509.9540806, "started": 1557070509.9541433, "finished": 1557070509.959664}, {"loss": 0.15906829185099797, "info": {"x0": -2.5305337359897964, "x1": 7.814446637992644, "x2": 7.777367259554772, "x3": -2.4706832578553173, "x4": 3.9149907558962895, "x5": 0.3873441448493087}}, null] -[[1, 0, 3], 9.0, {"submitted": 1557070509.9608915, "started": 1557070509.9609654, "finished": 1557070509.9656744}, {"loss": 0.9576209854497184, "info": {"x0": -5.456730799056723, "x1": 4.615605928427784, "x2": 5.841263662519255, "x3": -2.6650233214841705, "x4": 3.7213347899218534, "x5": 0.4767235749538446}}, null] -[[1, 0, 4], 9.0, {"submitted": 1557070509.966604, "started": 1557070509.9666603, "finished": 1557070509.9718175}, {"loss": 0.462121210813064, "info": {"x0": -3.2274320161881893, "x1": 6.917157864228718, "x2": 4.041775639346613, "x3": -3.5089505808135364, "x4": 4.714311865319766, "x5": 0.13390851139477566}}, null] -[[1, 0, 5], 9.0, {"submitted": 1557070509.9730177, "started": 1557070509.9730906, "finished": 1557070509.9787335}, {"loss": 0.12648122955344482, "info": {"x0": -2.4210183458241326, "x1": 6.950228923085405, "x2": 5.644871670792843, "x3": -1.7088811738204894, "x4": 1.2425241054992564, "x5": 0.0013249982268991323}}, null] -[[1, 0, 6], 9.0, {"submitted": 1557070509.9800093, "started": 1557070509.980102, "finished": 1557070509.9851966}, {"loss": 0.9508819538308455, "info": {"x0": -5.936169030940041, "x1": 6.43400730004338, "x2": 4.291974526206563, "x3": -0.1905817459578949, "x4": 4.005448390306023, "x5": 0.03297460349320175}}, null] -[[1, 0, 7], 9.0, {"submitted": 1557070509.9862258, "started": 1557070509.986284, "finished": 1557070509.9916515}, {"loss": 0.7866350030242616, "info": {"x0": -4.317841629775115, "x1": 4.3184385415074935, "x2": 5.254604230941023, "x3": -2.281679450389963, "x4": 4.162515151250165, "x5": 0.24276487029480653}}, null] -[[1, 0, 8], 9.0, {"submitted": 1557070509.993028, "started": 1557070509.9931073, "finished": 1557070509.998939}, {"loss": 0.13267752030811283, "info": {"x0": -2.9326990258937635, "x1": 7.206596888073931, "x2": 7.6637784962991224, "x3": -3.8621989667514782, "x4": 2.9013756048036, "x5": 0.21428542880391277}}, null] -[[1, 0, 2], 27.0, {"submitted": 1557070509.9998798, "started": 1557070509.9999633, "finished": 1557070510.0074663}, {"loss": 0.11293532194216724, "info": {"x0": -2.5305337359897964, "x1": 7.814446637992644, "x2": 7.777367259554772, "x3": -2.4706832578553173, "x4": 3.9149907558962895, "x5": 0.3873441448493087}}, null] -[[1, 0, 5], 27.0, {"submitted": 1557070510.0082633, "started": 1557070510.0083401, "finished": 1557070510.016772}, {"loss": 0.12573496215837351, "info": {"x0": -2.4210183458241326, "x1": 6.950228923085405, "x2": 5.644871670792843, "x3": -1.7088811738204894, "x4": 1.2425241054992564, "x5": 0.0013249982268991323}}, null] -[[1, 0, 8], 27.0, {"submitted": 1557070510.017523, "started": 1557070510.0175946, "finished": 1557070510.0231624}, {"loss": 0.11028946168494946, "info": {"x0": -2.9326990258937635, "x1": 7.206596888073931, "x2": 7.6637784962991224, "x3": -3.8621989667514782, "x4": 2.9013756048036, "x5": 0.21428542880391277}}, null] -[[1, 0, 8], 81.0, {"submitted": 1557070510.0239148, "started": 1557070510.0239773, "finished": 1557070510.0295372}, {"loss": 0.10943012185384653, "info": {"x0": -2.9326990258937635, "x1": 7.206596888073931, "x2": 7.6637784962991224, "x3": -3.8621989667514782, "x4": 2.9013756048036, "x5": 0.21428542880391277}}, null] -[[2, 0, 0], 27.0, {"submitted": 1557070510.0315897, "started": 1557070510.0316772, "finished": 1557070510.037746}, {"loss": 0.13579827767456887, "info": {"x0": -3.07799832067854, "x1": 6.787912050777986, "x2": 7.743682708025558, "x3": -3.1050095939690143, "x4": 1.6976015596053546, "x5": 0.1490464708090955}}, null] -[[2, 0, 1], 27.0, {"submitted": 1557070510.0388649, "started": 1557070510.038928, "finished": 1557070510.0450451}, {"loss": 0.9533242867302534, "info": {"x0": -5.890007356438458, "x1": 4.7578873468067755, "x2": 4.944497234786445, "x3": -0.501128907320902, "x4": 4.3682470535052875, "x5": 0.40010411499918896}}, null] -[[2, 0, 2], 27.0, {"submitted": 1557070510.0462625, "started": 1557070510.0463605, "finished": 1557070510.0514014}, {"loss": 0.23828584274815415, "info": {"x0": -3.4231841725887264, "x1": 4.960688397281498, "x2": 7.0541993676771195, "x3": -3.510175604656195, "x4": 2.3340094140421326, "x5": 0.31070312701341474}}, null] -[[2, 0, 3], 27.0, {"submitted": 1557070510.0525239, "started": 1557070510.0525904, "finished": 1557070510.0578578}, {"loss": 0.12431026207058204, "info": {"x0": -3.540570727035884, "x1": 4.22053822619337, "x2": 7.633856317215118, "x3": -1.0828335529054551, "x4": 1.6843757262427896, "x5": 0.2569875083217933}}, null] -[[2, 0, 4], 27.0, {"submitted": 1557070510.0590475, "started": 1557070510.0591154, "finished": 1557070510.064801}, {"loss": 0.9521935768866905, "info": {"x0": -5.636573270236708, "x1": 3.959029063359763, "x2": 5.505251085044735, "x3": -0.9824374471584703, "x4": 3.2761203313506884, "x5": 0.3587418552380696}}, null] -[[2, 0, 5], 27.0, {"submitted": 1557070510.0658455, "started": 1557070510.0659027, "finished": 1557070510.071508}, {"loss": 0.14047942088233675, "info": {"x0": -2.5664987397291354, "x1": 7.732084366200046, "x2": 6.395019777171276, "x3": -3.345478476950959, "x4": 4.9043339569187, "x5": 0.20358144982457765}}, null] -[[2, 0, 0], 81.0, {"submitted": 1557070510.0722454, "started": 1557070510.0723252, "finished": 1557070510.0791276}, {"loss": 0.13579827767456887, "info": {"x0": -3.07799832067854, "x1": 6.787912050777986, "x2": 7.743682708025558, "x3": -3.1050095939690143, "x4": 1.6976015596053546, "x5": 0.1490464708090955}}, null] -[[2, 0, 3], 81.0, {"submitted": 1557070510.080001, "started": 1557070510.0801315, "finished": 1557070510.0853648}, {"loss": 0.10594753070365033, "info": {"x0": -3.540570727035884, "x1": 4.22053822619337, "x2": 7.633856317215118, "x3": -1.0828335529054551, "x4": 1.6843757262427896, "x5": 0.2569875083217933}}, null] -[[3, 0, 0], 81.0, {"submitted": 1557070510.0865765, "started": 1557070510.0866358, "finished": 1557070510.0925732}, {"loss": 0.5452962447458238, "info": {"x0": -4.522223429576409, "x1": 6.329871671765403, "x2": 7.40119617323278, "x3": -0.9208302622513913, "x4": 1.971687825763187, "x5": 0.4511869926799114}}, null] -[[3, 0, 1], 81.0, {"submitted": 1557070510.0934532, "started": 1557070510.0935092, "finished": 1557070510.098884}, {"loss": 0.31334236859668707, "info": {"x0": -2.4643796377147034, "x1": 5.127232685485594, "x2": 4.968122612068299, "x3": -0.29445614420932564, "x4": 3.0423817171558625, "x5": 0.44241795383729365}}, null] -[[3, 0, 2], 81.0, {"submitted": 1557070510.099867, "started": 1557070510.0999403, "finished": 1557070510.1051888}, {"loss": 0.39563545295315755, "info": {"x0": -2.6411081732717987, "x1": 6.302827393713546, "x2": 5.894962154197906, "x3": -2.075927649335681, "x4": 4.19714991053866, "x5": 0.46263380607973237}}, null] -[[3, 0, 3], 81.0, {"submitted": 1557070510.1061924, "started": 1557070510.106283, "finished": 1557070510.1115365}, {"loss": 0.28661238834807795, "info": {"x0": -2.2860914093287557, "x1": 4.296333081032298, "x2": 4.056026851985406, "x3": -2.3281148901494433, "x4": 1.7958282829079852, "x5": 0.21374855962121053}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/randomsearch/configs.json deleted file mode 100644 index 99bee02..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/randomsearch/configs.json +++ /dev/null @@ -1,16 +0,0 @@ -[[0, 0, 0], {"x0": -5.8855933941970395, "x1": 6.929373191733237, "x2": 5.284169347859695, "x3": -0.5865832824095865, "x4": 3.1722701875789756, "x5": 0.2171047023976606}, {}] -[[0, 0, 1], {"x0": -3.391018741123994, "x1": 3.9244176673257027, "x2": 7.782544963340872, "x3": -1.8195718997287806, "x4": 4.721166836824441, "x5": 0.14325740858125646}, {}] -[[0, 0, 2], {"x0": -3.74263595958072, "x1": 6.382418106642356, "x2": 6.189719477250792, "x3": -2.186695770644203, "x4": 2.431787930422074, "x5": 0.06097095385555196}, {}] -[[0, 0, 3], {"x0": -3.659177074033355, "x1": 6.188390563838151, "x2": 5.211377677479951, "x3": -1.1400973061750999, "x4": 3.1997744943300046, "x5": 0.3710410965734088}, {}] -[[1, 0, 0], {"x0": -3.1715161307892012, "x1": 4.168440735823906, "x2": 6.483612460669789, "x3": -2.565278691406946, "x4": 1.7588950286288134, "x5": 0.4916499833707769}, {}] -[[1, 0, 1], {"x0": -3.580078784467949, "x1": 5.122073080564473, "x2": 7.298857783104499, "x3": -0.9457463778867967, "x4": 4.960841301433115, "x5": 0.4239933048620791}, {}] -[[1, 0, 2], {"x0": -3.8072396587480735, "x1": 7.764058727973067, "x2": 6.429704072863052, "x3": -0.9562357442998763, "x4": 1.5480916431570648, "x5": 0.4056396624492642}, {}] -[[1, 0, 3], {"x0": -2.9976633230985965, "x1": 4.482294046307076, "x2": 5.310188227906439, "x3": -2.8215987301483674, "x4": 1.7836832559615972, "x5": 0.28838401953219395}, {}] -[[2, 0, 0], {"x0": -3.579831380292787, "x1": 6.364680756137569, "x2": 7.825980156341007, "x3": -0.7446120693182037, "x4": 4.0322272279687414, "x5": 0.3653905004172095}, {}] -[[2, 0, 1], {"x0": -4.351953475581525, "x1": 7.560859885974237, "x2": 7.953160860746079, "x3": -3.3260321154900385, "x4": 4.532247006483866, "x5": 0.04581699572726161}, {}] -[[2, 0, 2], {"x0": -3.570615266514493, "x1": 6.644450501373466, "x2": 5.942196811286031, "x3": -2.5851202421469375, "x4": 3.6786938427548077, "x5": 0.12406551237431046}, {}] -[[2, 0, 3], {"x0": -4.726801536094386, "x1": 6.529824429122803, "x2": 7.1847682938324535, "x3": -1.864630256207929, "x4": 2.5978931401604335, "x5": 0.01728398847171514}, {}] -[[3, 0, 0], {"x0": -3.6921625758670102, "x1": 5.151424404132803, "x2": 4.779375121674182, "x3": -1.8061631215650173, "x4": 4.487860016125753, "x5": 0.07196951520743777}, {}] -[[3, 0, 1], {"x0": -2.950025065817218, "x1": 6.348037553689182, "x2": 6.780359662562839, "x3": -0.25000636377361474, "x4": 4.544670978086961, "x5": 0.3150239200631094}, {}] -[[3, 0, 2], {"x0": -2.8862727782671604, "x1": 6.642868457466051, "x2": 6.858741084499224, "x3": -3.5912853606128956, "x4": 1.225494884045626, "x5": 0.10287650161637668}, {}] -[[3, 0, 3], {"x0": -4.364055669533605, "x1": 3.654203105967368, "x2": 7.763609909405392, "x3": -0.035881296490968495, "x4": 3.761540878809673, "x5": 0.0074788200944152505}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/randomsearch/results.json deleted file mode 100644 index 2d13fd0..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/randomsearch/results.json +++ /dev/null @@ -1,16 +0,0 @@ -[[0, 0, 0], 81, {"submitted": 1557070509.2929442, "started": 1557070509.2930305, "finished": 1557070509.297743}, {"loss": 0.9547942105462933, "info": {"x0": -5.8855933941970395, "x1": 6.929373191733237, "x2": 5.284169347859695, "x3": -0.5865832824095865, "x4": 3.1722701875789756, "x5": 0.2171047023976606}}, null] -[[0, 0, 1], 81, {"submitted": 1557070509.298896, "started": 1557070509.2989643, "finished": 1557070509.3051765}, {"loss": 0.10083672186871126, "info": {"x0": -3.391018741123994, "x1": 3.9244176673257027, "x2": 7.782544963340872, "x3": -1.8195718997287806, "x4": 4.721166836824441, "x5": 0.14325740858125646}}, null] -[[0, 0, 2], 81, {"submitted": 1557070509.3064747, "started": 1557070509.3065567, "finished": 1557070509.312379}, {"loss": 0.45271370414760737, "info": {"x0": -3.74263595958072, "x1": 6.382418106642356, "x2": 6.189719477250792, "x3": -2.186695770644203, "x4": 2.431787930422074, "x5": 0.06097095385555196}}, null] -[[0, 0, 3], 81, {"submitted": 1557070509.3134263, "started": 1557070509.3134959, "finished": 1557070509.3186407}, {"loss": 0.5719131555794079, "info": {"x0": -3.659177074033355, "x1": 6.188390563838151, "x2": 5.211377677479951, "x3": -1.1400973061750999, "x4": 3.1997744943300046, "x5": 0.3710410965734088}}, null] -[[1, 0, 0], 81, {"submitted": 1557070509.3195508, "started": 1557070509.3196275, "finished": 1557070509.3252554}, {"loss": 0.21732247604848248, "info": {"x0": -3.1715161307892012, "x1": 4.168440735823906, "x2": 6.483612460669789, "x3": -2.565278691406946, "x4": 1.7588950286288134, "x5": 0.4916499833707769}}, null] -[[1, 0, 1], 81, {"submitted": 1557070509.3264997, "started": 1557070509.3265765, "finished": 1557070509.3323371}, {"loss": 0.1731117112955482, "info": {"x0": -3.580078784467949, "x1": 5.122073080564473, "x2": 7.298857783104499, "x3": -0.9457463778867967, "x4": 4.960841301433115, "x5": 0.4239933048620791}}, null] -[[1, 0, 2], 81, {"submitted": 1557070509.3335, "started": 1557070509.3335705, "finished": 1557070509.3385608}, {"loss": 0.42806422007887257, "info": {"x0": -3.8072396587480735, "x1": 7.764058727973067, "x2": 6.429704072863052, "x3": -0.9562357442998763, "x4": 1.5480916431570648, "x5": 0.4056396624492642}}, null] -[[1, 0, 3], 81, {"submitted": 1557070509.3395646, "started": 1557070509.339625, "finished": 1557070509.3448951}, {"loss": 0.25158299254864275, "info": {"x0": -2.9976633230985965, "x1": 4.482294046307076, "x2": 5.310188227906439, "x3": -2.8215987301483674, "x4": 1.7836832559615972, "x5": 0.28838401953219395}}, null] -[[2, 0, 0], 81, {"submitted": 1557070509.345957, "started": 1557070509.3460276, "finished": 1557070509.3510106}, {"loss": 0.14549977311258777, "info": {"x0": -3.579831380292787, "x1": 6.364680756137569, "x2": 7.825980156341007, "x3": -0.7446120693182037, "x4": 4.0322272279687414, "x5": 0.3653905004172095}}, null] -[[2, 0, 1], 81, {"submitted": 1557070509.3520548, "started": 1557070509.3521347, "finished": 1557070509.3581715}, {"loss": 0.48722296837550483, "info": {"x0": -4.351953475581525, "x1": 7.560859885974237, "x2": 7.953160860746079, "x3": -3.3260321154900385, "x4": 4.532247006483866, "x5": 0.04581699572726161}}, null] -[[2, 0, 2], 81, {"submitted": 1557070509.35906, "started": 1557070509.3591192, "finished": 1557070509.3647966}, {"loss": 0.4862505650248047, "info": {"x0": -3.570615266514493, "x1": 6.644450501373466, "x2": 5.942196811286031, "x3": -2.5851202421469375, "x4": 3.6786938427548077, "x5": 0.12406551237431046}}, null] -[[2, 0, 3], 81, {"submitted": 1557070509.3659096, "started": 1557070509.3659763, "finished": 1557070509.3710337}, {"loss": 0.7012663949548875, "info": {"x0": -4.726801536094386, "x1": 6.529824429122803, "x2": 7.1847682938324535, "x3": -1.864630256207929, "x4": 2.5978931401604335, "x5": 0.01728398847171514}}, null] -[[3, 0, 0], 81, {"submitted": 1557070509.3721962, "started": 1557070509.3722734, "finished": 1557070509.378433}, {"loss": 0.5670058737200196, "info": {"x0": -3.6921625758670102, "x1": 5.151424404132803, "x2": 4.779375121674182, "x3": -1.8061631215650173, "x4": 4.487860016125753, "x5": 0.07196951520743777}}, null] -[[3, 0, 1], 81, {"submitted": 1557070509.3795817, "started": 1557070509.3796675, "finished": 1557070509.3844104}, {"loss": 0.13037087016923027, "info": {"x0": -2.950025065817218, "x1": 6.348037553689182, "x2": 6.780359662562839, "x3": -0.25000636377361474, "x4": 4.544670978086961, "x5": 0.3150239200631094}}, null] -[[3, 0, 2], 81, {"submitted": 1557070509.3853574, "started": 1557070509.3854148, "finished": 1557070509.3902223}, {"loss": 0.1293306205039216, "info": {"x0": -2.8862727782671604, "x1": 6.642868457466051, "x2": 6.858741084499224, "x3": -3.5912853606128956, "x4": 1.225494884045626, "x5": 0.10287650161637668}}, null] -[[3, 0, 3], 81, {"submitted": 1557070509.3912032, "started": 1557070509.391268, "finished": 1557070509.3965807}, {"loss": 0.20750790923591228, "info": {"x0": -4.364055669533605, "x1": 3.654203105967368, "x2": 7.763609909405392, "x3": -0.035881296490968495, "x4": 3.761540878809673, "x5": 0.0074788200944152505}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/runhistory.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/runhistory.json deleted file mode 100644 index 81281a6..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/runhistory.json +++ /dev/null @@ -1,392 +0,0 @@ -{ - "data": [ - [ - [ - 1, - null, - 0 - ], - [ - 0.30511080840967286, - 0.023621559143066406, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 2, - null, - 0 - ], - [ - 0.9122795105886097, - 0.02253890037536621, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 3, - null, - 0 - ], - [ - 0.6917458160638419, - 0.024111032485961914, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 4, - null, - 0 - ], - [ - 0.665581184226391, - 0.028049468994140625, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 5, - null, - 0 - ], - [ - 0.4017186759744885, - 0.028138399124145508, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 6, - null, - 0 - ], - [ - 0.9436906370146462, - 0.02685379981994629, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 7, - null, - 0 - ], - [ - 0.8370420618849621, - 0.02702474594116211, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 8, - null, - 0 - ], - [ - 0.5373586578720069, - 0.028745651245117188, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 9, - null, - 0 - ], - [ - 0.667955675899851, - 0.02832770347595215, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 10, - null, - 0 - ], - [ - 0.26775214751750187, - 0.026710033416748047, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 11, - null, - 0 - ], - [ - 0.1185210310532625, - 0.024257421493530273, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 12, - null, - 0 - ], - [ - 0.05187698234157397, - 0.028455018997192383, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 13, - null, - 0 - ], - [ - 0.8824061509970725, - 0.025590896606445312, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 14, - null, - 0 - ], - [ - 0.23487109282015672, - 0.025800466537475586, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 15, - null, - 0 - ], - [ - 0.4336273123650449, - 0.02714681625366211, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 16, - null, - 0 - ], - [ - 0.7089326087363513, - 0.030915021896362305, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ] - ], - "config_origins": { - "1": "Random initial design.", - "2": "Random Search (sorted)", - "3": "Random Search (sorted)", - "4": "Random Search (sorted)", - "5": "Random Search", - "6": "Random Search", - "7": "Random Search (sorted)", - "8": "Random Search (sorted)", - "9": "Random Search (sorted)", - "10": "Random Search", - "11": "Random Search (sorted)", - "12": "Random Search (sorted)", - "13": "Random Search", - "14": "Random Search", - "15": "Random Search", - "16": "Random Search" - }, - "configs": { - "1": { - "x0": -3.747087234132967, - "x1": 6.934268420666081, - "x2": 7.037747017825554, - "x3": -0.9391011953257338, - "x4": 1.7855416092658531, - "x5": 0.19757734137449945 - }, - "2": { - "x0": -4.507574205136864, - "x1": 5.658539194837903, - "x2": 4.639305129155389, - "x3": -3.4659236741046593, - "x4": 3.852093783541258, - "x5": 0.09313582898468553 - }, - "3": { - "x0": -4.115726939959121, - "x1": 6.109023703278337, - "x2": 4.862245550026453, - "x3": -0.10294272647601943, - "x4": 4.090993140979122, - "x5": 0.3916823209181441 - }, - "4": { - "x0": -5.037159624919461, - "x1": 3.895270267026736, - "x2": 6.573613238999411, - "x3": -1.1523623354081378, - "x4": 2.5078773629709987, - "x5": 0.38225196138473694 - }, - "5": { - "x0": -2.56987358994607, - "x1": 3.2204794068720073, - "x2": 4.400867392526786, - "x3": -3.4781144199560616, - "x4": 4.670913998970056, - "x5": 0.237005949636875 - }, - "6": { - "x0": -4.949246218989673, - "x1": 4.8768590670967455, - "x2": 4.159118387037779, - "x3": -2.5894605921709157, - "x4": 1.2801824195993192, - "x5": 0.28066208699364104 - }, - "7": { - "x0": -4.526920107258523, - "x1": 4.615139765012019, - "x2": 4.323439438129398, - "x3": -1.0149807335351007, - "x4": 4.6218339377161, - "x5": 0.270194172611531 - }, - "8": { - "x0": -4.2713491956596386, - "x1": 4.473970983039852, - "x2": 6.552743186493964, - "x3": -3.0741305399644396, - "x4": 1.3702157316065122, - "x5": 0.21819433365521002 - }, - "9": { - "x0": -4.990536371527494, - "x1": 5.775214211730652, - "x2": 6.900097961572409, - "x3": -0.99781811096266, - "x4": 4.858578145990611, - "x5": 0.18827593192006287 - }, - "10": { - "x0": -3.4442508397738694, - "x1": 7.217513569094033, - "x2": 7.0816842244087965, - "x3": -1.760017922650425, - "x4": 1.1193179624740122, - "x5": 0.11411243912030422 - }, - "11": { - "x0": -2.2898960822052814, - "x1": 3.0681570019599227, - "x2": 5.653443338822326, - "x3": -3.72450665045236, - "x4": 4.952340989920393, - "x5": 0.06795402381465626 - }, - "12": { - "x0": -2.708830526030203, - "x1": 4.61743962487257, - "x2": 7.391761431958416, - "x3": -1.8969824472203154, - "x4": 2.9847648222290655, - "x5": 0.22492295182245242 - }, - "13": { - "x0": -5.716602213070457, - "x1": 5.795552075542988, - "x2": 7.0200736523651175, - "x3": -0.49983563037828826, - "x4": 2.691944091091222, - "x5": 0.2862999650681195 - }, - "14": { - "x0": -3.1252862814988864, - "x1": 3.2041237968918685, - "x2": 5.409518865843003, - "x3": -3.169893060602265, - "x4": 1.1491089899216367, - "x5": 0.24221862056572335 - }, - "15": { - "x0": -3.424157954637609, - "x1": 3.6304932399368104, - "x2": 5.105322091568786, - "x3": -1.671979042820214, - "x4": 2.457307820289586, - "x5": 0.4714009245091177 - }, - "16": { - "x0": -5.02842750831912, - "x1": 4.091499202272852, - "x2": 6.388095841852515, - "x3": -1.444014060811063, - "x4": 1.6316704760007301, - "x5": 0.4806126459681999 - } - } -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/scenario.txt b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/scenario.txt deleted file mode 100644 index 945bc67..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/scenario.txt +++ /dev/null @@ -1,12 +0,0 @@ -execdir = . -deterministic = True -run_obj = quality -overall_obj = par10 -par_factor = 10 -cost_for_crash = 2147483647.0 -algo_runs_timelimit = inf -wallclock_limit = inf -always_race_default = False -ta_run_limit = 16.0 -initial_incumbent = RANDOM -pcs_fn = opt_results/paramnet_surrogate/letter/smac/run_1155199281/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/stats.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/stats.json deleted file mode 100644 index a27783d..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/stats.json +++ /dev/null @@ -1 +0,0 @@ -{"ta_runs": 16, "n_configs": 16, "wallclock_time_used": 13.713782548904419, "ta_time_used": 0.4262869358062744, "inc_changed": 4, "_n_configs_per_intensify": 14, "_n_calls_of_intensify": 7, "_ema_n_configs_per_intensifiy": 2.0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/traj_aclib2.json deleted file mode 100644 index 7e28250..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/traj_aclib2.json +++ /dev/null @@ -1,5 +0,0 @@ -{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 8.654594421386719e-05, "evaluations": 0, "cost": 2147483648, "incumbent": ["x0='-3.747087234132967'", "x1='6.934268420666081'", "x2='7.037747017825554'", "x3='-0.9391011953257338'", "x4='1.7855416092658531'", "x5='0.19757734137449945'"], "origin": "Random initial design."} -{"cpu_time": 0.023621559143066406, "total_cpu_time": null, "wallclock_time": 0.045032501220703125, "evaluations": 1, "cost": 0.30511080840967286, "incumbent": ["x0='-3.747087234132967'", "x1='6.934268420666081'", "x2='7.037747017825554'", "x3='-0.9391011953257338'", "x4='1.7855416092658531'", "x5='0.19757734137449945'"], "origin": "Random initial design."} -{"cpu_time": 0.26412129402160645, "total_cpu_time": null, "wallclock_time": 6.4108452796936035, "evaluations": 10, "cost": 0.26775214751750187, "incumbent": ["x0='-3.4442508397738694'", "x1='7.217513569094033'", "x2='7.0816842244087965'", "x3='-1.760017922650425'", "x4='1.1193179624740122'", "x5='0.11411243912030422'"], "origin": "Random Search"} -{"cpu_time": 0.2883787155151367, "total_cpu_time": null, "wallclock_time": 6.45861029624939, "evaluations": 11, "cost": 0.1185210310532625, "incumbent": ["x0='-2.2898960822052814'", "x1='3.0681570019599227'", "x2='5.653443338822326'", "x3='-3.72450665045236'", "x4='4.952340989920393'", "x5='0.06795402381465626'"], "origin": "Random Search (sorted)"} -{"cpu_time": 0.3168337345123291, "total_cpu_time": null, "wallclock_time": 8.873107671737671, "evaluations": 12, "cost": 0.05187698234157397, "incumbent": ["x0='-2.708830526030203'", "x1='4.61743962487257'", "x2='7.391761431958416'", "x3='-1.8969824472203154'", "x4='2.9847648222290655'", "x5='0.22492295182245242'"], "origin": "Random Search (sorted)"} diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/traj_old.csv b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/traj_old.csv deleted file mode 100644 index 635daa5..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/traj_old.csv +++ /dev/null @@ -1,6 +0,0 @@ -"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." -0.000000, 2147483648.000000, 0.000087, 1, 0.000087, x0='-3.747087234132967', x1='6.934268420666081', x2='7.037747017825554', x3='-0.9391011953257338', x4='1.7855416092658531', x5='0.19757734137449945' -0.023622, 0.305111, 0.045033, 1, 0.021411, x0='-3.747087234132967', x1='6.934268420666081', x2='7.037747017825554', x3='-0.9391011953257338', x4='1.7855416092658531', x5='0.19757734137449945' -0.264121, 0.267752, 6.410845, 2, 6.146724, x0='-3.4442508397738694', x1='7.217513569094033', x2='7.0816842244087965', x3='-1.760017922650425', x4='1.1193179624740122', x5='0.11411243912030422' -0.288379, 0.118521, 6.458610, 3, 6.170232, x0='-2.2898960822052814', x1='3.0681570019599227', x2='5.653443338822326', x3='-3.72450665045236', x4='4.952340989920393', x5='0.06795402381465626' -0.316834, 0.051877, 8.873108, 4, 8.556274, x0='-2.708830526030203', x1='4.61743962487257', x2='7.391761431958416', x3='-1.8969824472203154', x4='2.9847648222290655', x5='0.22492295182245242' diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/bohb/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/bohb/configs.json deleted file mode 100644 index 3467f20..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/bohb/configs.json +++ /dev/null @@ -1,46 +0,0 @@ -[[0, 0, 0], {"x0": -5.350897806482484, "x1": 4.117311385071877, "x2": 7.6785868656518925, "x3": -2.3197781387650878, "x4": 2.697582254085429, "x5": 0.4565089404022489}, {"model_based_pick": false}] -[[0, 0, 1], {"x0": -3.403203360767879, "x1": 4.26307384360548, "x2": 7.038311780045766, "x3": -1.1862889728040784, "x4": 1.5793098220617448, "x5": 0.33985030427632473}, {"model_based_pick": false}] -[[0, 0, 2], {"x0": -2.8826185068916073, "x1": 3.933669777304532, "x2": 5.8493079274047, "x3": -2.114797075600053, "x4": 4.749806866320521, "x5": 0.13219251848432845}, {"model_based_pick": false}] -[[0, 0, 3], {"x0": -2.4189200558463555, "x1": 6.9406269006187, "x2": 4.991724959564063, "x3": -1.2429288394817264, "x4": 1.0783651453801912, "x5": 0.0630773639438742}, {"model_based_pick": false}] -[[0, 0, 4], {"x0": -3.844061361527697, "x1": 7.462445698167655, "x2": 6.104835563492127, "x3": -1.2268649112484051, "x4": 3.5632284570220096, "x5": 0.4540801923204674}, {"model_based_pick": false}] -[[0, 0, 5], {"x0": -2.450129428568701, "x1": 3.0641235004034924, "x2": 4.5829959973267735, "x3": -3.0077040316611128, "x4": 4.069135481116891, "x5": 0.1285263736176876}, {"model_based_pick": false}] -[[0, 0, 6], {"x0": -3.996713020391076, "x1": 3.645756146897524, "x2": 4.245934186981797, "x3": -1.5759763293092988, "x4": 3.0551809078481695, "x5": 0.2537006707514477}, {"model_based_pick": false}] -[[0, 0, 7], {"x0": -4.316735095980177, "x1": 7.65909231526093, "x2": 7.359145559616386, "x3": -1.4936925602733613, "x4": 1.1781480179703716, "x5": 0.12454124296118108}, {"model_based_pick": false}] -[[0, 0, 8], {"x0": -2.8049966170020104, "x1": 5.693939479227203, "x2": 5.670125238049216, "x3": -2.429713735814707, "x4": 2.4206122766835594, "x5": 0.4836965354968601}, {"model_based_pick": false}] -[[0, 0, 9], {"x0": -3.2815103873920948, "x1": 3.710975231528484, "x2": 7.151927799154149, "x3": -2.118377503282958, "x4": 3.5714299171322654, "x5": 0.09980107171987357}, {"model_based_pick": false}] -[[0, 0, 10], {"x0": -4.392754937819885, "x1": 7.778399795098211, "x2": 6.472384752066503, "x3": -3.915479617809959, "x4": 1.6562649026548617, "x5": 0.3484767739846708}, {"model_based_pick": false}] -[[0, 0, 11], {"x0": -5.328903347365916, "x1": 6.8100115435162305, "x2": 4.528711087264988, "x3": -0.17205158950922428, "x4": 2.7547597065594855, "x5": 0.1523846579336235}, {"model_based_pick": false}] -[[0, 0, 12], {"x0": -5.709714030994624, "x1": 7.866210672657182, "x2": 5.571150727940992, "x3": -1.9008208424784159, "x4": 2.076475524553454, "x5": 0.34048591518271004}, {"model_based_pick": false}] -[[0, 0, 13], {"x0": -3.753477420423875, "x1": 7.588012122049749, "x2": 7.1714763616487565, "x3": -2.897568657734072, "x4": 1.3472718392533656, "x5": 0.3959837962638866}, {"model_based_pick": false}] -[[0, 0, 14], {"x0": -3.0852623344817864, "x1": 7.142999335625298, "x2": 6.1520258155904815, "x3": -0.6341118077624746, "x4": 4.375949732417879, "x5": 0.37745309668225513}, {"model_based_pick": true}] -[[0, 0, 15], {"x0": -3.523888452977975, "x1": 4.157524891145189, "x2": 4.610148098706318, "x3": -0.1941196858328773, "x4": 2.0666038724797438, "x5": 0.4037751554868183}, {"model_based_pick": false}] -[[0, 0, 16], {"x0": -4.012610667372601, "x1": 7.593303111546796, "x2": 5.660168912288429, "x3": -1.6362882883880228, "x4": 4.858437654182643, "x5": 0.2550855899915467}, {"model_based_pick": true}] -[[0, 0, 17], {"x0": -2.1572836418845034, "x1": 7.3386174443014065, "x2": 5.746352993821178, "x3": -1.584476493964344, "x4": 3.383291123917094, "x5": 0.48297296030435927}, {"model_based_pick": true}] -[[0, 0, 18], {"x0": -3.0050136588174228, "x1": 6.234820115641682, "x2": 5.864229727943468, "x3": -1.7480817812938683, "x4": 2.203660609640764, "x5": 0.03627114653303645}, {"model_based_pick": true}] -[[0, 0, 19], {"x0": -3.1921914771705873, "x1": 5.866607907069268, "x2": 6.312707604664694, "x3": -0.08828639553158046, "x4": 4.500797042939353, "x5": 0.23576778997254888}, {"model_based_pick": true}] -[[0, 0, 20], {"x0": -2.1165618175199126, "x1": 7.652177064960131, "x2": 5.096329239772872, "x3": -2.210202948448366, "x4": 2.244407610811055, "x5": 0.16771605729149663}, {"model_based_pick": true}] -[[0, 0, 21], {"x0": -4.631926714019702, "x1": 5.560524411313876, "x2": 7.905893774869135, "x3": -1.8999410728627057, "x4": 1.760776926101332, "x5": 0.02039002824868935}, {"model_based_pick": false}] -[[0, 0, 22], {"x0": -2.1069062278101645, "x1": 6.440908366360018, "x2": 5.301842624757625, "x3": -2.2676459913952227, "x4": 2.082054268803955, "x5": 0.01188065554071363}, {"model_based_pick": true}] -[[0, 0, 23], {"x0": -2.842848660565059, "x1": 4.593116076142059, "x2": 5.577236082715151, "x3": -1.5798075330890269, "x4": 1.2151733259538746, "x5": 0.3441137008380319}, {"model_based_pick": false}] -[[0, 0, 24], {"x0": -3.57453317146249, "x1": 6.83602278539608, "x2": 7.871485984299769, "x3": -2.5600307248462126, "x4": 1.2009730038271718, "x5": 0.1325703645507687}, {"model_based_pick": false}] -[[0, 0, 25], {"x0": -5.056670031133676, "x1": 6.49956858658054, "x2": 7.353466779904224, "x3": -1.4421319744862444, "x4": 3.090739917881981, "x5": 0.052331479192266106}, {"model_based_pick": false}] -[[0, 0, 26], {"x0": -2.6431705483093415, "x1": 6.785451871649608, "x2": 4.579996822616925, "x3": -0.255515047924316, "x4": 1.9454900345632562, "x5": 0.1165755097839506}, {"model_based_pick": true}] -[[1, 0, 0], {"x0": -2.0109934423026097, "x1": 7.239963076753927, "x2": 5.245534814461326, "x3": -2.140557896071499, "x4": 3.294341459774982, "x5": 0.05945746865520624}, {"model_based_pick": true}] -[[1, 0, 1], {"x0": -5.396328228605126, "x1": 5.890602590809712, "x2": 4.369738995129467, "x3": -0.3390710703902773, "x4": 2.469556078757475, "x5": 0.46649056692387997}, {"model_based_pick": false}] -[[1, 0, 2], {"x0": -2.919862587658361, "x1": 5.670547859081694, "x2": 4.621873263535037, "x3": -0.6026527977500598, "x4": 3.885101825612428, "x5": 0.3306009553406381}, {"model_based_pick": false}] -[[1, 0, 3], {"x0": -3.1270779432113622, "x1": 4.151677397522811, "x2": 7.071565939518825, "x3": -1.6192083015983578, "x4": 1.5951161918795824, "x5": 0.22239658447105054}, {"model_based_pick": false}] -[[1, 0, 4], {"x0": -2.9815845717758718, "x1": 7.651621468999645, "x2": 5.045705228044232, "x3": -0.6028343652628516, "x4": 1.9947311283610691, "x5": 0.0727395480587037}, {"model_based_pick": true}] -[[1, 0, 5], {"x0": -3.362261051046576, "x1": 4.15277968487109, "x2": 7.581553278329331, "x3": -1.5199735138775843, "x4": 3.8132361979596405, "x5": 0.2629517232050409}, {"model_based_pick": true}] -[[1, 0, 6], {"x0": -3.245748831662182, "x1": 7.91831334258472, "x2": 6.529902023950941, "x3": -1.1109625162252423, "x4": 3.59819270055853, "x5": 0.3330571747110848}, {"model_based_pick": true}] -[[1, 0, 7], {"x0": -3.840347241551683, "x1": 7.922539815869632, "x2": 6.700976800378279, "x3": -2.159520227715364, "x4": 4.751292205575843, "x5": 0.39148146014415075}, {"model_based_pick": true}] -[[1, 0, 8], {"x0": -5.362536517958699, "x1": 3.918474186420464, "x2": 4.241506247701018, "x3": -0.14270280257123114, "x4": 1.3164197202061638, "x5": 0.2990599019650795}, {"model_based_pick": false}] -[[2, 0, 0], {"x0": -3.08013265191798, "x1": 5.712311292139565, "x2": 7.764243365504715, "x3": -0.9600758423144868, "x4": 2.447045922412182, "x5": 0.3612432485613781}, {"model_based_pick": false}] -[[2, 0, 1], {"x0": -3.293161494976455, "x1": 7.694931890054571, "x2": 7.121357836982737, "x3": -0.28289823961973903, "x4": 4.340884301145137, "x5": 0.08345187226153}, {"model_based_pick": true}] -[[2, 0, 2], {"x0": -3.1791902468687883, "x1": 7.9429315056785725, "x2": 6.927786775023773, "x3": -0.07771542988192603, "x4": 1.0766722061568368, "x5": 0.46372222184790823}, {"model_based_pick": true}] -[[2, 0, 3], {"x0": -4.31639902811396, "x1": 7.2521721048120025, "x2": 6.656496270059362, "x3": -1.2015699994532212, "x4": 1.191430971522299, "x5": 0.10491923250163954}, {"model_based_pick": false}] -[[2, 0, 4], {"x0": -5.453512340065801, "x1": 7.681577061243349, "x2": 6.857685306421066, "x3": -0.8557477621696226, "x4": 1.1527678537540633, "x5": 0.3412884061625636}, {"model_based_pick": false}] -[[2, 0, 5], {"x0": -2.2906114628027234, "x1": 3.3137396547784865, "x2": 4.118492979585161, "x3": -1.2222123741882034, "x4": 4.14874790066902, "x5": 0.1265275897487762}, {"model_based_pick": false}] -[[3, 0, 0], {"x0": -2.923464555089584, "x1": 6.981787182892501, "x2": 7.082025292318404, "x3": -0.4361278246157969, "x4": 3.385991606497986, "x5": 0.23710156894838777}, {"model_based_pick": true}] -[[3, 0, 1], {"x0": -2.843324152589089, "x1": 5.563601345483208, "x2": 5.603725152453144, "x3": -2.8737558388903945, "x4": 4.246975647051019, "x5": 0.2633081765075929}, {"model_based_pick": false}] -[[3, 0, 2], {"x0": -2.756421578236921, "x1": 3.454553348751538, "x2": 5.046428237628498, "x3": -2.2736036167520752, "x4": 3.8491559111393228, "x5": 0.4183291858239776}, {"model_based_pick": false}] -[[3, 0, 3], {"x0": -4.979100433796166, "x1": 6.216019223928509, "x2": 5.184846728933744, "x3": -2.347521108720403, "x4": 2.57434004475391, "x5": 0.1573475665233139}, {"model_based_pick": false}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/bohb/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/bohb/results.json deleted file mode 100644 index f17cf48..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/bohb/results.json +++ /dev/null @@ -1,65 +0,0 @@ -[[0, 0, 0], 9.0, {"submitted": 1557070660.7465565, "started": 1557070660.746654, "finished": 1557070660.7526195}, {"loss": 1, "info": {"x0": -5.350897806482484, "x1": 4.117311385071877, "x2": 7.6785868656518925, "x3": -2.3197781387650878, "x4": 2.697582254085429, "x5": 0.4565089404022489}}, null] -[[0, 0, 1], 9.0, {"submitted": 1557070660.7544315, "started": 1557070660.7545106, "finished": 1557070660.7612312}, {"loss": 1, "info": {"x0": -3.403203360767879, "x1": 4.26307384360548, "x2": 7.038311780045766, "x3": -1.1862889728040784, "x4": 1.5793098220617448, "x5": 0.33985030427632473}}, null] -[[0, 0, 2], 9.0, {"submitted": 1557070660.7628024, "started": 1557070660.762877, "finished": 1557070660.7684872}, {"loss": 0.06260000020444391, "info": {"x0": -2.8826185068916073, "x1": 3.933669777304532, "x2": 5.8493079274047, "x3": -2.114797075600053, "x4": 4.749806866320521, "x5": 0.13219251848432845}}, null] -[[0, 0, 3], 9.0, {"submitted": 1557070660.7699022, "started": 1557070660.7699683, "finished": 1557070660.7750874}, {"loss": 0.04685999821662905, "info": {"x0": -2.4189200558463555, "x1": 6.9406269006187, "x2": 4.991724959564063, "x3": -1.2429288394817264, "x4": 1.0783651453801912, "x5": 0.0630773639438742}}, null] -[[0, 0, 4], 9.0, {"submitted": 1557070660.7765527, "started": 1557070660.776632, "finished": 1557070660.78273}, {"loss": 0.10174000074744223, "info": {"x0": -3.844061361527697, "x1": 7.462445698167655, "x2": 6.104835563492127, "x3": -1.2268649112484051, "x4": 3.5632284570220096, "x5": 0.4540801923204674}}, null] -[[0, 0, 5], 9.0, {"submitted": 1557070660.7844672, "started": 1557070660.7845545, "finished": 1557070660.7896433}, {"loss": 1, "info": {"x0": -2.450129428568701, "x1": 3.0641235004034924, "x2": 4.5829959973267735, "x3": -3.0077040316611128, "x4": 4.069135481116891, "x5": 0.1285263736176876}}, null] -[[0, 0, 6], 9.0, {"submitted": 1557070660.7912185, "started": 1557070660.7913008, "finished": 1557070660.7976341}, {"loss": 0.2698299974453449, "info": {"x0": -3.996713020391076, "x1": 3.645756146897524, "x2": 4.245934186981797, "x3": -1.5759763293092988, "x4": 3.0551809078481695, "x5": 0.2537006707514477}}, null] -[[0, 0, 7], 9.0, {"submitted": 1557070660.7998376, "started": 1557070660.799921, "finished": 1557070660.8063107}, {"loss": 0.14298999819874764, "info": {"x0": -4.316735095980177, "x1": 7.65909231526093, "x2": 7.359145559616386, "x3": -1.4936925602733613, "x4": 1.1781480179703716, "x5": 0.12454124296118108}}, null] -[[0, 0, 8], 9.0, {"submitted": 1557070660.8081288, "started": 1557070660.808207, "finished": 1557070660.8134}, {"loss": 0.060080001084804525, "info": {"x0": -2.8049966170020104, "x1": 5.693939479227203, "x2": 5.670125238049216, "x3": -2.429713735814707, "x4": 2.4206122766835594, "x5": 0.4836965354968601}}, null] -[[0, 0, 9], 9.0, {"submitted": 1557070660.815009, "started": 1557070660.8150766, "finished": 1557070660.8201387}, {"loss": 1, "info": {"x0": -3.2815103873920948, "x1": 3.710975231528484, "x2": 7.151927799154149, "x3": -2.118377503282958, "x4": 3.5714299171322654, "x5": 0.09980107171987357}}, null] -[[0, 0, 10], 9.0, {"submitted": 1557070660.8217888, "started": 1557070660.8218517, "finished": 1557070660.8270113}, {"loss": 0.2525399998016655, "info": {"x0": -4.392754937819885, "x1": 7.778399795098211, "x2": 6.472384752066503, "x3": -3.915479617809959, "x4": 1.6562649026548617, "x5": 0.3484767739846708}}, null] -[[0, 0, 11], 9.0, {"submitted": 1557070660.828679, "started": 1557070660.8287516, "finished": 1557070660.834049}, {"loss": 0.7735099995421616, "info": {"x0": -5.328903347365916, "x1": 6.8100115435162305, "x2": 4.528711087264988, "x3": -0.17205158950922428, "x4": 2.7547597065594855, "x5": 0.1523846579336235}}, null] -[[0, 0, 12], 9.0, {"submitted": 1557070660.835606, "started": 1557070660.8356643, "finished": 1557070660.840517}, {"loss": 0.8618099989140777, "info": {"x0": -5.709714030994624, "x1": 7.866210672657182, "x2": 5.571150727940992, "x3": -1.9008208424784159, "x4": 2.076475524553454, "x5": 0.34048591518271004}}, null] -[[0, 0, 13], 9.0, {"submitted": 1557070660.8421774, "started": 1557070660.8422508, "finished": 1557070660.8477736}, {"loss": 0.0789200008958578, "info": {"x0": -3.753477420423875, "x1": 7.588012122049749, "x2": 7.1714763616487565, "x3": -2.897568657734072, "x4": 1.3472718392533656, "x5": 0.3959837962638866}}, null] -[[0, 0, 14], 9.0, {"submitted": 1557070660.9039063, "started": 1557070660.9040122, "finished": 1557070660.9097908}, {"loss": 0.05441999848306178, "info": {"x0": -3.0852623344817864, "x1": 7.142999335625298, "x2": 6.1520258155904815, "x3": -0.6341118077624746, "x4": 4.375949732417879, "x5": 0.37745309668225513}}, null] -[[0, 0, 15], 9.0, {"submitted": 1557070660.9119873, "started": 1557070660.9120727, "finished": 1557070660.917468}, {"loss": 0.1931099962514639, "info": {"x0": -3.523888452977975, "x1": 4.157524891145189, "x2": 4.610148098706318, "x3": -0.1941196858328773, "x4": 2.0666038724797438, "x5": 0.4037751554868183}}, null] -[[0, 0, 16], 9.0, {"submitted": 1557070660.9718387, "started": 1557070660.9719071, "finished": 1557070660.976846}, {"loss": 0.17397999550640586, "info": {"x0": -4.012610667372601, "x1": 7.593303111546796, "x2": 5.660168912288429, "x3": -1.6362882883880228, "x4": 4.858437654182643, "x5": 0.2550855899915467}}, null] -[[0, 0, 17], 9.0, {"submitted": 1557070661.050129, "started": 1557070661.0501995, "finished": 1557070661.0556695}, {"loss": 0.16086999835938215, "info": {"x0": -2.1572836418845034, "x1": 7.3386174443014065, "x2": 5.746352993821178, "x3": -1.584476493964344, "x4": 3.383291123917094, "x5": 0.48297296030435927}}, null] -[[0, 0, 18], 9.0, {"submitted": 1557070661.111881, "started": 1557070661.1119452, "finished": 1557070661.117206}, {"loss": 0.033680000472068775, "info": {"x0": -3.0050136588174228, "x1": 6.234820115641682, "x2": 5.864229727943468, "x3": -1.7480817812938683, "x4": 2.203660609640764, "x5": 0.03627114653303645}}, null] -[[0, 0, 19], 9.0, {"submitted": 1557070661.1749048, "started": 1557070661.1749716, "finished": 1557070661.1803594}, {"loss": 0.060300000416040424, "info": {"x0": -3.1921914771705873, "x1": 5.866607907069268, "x2": 6.312707604664694, "x3": -0.08828639553158046, "x4": 4.500797042939353, "x5": 0.23576778997254888}}, null] -[[0, 0, 20], 9.0, {"submitted": 1557070661.2395043, "started": 1557070661.2395859, "finished": 1557070661.2445424}, {"loss": 0.04322999954581262, "info": {"x0": -2.1165618175199126, "x1": 7.652177064960131, "x2": 5.096329239772872, "x3": -2.210202948448366, "x4": 2.244407610811055, "x5": 0.16771605729149663}}, null] -[[0, 0, 21], 9.0, {"submitted": 1557070661.2464144, "started": 1557070661.2464955, "finished": 1557070661.2528038}, {"loss": 0.14431999644219876, "info": {"x0": -4.631926714019702, "x1": 5.560524411313876, "x2": 7.905893774869135, "x3": -1.8999410728627057, "x4": 1.760776926101332, "x5": 0.02039002824868935}}, null] -[[0, 0, 22], 9.0, {"submitted": 1557070661.3271654, "started": 1557070661.327236, "finished": 1557070661.3332715}, {"loss": 0.04620000119745732, "info": {"x0": -2.1069062278101645, "x1": 6.440908366360018, "x2": 5.301842624757625, "x3": -2.2676459913952227, "x4": 2.082054268803955, "x5": 0.01188065554071363}}, null] -[[0, 0, 23], 9.0, {"submitted": 1557070661.3354814, "started": 1557070661.3355446, "finished": 1557070661.3403966}, {"loss": 0.06246999818623065, "info": {"x0": -2.842848660565059, "x1": 4.593116076142059, "x2": 5.577236082715151, "x3": -1.5798075330890269, "x4": 1.2151733259538746, "x5": 0.3441137008380319}}, null] -[[0, 0, 24], 9.0, {"submitted": 1557070661.3431604, "started": 1557070661.3432362, "finished": 1557070661.348245}, {"loss": 0.08178999972999096, "info": {"x0": -3.57453317146249, "x1": 6.83602278539608, "x2": 7.871485984299769, "x3": -2.5600307248462126, "x4": 1.2009730038271718, "x5": 0.1325703645507687}}, null] -[[0, 0, 25], 9.0, {"submitted": 1557070661.3502808, "started": 1557070661.3503428, "finished": 1557070661.3566}, {"loss": 0.430039998408407, "info": {"x0": -5.056670031133676, "x1": 6.49956858658054, "x2": 7.353466779904224, "x3": -1.4421319744862444, "x4": 3.090739917881981, "x5": 0.052331479192266106}}, null] -[[0, 0, 26], 9.0, {"submitted": 1557070661.4214964, "started": 1557070661.4215655, "finished": 1557070661.428311}, {"loss": 0.049800002135038345, "info": {"x0": -2.6431705483093415, "x1": 6.785451871649608, "x2": 4.579996822616925, "x3": -0.255515047924316, "x4": 1.9454900345632562, "x5": 0.1165755097839506}}, null] -[[0, 0, 3], 27.0, {"submitted": 1557070661.430108, "started": 1557070661.4301836, "finished": 1557070661.4368436}, {"loss": 0.03843999841034412, "info": {"x0": -2.4189200558463555, "x1": 6.9406269006187, "x2": 4.991724959564063, "x3": -1.2429288394817264, "x4": 1.0783651453801912, "x5": 0.0630773639438742}}, null] -[[0, 0, 8], 27.0, {"submitted": 1557070661.437639, "started": 1557070661.4376955, "finished": 1557070661.447053}, {"loss": 0.046850001853704436, "info": {"x0": -2.8049966170020104, "x1": 5.693939479227203, "x2": 5.670125238049216, "x3": -2.429713735814707, "x4": 2.4206122766835594, "x5": 0.4836965354968601}}, null] -[[0, 0, 14], 27.0, {"submitted": 1557070661.451892, "started": 1557070661.4520226, "finished": 1557070661.4643345}, {"loss": 0.03752999861538411, "info": {"x0": -3.0852623344817864, "x1": 7.142999335625298, "x2": 6.1520258155904815, "x3": -0.6341118077624746, "x4": 4.375949732417879, "x5": 0.37745309668225513}}, null] -[[0, 0, 18], 27.0, {"submitted": 1557070661.4654286, "started": 1557070661.4655275, "finished": 1557070661.4726374}, {"loss": 0.02383000007390975, "info": {"x0": -3.0050136588174228, "x1": 6.234820115641682, "x2": 5.864229727943468, "x3": -1.7480817812938683, "x4": 2.203660609640764, "x5": 0.03627114653303645}}, null] -[[0, 0, 19], 27.0, {"submitted": 1557070661.4734898, "started": 1557070661.4735577, "finished": 1557070661.4815865}, {"loss": 0.03324000136435031, "info": {"x0": -3.1921914771705873, "x1": 5.866607907069268, "x2": 6.312707604664694, "x3": -0.08828639553158046, "x4": 4.500797042939353, "x5": 0.23576778997254888}}, null] -[[0, 0, 20], 27.0, {"submitted": 1557070661.4824378, "started": 1557070661.4824905, "finished": 1557070661.488059}, {"loss": 0.03640000010073184, "info": {"x0": -2.1165618175199126, "x1": 7.652177064960131, "x2": 5.096329239772872, "x3": -2.210202948448366, "x4": 2.244407610811055, "x5": 0.16771605729149663}}, null] -[[0, 0, 22], 27.0, {"submitted": 1557070661.488921, "started": 1557070661.4889817, "finished": 1557070661.498544}, {"loss": 0.03841000136613844, "info": {"x0": -2.1069062278101645, "x1": 6.440908366360018, "x2": 5.301842624757625, "x3": -2.2676459913952227, "x4": 2.082054268803955, "x5": 0.01188065554071363}}, null] -[[0, 0, 23], 27.0, {"submitted": 1557070661.4996743, "started": 1557070661.499778, "finished": 1557070661.5079832}, {"loss": 0.0416099987512827, "info": {"x0": -2.842848660565059, "x1": 4.593116076142059, "x2": 5.577236082715151, "x3": -1.5798075330890269, "x4": 1.2151733259538746, "x5": 0.3441137008380319}}, null] -[[0, 0, 26], 27.0, {"submitted": 1557070661.5093653, "started": 1557070661.5094879, "finished": 1557070661.5176902}, {"loss": 0.0392400041681528, "info": {"x0": -2.6431705483093415, "x1": 6.785451871649608, "x2": 4.579996822616925, "x3": -0.255515047924316, "x4": 1.9454900345632562, "x5": 0.1165755097839506}}, null] -[[0, 0, 18], 81.0, {"submitted": 1557070661.5190718, "started": 1557070661.5191453, "finished": 1557070661.5264149}, {"loss": 0.02210000016391278, "info": {"x0": -3.0050136588174228, "x1": 6.234820115641682, "x2": 5.864229727943468, "x3": -1.7480817812938683, "x4": 2.203660609640764, "x5": 0.03627114653303645}}, null] -[[0, 0, 19], 81.0, {"submitted": 1557070661.5276556, "started": 1557070661.5277784, "finished": 1557070661.5349793}, {"loss": 0.02611000153303148, "info": {"x0": -3.1921914771705873, "x1": 5.866607907069268, "x2": 6.312707604664694, "x3": -0.08828639553158046, "x4": 4.500797042939353, "x5": 0.23576778997254888}}, null] -[[0, 0, 20], 81.0, {"submitted": 1557070661.5362425, "started": 1557070661.5363095, "finished": 1557070661.5414886}, {"loss": 0.03566999919116496, "info": {"x0": -2.1165618175199126, "x1": 7.652177064960131, "x2": 5.096329239772872, "x3": -2.210202948448366, "x4": 2.244407610811055, "x5": 0.16771605729149663}}, null] -[[0, 0, 18], 243.0, {"submitted": 1557070661.5424929, "started": 1557070661.5425534, "finished": 1557070661.5490777}, {"loss": 0.021910000137090678, "info": {"x0": -3.0050136588174228, "x1": 6.234820115641682, "x2": 5.864229727943468, "x3": -1.7480817812938683, "x4": 2.203660609640764, "x5": 0.03627114653303645}}, null] -[[1, 0, 0], 27.0, {"submitted": 1557070661.6073477, "started": 1557070661.6074436, "finished": 1557070661.6126919}, {"loss": 0.13494999829143284, "info": {"x0": -2.0109934423026097, "x1": 7.239963076753927, "x2": 5.245534814461326, "x3": -2.140557896071499, "x4": 3.294341459774982, "x5": 0.05945746865520624}}, null] -[[1, 0, 1], 27.0, {"submitted": 1557070661.6145403, "started": 1557070661.6146035, "finished": 1557070661.6196477}, {"loss": 0.6073499956305325, "info": {"x0": -5.396328228605126, "x1": 5.890602590809712, "x2": 4.369738995129467, "x3": -0.3390710703902773, "x4": 2.469556078757475, "x5": 0.46649056692387997}}, null] -[[1, 0, 2], 27.0, {"submitted": 1557070661.6213596, "started": 1557070661.6214182, "finished": 1557070661.6271677}, {"loss": 0.19687999511867763, "info": {"x0": -2.919862587658361, "x1": 5.670547859081694, "x2": 4.621873263535037, "x3": -0.6026527977500598, "x4": 3.885101825612428, "x5": 0.3306009553406381}}, null] -[[1, 0, 3], 27.0, {"submitted": 1557070661.6290836, "started": 1557070661.629161, "finished": 1557070661.6340787}, {"loss": 0.032060000786781326, "info": {"x0": -3.1270779432113622, "x1": 4.151677397522811, "x2": 7.071565939518825, "x3": -1.6192083015983578, "x4": 1.5951161918795824, "x5": 0.22239658447105054}}, null] -[[1, 0, 4], 27.0, {"submitted": 1557070661.6912932, "started": 1557070661.6913831, "finished": 1557070661.6961198}, {"loss": 0.03387999981999399, "info": {"x0": -2.9815845717758718, "x1": 7.651621468999645, "x2": 5.045705228044232, "x3": -0.6028343652628516, "x4": 1.9947311283610691, "x5": 0.0727395480587037}}, null] -[[1, 0, 5], 27.0, {"submitted": 1557070661.7497983, "started": 1557070661.7498827, "finished": 1557070661.7555664}, {"loss": 0.04342000030189752, "info": {"x0": -3.362261051046576, "x1": 4.15277968487109, "x2": 7.581553278329331, "x3": -1.5199735138775843, "x4": 3.8132361979596405, "x5": 0.2629517232050409}}, null] -[[1, 0, 6], 27.0, {"submitted": 1557070661.8117616, "started": 1557070661.811854, "finished": 1557070661.8168294}, {"loss": 0.0313500037932396, "info": {"x0": -3.245748831662182, "x1": 7.91831334258472, "x2": 6.529902023950941, "x3": -1.1109625162252423, "x4": 3.59819270055853, "x5": 0.3330571747110848}}, null] -[[1, 0, 7], 27.0, {"submitted": 1557070661.8710146, "started": 1557070661.871104, "finished": 1557070661.877255}, {"loss": 0.06745000127851963, "info": {"x0": -3.840347241551683, "x1": 7.922539815869632, "x2": 6.700976800378279, "x3": -2.159520227715364, "x4": 4.751292205575843, "x5": 0.39148146014415075}}, null] -[[1, 0, 8], 27.0, {"submitted": 1557070661.8791223, "started": 1557070661.8792057, "finished": 1557070661.8846753}, {"loss": 0.3246099916671217, "info": {"x0": -5.362536517958699, "x1": 3.918474186420464, "x2": 4.241506247701018, "x3": -0.14270280257123114, "x4": 1.3164197202061638, "x5": 0.2990599019650795}}, null] -[[1, 0, 3], 81.0, {"submitted": 1557070661.886174, "started": 1557070661.886232, "finished": 1557070661.8905747}, {"loss": 0.022490000498890873, "info": {"x0": -3.1270779432113622, "x1": 4.151677397522811, "x2": 7.071565939518825, "x3": -1.6192083015983578, "x4": 1.5951161918795824, "x5": 0.22239658447105054}}, null] -[[1, 0, 4], 81.0, {"submitted": 1557070661.8914776, "started": 1557070661.8915362, "finished": 1557070661.896602}, {"loss": 0.03170999974429607, "info": {"x0": -2.9815845717758718, "x1": 7.651621468999645, "x2": 5.045705228044232, "x3": -0.6028343652628516, "x4": 1.9947311283610691, "x5": 0.0727395480587037}}, null] -[[1, 0, 6], 81.0, {"submitted": 1557070661.8974557, "started": 1557070661.8975291, "finished": 1557070661.902838}, {"loss": 0.025350004144310944, "info": {"x0": -3.245748831662182, "x1": 7.91831334258472, "x2": 6.529902023950941, "x3": -1.1109625162252423, "x4": 3.59819270055853, "x5": 0.3330571747110848}}, null] -[[1, 0, 3], 243.0, {"submitted": 1557070661.903681, "started": 1557070661.9037728, "finished": 1557070661.9089782}, {"loss": 0.01924000036895278, "info": {"x0": -3.1270779432113622, "x1": 4.151677397522811, "x2": 7.071565939518825, "x3": -1.6192083015983578, "x4": 1.5951161918795824, "x5": 0.22239658447105054}}, null] -[[2, 0, 0], 81.0, {"submitted": 1557070661.9106064, "started": 1557070661.9106853, "finished": 1557070661.9160118}, {"loss": 0.020309999797344224, "info": {"x0": -3.08013265191798, "x1": 5.712311292139565, "x2": 7.764243365504715, "x3": -0.9600758423144868, "x4": 2.447045922412182, "x5": 0.3612432485613781}}, null] -[[2, 0, 1], 81.0, {"submitted": 1557070661.9742768, "started": 1557070661.9743655, "finished": 1557070661.9790626}, {"loss": 0.022089997762441627, "info": {"x0": -3.293161494976455, "x1": 7.694931890054571, "x2": 7.121357836982737, "x3": -0.28289823961973903, "x4": 4.340884301145137, "x5": 0.08345187226153}}, null] -[[2, 0, 2], 81.0, {"submitted": 1557070662.0384605, "started": 1557070662.0385263, "finished": 1557070662.0440574}, {"loss": 0.025560000798702232, "info": {"x0": -3.1791902468687883, "x1": 7.9429315056785725, "x2": 6.927786775023773, "x3": -0.07771542988192603, "x4": 1.0766722061568368, "x5": 0.46372222184790823}}, null] -[[2, 0, 3], 81.0, {"submitted": 1557070662.0458465, "started": 1557070662.045912, "finished": 1557070662.0513523}, {"loss": 0.046340002624392494, "info": {"x0": -4.31639902811396, "x1": 7.2521721048120025, "x2": 6.656496270059362, "x3": -1.2015699994532212, "x4": 1.191430971522299, "x5": 0.10491923250163954}}, null] -[[2, 0, 4], 81.0, {"submitted": 1557070662.0531633, "started": 1557070662.0532234, "finished": 1557070662.058564}, {"loss": 0.20994999946832657, "info": {"x0": -5.453512340065801, "x1": 7.681577061243349, "x2": 6.857685306421066, "x3": -0.8557477621696226, "x4": 1.1527678537540633, "x5": 0.3412884061625636}}, null] -[[2, 0, 5], 81.0, {"submitted": 1557070662.0605648, "started": 1557070662.0606282, "finished": 1557070662.0657358}, {"loss": 0.06521999790489673, "info": {"x0": -2.2906114628027234, "x1": 3.3137396547784865, "x2": 4.118492979585161, "x3": -1.2222123741882034, "x4": 4.14874790066902, "x5": 0.1265275897487762}}, null] -[[2, 0, 0], 243.0, {"submitted": 1557070662.0671, "started": 1557070662.0671718, "finished": 1557070662.0725737}, {"loss": 0.017440000137090662, "info": {"x0": -3.08013265191798, "x1": 5.712311292139565, "x2": 7.764243365504715, "x3": -0.9600758423144868, "x4": 2.447045922412182, "x5": 0.3612432485613781}}, null] -[[2, 0, 1], 243.0, {"submitted": 1557070662.0733259, "started": 1557070662.0733793, "finished": 1557070662.0798059}, {"loss": 0.019219996758103375, "info": {"x0": -3.293161494976455, "x1": 7.694931890054571, "x2": 7.121357836982737, "x3": -0.28289823961973903, "x4": 4.340884301145137, "x5": 0.08345187226153}}, null] -[[3, 0, 0], 243.0, {"submitted": 1557070662.1333077, "started": 1557070662.1333964, "finished": 1557070662.1388495}, {"loss": 0.0185999982303381, "info": {"x0": -2.923464555089584, "x1": 6.981787182892501, "x2": 7.082025292318404, "x3": -0.4361278246157969, "x4": 3.385991606497986, "x5": 0.23710156894838777}}, null] -[[3, 0, 1], 243.0, {"submitted": 1557070662.140353, "started": 1557070662.1404212, "finished": 1557070662.146003}, {"loss": 0.03196999896526338, "info": {"x0": -2.843324152589089, "x1": 5.563601345483208, "x2": 5.603725152453144, "x3": -2.8737558388903945, "x4": 4.246975647051019, "x5": 0.2633081765075929}}, null] -[[3, 0, 2], 243.0, {"submitted": 1557070662.1475596, "started": 1557070662.1476383, "finished": 1557070662.1531498}, {"loss": 0.09991000102102757, "info": {"x0": -2.756421578236921, "x1": 3.454553348751538, "x2": 5.046428237628498, "x3": -2.2736036167520752, "x4": 3.8491559111393228, "x5": 0.4183291858239776}}, null] -[[3, 0, 3], 243.0, {"submitted": 1557070662.1545994, "started": 1557070662.1546528, "finished": 1557070662.1596463}, {"loss": 0.3337999957580865, "info": {"x0": -4.979100433796166, "x1": 6.216019223928509, "x2": 5.184846728933744, "x3": -2.347521108720403, "x4": 2.57434004475391, "x5": 0.1573475665233139}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/hyperband/configs.json deleted file mode 100644 index 6ae08ed..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/hyperband/configs.json +++ /dev/null @@ -1,46 +0,0 @@ -[[0, 0, 0], {"x0": -3.2021134268310214, "x1": 6.602636951556975, "x2": 5.809569627056689, "x3": -1.0123142058092092, "x4": 4.434115203840136, "x5": 0.03501207945127899}, {}] -[[0, 0, 1], {"x0": -2.839457479662706, "x1": 6.621318033047016, "x2": 6.71390214202492, "x3": -3.9683258754008457, "x4": 4.750383238530735, "x5": 0.26246452868592934}, {}] -[[0, 0, 2], {"x0": -3.2103102016985567, "x1": 7.400195609861241, "x2": 6.867023913088179, "x3": -2.727641599782903, "x4": 1.9582541645100187, "x5": 0.13193201748531536}, {}] -[[0, 0, 3], {"x0": -5.074043334617837, "x1": 7.555108925759207, "x2": 4.162354026165966, "x3": -3.33144007612698, "x4": 1.2037998430664167, "x5": 0.26179312372786945}, {}] -[[0, 0, 4], {"x0": -2.7615693293730024, "x1": 7.89012803567472, "x2": 4.238842031044104, "x3": -1.2383688804960578, "x4": 3.0231616117024114, "x5": 0.08608208489581615}, {}] -[[0, 0, 5], {"x0": -2.657080039449816, "x1": 7.729306891229083, "x2": 7.066365420822871, "x3": -2.294782135744499, "x4": 1.3044945691361276, "x5": 0.3267325428979248}, {}] -[[0, 0, 6], {"x0": -5.779185478612236, "x1": 4.542590520343202, "x2": 4.569376813313255, "x3": -2.959217628613802, "x4": 4.984869071419086, "x5": 0.27124708989521246}, {}] -[[0, 0, 7], {"x0": -5.1854414582294375, "x1": 5.351547037145806, "x2": 4.756247381618367, "x3": -3.5377348151174304, "x4": 1.4454707811595275, "x5": 0.16304359703897386}, {}] -[[0, 0, 8], {"x0": -5.595299527778289, "x1": 3.8212025103914367, "x2": 7.099152377036813, "x3": -1.40061710263243, "x4": 2.3028590092531163, "x5": 0.1467800050742683}, {}] -[[0, 0, 9], {"x0": -4.314557268965964, "x1": 3.6239126809470426, "x2": 4.774376235675669, "x3": -0.3185828586408399, "x4": 4.103142952858223, "x5": 0.2010669849190086}, {}] -[[0, 0, 10], {"x0": -5.627678548038695, "x1": 6.0819832449316396, "x2": 5.141396541015493, "x3": -1.5843033943736629, "x4": 3.8973071544501106, "x5": 0.45102642101066837}, {}] -[[0, 0, 11], {"x0": -2.7890794608559513, "x1": 3.831350743720471, "x2": 6.94063989724682, "x3": -2.6976850362998013, "x4": 4.892612842214746, "x5": 0.299495598996225}, {}] -[[0, 0, 12], {"x0": -5.490940463315615, "x1": 4.475738027465668, "x2": 6.551169413998727, "x3": -3.7031966601151454, "x4": 3.340240561072928, "x5": 0.27762704098297286}, {}] -[[0, 0, 13], {"x0": -5.385813331129082, "x1": 5.080923775605573, "x2": 5.2965810680996945, "x3": -1.3469492429747305, "x4": 1.81514404281981, "x5": 0.10934236104579426}, {}] -[[0, 0, 14], {"x0": -4.445624534992407, "x1": 3.1017704182576775, "x2": 7.066395501113359, "x3": -1.772707430915938, "x4": 1.5786283429164687, "x5": 0.43202550289236163}, {}] -[[0, 0, 15], {"x0": -2.2424511920212242, "x1": 6.774703603741192, "x2": 5.27539580038235, "x3": -0.15195793793155232, "x4": 4.1363090098031705, "x5": 0.30710361735211805}, {}] -[[0, 0, 16], {"x0": -5.908433737695679, "x1": 7.866356740001783, "x2": 7.250358949173253, "x3": -2.814852626650328, "x4": 3.015675943824051, "x5": 0.2316507582512261}, {}] -[[0, 0, 17], {"x0": -3.030685801531139, "x1": 5.016371722503155, "x2": 7.504323935325508, "x3": -0.5689118302374041, "x4": 3.0301782949101463, "x5": 0.4466789048291544}, {}] -[[0, 0, 18], {"x0": -5.306921903974511, "x1": 6.295243847616337, "x2": 7.385183324522045, "x3": -2.4716223903405017, "x4": 2.6306853176906366, "x5": 0.07289020653147132}, {}] -[[0, 0, 19], {"x0": -2.833758146436668, "x1": 5.259020400372112, "x2": 6.813491748813374, "x3": -3.6460167098014873, "x4": 1.0476859870217683, "x5": 0.3064041672522931}, {}] -[[0, 0, 20], {"x0": -2.1374762663050437, "x1": 6.827672341618776, "x2": 5.957786102402605, "x3": -0.40073400809632753, "x4": 2.6777706217925554, "x5": 0.20915694042069916}, {}] -[[0, 0, 21], {"x0": -2.797112973422052, "x1": 6.46054657029862, "x2": 5.618947382076081, "x3": -3.0202617938804956, "x4": 4.825031972071154, "x5": 0.3211952975278596}, {}] -[[0, 0, 22], {"x0": -4.565200882848842, "x1": 6.12597104484075, "x2": 6.369737710623632, "x3": -2.9400274307699132, "x4": 2.6076440521908797, "x5": 0.0574895841087103}, {}] -[[0, 0, 23], {"x0": -5.5098478711739105, "x1": 7.029468180964393, "x2": 4.741345516047831, "x3": -2.4848033234403206, "x4": 1.2714759491853864, "x5": 0.33694258541892524}, {}] -[[0, 0, 24], {"x0": -5.248306101676874, "x1": 4.2837552995560415, "x2": 6.467310234018601, "x3": -2.7310714937543663, "x4": 1.8954031002160585, "x5": 0.012624463055427526}, {}] -[[0, 0, 25], {"x0": -4.248169373359433, "x1": 3.586176077165495, "x2": 5.238763223613304, "x3": -1.831004838788882, "x4": 2.3041312998759707, "x5": 0.044045851156038485}, {}] -[[0, 0, 26], {"x0": -3.6078611116648895, "x1": 3.286899742737101, "x2": 7.0369085731560155, "x3": -3.4697821061750966, "x4": 3.7145705933617656, "x5": 0.13409441738551842}, {}] -[[1, 0, 0], {"x0": -5.648432301473752, "x1": 5.041195343671722, "x2": 6.7785165901225195, "x3": -3.2023931759067925, "x4": 2.2351804596300346, "x5": 0.40672716475999976}, {}] -[[1, 0, 1], {"x0": -5.243542036617436, "x1": 4.079660880680146, "x2": 4.9463567242921505, "x3": -3.5102304416447305, "x4": 2.8945734214957524, "x5": 0.05845013332518317}, {}] -[[1, 0, 2], {"x0": -4.770607120057228, "x1": 4.660945959480591, "x2": 4.553681543591026, "x3": -0.2001001033172951, "x4": 4.642486948273393, "x5": 0.490128985476831}, {}] -[[1, 0, 3], {"x0": -4.015833935930362, "x1": 3.4794442762086066, "x2": 6.639707625500334, "x3": -0.8469028691191518, "x4": 3.0315346741333435, "x5": 0.4008445270954676}, {}] -[[1, 0, 4], {"x0": -4.021788018378824, "x1": 6.752959580127584, "x2": 7.962373633958709, "x3": -2.026104347345359, "x4": 2.73846779864022, "x5": 0.42777715484408735}, {}] -[[1, 0, 5], {"x0": -5.048050358721646, "x1": 5.666169303081759, "x2": 5.414543647629506, "x3": -3.878324728679897, "x4": 3.151330089192023, "x5": 0.2164206476969061}, {}] -[[1, 0, 6], {"x0": -3.8365729466368084, "x1": 6.375923186554829, "x2": 5.028025400133961, "x3": -0.29494788953761164, "x4": 3.6971230340578987, "x5": 0.07040157842764372}, {}] -[[1, 0, 7], {"x0": -2.235342167385995, "x1": 6.107384851150025, "x2": 6.593136403067298, "x3": -2.0542674103575242, "x4": 1.4466247419057368, "x5": 0.2904702483996649}, {}] -[[1, 0, 8], {"x0": -4.887545374517537, "x1": 7.954031089466168, "x2": 6.112743664308406, "x3": -1.0306551038618719, "x4": 2.43502874950477, "x5": 0.27370085491848195}, {}] -[[2, 0, 0], {"x0": -4.956144251092159, "x1": 3.514980569444381, "x2": 5.655017334511461, "x3": -3.495495562782389, "x4": 2.913973839454499, "x5": 0.26001166178131324}, {}] -[[2, 0, 1], {"x0": -4.679126097702632, "x1": 5.744378139659311, "x2": 7.802279206602849, "x3": -0.7313116510503614, "x4": 1.8427545926219362, "x5": 0.14418257429750309}, {}] -[[2, 0, 2], {"x0": -3.534216901411667, "x1": 6.536182838099511, "x2": 7.132318223510957, "x3": -0.12782112978395688, "x4": 3.647115261427748, "x5": 0.03885806418612803}, {}] -[[2, 0, 3], {"x0": -3.940943595771323, "x1": 7.035555248726931, "x2": 7.196670269140837, "x3": -0.909684909075072, "x4": 3.7299022409839124, "x5": 0.3132047871028041}, {}] -[[2, 0, 4], {"x0": -2.8088823659240982, "x1": 7.489050360070191, "x2": 4.753969603540721, "x3": -1.8895947308422762, "x4": 4.880043604407081, "x5": 0.05000736071100198}, {}] -[[2, 0, 5], {"x0": -2.454416249493836, "x1": 6.265076552273245, "x2": 4.842374425370483, "x3": -1.9835409173078506, "x4": 3.4238348495887303, "x5": 0.1334113891433853}, {}] -[[3, 0, 0], {"x0": -5.812834848466778, "x1": 6.844470786309298, "x2": 4.407869581917651, "x3": -2.6745983654531447, "x4": 3.3881274792679714, "x5": 0.3086965597470098}, {}] -[[3, 0, 1], {"x0": -3.022980056168064, "x1": 7.0744026295286915, "x2": 7.97548680873118, "x3": -3.086398706982529, "x4": 3.128120792053057, "x5": 0.4963506001452348}, {}] -[[3, 0, 2], {"x0": -3.279003477142976, "x1": 4.4393676710607, "x2": 7.175074657812072, "x3": -0.5023060954222744, "x4": 3.382016656171568, "x5": 0.009003521820470484}, {}] -[[3, 0, 3], {"x0": -2.3256778039626838, "x1": 5.707622887840218, "x2": 4.7556295347616775, "x3": -1.185130379414859, "x4": 1.2251326685240689, "x5": 0.27120124428031633}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/hyperband/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/hyperband/results.json deleted file mode 100644 index f749a74..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/hyperband/results.json +++ /dev/null @@ -1,65 +0,0 @@ -[[0, 0, 0], 9.0, {"submitted": 1557070662.809901, "started": 1557070662.8099897, "finished": 1557070662.8165746}, {"loss": 0.038260004215240465, "info": {"x0": -3.2021134268310214, "x1": 6.602636951556975, "x2": 5.809569627056689, "x3": -1.0123142058092092, "x4": 4.434115203840136, "x5": 0.03501207945127899}}, null] -[[0, 0, 1], 9.0, {"submitted": 1557070662.8182366, "started": 1557070662.8183355, "finished": 1557070662.8267589}, {"loss": 0.058959999563693986, "info": {"x0": -2.839457479662706, "x1": 6.621318033047016, "x2": 6.71390214202492, "x3": -3.9683258754008457, "x4": 4.750383238530735, "x5": 0.26246452868592934}}, null] -[[0, 0, 2], 9.0, {"submitted": 1557070662.8279846, "started": 1557070662.828064, "finished": 1557070662.8346767}, {"loss": 0.030649998019337654, "info": {"x0": -3.2103102016985567, "x1": 7.400195609861241, "x2": 6.867023913088179, "x3": -2.727641599782903, "x4": 1.9582541645100187, "x5": 0.13193201748531536}}, null] -[[0, 0, 3], 9.0, {"submitted": 1557070662.8358622, "started": 1557070662.8359647, "finished": 1557070662.8439934}, {"loss": 0.49228999852448696, "info": {"x0": -5.074043334617837, "x1": 7.555108925759207, "x2": 4.162354026165966, "x3": -3.33144007612698, "x4": 1.2037998430664167, "x5": 0.26179312372786945}}, null] -[[0, 0, 4], 9.0, {"submitted": 1557070662.8453047, "started": 1557070662.8453915, "finished": 1557070662.850702}, {"loss": 0.06513000445246696, "info": {"x0": -2.7615693293730024, "x1": 7.89012803567472, "x2": 4.238842031044104, "x3": -1.2383688804960578, "x4": 3.0231616117024114, "x5": 0.08608208489581615}}, null] -[[0, 0, 5], 9.0, {"submitted": 1557070662.8515952, "started": 1557070662.8516583, "finished": 1557070662.8571954}, {"loss": 0.031488332719405474, "info": {"x0": -2.657080039449816, "x1": 7.729306891229083, "x2": 7.066365420822871, "x3": -2.294782135744499, "x4": 1.3044945691361276, "x5": 0.3267325428979248}}, null] -[[0, 0, 6], 9.0, {"submitted": 1557070662.858465, "started": 1557070662.8585582, "finished": 1557070662.8650534}, {"loss": 0.8801799980247766, "info": {"x0": -5.779185478612236, "x1": 4.542590520343202, "x2": 4.569376813313255, "x3": -2.959217628613802, "x4": 4.984869071419086, "x5": 0.27124708989521246}}, null] -[[0, 0, 7], 9.0, {"submitted": 1557070662.8663156, "started": 1557070662.8663976, "finished": 1557070662.872934}, {"loss": 0.4485399959027022, "info": {"x0": -5.1854414582294375, "x1": 5.351547037145806, "x2": 4.756247381618367, "x3": -3.5377348151174304, "x4": 1.4454707811595275, "x5": 0.16304359703897386}}, null] -[[0, 0, 8], 9.0, {"submitted": 1557070662.874269, "started": 1557070662.8743622, "finished": 1557070662.8811848}, {"loss": 1, "info": {"x0": -5.595299527778289, "x1": 3.8212025103914367, "x2": 7.099152377036813, "x3": -1.40061710263243, "x4": 2.3028590092531163, "x5": 0.1467800050742683}}, null] -[[0, 0, 9], 9.0, {"submitted": 1557070662.8825812, "started": 1557070662.8826714, "finished": 1557070662.8893375}, {"loss": 0.5979799984753879, "info": {"x0": -4.314557268965964, "x1": 3.6239126809470426, "x2": 4.774376235675669, "x3": -0.3185828586408399, "x4": 4.103142952858223, "x5": 0.2010669849190086}}, null] -[[0, 0, 10], 9.0, {"submitted": 1557070662.8903034, "started": 1557070662.890375, "finished": 1557070662.895109}, {"loss": 0.851619999357462, "info": {"x0": -5.627678548038695, "x1": 6.0819832449316396, "x2": 5.141396541015493, "x3": -1.5843033943736629, "x4": 3.8973071544501106, "x5": 0.45102642101066837}}, null] -[[0, 0, 11], 9.0, {"submitted": 1557070662.8961165, "started": 1557070662.896194, "finished": 1557070662.900924}, {"loss": 1, "info": {"x0": -2.7890794608559513, "x1": 3.831350743720471, "x2": 6.94063989724682, "x3": -2.6976850362998013, "x4": 4.892612842214746, "x5": 0.299495598996225}}, null] -[[0, 0, 12], 9.0, {"submitted": 1557070662.9018252, "started": 1557070662.9018924, "finished": 1557070662.9070823}, {"loss": 0.7020799989116936, "info": {"x0": -5.490940463315615, "x1": 4.475738027465668, "x2": 6.551169413998727, "x3": -3.7031966601151454, "x4": 3.340240561072928, "x5": 0.27762704098297286}}, null] -[[0, 0, 13], 9.0, {"submitted": 1557070662.908031, "started": 1557070662.9080951, "finished": 1557070662.9132092}, {"loss": 0.7459799971720948, "info": {"x0": -5.385813331129082, "x1": 5.080923775605573, "x2": 5.2965810680996945, "x3": -1.3469492429747305, "x4": 1.81514404281981, "x5": 0.10934236104579426}}, null] -[[0, 0, 14], 9.0, {"submitted": 1557070662.9142447, "started": 1557070662.9143083, "finished": 1557070662.919591}, {"loss": 1, "info": {"x0": -4.445624534992407, "x1": 3.1017704182576775, "x2": 7.066395501113359, "x3": -1.772707430915938, "x4": 1.5786283429164687, "x5": 0.43202550289236163}}, null] -[[0, 0, 15], 9.0, {"submitted": 1557070662.9206614, "started": 1557070662.920729, "finished": 1557070662.9269834}, {"loss": 0.0590399990284443, "info": {"x0": -2.2424511920212242, "x1": 6.774703603741192, "x2": 5.27539580038235, "x3": -0.15195793793155232, "x4": 4.1363090098031705, "x5": 0.30710361735211805}}, null] -[[0, 0, 16], 9.0, {"submitted": 1557070662.9282315, "started": 1557070662.9283123, "finished": 1557070662.9345639}, {"loss": 0.8806399995566345, "info": {"x0": -5.908433737695679, "x1": 7.866356740001783, "x2": 7.250358949173253, "x3": -2.814852626650328, "x4": 3.015675943824051, "x5": 0.2316507582512261}}, null] -[[0, 0, 17], 9.0, {"submitted": 1557070662.935731, "started": 1557070662.9358065, "finished": 1557070662.9411333}, {"loss": 1, "info": {"x0": -3.030685801531139, "x1": 5.016371722503155, "x2": 7.504323935325508, "x3": -0.5689118302374041, "x4": 3.0301782949101463, "x5": 0.4466789048291544}}, null] -[[0, 0, 18], 9.0, {"submitted": 1557070662.942146, "started": 1557070662.942208, "finished": 1557070662.94794}, {"loss": 0.6898499989445135, "info": {"x0": -5.306921903974511, "x1": 6.295243847616337, "x2": 7.385183324522045, "x3": -2.4716223903405017, "x4": 2.6306853176906366, "x5": 0.07289020653147132}}, null] -[[0, 0, 19], 9.0, {"submitted": 1557070662.9493084, "started": 1557070662.9493964, "finished": 1557070662.9559834}, {"loss": 0.04749999927818775, "info": {"x0": -2.833758146436668, "x1": 5.259020400372112, "x2": 6.813491748813374, "x3": -3.6460167098014873, "x4": 1.0476859870217683, "x5": 0.3064041672522931}}, null] -[[0, 0, 20], 9.0, {"submitted": 1557070662.957408, "started": 1557070662.9574962, "finished": 1557070662.9641306}, {"loss": 0.06626999883770943, "info": {"x0": -2.1374762663050437, "x1": 6.827672341618776, "x2": 5.957786102402605, "x3": -0.40073400809632753, "x4": 2.6777706217925554, "x5": 0.20915694042069916}}, null] -[[0, 0, 21], 9.0, {"submitted": 1557070662.9656336, "started": 1557070662.9657226, "finished": 1557070662.9728532}, {"loss": 0.09525999915838243, "info": {"x0": -2.797112973422052, "x1": 6.46054657029862, "x2": 5.618947382076081, "x3": -3.0202617938804956, "x4": 4.825031972071154, "x5": 0.3211952975278596}}, null] -[[0, 0, 22], 9.0, {"submitted": 1557070662.974356, "started": 1557070662.9744515, "finished": 1557070662.9833534}, {"loss": 0.1651699962323904, "info": {"x0": -4.565200882848842, "x1": 6.12597104484075, "x2": 6.369737710623632, "x3": -2.9400274307699132, "x4": 2.6076440521908797, "x5": 0.0574895841087103}}, null] -[[0, 0, 23], 9.0, {"submitted": 1557070662.9845343, "started": 1557070662.984613, "finished": 1557070662.9900393}, {"loss": 0.7727099997897446, "info": {"x0": -5.5098478711739105, "x1": 7.029468180964393, "x2": 4.741345516047831, "x3": -2.4848033234403206, "x4": 1.2714759491853864, "x5": 0.33694258541892524}}, null] -[[0, 0, 24], 9.0, {"submitted": 1557070662.9911816, "started": 1557070662.9912627, "finished": 1557070662.9966776}, {"loss": 0.47955999503657215, "info": {"x0": -5.248306101676874, "x1": 4.2837552995560415, "x2": 6.467310234018601, "x3": -2.7310714937543663, "x4": 1.8954031002160585, "x5": 0.012624463055427526}}, null] -[[0, 0, 25], 9.0, {"submitted": 1557070662.9976597, "started": 1557070662.9977193, "finished": 1557070663.0027406}, {"loss": 0.15376999428838492, "info": {"x0": -4.248169373359433, "x1": 3.586176077165495, "x2": 5.238763223613304, "x3": -1.831004838788882, "x4": 2.3041312998759707, "x5": 0.044045851156038485}}, null] -[[0, 0, 26], 9.0, {"submitted": 1557070663.0040193, "started": 1557070663.0041203, "finished": 1557070663.0108895}, {"loss": 1, "info": {"x0": -3.6078611116648895, "x1": 3.286899742737101, "x2": 7.0369085731560155, "x3": -3.4697821061750966, "x4": 3.7145705933617656, "x5": 0.13409441738551842}}, null] -[[0, 0, 0], 27.0, {"submitted": 1557070663.0120776, "started": 1557070663.0121655, "finished": 1557070663.0193505}, {"loss": 0.02816000597715378, "info": {"x0": -3.2021134268310214, "x1": 6.602636951556975, "x2": 5.809569627056689, "x3": -1.0123142058092092, "x4": 4.434115203840136, "x5": 0.03501207945127899}}, null] -[[0, 0, 1], 27.0, {"submitted": 1557070663.0202885, "started": 1557070663.020383, "finished": 1557070663.0270267}, {"loss": 0.03327999880015851, "info": {"x0": -2.839457479662706, "x1": 6.621318033047016, "x2": 6.71390214202492, "x3": -3.9683258754008457, "x4": 4.750383238530735, "x5": 0.26246452868592934}}, null] -[[0, 0, 2], 27.0, {"submitted": 1557070663.0277495, "started": 1557070663.0278268, "finished": 1557070663.034138}, {"loss": 0.023139996357560144, "info": {"x0": -3.2103102016985567, "x1": 7.400195609861241, "x2": 6.867023913088179, "x3": -2.727641599782903, "x4": 1.9582541645100187, "x5": 0.13193201748531536}}, null] -[[0, 0, 4], 27.0, {"submitted": 1557070663.0349267, "started": 1557070663.035017, "finished": 1557070663.0430167}, {"loss": 0.0584700054705143, "info": {"x0": -2.7615693293730024, "x1": 7.89012803567472, "x2": 4.238842031044104, "x3": -1.2383688804960578, "x4": 3.0231616117024114, "x5": 0.08608208489581615}}, null] -[[0, 0, 5], 27.0, {"submitted": 1557070663.0439215, "started": 1557070663.0440168, "finished": 1557070663.0519798}, {"loss": 0.021974999672820173, "info": {"x0": -2.657080039449816, "x1": 7.729306891229083, "x2": 7.066365420822871, "x3": -2.294782135744499, "x4": 1.3044945691361276, "x5": 0.3267325428979248}}, null] -[[0, 0, 15], 27.0, {"submitted": 1557070663.0528533, "started": 1557070663.0529194, "finished": 1557070663.0582256}, {"loss": 0.048199998815059666, "info": {"x0": -2.2424511920212242, "x1": 6.774703603741192, "x2": 5.27539580038235, "x3": -0.15195793793155232, "x4": 4.1363090098031705, "x5": 0.30710361735211805}}, null] -[[0, 0, 19], 27.0, {"submitted": 1557070663.0589583, "started": 1557070663.0590334, "finished": 1557070663.0645173}, {"loss": 0.028369998505711556, "info": {"x0": -2.833758146436668, "x1": 5.259020400372112, "x2": 6.813491748813374, "x3": -3.6460167098014873, "x4": 1.0476859870217683, "x5": 0.3064041672522931}}, null] -[[0, 0, 20], 27.0, {"submitted": 1557070663.0654454, "started": 1557070663.0655174, "finished": 1557070663.0719738}, {"loss": 0.05583999956905843, "info": {"x0": -2.1374762663050437, "x1": 6.827672341618776, "x2": 5.957786102402605, "x3": -0.40073400809632753, "x4": 2.6777706217925554, "x5": 0.20915694042069916}}, null] -[[0, 0, 21], 27.0, {"submitted": 1557070663.072673, "started": 1557070663.0727515, "finished": 1557070663.0795364}, {"loss": 0.06392999868273737, "info": {"x0": -2.797112973422052, "x1": 6.46054657029862, "x2": 5.618947382076081, "x3": -3.0202617938804956, "x4": 4.825031972071154, "x5": 0.3211952975278596}}, null] -[[0, 0, 0], 81.0, {"submitted": 1557070663.080467, "started": 1557070663.0805488, "finished": 1557070663.0856998}, {"loss": 0.024840004627704648, "info": {"x0": -3.2021134268310214, "x1": 6.602636951556975, "x2": 5.809569627056689, "x3": -1.0123142058092092, "x4": 4.434115203840136, "x5": 0.03501207945127899}}, null] -[[0, 0, 2], 81.0, {"submitted": 1557070663.0862017, "started": 1557070663.0862982, "finished": 1557070663.0912497}, {"loss": 0.02057999637186526, "info": {"x0": -3.2103102016985567, "x1": 7.400195609861241, "x2": 6.867023913088179, "x3": -2.727641599782903, "x4": 1.9582541645100187, "x5": 0.13193201748531536}}, null] -[[0, 0, 5], 81.0, {"submitted": 1557070663.0918758, "started": 1557070663.0919557, "finished": 1557070663.097962}, {"loss": 0.01949166674842437, "info": {"x0": -2.657080039449816, "x1": 7.729306891229083, "x2": 7.066365420822871, "x3": -2.294782135744499, "x4": 1.3044945691361276, "x5": 0.3267325428979248}}, null] -[[0, 0, 5], 243.0, {"submitted": 1557070663.098776, "started": 1557070663.0988386, "finished": 1557070663.1041572}, {"loss": 0.018987501012235886, "info": {"x0": -2.657080039449816, "x1": 7.729306891229083, "x2": 7.066365420822871, "x3": -2.294782135744499, "x4": 1.3044945691361276, "x5": 0.3267325428979248}}, null] -[[1, 0, 0], 27.0, {"submitted": 1557070663.1051269, "started": 1557070663.1051853, "finished": 1557070663.1120553}, {"loss": 0.44911000066637985, "info": {"x0": -5.648432301473752, "x1": 5.041195343671722, "x2": 6.7785165901225195, "x3": -3.2023931759067925, "x4": 2.2351804596300346, "x5": 0.40672716475999976}}, null] -[[1, 0, 1], 27.0, {"submitted": 1557070663.1132545, "started": 1557070663.1133378, "finished": 1557070663.1196191}, {"loss": 0.41510999573029583, "info": {"x0": -5.243542036617436, "x1": 4.079660880680146, "x2": 4.9463567242921505, "x3": -3.5102304416447305, "x4": 2.8945734214957524, "x5": 0.05845013332518317}}, null] -[[1, 0, 2], 27.0, {"submitted": 1557070663.121228, "started": 1557070663.1213279, "finished": 1557070663.129156}, {"loss": 0.6498799965962767, "info": {"x0": -4.770607120057228, "x1": 4.660945959480591, "x2": 4.553681543591026, "x3": -0.2001001033172951, "x4": 4.642486948273393, "x5": 0.490128985476831}}, null] -[[1, 0, 3], 27.0, {"submitted": 1557070663.1306782, "started": 1557070663.1307855, "finished": 1557070663.1379948}, {"loss": 0.07673000043928623, "info": {"x0": -4.015833935930362, "x1": 3.4794442762086066, "x2": 6.639707625500334, "x3": -0.8469028691191518, "x4": 3.0315346741333435, "x5": 0.4008445270954676}}, null] -[[1, 0, 4], 27.0, {"submitted": 1557070663.139524, "started": 1557070663.1396165, "finished": 1557070663.1462564}, {"loss": 0.08513999989211558, "info": {"x0": -4.021788018378824, "x1": 6.752959580127584, "x2": 7.962373633958709, "x3": -2.026104347345359, "x4": 2.73846779864022, "x5": 0.42777715484408735}}, null] -[[1, 0, 5], 27.0, {"submitted": 1557070663.1477497, "started": 1557070663.1478362, "finished": 1557070663.1537678}, {"loss": 0.368239997741729, "info": {"x0": -5.048050358721646, "x1": 5.666169303081759, "x2": 5.414543647629506, "x3": -3.878324728679897, "x4": 3.151330089192023, "x5": 0.2164206476969061}}, null] -[[1, 0, 6], 27.0, {"submitted": 1557070663.1547863, "started": 1557070663.1548564, "finished": 1557070663.1601372}, {"loss": 0.06503000154078009, "info": {"x0": -3.8365729466368084, "x1": 6.375923186554829, "x2": 5.028025400133961, "x3": -0.29494788953761164, "x4": 3.6971230340578987, "x5": 0.07040157842764372}}, null] -[[1, 0, 7], 27.0, {"submitted": 1557070663.1611443, "started": 1557070663.1612034, "finished": 1557070663.1662521}, {"loss": 0.025730000518560392, "info": {"x0": -2.235342167385995, "x1": 6.107384851150025, "x2": 6.593136403067298, "x3": -2.0542674103575242, "x4": 1.4466247419057368, "x5": 0.2904702483996649}}, null] -[[1, 0, 8], 27.0, {"submitted": 1557070663.1673272, "started": 1557070663.1674004, "finished": 1557070663.1723979}, {"loss": 0.26270999899536374, "info": {"x0": -4.887545374517537, "x1": 7.954031089466168, "x2": 6.112743664308406, "x3": -1.0306551038618719, "x4": 2.43502874950477, "x5": 0.27370085491848195}}, null] -[[1, 0, 3], 81.0, {"submitted": 1557070663.173176, "started": 1557070663.1732535, "finished": 1557070663.1802595}, {"loss": 0.0469200015360117, "info": {"x0": -4.015833935930362, "x1": 3.4794442762086066, "x2": 6.639707625500334, "x3": -0.8469028691191518, "x4": 3.0315346741333435, "x5": 0.4008445270954676}}, null] -[[1, 0, 6], 81.0, {"submitted": 1557070663.1811335, "started": 1557070663.1812131, "finished": 1557070663.1873956}, {"loss": 0.05266000187456606, "info": {"x0": -3.8365729466368084, "x1": 6.375923186554829, "x2": 5.028025400133961, "x3": -0.29494788953761164, "x4": 3.6971230340578987, "x5": 0.07040157842764372}}, null] -[[1, 0, 7], 81.0, {"submitted": 1557070663.1880734, "started": 1557070663.1881452, "finished": 1557070663.1930077}, {"loss": 0.02190000025093556, "info": {"x0": -2.235342167385995, "x1": 6.107384851150025, "x2": 6.593136403067298, "x3": -2.0542674103575242, "x4": 1.4466247419057368, "x5": 0.2904702483996649}}, null] -[[1, 0, 7], 243.0, {"submitted": 1557070663.193897, "started": 1557070663.1939733, "finished": 1557070663.199154}, {"loss": 0.021660000507831578, "info": {"x0": -2.235342167385995, "x1": 6.107384851150025, "x2": 6.593136403067298, "x3": -2.0542674103575242, "x4": 1.4466247419057368, "x5": 0.2904702483996649}}, null] -[[2, 0, 0], 81.0, {"submitted": 1557070663.200493, "started": 1557070663.20059, "finished": 1557070663.206922}, {"loss": 0.22041999591276049, "info": {"x0": -4.956144251092159, "x1": 3.514980569444381, "x2": 5.655017334511461, "x3": -3.495495562782389, "x4": 2.913973839454499, "x5": 0.26001166178131324}}, null] -[[2, 0, 1], 81.0, {"submitted": 1557070663.207805, "started": 1557070663.2078648, "finished": 1557070663.212521}, {"loss": 0.06776999830543996, "info": {"x0": -4.679126097702632, "x1": 5.744378139659311, "x2": 7.802279206602849, "x3": -0.7313116510503614, "x4": 1.8427545926219362, "x5": 0.14418257429750309}}, null] -[[2, 0, 2], 81.0, {"submitted": 1557070663.2135642, "started": 1557070663.2136345, "finished": 1557070663.2189245}, {"loss": 0.02626999803900717, "info": {"x0": -3.534216901411667, "x1": 6.536182838099511, "x2": 7.132318223510957, "x3": -0.12782112978395688, "x4": 3.647115261427748, "x5": 0.03885806418612803}}, null] -[[2, 0, 3], 81.0, {"submitted": 1557070663.220028, "started": 1557070663.2200963, "finished": 1557070663.2256389}, {"loss": 0.03782000081896782, "info": {"x0": -3.940943595771323, "x1": 7.035555248726931, "x2": 7.196670269140837, "x3": -0.909684909075072, "x4": 3.7299022409839124, "x5": 0.3132047871028041}}, null] -[[2, 0, 4], 81.0, {"submitted": 1557070663.2268527, "started": 1557070663.226937, "finished": 1557070663.2335584}, {"loss": 0.038279998868107804, "info": {"x0": -2.8088823659240982, "x1": 7.489050360070191, "x2": 4.753969603540721, "x3": -1.8895947308422762, "x4": 4.880043604407081, "x5": 0.05000736071100198}}, null] -[[2, 0, 5], 81.0, {"submitted": 1557070663.2351027, "started": 1557070663.235196, "finished": 1557070663.2427092}, {"loss": 0.03642000312328338, "info": {"x0": -2.454416249493836, "x1": 6.265076552273245, "x2": 4.842374425370483, "x3": -1.9835409173078506, "x4": 3.4238348495887303, "x5": 0.1334113891433853}}, null] -[[2, 0, 2], 243.0, {"submitted": 1557070663.2435873, "started": 1557070663.2436683, "finished": 1557070663.2508223}, {"loss": 0.02481999638438227, "info": {"x0": -3.534216901411667, "x1": 6.536182838099511, "x2": 7.132318223510957, "x3": -0.12782112978395688, "x4": 3.647115261427748, "x5": 0.03885806418612803}}, null] -[[2, 0, 5], 243.0, {"submitted": 1557070663.251587, "started": 1557070663.2516572, "finished": 1557070663.2573137}, {"loss": 0.03597000306785107, "info": {"x0": -2.454416249493836, "x1": 6.265076552273245, "x2": 4.842374425370483, "x3": -1.9835409173078506, "x4": 3.4238348495887303, "x5": 0.1334113891433853}}, null] -[[3, 0, 0], 243.0, {"submitted": 1557070663.2584627, "started": 1557070663.2585354, "finished": 1557070663.263689}, {"loss": 0.8505499984723144, "info": {"x0": -5.812834848466778, "x1": 6.844470786309298, "x2": 4.407869581917651, "x3": -2.6745983654531447, "x4": 3.3881274792679714, "x5": 0.3086965597470098}}, null] -[[3, 0, 1], 243.0, {"submitted": 1557070663.2647495, "started": 1557070663.2648046, "finished": 1557070663.269548}, {"loss": 0.11010999909102917, "info": {"x0": -3.022980056168064, "x1": 7.0744026295286915, "x2": 7.97548680873118, "x3": -3.086398706982529, "x4": 3.128120792053057, "x5": 0.4963506001452348}}, null] -[[3, 0, 2], 243.0, {"submitted": 1557070663.2710216, "started": 1557070663.2711034, "finished": 1557070663.2773209}, {"loss": 0.019349997164607037, "info": {"x0": -3.279003477142976, "x1": 4.4393676710607, "x2": 7.175074657812072, "x3": -0.5023060954222744, "x4": 3.382016656171568, "x5": 0.009003521820470484}}, null] -[[3, 0, 3], 243.0, {"submitted": 1557070663.2786937, "started": 1557070663.2787747, "finished": 1557070663.2851458}, {"loss": 0.041380001043081274, "info": {"x0": -2.3256778039626838, "x1": 5.707622887840218, "x2": 4.7556295347616775, "x3": -1.185130379414859, "x4": 1.2251326685240689, "x5": 0.27120124428031633}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/randomsearch/configs.json deleted file mode 100644 index 8098b93..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/randomsearch/configs.json +++ /dev/null @@ -1,16 +0,0 @@ -[[0, 0, 0], {"x0": -5.545742762312049, "x1": 5.1448542833855635, "x2": 4.713484081083124, "x3": -0.3265772895002188, "x4": 2.0643181768297145, "x5": 0.46187128878039296}, {}] -[[0, 0, 1], {"x0": -4.596640729541805, "x1": 6.340353909013333, "x2": 6.84896918766959, "x3": -3.4926511165606917, "x4": 1.767519042077263, "x5": 0.45884001180061246}, {}] -[[0, 0, 2], {"x0": -4.6069792435582455, "x1": 3.145127484314884, "x2": 4.350532121028382, "x3": -1.1887325534881312, "x4": 3.857195518943786, "x5": 0.12532755356277392}, {}] -[[0, 0, 3], {"x0": -3.8114613123550845, "x1": 4.4307575824942385, "x2": 7.560955128980526, "x3": -1.5352879653803222, "x4": 4.410019316625416, "x5": 0.2436938220058843}, {}] -[[1, 0, 0], {"x0": -4.42954492818134, "x1": 3.0763123955663527, "x2": 7.7893733330715245, "x3": -0.1506794328298744, "x4": 3.4809617643072706, "x5": 0.12443493447244208}, {}] -[[1, 0, 1], {"x0": -3.4033508824513934, "x1": 4.225471804923432, "x2": 5.1313640031690095, "x3": -1.4453630511123525, "x4": 3.1970899214915747, "x5": 0.09330386085948289}, {}] -[[1, 0, 2], {"x0": -2.722660123959248, "x1": 7.132389927051284, "x2": 7.441195857134043, "x3": -0.7837701843382492, "x4": 3.4887463653535207, "x5": 0.15818766461019523}, {}] -[[1, 0, 3], {"x0": -2.68337041060553, "x1": 6.357627890649831, "x2": 4.806622178944064, "x3": -3.8331230312098095, "x4": 4.299778533420763, "x5": 0.3057471263111705}, {}] -[[2, 0, 0], {"x0": -4.845918413659341, "x1": 3.8301689525876883, "x2": 5.292907683668986, "x3": -2.3753032243059273, "x4": 1.9415119459414907, "x5": 0.19658965392827316}, {}] -[[2, 0, 1], {"x0": -5.8495454529365, "x1": 3.3566497017954524, "x2": 6.5972181771840095, "x3": -2.000593486628857, "x4": 3.083902574529546, "x5": 0.13908815130588986}, {}] -[[2, 0, 2], {"x0": -2.294886510702901, "x1": 4.397383449703117, "x2": 4.049581238999594, "x3": -2.2124657606015283, "x4": 3.950494154508495, "x5": 0.04622359458957892}, {}] -[[2, 0, 3], {"x0": -5.959682949754205, "x1": 5.593607876700136, "x2": 5.253828579817113, "x3": -0.00490654246565958, "x4": 3.0994143961992493, "x5": 0.40470833324897276}, {}] -[[3, 0, 0], {"x0": -2.3637486387717255, "x1": 7.751361750659021, "x2": 7.0412011917053015, "x3": -2.670993622460866, "x4": 4.443694231014421, "x5": 0.009828558083143979}, {}] -[[3, 0, 1], {"x0": -3.1575636048018962, "x1": 4.3539031328828255, "x2": 6.111112928854974, "x3": -0.31326601423436884, "x4": 1.8608527511544137, "x5": 0.2090390769825174}, {}] -[[3, 0, 2], {"x0": -4.230623487028277, "x1": 7.107048537742692, "x2": 7.766908895233673, "x3": -2.635305497878015, "x4": 4.668829890917342, "x5": 0.2431419409308651}, {}] -[[3, 0, 3], {"x0": -5.1794967096757, "x1": 7.41173190118029, "x2": 6.319981722255574, "x3": -1.7199492848388047, "x4": 2.0398611603573835, "x5": 0.43800038283980297}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/randomsearch/results.json deleted file mode 100644 index f47e7f2..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/randomsearch/results.json +++ /dev/null @@ -1,16 +0,0 @@ -[[0, 0, 0], 243, {"submitted": 1557070662.4252748, "started": 1557070662.4253676, "finished": 1557070662.431187}, {"loss": 0.5453199968811869, "info": {"x0": -5.545742762312049, "x1": 5.1448542833855635, "x2": 4.713484081083124, "x3": -0.3265772895002188, "x4": 2.0643181768297145, "x5": 0.46187128878039296}}, null] -[[0, 0, 1], 243, {"submitted": 1557070662.4325519, "started": 1557070662.43264, "finished": 1557070662.4396446}, {"loss": 0.08639999664962292, "info": {"x0": -4.596640729541805, "x1": 6.340353909013333, "x2": 6.84896918766959, "x3": -3.4926511165606917, "x4": 1.767519042077263, "x5": 0.45884001180061246}}, null] -[[0, 0, 2], 243, {"submitted": 1557070662.4408088, "started": 1557070662.440881, "finished": 1557070662.446126}, {"loss": 0.17156999876409773, "info": {"x0": -4.6069792435582455, "x1": 3.145127484314884, "x2": 4.350532121028382, "x3": -1.1887325534881312, "x4": 3.857195518943786, "x5": 0.12532755356277392}}, null] -[[0, 0, 3], 243, {"submitted": 1557070662.4471388, "started": 1557070662.447198, "finished": 1557070662.4530253}, {"loss": 0.02530999981820583, "info": {"x0": -3.8114613123550845, "x1": 4.4307575824942385, "x2": 7.560955128980526, "x3": -1.5352879653803222, "x4": 4.410019316625416, "x5": 0.2436938220058843}}, null] -[[1, 0, 0], 243, {"submitted": 1557070662.4544137, "started": 1557070662.4544957, "finished": 1557070662.4606462}, {"loss": 0.04461999795198438, "info": {"x0": -4.42954492818134, "x1": 3.0763123955663527, "x2": 7.7893733330715245, "x3": -0.1506794328298744, "x4": 3.4809617643072706, "x5": 0.12443493447244208}}, null] -[[1, 0, 1], 243, {"submitted": 1557070662.4620206, "started": 1557070662.4621131, "finished": 1557070662.46962}, {"loss": 0.029600004280209556, "info": {"x0": -3.4033508824513934, "x1": 4.225471804923432, "x2": 5.1313640031690095, "x3": -1.4453630511123525, "x4": 3.1970899214915747, "x5": 0.09330386085948289}}, null] -[[1, 0, 2], 243, {"submitted": 1557070662.4711082, "started": 1557070662.4711988, "finished": 1557070662.477827}, {"loss": 0.01764000055193903, "info": {"x0": -2.722660123959248, "x1": 7.132389927051284, "x2": 7.441195857134043, "x3": -0.7837701843382492, "x4": 3.4887463653535207, "x5": 0.15818766461019523}}, null] -[[1, 0, 3], 243, {"submitted": 1557070662.4790235, "started": 1557070662.4791007, "finished": 1557070662.4845881}, {"loss": 0.13522999351993203, "info": {"x0": -2.68337041060553, "x1": 6.357627890649831, "x2": 4.806622178944064, "x3": -3.8331230312098095, "x4": 4.299778533420763, "x5": 0.3057471263111705}}, null] -[[2, 0, 0], 243, {"submitted": 1557070662.4857028, "started": 1557070662.4857795, "finished": 1557070662.4906585}, {"loss": 0.18076999780505892, "info": {"x0": -4.845918413659341, "x1": 3.8301689525876883, "x2": 5.292907683668986, "x3": -2.3753032243059273, "x4": 1.9415119459414907, "x5": 0.19658965392827316}}, null] -[[2, 0, 1], 243, {"submitted": 1557070662.491773, "started": 1557070662.491853, "finished": 1557070662.4967268}, {"loss": 0.19960999645859007, "info": {"x0": -5.8495454529365, "x1": 3.3566497017954524, "x2": 6.5972181771840095, "x3": -2.000593486628857, "x4": 3.083902574529546, "x5": 0.13908815130588986}}, null] -[[2, 0, 2], 243, {"submitted": 1557070662.4979284, "started": 1557070662.498005, "finished": 1557070662.5031812}, {"loss": 0.04876000045716761, "info": {"x0": -2.294886510702901, "x1": 4.397383449703117, "x2": 4.049581238999594, "x3": -2.2124657606015283, "x4": 3.950494154508495, "x5": 0.04622359458957892}}, null] -[[2, 0, 3], 243, {"submitted": 1557070662.5041065, "started": 1557070662.5041645, "finished": 1557070662.5087872}, {"loss": 0.5556599975039809, "info": {"x0": -5.959682949754205, "x1": 5.593607876700136, "x2": 5.253828579817113, "x3": -0.00490654246565958, "x4": 3.0994143961992493, "x5": 0.40470833324897276}}, null] -[[3, 0, 0], 243, {"submitted": 1557070662.509956, "started": 1557070662.5100358, "finished": 1557070662.5146463}, {"loss": 0.01848000128328798, "info": {"x0": -2.3637486387717255, "x1": 7.751361750659021, "x2": 7.0412011917053015, "x3": -2.670993622460866, "x4": 4.443694231014421, "x5": 0.009828558083143979}}, null] -[[3, 0, 1], 243, {"submitted": 1557070662.5156257, "started": 1557070662.5156848, "finished": 1557070662.5208514}, {"loss": 0.024260002745985998, "info": {"x0": -3.1575636048018962, "x1": 4.3539031328828255, "x2": 6.111112928854974, "x3": -0.31326601423436884, "x4": 1.8608527511544137, "x5": 0.2090390769825174}}, null] -[[3, 0, 2], 243, {"submitted": 1557070662.5217092, "started": 1557070662.5217676, "finished": 1557070662.5266762}, {"loss": 0.0556099995094538, "info": {"x0": -4.230623487028277, "x1": 7.107048537742692, "x2": 7.766908895233673, "x3": -2.635305497878015, "x4": 4.668829890917342, "x5": 0.2431419409308651}}, null] -[[3, 0, 3], 243, {"submitted": 1557070662.5278661, "started": 1557070662.527945, "finished": 1557070662.5347254}, {"loss": 0.30725999698966744, "info": {"x0": -5.1794967096757, "x1": 7.41173190118029, "x2": 6.319981722255574, "x3": -1.7199492848388047, "x4": 2.0398611603573835, "x5": 0.43800038283980297}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/runhistory.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/runhistory.json deleted file mode 100644 index 56d44c9..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/runhistory.json +++ /dev/null @@ -1,368 +0,0 @@ -{ - "data": [ - [ - [ - 1, - null, - 0 - ], - [ - 0.12168000017881393, - 0.027514219284057617, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 2, - null, - 0 - ], - [ - 0.748289996553734, - 0.025435209274291992, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 3, - null, - 0 - ], - [ - 0.7614599998562037, - 0.026131153106689453, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 4, - null, - 0 - ], - [ - 0.3528999968025089, - 0.031893014907836914, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 5, - null, - 0 - ], - [ - 0.1670199976977706, - 0.03155827522277832, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 6, - null, - 0 - ], - [ - 0.3130199983294308, - 0.029393434524536133, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 7, - null, - 0 - ], - [ - 0.022840000292062755, - 0.028044700622558594, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 8, - null, - 0 - ], - [ - 0.039300000855326665, - 0.03320121765136719, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 9, - null, - 0 - ], - [ - 0.08634999995529653, - 0.034746408462524414, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 10, - null, - 0 - ], - [ - 0.07766999949097632, - 0.029784679412841797, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 11, - null, - 0 - ], - [ - 0.434679996964708, - 0.03065943717956543, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 12, - null, - 0 - ], - [ - 0.03427999894499778, - 0.03594493865966797, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 13, - null, - 0 - ], - [ - 0.45378999594345676, - 0.036350250244140625, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 14, - null, - 0 - ], - [ - 0.025749998190402978, - 0.029514551162719727, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 15, - null, - 0 - ], - [ - 0.02858000036954881, - 0.03207230567932129, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ] - ], - "config_origins": { - "1": "Random initial design.", - "2": "Random Search (sorted)", - "3": "Random Search (sorted)", - "4": "Random Search (sorted)", - "5": "Random Search (sorted)", - "6": "Random Search (sorted)", - "7": "Random Search", - "8": "Random Search (sorted)", - "9": "Random Search (sorted)", - "10": "Random Search (sorted)", - "11": "Random Search (sorted)", - "12": "Random Search (sorted)", - "13": "Random Search", - "14": "Random Search", - "15": "Random Search" - }, - "configs": { - "1": { - "x0": -4.206747670116752, - "x1": 5.9407555020237, - "x2": 4.272656104363868, - "x3": -2.04014694348734, - "x4": 3.6051647150286685, - "x5": 0.17220570897159826 - }, - "2": { - "x0": -5.282152893592671, - "x1": 6.599720559139983, - "x2": 4.598568781774128, - "x3": -2.1217904749697123, - "x4": 4.325830060140753, - "x5": 0.2661989352126335 - }, - "3": { - "x0": -5.835077601865044, - "x1": 5.955238183365612, - "x2": 5.149985672845525, - "x3": -1.2467750992509177, - "x4": 4.977202719483031, - "x5": 0.2269931195388013 - }, - "4": { - "x0": -3.3779613447362884, - "x1": 5.086144336286587, - "x2": 4.34742403602176, - "x3": -3.7151499653791262, - "x4": 4.205952831707872, - "x5": 0.39662839329377514 - }, - "5": { - "x0": -4.327513866895547, - "x1": 6.2768328599272145, - "x2": 5.31363685061136, - "x3": -2.393277236486182, - "x4": 4.8232394584059595, - "x5": 0.24196788429524546 - }, - "6": { - "x0": -5.407555940858179, - "x1": 6.150049382311413, - "x2": 7.784506968833366, - "x3": -3.124435368127979, - "x4": 3.463235898959303, - "x5": 0.34595891067351336 - }, - "7": { - "x0": -3.7207104804871576, - "x1": 4.033656897035949, - "x2": 7.327637879035284, - "x3": -0.6000054119208484, - "x4": 4.403500426300965, - "x5": 0.28858325123076434 - }, - "8": { - "x0": -3.243958114258891, - "x1": 6.196107001002136, - "x2": 4.8170269422007905, - "x3": -1.4405437281483553, - "x4": 2.0900075546338623, - "x5": 0.10371458646346421 - }, - "9": { - "x0": -3.6735780595247367, - "x1": 5.080197782828977, - "x2": 4.24868356054416, - "x3": -1.921479858214762, - "x4": 3.721780330378387, - "x5": 0.2217680883349082 - }, - "10": { - "x0": -4.156795844632507, - "x1": 5.4563525104683, - "x2": 5.632831863614184, - "x3": -1.4763297464127683, - "x4": 4.805049910062846, - "x5": 0.26980226952670566 - }, - "11": { - "x0": -2.503972809359729, - "x1": 7.891254720770527, - "x2": 4.722128958042356, - "x3": -0.20774286891075633, - "x4": 4.592336323035088, - "x5": 0.48989049402131507 - }, - "12": { - "x0": -3.5860525373993735, - "x1": 5.996000879828253, - "x2": 6.051141834635997, - "x3": -3.025265574138339, - "x4": 2.3733222953404, - "x5": 0.28175622136365763 - }, - "13": { - "x0": -5.926046169599674, - "x1": 4.558407617426437, - "x2": 6.7577975887113215, - "x3": -0.47407979700787406, - "x4": 4.751386350821255, - "x5": 0.41568224018453137 - }, - "14": { - "x0": -3.2886770285305578, - "x1": 3.1808322856087177, - "x2": 5.877889187836487, - "x3": -0.9973498526665074, - "x4": 3.0181648882929437, - "x5": 0.25434578432807836 - }, - "15": { - "x0": -3.52379606606825, - "x1": 4.634074690416326, - "x2": 5.6447147011059915, - "x3": -0.2735552234774179, - "x4": 3.7310876475951242, - "x5": 0.23847337392930662 - } - } -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/scenario.txt b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/scenario.txt deleted file mode 100644 index 7643534..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/scenario.txt +++ /dev/null @@ -1,12 +0,0 @@ -execdir = . -deterministic = True -run_obj = quality -overall_obj = par10 -par_factor = 10 -cost_for_crash = 2147483647.0 -algo_runs_timelimit = inf -wallclock_limit = inf -always_race_default = False -ta_run_limit = 15.0 -initial_incumbent = RANDOM -pcs_fn = opt_results/paramnet_surrogate/mnist/smac/run_1720134895/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/stats.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/stats.json deleted file mode 100644 index bbde77b..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/stats.json +++ /dev/null @@ -1 +0,0 @@ -{"ta_runs": 15, "n_configs": 15, "wallclock_time_used": 11.381669521331787, "ta_time_used": 0.46224379539489746, "inc_changed": 2, "_n_configs_per_intensify": 14, "_n_calls_of_intensify": 7, "_ema_n_configs_per_intensifiy": 2.0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/traj_aclib2.json deleted file mode 100644 index 06a5aa2..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/traj_aclib2.json +++ /dev/null @@ -1,3 +0,0 @@ -{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 6.937980651855469e-05, "evaluations": 0, "cost": 2147483648, "incumbent": ["x0='-4.206747670116752'", "x1='5.9407555020237'", "x2='4.272656104363868'", "x3='-2.04014694348734'", "x4='3.6051647150286685'", "x5='0.17220570897159826'"], "origin": "Random initial design."} -{"cpu_time": 0.027514219284057617, "total_cpu_time": null, "wallclock_time": 0.05218505859375, "evaluations": 1, "cost": 0.12168000017881393, "incumbent": ["x0='-4.206747670116752'", "x1='5.9407555020237'", "x2='4.272656104363868'", "x3='-2.04014694348734'", "x4='3.6051647150286685'", "x5='0.17220570897159826'"], "origin": "Random initial design."} -{"cpu_time": 0.19997000694274902, "total_cpu_time": null, "wallclock_time": 2.4613289833068848, "evaluations": 7, "cost": 0.022840000292062755, "incumbent": ["x0='-3.7207104804871576'", "x1='4.033656897035949'", "x2='7.327637879035284'", "x3='-0.6000054119208484'", "x4='4.403500426300965'", "x5='0.28858325123076434'"], "origin": "Random Search"} diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/traj_old.csv b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/traj_old.csv deleted file mode 100644 index ce8f9d7..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/traj_old.csv +++ /dev/null @@ -1,4 +0,0 @@ -"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." -0.000000, 2147483648.000000, 0.000069, 1, 0.000069, x0='-4.206747670116752', x1='5.9407555020237', x2='4.272656104363868', x3='-2.04014694348734', x4='3.6051647150286685', x5='0.17220570897159826' -0.027514, 0.121680, 0.052185, 1, 0.024671, x0='-4.206747670116752', x1='5.9407555020237', x2='4.272656104363868', x3='-2.04014694348734', x4='3.6051647150286685', x5='0.17220570897159826' -0.199970, 0.022840, 2.461329, 2, 2.261359, x0='-3.7207104804871576', x1='4.033656897035949', x2='7.327637879035284', x3='-0.6000054119208484', x4='4.403500426300965', x5='0.28858325123076434' diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/bohb/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/bohb/configs.json deleted file mode 100644 index b7ae6fc..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/bohb/configs.json +++ /dev/null @@ -1,46 +0,0 @@ -[[0, 0, 0], {"x0": -2.2927623764348515, "x1": 4.10202601920724, "x2": 6.082980287865053, "x3": -0.407264321475433, "x4": 3.696376388961349, "x5": 0.19357759071381558}, {"model_based_pick": false}] -[[0, 0, 1], {"x0": -2.2006896538485177, "x1": 3.7676012547513738, "x2": 4.628923843919429, "x3": -1.981319052252175, "x4": 2.5096875605409, "x5": 0.10010334544284338}, {"model_based_pick": false}] -[[0, 0, 2], {"x0": -2.92868527752266, "x1": 3.331069754495299, "x2": 5.122286558195963, "x3": -1.6829341904727242, "x4": 1.6968256290096693, "x5": 0.11167937785019039}, {"model_based_pick": false}] -[[0, 0, 3], {"x0": -3.3302893536963416, "x1": 7.729621352686383, "x2": 4.674764814131118, "x3": -0.36219596650340513, "x4": 4.915018025370021, "x5": 0.22092293026505067}, {"model_based_pick": false}] -[[0, 0, 4], {"x0": -2.1812156221914107, "x1": 7.8924571049362005, "x2": 4.8376176989568895, "x3": -3.1204250940080627, "x4": 2.7979858211975004, "x5": 0.4187021525249474}, {"model_based_pick": false}] -[[0, 0, 5], {"x0": -4.443551587870431, "x1": 6.956273508869042, "x2": 6.762737738857949, "x3": -2.432102945235896, "x4": 2.816944548164063, "x5": 0.07614802648304203}, {"model_based_pick": false}] -[[0, 0, 6], {"x0": -5.712045383144662, "x1": 7.396471055478985, "x2": 7.236823510259731, "x3": -2.128951621959458, "x4": 3.011998918461787, "x5": 0.3418443638260504}, {"model_based_pick": false}] -[[0, 0, 7], {"x0": -5.365683472441626, "x1": 4.694370135716774, "x2": 5.018441623789887, "x3": -1.5390457277648983, "x4": 4.680220051773926, "x5": 0.006407838785525588}, {"model_based_pick": false}] -[[0, 0, 8], {"x0": -2.93923547738892, "x1": 3.7906874455678325, "x2": 4.213894252691709, "x3": -1.191332266103454, "x4": 4.7505292226952385, "x5": 0.0809766219879634}, {"model_based_pick": false}] -[[0, 0, 9], {"x0": -2.156399168214587, "x1": 3.4284793936246163, "x2": 5.399641228128528, "x3": -1.4399275176047754, "x4": 2.468759070095157, "x5": 0.3654897526901542}, {"model_based_pick": false}] -[[0, 0, 10], {"x0": -3.087151153511897, "x1": 7.4917241105521475, "x2": 4.260200259022925, "x3": -3.8474102489740125, "x4": 1.066676795903795, "x5": 0.0394212552608415}, {"model_based_pick": false}] -[[0, 0, 11], {"x0": -3.7024709221062997, "x1": 4.161056346591176, "x2": 6.256559606459392, "x3": -0.8351506348893194, "x4": 3.5241939798544215, "x5": 0.20922741464047995}, {"model_based_pick": false}] -[[0, 0, 12], {"x0": -3.140068936657643, "x1": 5.875232126488436, "x2": 6.7318766810990285, "x3": -0.6403832536770393, "x4": 3.5819418859517658, "x5": 0.3471313809010908}, {"model_based_pick": false}] -[[0, 0, 13], {"x0": -2.798234084731251, "x1": 4.035087113917372, "x2": 4.153363912068643, "x3": -1.4014661589103272, "x4": 1.4297901791778935, "x5": 0.11623420736071777}, {"model_based_pick": false}] -[[0, 0, 14], {"x0": -3.9870701742402206, "x1": 4.574394234853549, "x2": 4.208433711212004, "x3": -2.151788893643911, "x4": 4.167497817788468, "x5": 0.4638525534268948}, {"model_based_pick": false}] -[[0, 0, 15], {"x0": -2.13381032387834, "x1": 5.3374710286038765, "x2": 4.4412980308908105, "x3": -0.7229908186131837, "x4": 1.0711979563035232, "x5": 0.13563284886077248}, {"model_based_pick": true}] -[[0, 0, 16], {"x0": -2.8997051822562163, "x1": 6.23784094760557, "x2": 5.728462245440015, "x3": -0.9611051514284505, "x4": 4.435588317383909, "x5": 0.27385061776700376}, {"model_based_pick": false}] -[[0, 0, 17], {"x0": -2.499584396056671, "x1": 3.5206161632479636, "x2": 5.931593461484035, "x3": -2.1476443116285635, "x4": 1.3023307350564197, "x5": 0.06798968358002694}, {"model_based_pick": true}] -[[0, 0, 18], {"x0": -3.2340396315001043, "x1": 3.7698649147159813, "x2": 7.798210301215072, "x3": -0.9531104411938354, "x4": 4.6238425607415605, "x5": 0.02033995250516779}, {"model_based_pick": false}] -[[0, 0, 19], {"x0": -2.0701314395274895, "x1": 3.97943491600272, "x2": 6.947181730241335, "x3": -1.683950954628389, "x4": 2.8026204836409727, "x5": 0.36367440934958006}, {"model_based_pick": true}] -[[0, 0, 20], {"x0": -5.242310302107251, "x1": 3.899337345323871, "x2": 7.254408394613395, "x3": -2.8198336896749963, "x4": 1.1659457469408214, "x5": 0.22076282517357926}, {"model_based_pick": false}] -[[0, 0, 21], {"x0": -4.00840214143688, "x1": 6.629287080177661, "x2": 5.308072571837621, "x3": -2.403308661955211, "x4": 4.278304141195038, "x5": 0.16254170156722086}, {"model_based_pick": false}] -[[0, 0, 22], {"x0": -2.0501173760755695, "x1": 4.321521594032905, "x2": 7.202243362046607, "x3": -2.026538469220439, "x4": 2.2697187413421425, "x5": 0.3988220438261123}, {"model_based_pick": true}] -[[0, 0, 23], {"x0": -3.417840765995086, "x1": 6.143220297828204, "x2": 7.5488551948077545, "x3": -0.2698630901946517, "x4": 3.4167874274553496, "x5": 0.4072343286985825}, {"model_based_pick": true}] -[[0, 0, 24], {"x0": -2.3267331774935593, "x1": 6.649183833203084, "x2": 4.986582964462329, "x3": -0.4489842822750445, "x4": 1.069967683624547, "x5": 0.10358378957545529}, {"model_based_pick": true}] -[[0, 0, 25], {"x0": -5.0658926429423765, "x1": 3.259665466921875, "x2": 7.627769017088406, "x3": -0.495223771075723, "x4": 4.171985987445563, "x5": 0.4816851091391234}, {"model_based_pick": false}] -[[0, 0, 26], {"x0": -2.0018102179041217, "x1": 4.364758082631843, "x2": 4.528289704607192, "x3": -0.2478459477570345, "x4": 1.2120041021506796, "x5": 0.20636905471787856}, {"model_based_pick": true}] -[[1, 0, 0], {"x0": -2.6618744656084443, "x1": 6.866585576939361, "x2": 4.697433435128725, "x3": -0.5980844348911489, "x4": 1.2673567829181023, "x5": 0.20417074737385704}, {"model_based_pick": true}] -[[1, 0, 1], {"x0": -2.0259059831628545, "x1": 7.287713810049669, "x2": 6.695956554545555, "x3": -1.0249049133886796, "x4": 1.0664597966727285, "x5": 0.07672754384422112}, {"model_based_pick": true}] -[[1, 0, 2], {"x0": -2.8326274270463743, "x1": 7.85480072209326, "x2": 4.821659095194331, "x3": -0.6549476388512168, "x4": 1.26369129056717, "x5": 0.3463551630201136}, {"model_based_pick": true}] -[[1, 0, 3], {"x0": -4.724311843813028, "x1": 6.763579544372359, "x2": 5.039855175248665, "x3": -0.14786323155926961, "x4": 4.021143359776977, "x5": 0.2098067847395722}, {"model_based_pick": false}] -[[1, 0, 4], {"x0": -5.626931800429156, "x1": 5.87132993353489, "x2": 4.403737139354723, "x3": -3.60929269102522, "x4": 3.3098384563262826, "x5": 0.14531134377198945}, {"model_based_pick": false}] -[[1, 0, 5], {"x0": -2.7218799937660654, "x1": 6.118143638237054, "x2": 6.189299295328454, "x3": -0.3654737098675236, "x4": 4.998272765401259, "x5": 0.48740911510353285}, {"model_based_pick": true}] -[[1, 0, 6], {"x0": -3.152693669394508, "x1": 3.20873514800979, "x2": 7.556180510948327, "x3": -2.68241108827662, "x4": 1.1025323748505569, "x5": 0.05169748567387167}, {"model_based_pick": true}] -[[1, 0, 7], {"x0": -2.329448768704196, "x1": 5.59958832700479, "x2": 7.214272263891258, "x3": -2.5372191486607787, "x4": 1.2571108449930966, "x5": 0.024481519643867897}, {"model_based_pick": true}] -[[1, 0, 8], {"x0": -3.1707151082130776, "x1": 3.3039820317417465, "x2": 7.341803424286805, "x3": -3.5641515524517375, "x4": 1.6217616201991552, "x5": 0.07501040528915127}, {"model_based_pick": true}] -[[2, 0, 0], {"x0": -4.197907335330847, "x1": 3.2721562978814243, "x2": 6.929718760889038, "x3": -3.638521374994318, "x4": 1.8870154868343958, "x5": 0.020798410407542517}, {"model_based_pick": true}] -[[2, 0, 1], {"x0": -3.6195794909261743, "x1": 4.475419023512174, "x2": 7.245149895361962, "x3": -2.3505395295841396, "x4": 1.4121442386398317, "x5": 0.0010143298192787087}, {"model_based_pick": true}] -[[2, 0, 2], {"x0": -4.594294529185004, "x1": 5.099763452556693, "x2": 7.34675326385886, "x3": -3.62029909833699, "x4": 1.1586081236828754, "x5": 0.05847291066471331}, {"model_based_pick": true}] -[[2, 0, 3], {"x0": -4.923636656628675, "x1": 4.156104602956297, "x2": 5.34813191090757, "x3": -2.7184017730044503, "x4": 3.5240114336607506, "x5": 0.1428528729364864}, {"model_based_pick": false}] -[[2, 0, 4], {"x0": -3.0486431078690663, "x1": 3.806432947610463, "x2": 6.808030035722565, "x3": -3.562100895108224, "x4": 2.705235923702903, "x5": 0.2466459693532912}, {"model_based_pick": false}] -[[2, 0, 5], {"x0": -2.5427914005184418, "x1": 5.306227605722508, "x2": 6.788815173973882, "x3": -3.573082201870638, "x4": 1.100208501284884, "x5": 0.021842575674359266}, {"model_based_pick": true}] -[[3, 0, 0], {"x0": -2.4679247201831354, "x1": 5.931992393435663, "x2": 7.267953161263874, "x3": -2.8850281071144277, "x4": 1.5214974964908892, "x5": 0.03344425454107187}, {"model_based_pick": true}] -[[3, 0, 1], {"x0": -5.588786318132398, "x1": 7.503627561867791, "x2": 5.06256357904312, "x3": -1.0938635679355984, "x4": 2.0842847711707955, "x5": 0.37838881852709344}, {"model_based_pick": false}] -[[3, 0, 2], {"x0": -2.3239386839396956, "x1": 3.7737499504202994, "x2": 5.248524722340424, "x3": -1.1941940884028543, "x4": 2.1190017260237024, "x5": 0.3950256401074026}, {"model_based_pick": false}] -[[3, 0, 3], {"x0": -2.750902087993969, "x1": 3.4301549381969356, "x2": 7.234621368571895, "x3": -1.0780991499135584, "x4": 3.9959789911717234, "x5": 0.13962659468792998}, {"model_based_pick": false}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/bohb/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/bohb/results.json deleted file mode 100644 index 2a38184..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/bohb/results.json +++ /dev/null @@ -1,65 +0,0 @@ -[[0, 0, 0], 1.0, {"submitted": 1557070789.430315, "started": 1557070789.43043, "finished": 1557070789.4378796}, {"loss": 0.05317779661951196, "info": {"x0": -2.2927623764348515, "x1": 4.10202601920724, "x2": 6.082980287865053, "x3": -0.407264321475433, "x4": 3.696376388961349, "x5": 0.19357759071381558}}, null] -[[0, 0, 1], 1.0, {"submitted": 1557070789.439991, "started": 1557070789.4401166, "finished": 1557070789.447026}, {"loss": 0.05470635188460256, "info": {"x0": -2.2006896538485177, "x1": 3.7676012547513738, "x2": 4.628923843919429, "x3": -1.981319052252175, "x4": 2.5096875605409, "x5": 0.10010334544284338}}, null] -[[0, 0, 2], 1.0, {"submitted": 1557070789.4483213, "started": 1557070789.4484088, "finished": 1557070789.4534528}, {"loss": 0.07860015927546464, "info": {"x0": -2.92868527752266, "x1": 3.331069754495299, "x2": 5.122286558195963, "x3": -1.6829341904727242, "x4": 1.6968256290096693, "x5": 0.11167937785019039}}, null] -[[0, 0, 3], 1.0, {"submitted": 1557070789.4549482, "started": 1557070789.4550269, "finished": 1557070789.4597657}, {"loss": 0.5517296839616324, "info": {"x0": -3.3302893536963416, "x1": 7.729621352686383, "x2": 4.674764814131118, "x3": -0.36219596650340513, "x4": 4.915018025370021, "x5": 0.22092293026505067}}, null] -[[0, 0, 4], 1.0, {"submitted": 1557070789.4615393, "started": 1557070789.4616082, "finished": 1557070789.466932}, {"loss": 0.08350764100146887, "info": {"x0": -2.1812156221914107, "x1": 7.8924571049362005, "x2": 4.8376176989568895, "x3": -3.1204250940080627, "x4": 2.7979858211975004, "x5": 0.4187021525249474}}, null] -[[0, 0, 5], 1.0, {"submitted": 1557070789.4682074, "started": 1557070789.468288, "finished": 1557070789.4739}, {"loss": 0.7561544638178038, "info": {"x0": -4.443551587870431, "x1": 6.956273508869042, "x2": 6.762737738857949, "x3": -2.432102945235896, "x4": 2.816944548164063, "x5": 0.07614802648304203}}, null] -[[0, 0, 6], 1.0, {"submitted": 1557070789.4754555, "started": 1557070789.4755266, "finished": 1557070789.480667}, {"loss": 0.9075623489083154, "info": {"x0": -5.712045383144662, "x1": 7.396471055478985, "x2": 7.236823510259731, "x3": -2.128951621959458, "x4": 3.011998918461787, "x5": 0.3418443638260504}}, null] -[[0, 0, 7], 1.0, {"submitted": 1557070789.4828546, "started": 1557070789.482942, "finished": 1557070789.4882243}, {"loss": 0.9066773919186353, "info": {"x0": -5.365683472441626, "x1": 4.694370135716774, "x2": 5.018441623789887, "x3": -1.5390457277648983, "x4": 4.680220051773926, "x5": 0.006407838785525588}}, null] -[[0, 0, 8], 1.0, {"submitted": 1557070789.4897351, "started": 1557070789.489794, "finished": 1557070789.4947255}, {"loss": 0.4909090890065855, "info": {"x0": -2.93923547738892, "x1": 3.7906874455678325, "x2": 4.213894252691709, "x3": -1.191332266103454, "x4": 4.7505292226952385, "x5": 0.0809766219879634}}, null] -[[0, 0, 9], 1.0, {"submitted": 1557070789.4967265, "started": 1557070789.4968023, "finished": 1557070789.5015543}, {"loss": 0.05358004708109797, "info": {"x0": -2.156399168214587, "x1": 3.4284793936246163, "x2": 5.399641228128528, "x3": -1.4399275176047754, "x4": 2.468759070095157, "x5": 0.3654897526901542}}, null] -[[0, 0, 10], 1.0, {"submitted": 1557070789.5034196, "started": 1557070789.5035017, "finished": 1557070789.5084038}, {"loss": 0.3228479482383374, "info": {"x0": -3.087151153511897, "x1": 7.4917241105521475, "x2": 4.260200259022925, "x3": -3.8474102489740125, "x4": 1.066676795903795, "x5": 0.0394212552608415}}, null] -[[0, 0, 11], 1.0, {"submitted": 1557070789.5100935, "started": 1557070789.5101566, "finished": 1557070789.5161283}, {"loss": 0.22791632450068083, "info": {"x0": -3.7024709221062997, "x1": 4.161056346591176, "x2": 6.256559606459392, "x3": -0.8351506348893194, "x4": 3.5241939798544215, "x5": 0.20922741464047995}}, null] -[[0, 0, 12], 1.0, {"submitted": 1557070789.518825, "started": 1557070789.518911, "finished": 1557070789.5255013}, {"loss": 0.05414320176777491, "info": {"x0": -3.140068936657643, "x1": 5.875232126488436, "x2": 6.7318766810990285, "x3": -0.6403832536770393, "x4": 3.5819418859517658, "x5": 0.3471313809010908}}, null] -[[0, 0, 13], 1.0, {"submitted": 1557070789.5276606, "started": 1557070789.5277646, "finished": 1557070789.5349555}, {"loss": 0.0759452904172224, "info": {"x0": -2.798234084731251, "x1": 4.035087113917372, "x2": 4.153363912068643, "x3": -1.4014661589103272, "x4": 1.4297901791778935, "x5": 0.11623420736071777}}, null] -[[0, 0, 14], 1.0, {"submitted": 1557070789.5386817, "started": 1557070789.5388024, "finished": 1557070789.5456793}, {"loss": 0.7950120634593411, "info": {"x0": -3.9870701742402206, "x1": 4.574394234853549, "x2": 4.208433711212004, "x3": -2.151788893643911, "x4": 4.167497817788468, "x5": 0.4638525534268948}}, null] -[[0, 0, 15], 1.0, {"submitted": 1557070789.602986, "started": 1557070789.6030574, "finished": 1557070789.6088922}, {"loss": 0.03925985432591826, "info": {"x0": -2.13381032387834, "x1": 5.3374710286038765, "x2": 4.4412980308908105, "x3": -0.7229908186131837, "x4": 1.0711979563035232, "x5": 0.13563284886077248}}, null] -[[0, 0, 16], 1.0, {"submitted": 1557070789.6110392, "started": 1557070789.6111078, "finished": 1557070789.616381}, {"loss": 0.1183427187937071, "info": {"x0": -2.8997051822562163, "x1": 6.23784094760557, "x2": 5.728462245440015, "x3": -0.9611051514284505, "x4": 4.435588317383909, "x5": 0.27385061776700376}}, null] -[[0, 0, 17], 1.0, {"submitted": 1557070789.6770334, "started": 1557070789.6771216, "finished": 1557070789.6825964}, {"loss": 0.029444891828159535, "info": {"x0": -2.499584396056671, "x1": 3.5206161632479636, "x2": 5.931593461484035, "x3": -2.1476443116285635, "x4": 1.3023307350564197, "x5": 0.06798968358002694}}, null] -[[0, 0, 18], 1.0, {"submitted": 1557070789.6849873, "started": 1557070789.685067, "finished": 1557070789.6904287}, {"loss": 1, "info": {"x0": -3.2340396315001043, "x1": 3.7698649147159813, "x2": 7.798210301215072, "x3": -0.9531104411938354, "x4": 4.6238425607415605, "x5": 0.02033995250516779}}, null] -[[0, 0, 19], 1.0, {"submitted": 1557070789.747684, "started": 1557070789.747782, "finished": 1557070789.7530165}, {"loss": 0.06757843564425567, "info": {"x0": -2.0701314395274895, "x1": 3.97943491600272, "x2": 6.947181730241335, "x3": -1.683950954628389, "x4": 2.8026204836409727, "x5": 0.36367440934958006}}, null] -[[0, 0, 20], 1.0, {"submitted": 1557070789.755349, "started": 1557070789.7554305, "finished": 1557070789.7607079}, {"loss": 0.8482703120832061, "info": {"x0": -5.242310302107251, "x1": 3.899337345323871, "x2": 7.254408394613395, "x3": -2.8198336896749963, "x4": 1.1659457469408214, "x5": 0.22076282517357926}}, null] -[[0, 0, 21], 1.0, {"submitted": 1557070789.7627342, "started": 1557070789.7627938, "finished": 1557070789.768617}, {"loss": 0.7240547033124217, "info": {"x0": -4.00840214143688, "x1": 6.629287080177661, "x2": 5.308072571837621, "x3": -2.403308661955211, "x4": 4.278304141195038, "x5": 0.16254170156722086}}, null] -[[0, 0, 22], 1.0, {"submitted": 1557070789.830148, "started": 1557070789.8302372, "finished": 1557070789.8359292}, {"loss": 0.04617859748516558, "info": {"x0": -2.0501173760755695, "x1": 4.321521594032905, "x2": 7.202243362046607, "x3": -2.026538469220439, "x4": 2.2697187413421425, "x5": 0.3988220438261123}}, null] -[[0, 0, 23], 1.0, {"submitted": 1557070789.890409, "started": 1557070789.890496, "finished": 1557070789.8957734}, {"loss": 0.12204344294192038, "info": {"x0": -3.417840765995086, "x1": 6.143220297828204, "x2": 7.5488551948077545, "x3": -0.2698630901946517, "x4": 3.4167874274553496, "x5": 0.4072343286985825}}, null] -[[0, 0, 24], 1.0, {"submitted": 1557070789.9505696, "started": 1557070789.9506397, "finished": 1557070789.9555068}, {"loss": 0.03829444445915407, "info": {"x0": -2.3267331774935593, "x1": 6.649183833203084, "x2": 4.986582964462329, "x3": -0.4489842822750445, "x4": 1.069967683624547, "x5": 0.10358378957545529}}, null] -[[0, 0, 25], 1.0, {"submitted": 1557070789.9575622, "started": 1557070789.9576225, "finished": 1557070789.9624908}, {"loss": 0.8545454516503375, "info": {"x0": -5.0658926429423765, "x1": 3.259665466921875, "x2": 7.627769017088406, "x3": -0.495223771075723, "x4": 4.171985987445563, "x5": 0.4816851091391234}}, null] -[[0, 0, 26], 1.0, {"submitted": 1557070790.0238104, "started": 1557070790.0238822, "finished": 1557070790.029029}, {"loss": 0.06781978699246052, "info": {"x0": -2.0018102179041217, "x1": 4.364758082631843, "x2": 4.528289704607192, "x3": -0.2478459477570345, "x4": 1.2120041021506796, "x5": 0.20636905471787856}}, null] -[[0, 0, 0], 3.0, {"submitted": 1557070790.030932, "started": 1557070790.030995, "finished": 1557070790.0372818}, {"loss": 0.03523733084564331, "info": {"x0": -2.2927623764348515, "x1": 4.10202601920724, "x2": 6.082980287865053, "x3": -0.407264321475433, "x4": 3.696376388961349, "x5": 0.19357759071381558}}, null] -[[0, 0, 1], 3.0, {"submitted": 1557070790.0382564, "started": 1557070790.038319, "finished": 1557070790.0443044}, {"loss": 0.03612228235887697, "info": {"x0": -2.2006896538485177, "x1": 3.7676012547513738, "x2": 4.628923843919429, "x3": -1.981319052252175, "x4": 2.5096875605409, "x5": 0.10010334544284338}}, null] -[[0, 0, 9], 3.0, {"submitted": 1557070790.0451145, "started": 1557070790.0451992, "finished": 1557070790.0524106}, {"loss": 0.034513273175838764, "info": {"x0": -2.156399168214587, "x1": 3.4284793936246163, "x2": 5.399641228128528, "x3": -1.4399275176047754, "x4": 2.468759070095157, "x5": 0.3654897526901542}}, null] -[[0, 0, 12], 3.0, {"submitted": 1557070790.0537326, "started": 1557070790.0538383, "finished": 1557070790.0606387}, {"loss": 0.03137570503059166, "info": {"x0": -3.140068936657643, "x1": 5.875232126488436, "x2": 6.7318766810990285, "x3": -0.6403832536770393, "x4": 3.5819418859517658, "x5": 0.3471313809010908}}, null] -[[0, 0, 15], 3.0, {"submitted": 1557070790.061725, "started": 1557070790.0617986, "finished": 1557070790.067913}, {"loss": 0.033628317831220514, "info": {"x0": -2.13381032387834, "x1": 5.3374710286038765, "x2": 4.4412980308908105, "x3": -0.7229908186131837, "x4": 1.0711979563035232, "x5": 0.13563284886077248}}, null] -[[0, 0, 17], 3.0, {"submitted": 1557070790.0685763, "started": 1557070790.0686293, "finished": 1557070790.073299}, {"loss": 0.024054706561785988, "info": {"x0": -2.499584396056671, "x1": 3.5206161632479636, "x2": 5.931593461484035, "x3": -2.1476443116285635, "x4": 1.3023307350564197, "x5": 0.06798968358002694}}, null] -[[0, 0, 19], 3.0, {"submitted": 1557070790.0740602, "started": 1557070790.0741174, "finished": 1557070790.0800052}, {"loss": 0.03580048195508251, "info": {"x0": -2.0701314395274895, "x1": 3.97943491600272, "x2": 6.947181730241335, "x3": -1.683950954628389, "x4": 2.8026204836409727, "x5": 0.36367440934958006}}, null] -[[0, 0, 22], 3.0, {"submitted": 1557070790.0813572, "started": 1557070790.081429, "finished": 1557070790.0869956}, {"loss": 0.026468220427452494, "info": {"x0": -2.0501173760755695, "x1": 4.321521594032905, "x2": 7.202243362046607, "x3": -2.026538469220439, "x4": 2.2697187413421425, "x5": 0.3988220438261123}}, null] -[[0, 0, 24], 3.0, {"submitted": 1557070790.0880675, "started": 1557070790.088146, "finished": 1557070790.0944064}, {"loss": 0.03362831428754935, "info": {"x0": -2.3267331774935593, "x1": 6.649183833203084, "x2": 4.986582964462329, "x3": -0.4489842822750445, "x4": 1.069967683624547, "x5": 0.10358378957545529}}, null] -[[0, 0, 12], 9.0, {"submitted": 1557070790.0963182, "started": 1557070790.0964127, "finished": 1557070790.1030736}, {"loss": 0.0249396627072068, "info": {"x0": -3.140068936657643, "x1": 5.875232126488436, "x2": 6.7318766810990285, "x3": -0.6403832536770393, "x4": 3.5819418859517658, "x5": 0.3471313809010908}}, null] -[[0, 0, 17], 9.0, {"submitted": 1557070790.104061, "started": 1557070790.1041458, "finished": 1557070790.1108587}, {"loss": 0.02172164100365396, "info": {"x0": -2.499584396056671, "x1": 3.5206161632479636, "x2": 5.931593461484035, "x3": -2.1476443116285635, "x4": 1.3023307350564197, "x5": 0.06798968358002694}}, null] -[[0, 0, 22], 9.0, {"submitted": 1557070790.1118243, "started": 1557070790.111899, "finished": 1557070790.118764}, {"loss": 0.020836683832055024, "info": {"x0": -2.0501173760755695, "x1": 4.321521594032905, "x2": 7.202243362046607, "x3": -2.026538469220439, "x4": 2.2697187413421425, "x5": 0.3988220438261123}}, null] -[[0, 0, 22], 27.0, {"submitted": 1557070790.1198497, "started": 1557070790.1199274, "finished": 1557070790.1259043}, {"loss": 0.020917134494044955, "info": {"x0": -2.0501173760755695, "x1": 4.321521594032905, "x2": 7.202243362046607, "x3": -2.026538469220439, "x4": 2.2697187413421425, "x5": 0.3988220438261123}}, null] -[[1, 0, 0], 3.0, {"submitted": 1557070790.1866672, "started": 1557070790.1867564, "finished": 1557070790.1923947}, {"loss": 0.05728077354780244, "info": {"x0": -2.6618744656084443, "x1": 6.866585576939361, "x2": 4.697433435128725, "x3": -0.5980844348911489, "x4": 1.2673567829181023, "x5": 0.20417074737385704}}, null] -[[1, 0, 1], 3.0, {"submitted": 1557070790.2464101, "started": 1557070790.2465167, "finished": 1557070790.2519608}, {"loss": 0.020997587083715262, "info": {"x0": -2.0259059831628545, "x1": 7.287713810049669, "x2": 6.695956554545555, "x3": -1.0249049133886796, "x4": 1.0664597966727285, "x5": 0.07672754384422112}}, null] -[[1, 0, 2], 3.0, {"submitted": 1557070790.3119757, "started": 1557070790.3120654, "finished": 1557070790.3172565}, {"loss": 0.12405470515678507, "info": {"x0": -2.8326274270463743, "x1": 7.85480072209326, "x2": 4.821659095194331, "x3": -0.6549476388512168, "x4": 1.26369129056717, "x5": 0.3463551630201136}}, null] -[[1, 0, 3], 3.0, {"submitted": 1557070790.319153, "started": 1557070790.319232, "finished": 1557070790.3244574}, {"loss": 0.7727272703389511, "info": {"x0": -4.724311843813028, "x1": 6.763579544372359, "x2": 5.039855175248665, "x3": -0.14786323155926961, "x4": 4.021143359776977, "x5": 0.2098067847395722}}, null] -[[1, 0, 4], 3.0, {"submitted": 1557070790.3263044, "started": 1557070790.3264318, "finished": 1557070790.3320832}, {"loss": 0.8988736918393885, "info": {"x0": -5.626931800429156, "x1": 5.87132993353489, "x2": 4.403737139354723, "x3": -3.60929269102522, "x4": 3.3098384563262826, "x5": 0.14531134377198945}}, null] -[[1, 0, 5], 3.0, {"submitted": 1557070790.3919334, "started": 1557070790.3920026, "finished": 1557070790.3970137}, {"loss": 0.11343523345929618, "info": {"x0": -2.7218799937660654, "x1": 6.118143638237054, "x2": 6.189299295328454, "x3": -0.3654737098675236, "x4": 4.998272765401259, "x5": 0.48740911510353285}}, null] -[[1, 0, 6], 3.0, {"submitted": 1557070790.454903, "started": 1557070790.4549794, "finished": 1557070790.4599729}, {"loss": 0.027916332185028637, "info": {"x0": -3.152693669394508, "x1": 3.20873514800979, "x2": 7.556180510948327, "x3": -2.68241108827662, "x4": 1.1025323748505569, "x5": 0.05169748567387167}}, null] -[[1, 0, 7], 3.0, {"submitted": 1557070790.518226, "started": 1557070790.5183089, "finished": 1557070790.5244913}, {"loss": 0.021882540289663265, "info": {"x0": -2.329448768704196, "x1": 5.59958832700479, "x2": 7.214272263891258, "x3": -2.5372191486607787, "x4": 1.2571108449930966, "x5": 0.024481519643867897}}, null] -[[1, 0, 8], 3.0, {"submitted": 1557070790.579615, "started": 1557070790.5796804, "finished": 1557070790.5853763}, {"loss": 0.028720838905627565, "info": {"x0": -3.1707151082130776, "x1": 3.3039820317417465, "x2": 7.341803424286805, "x3": -3.5641515524517375, "x4": 1.6217616201991552, "x5": 0.07501040528915127}}, null] -[[1, 0, 1], 9.0, {"submitted": 1557070790.5873044, "started": 1557070790.587372, "finished": 1557070790.593017}, {"loss": 0.020997587083715262, "info": {"x0": -2.0259059831628545, "x1": 7.287713810049669, "x2": 6.695956554545555, "x3": -1.0249049133886796, "x4": 1.0664597966727285, "x5": 0.07672754384422112}}, null] -[[1, 0, 6], 9.0, {"submitted": 1557070790.5937889, "started": 1557070790.5938427, "finished": 1557070790.598784}, {"loss": 0.02357200334269679, "info": {"x0": -3.152693669394508, "x1": 3.20873514800979, "x2": 7.556180510948327, "x3": -2.68241108827662, "x4": 1.1025323748505569, "x5": 0.05169748567387167}}, null] -[[1, 0, 7], 9.0, {"submitted": 1557070790.599581, "started": 1557070790.5996356, "finished": 1557070790.6048465}, {"loss": 0.021560738308239825, "info": {"x0": -2.329448768704196, "x1": 5.59958832700479, "x2": 7.214272263891258, "x3": -2.5372191486607787, "x4": 1.2571108449930966, "x5": 0.024481519643867897}}, null] -[[1, 0, 1], 27.0, {"submitted": 1557070790.6056976, "started": 1557070790.605778, "finished": 1557070790.6108274}, {"loss": 0.020997587083715262, "info": {"x0": -2.0259059831628545, "x1": 7.287713810049669, "x2": 6.695956554545555, "x3": -1.0249049133886796, "x4": 1.0664597966727285, "x5": 0.07672754384422112}}, null] -[[2, 0, 0], 9.0, {"submitted": 1557070790.6705763, "started": 1557070790.6706574, "finished": 1557070790.6767864}, {"loss": 0.14827030778698447, "info": {"x0": -4.197907335330847, "x1": 3.2721562978814243, "x2": 6.929718760889038, "x3": -3.638521374994318, "x4": 1.8870154868343958, "x5": 0.020798410407542517}}, null] -[[2, 0, 1], 9.0, {"submitted": 1557070790.732579, "started": 1557070790.7326686, "finished": 1557070790.7376978}, {"loss": 0.038857602550440615, "info": {"x0": -3.6195794909261743, "x1": 4.475419023512174, "x2": 7.245149895361962, "x3": -2.3505395295841396, "x4": 1.4121442386398317, "x5": 0.0010143298192787087}}, null] -[[2, 0, 2], 9.0, {"submitted": 1557070790.7976525, "started": 1557070790.7977252, "finished": 1557070790.802692}, {"loss": 0.33032984592002534, "info": {"x0": -4.594294529185004, "x1": 5.099763452556693, "x2": 7.34675326385886, "x3": -3.62029909833699, "x4": 1.1586081236828754, "x5": 0.05847291066471331}}, null] -[[2, 0, 3], 9.0, {"submitted": 1557070790.8043783, "started": 1557070790.8044438, "finished": 1557070790.8100066}, {"loss": 0.8106194677132565, "info": {"x0": -4.923636656628675, "x1": 4.156104602956297, "x2": 5.34813191090757, "x3": -2.7184017730044503, "x4": 3.5240114336607506, "x5": 0.1428528729364864}}, null] -[[2, 0, 4], 9.0, {"submitted": 1557070790.8116348, "started": 1557070790.8116906, "finished": 1557070790.817261}, {"loss": 0.02502011388708102, "info": {"x0": -3.0486431078690663, "x1": 3.806432947610463, "x2": 6.808030035722565, "x3": -3.562100895108224, "x4": 2.705235923702903, "x5": 0.2466459693532912}}, null] -[[2, 0, 5], 9.0, {"submitted": 1557070790.8754826, "started": 1557070790.875547, "finished": 1557070790.880794}, {"loss": 0.019790827340880234, "info": {"x0": -2.5427914005184418, "x1": 5.306227605722508, "x2": 6.788815173973882, "x3": -3.573082201870638, "x4": 1.100208501284884, "x5": 0.021842575674359266}}, null] -[[2, 0, 4], 27.0, {"submitted": 1557070790.8820171, "started": 1557070790.8820841, "finished": 1557070790.8873754}, {"loss": 0.02477876242379078, "info": {"x0": -3.0486431078690663, "x1": 3.806432947610463, "x2": 6.808030035722565, "x3": -3.562100895108224, "x4": 2.705235923702903, "x5": 0.2466459693532912}}, null] -[[2, 0, 5], 27.0, {"submitted": 1557070790.88821, "started": 1557070790.8882911, "finished": 1557070790.893175}, {"loss": 0.019790827340880234, "info": {"x0": -2.5427914005184418, "x1": 5.306227605722508, "x2": 6.788815173973882, "x3": -3.573082201870638, "x4": 1.100208501284884, "x5": 0.021842575674359266}}, null] -[[3, 0, 0], 27.0, {"submitted": 1557070790.950351, "started": 1557070790.9504364, "finished": 1557070790.9560058}, {"loss": 0.02220434718139693, "info": {"x0": -2.4679247201831354, "x1": 5.931992393435663, "x2": 7.267953161263874, "x3": -2.8850281071144277, "x4": 1.5214974964908892, "x5": 0.03344425454107187}}, null] -[[3, 0, 1], 27.0, {"submitted": 1557070790.9576216, "started": 1557070790.9576988, "finished": 1557070790.9630969}, {"loss": 0.9160096542260352, "info": {"x0": -5.588786318132398, "x1": 7.503627561867791, "x2": 5.06256357904312, "x3": -1.0938635679355984, "x4": 2.0842847711707955, "x5": 0.37838881852709344}}, null] -[[3, 0, 2], 27.0, {"submitted": 1557070790.964671, "started": 1557070790.9647486, "finished": 1557070790.9702299}, {"loss": 0.02888173815807027, "info": {"x0": -2.3239386839396956, "x1": 3.7737499504202994, "x2": 5.248524722340424, "x3": -1.1941940884028543, "x4": 2.1190017260237024, "x5": 0.3950256401074026}}, null] -[[3, 0, 3], 27.0, {"submitted": 1557070790.972206, "started": 1557070790.9722857, "finished": 1557070790.9777424}, {"loss": 0.020112626987029158, "info": {"x0": -2.750902087993969, "x1": 3.4301549381969356, "x2": 7.234621368571895, "x3": -1.0780991499135584, "x4": 3.9959789911717234, "x5": 0.13962659468792998}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/hyperband/configs.json deleted file mode 100644 index 1ce5fea..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/hyperband/configs.json +++ /dev/null @@ -1,46 +0,0 @@ -[[0, 0, 0], {"x0": -2.2795959427289203, "x1": 3.5264747251601114, "x2": 5.114140457767313, "x3": -2.2872248001095947, "x4": 3.5028621769958685, "x5": 0.2730245471534928}, {}] -[[0, 0, 1], {"x0": -3.205971195480498, "x1": 5.113764037219854, "x2": 7.840264113034211, "x3": -2.853143032302125, "x4": 1.585289920709866, "x5": 0.4815324409133795}, {}] -[[0, 0, 2], {"x0": -4.305804662473797, "x1": 6.928517655157605, "x2": 4.946939705993737, "x3": -2.8546041699423053, "x4": 4.218615189000575, "x5": 0.2799120134588147}, {}] -[[0, 0, 3], {"x0": -2.6477684259092378, "x1": 5.1828499215799635, "x2": 5.154896865872299, "x3": -2.2252725959919295, "x4": 2.0400100654135818, "x5": 0.4924376280899011}, {}] -[[0, 0, 4], {"x0": -3.33885296226477, "x1": 6.295611291277085, "x2": 4.85783969809744, "x3": -1.9531481935858386, "x4": 2.778522869312389, "x5": 0.10140225772577866}, {}] -[[0, 0, 5], {"x0": -4.155972760442102, "x1": 6.860736175896708, "x2": 6.96827113287152, "x3": -2.393035309947668, "x4": 4.304011024198619, "x5": 0.45939944888278367}, {}] -[[0, 0, 6], {"x0": -3.202018573519645, "x1": 5.505990612305817, "x2": 6.416644315337212, "x3": -1.75393235527907, "x4": 2.769023353582702, "x5": 0.06233084767177177}, {}] -[[0, 0, 7], {"x0": -4.858533077360928, "x1": 5.757514059561001, "x2": 7.537810734705073, "x3": -0.6035776851400891, "x4": 3.3755364864477326, "x5": 0.2826236610658395}, {}] -[[0, 0, 8], {"x0": -3.3826627559035214, "x1": 4.035055276479945, "x2": 7.919017059859466, "x3": -1.598211099490463, "x4": 3.9445021939295803, "x5": 0.42922049043629934}, {}] -[[0, 0, 9], {"x0": -2.626718317930279, "x1": 7.907737002869974, "x2": 7.206702265305454, "x3": -3.542221493565954, "x4": 4.044355876769773, "x5": 0.2705341978263208}, {}] -[[0, 0, 10], {"x0": -2.4143406854501244, "x1": 4.552575092856836, "x2": 6.432342945269201, "x3": -0.9413906016957214, "x4": 4.990721403250556, "x5": 0.11790345835029137}, {}] -[[0, 0, 11], {"x0": -3.9004197584051283, "x1": 7.289846509356639, "x2": 4.295264064346355, "x3": -3.961133823987758, "x4": 4.096123540691046, "x5": 0.48806202362826834}, {}] -[[0, 0, 12], {"x0": -5.799763748275241, "x1": 6.0341351428751535, "x2": 4.5585920345429845, "x3": -2.3212640281361465, "x4": 2.0111413286853677, "x5": 0.2678155507831945}, {}] -[[0, 0, 13], {"x0": -5.53384684412845, "x1": 3.504225930059748, "x2": 5.01257595656935, "x3": -0.918235593635071, "x4": 2.8715099390332517, "x5": 0.19286124886484451}, {}] -[[0, 0, 14], {"x0": -3.334851062503644, "x1": 4.805993827738223, "x2": 4.521542409656389, "x3": -2.0279424232738728, "x4": 3.430607310087128, "x5": 0.44587238168421855}, {}] -[[0, 0, 15], {"x0": -3.87932602263108, "x1": 7.742234039844078, "x2": 6.228306710059281, "x3": -3.873027546971184, "x4": 1.7662219984454328, "x5": 0.4796088857310165}, {}] -[[0, 0, 16], {"x0": -2.193530307004775, "x1": 5.995199977599102, "x2": 4.595867694949673, "x3": -0.9061056986754701, "x4": 4.797207006150041, "x5": 0.15751045867114483}, {}] -[[0, 0, 17], {"x0": -4.912153555768539, "x1": 6.223280533023463, "x2": 7.202927531669994, "x3": -3.485632536203478, "x4": 2.2422763876218084, "x5": 0.3850009522617323}, {}] -[[0, 0, 18], {"x0": -4.008492715992693, "x1": 5.126875708696247, "x2": 7.4201091287379874, "x3": -3.5037111156214085, "x4": 4.906680530337351, "x5": 0.435659164281601}, {}] -[[0, 0, 19], {"x0": -2.211450673354335, "x1": 4.534964611931592, "x2": 5.6349954671189, "x3": -2.9446521474094625, "x4": 4.1422527096682105, "x5": 0.11578570301452135}, {}] -[[0, 0, 20], {"x0": -3.76569485344129, "x1": 7.490497286417272, "x2": 6.782905459459198, "x3": -0.07930322636121279, "x4": 1.3422493001735512, "x5": 0.0459586173996811}, {}] -[[0, 0, 21], {"x0": -3.7511929046616226, "x1": 5.527805720095563, "x2": 5.730813818666815, "x3": -3.1966901566054937, "x4": 2.598898675271915, "x5": 0.3763704739406847}, {}] -[[0, 0, 22], {"x0": -5.028463044678748, "x1": 7.0358990781978, "x2": 6.654629213428475, "x3": -1.4530937036181584, "x4": 4.674061902898348, "x5": 0.29324622422237595}, {}] -[[0, 0, 23], {"x0": -3.42425061193442, "x1": 4.946096539290952, "x2": 4.395287009237858, "x3": -0.27771551708270037, "x4": 1.6887062865183866, "x5": 0.3891850070285711}, {}] -[[0, 0, 24], {"x0": -4.367378613423119, "x1": 5.8494835747303915, "x2": 4.864900180386291, "x3": -3.7867501817050933, "x4": 3.289639361881993, "x5": 0.41814601290052494}, {}] -[[0, 0, 25], {"x0": -3.6761877798931732, "x1": 6.434761712958093, "x2": 7.422894610568735, "x3": -1.6075326600066546, "x4": 4.604213841192108, "x5": 0.42994947382524507}, {}] -[[0, 0, 26], {"x0": -4.271579263199567, "x1": 3.0503054595588655, "x2": 7.5876643374154185, "x3": -1.1285866404086207, "x4": 1.7885451147380005, "x5": 0.06858553843163273}, {}] -[[1, 0, 0], {"x0": -5.728937172651032, "x1": 6.122452238167181, "x2": 6.862045381718557, "x3": -0.4340754186040767, "x4": 4.406987969417495, "x5": 0.10386458128258119}, {}] -[[1, 0, 1], {"x0": -2.7209830997018045, "x1": 5.981342549401124, "x2": 4.9490983646644775, "x3": -1.3826963917616228, "x4": 3.3153298736185013, "x5": 0.3208502579926111}, {}] -[[1, 0, 2], {"x0": -4.881159338303487, "x1": 6.249736862987752, "x2": 5.828560870746341, "x3": -0.5461792376363861, "x4": 3.525295398788026, "x5": 0.033956706864178066}, {}] -[[1, 0, 3], {"x0": -3.3398896925190837, "x1": 4.39446703875767, "x2": 6.444126421445626, "x3": -3.6885290361455545, "x4": 3.23533887891913, "x5": 0.3510919180607738}, {}] -[[1, 0, 4], {"x0": -5.726034433947746, "x1": 3.9485467272362564, "x2": 5.627206761645219, "x3": -1.7074429956550632, "x4": 1.1919344952989088, "x5": 0.3944233989192266}, {}] -[[1, 0, 5], {"x0": -3.376081816837792, "x1": 3.5774473471963275, "x2": 6.61298895417713, "x3": -1.8935512777248715, "x4": 1.3779457054789694, "x5": 0.02829098696468757}, {}] -[[1, 0, 6], {"x0": -3.036469411701516, "x1": 6.141549817865387, "x2": 6.501612147101886, "x3": -0.5340375526664984, "x4": 2.1980517394189314, "x5": 0.005951283808038665}, {}] -[[1, 0, 7], {"x0": -4.083029009626211, "x1": 7.307453588275363, "x2": 4.2518363609484915, "x3": -2.059354945464095, "x4": 1.149088838555366, "x5": 0.18944553724557445}, {}] -[[1, 0, 8], {"x0": -3.401173943351156, "x1": 6.252728137476985, "x2": 4.787039616591041, "x3": -0.8969898327567067, "x4": 2.7271872808273527, "x5": 0.08969778849611476}, {}] -[[2, 0, 0], {"x0": -4.662919157006925, "x1": 5.0994182638068155, "x2": 4.511383993357866, "x3": -0.17815076106034278, "x4": 3.8015088420213, "x5": 0.024444273167373687}, {}] -[[2, 0, 1], {"x0": -5.895427963360699, "x1": 6.797073485936384, "x2": 5.808208060291019, "x3": -3.5678927691970554, "x4": 2.3244435094553055, "x5": 0.09766744181490283}, {}] -[[2, 0, 2], {"x0": -3.6390207999518243, "x1": 7.988563983034922, "x2": 4.305217744200337, "x3": -1.817681608598921, "x4": 1.8545343730134594, "x5": 0.2637824885569382}, {}] -[[2, 0, 3], {"x0": -2.7876430908616667, "x1": 4.366742630933615, "x2": 6.732086001521868, "x3": -0.6889692932704374, "x4": 4.237174880807965, "x5": 0.048157957323658296}, {}] -[[2, 0, 4], {"x0": -5.579529401073048, "x1": 6.351762933624331, "x2": 4.169228628518024, "x3": -2.9346950324591483, "x4": 2.7483658715568633, "x5": 0.3338626005200604}, {}] -[[2, 0, 5], {"x0": -4.633117994638786, "x1": 3.7971448904474556, "x2": 4.430830528183911, "x3": -2.1399540143681506, "x4": 4.0864070491099955, "x5": 0.2058849883892353}, {}] -[[3, 0, 0], {"x0": -3.6374009226899773, "x1": 7.243985340984489, "x2": 7.627119464750988, "x3": -2.0994756359975497, "x4": 4.226692468802842, "x5": 0.4933361678355189}, {}] -[[3, 0, 1], {"x0": -2.165887040367549, "x1": 4.941398459137287, "x2": 5.533920954713167, "x3": -2.407347103465903, "x4": 3.878644063621634, "x5": 0.29161815454522877}, {}] -[[3, 0, 2], {"x0": -4.8140488282596285, "x1": 5.032772506849918, "x2": 7.09315306012039, "x3": -2.464496672307114, "x4": 1.330449706381407, "x5": 0.4868765712582}, {}] -[[3, 0, 3], {"x0": -2.085690185630336, "x1": 5.160832591468942, "x2": 6.654393827816824, "x3": -1.9257838527162874, "x4": 3.7948744504299894, "x5": 0.050157418950039334}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/hyperband/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/hyperband/results.json deleted file mode 100644 index aae464e..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/hyperband/results.json +++ /dev/null @@ -1,65 +0,0 @@ -[[0, 0, 0], 1.0, {"submitted": 1557070791.6273117, "started": 1557070791.627407, "finished": 1557070791.6345472}, {"loss": 0.11544650162503496, "info": {"x0": -2.2795959427289203, "x1": 3.5264747251601114, "x2": 5.114140457767313, "x3": -2.2872248001095947, "x4": 3.5028621769958685, "x5": 0.2730245471534928}}, null] -[[0, 0, 1], 1.0, {"submitted": 1557070791.636252, "started": 1557070791.6363664, "finished": 1557070791.6423726}, {"loss": 0.05526950673911233, "info": {"x0": -3.205971195480498, "x1": 5.113764037219854, "x2": 7.840264113034211, "x3": -2.853143032302125, "x4": 1.585289920709866, "x5": 0.4815324409133795}}, null] -[[0, 0, 2], 1.0, {"submitted": 1557070791.6435425, "started": 1557070791.6435974, "finished": 1557070791.6485457}, {"loss": 0.8955752211448319, "info": {"x0": -4.305804662473797, "x1": 6.928517655157605, "x2": 4.946939705993737, "x3": -2.8546041699423053, "x4": 4.218615189000575, "x5": 0.2799120134588147}}, null] -[[0, 0, 3], 1.0, {"submitted": 1557070791.6494844, "started": 1557070791.64954, "finished": 1557070791.655627}, {"loss": 0.07087691457925645, "info": {"x0": -2.6477684259092378, "x1": 5.1828499215799635, "x2": 5.154896865872299, "x3": -2.2252725959919295, "x4": 2.0400100654135818, "x5": 0.4924376280899011}}, null] -[[0, 0, 4], 1.0, {"submitted": 1557070791.6567018, "started": 1557070791.6567907, "finished": 1557070791.6621919}, {"loss": 0.3268704730684683, "info": {"x0": -3.33885296226477, "x1": 6.295611291277085, "x2": 4.85783969809744, "x3": -1.9531481935858386, "x4": 2.778522869312389, "x5": 0.10140225772577866}}, null] -[[0, 0, 5], 1.0, {"submitted": 1557070791.663189, "started": 1557070791.6632488, "finished": 1557070791.6685402}, {"loss": 0.6693483508206239, "info": {"x0": -4.155972760442102, "x1": 6.860736175896708, "x2": 6.96827113287152, "x3": -2.393035309947668, "x4": 4.304011024198619, "x5": 0.45939944888278367}}, null] -[[0, 0, 6], 1.0, {"submitted": 1557070791.6695042, "started": 1557070791.6695619, "finished": 1557070791.675034}, {"loss": 0.06926790039000355, "info": {"x0": -3.202018573519645, "x1": 5.505990612305817, "x2": 6.416644315337212, "x3": -1.75393235527907, "x4": 2.769023353582702, "x5": 0.06233084767177177}}, null] -[[0, 0, 7], 1.0, {"submitted": 1557070791.676345, "started": 1557070791.676444, "finished": 1557070791.681613}, {"loss": 0.7674979869441121, "info": {"x0": -4.858533077360928, "x1": 5.757514059561001, "x2": 7.537810734705073, "x3": -0.6035776851400891, "x4": 3.3755364864477326, "x5": 0.2826236610658395}}, null] -[[0, 0, 8], 1.0, {"submitted": 1557070791.6827068, "started": 1557070791.682779, "finished": 1557070791.688201}, {"loss": 0.13041029292445744, "info": {"x0": -3.3826627559035214, "x1": 4.035055276479945, "x2": 7.919017059859466, "x3": -1.598211099490463, "x4": 3.9445021939295803, "x5": 0.42922049043629934}}, null] -[[0, 0, 9], 1.0, {"submitted": 1557070791.68916, "started": 1557070791.6893806, "finished": 1557070791.6988492}, {"loss": 0.046259058025318676, "info": {"x0": -2.626718317930279, "x1": 7.907737002869974, "x2": 7.206702265305454, "x3": -3.542221493565954, "x4": 4.044355876769773, "x5": 0.2705341978263208}}, null] -[[0, 0, 10], 1.0, {"submitted": 1557070791.7004755, "started": 1557070791.7005708, "finished": 1557070791.7074416}, {"loss": 0.04947707409448234, "info": {"x0": -2.4143406854501244, "x1": 4.552575092856836, "x2": 6.432342945269201, "x3": -0.9413906016957214, "x4": 4.990721403250556, "x5": 0.11790345835029137}}, null] -[[0, 0, 11], 1.0, {"submitted": 1557070791.7085903, "started": 1557070791.7086678, "finished": 1557070791.7146301}, {"loss": 0.8670957346984025, "info": {"x0": -3.9004197584051283, "x1": 7.289846509356639, "x2": 4.295264064346355, "x3": -3.961133823987758, "x4": 4.096123540691046, "x5": 0.48806202362826834}}, null] -[[0, 0, 12], 1.0, {"submitted": 1557070791.7157145, "started": 1557070791.7157838, "finished": 1557070791.7219217}, {"loss": 0.9118262269373082, "info": {"x0": -5.799763748275241, "x1": 6.0341351428751535, "x2": 4.5585920345429845, "x3": -2.3212640281361465, "x4": 2.0111413286853677, "x5": 0.2678155507831945}}, null] -[[0, 0, 13], 1.0, {"submitted": 1557070791.7231424, "started": 1557070791.7232192, "finished": 1557070791.7305124}, {"loss": 0.8957361201083621, "info": {"x0": -5.53384684412845, "x1": 3.504225930059748, "x2": 5.01257595656935, "x3": -0.918235593635071, "x4": 2.8715099390332517, "x5": 0.19286124886484451}}, null] -[[0, 0, 14], 1.0, {"submitted": 1557070791.7316859, "started": 1557070791.731779, "finished": 1557070791.7371235}, {"loss": 0.49605791747917694, "info": {"x0": -3.334851062503644, "x1": 4.805993827738223, "x2": 4.521542409656389, "x3": -2.0279424232738728, "x4": 3.430607310087128, "x5": 0.44587238168421855}}, null] -[[0, 0, 15], 1.0, {"submitted": 1557070791.7383857, "started": 1557070791.7384627, "finished": 1557070791.7438006}, {"loss": 0.6847144004769701, "info": {"x0": -3.87932602263108, "x1": 7.742234039844078, "x2": 6.228306710059281, "x3": -3.873027546971184, "x4": 1.7662219984454328, "x5": 0.4796088857310165}}, null] -[[0, 0, 16], 1.0, {"submitted": 1557070791.7447178, "started": 1557070791.7447817, "finished": 1557070791.7498243}, {"loss": 0.06114239694606079, "info": {"x0": -2.193530307004775, "x1": 5.995199977599102, "x2": 4.595867694949673, "x3": -0.9061056986754701, "x4": 4.797207006150041, "x5": 0.15751045867114483}}, null] -[[0, 0, 17], 1.0, {"submitted": 1557070791.7510097, "started": 1557070791.7510877, "finished": 1557070791.7557256}, {"loss": 0.8473853577572734, "info": {"x0": -4.912153555768539, "x1": 6.223280533023463, "x2": 7.202927531669994, "x3": -3.485632536203478, "x4": 2.2422763876218084, "x5": 0.3850009522617323}}, null] -[[0, 0, 18], 1.0, {"submitted": 1557070791.7566707, "started": 1557070791.7567413, "finished": 1557070791.7620144}, {"loss": 0.350442475322649, "info": {"x0": -4.008492715992693, "x1": 5.126875708696247, "x2": 7.4201091287379874, "x3": -3.5037111156214085, "x4": 4.906680530337351, "x5": 0.435659164281601}}, null] -[[0, 0, 19], 1.0, {"submitted": 1557070791.7631261, "started": 1557070791.7631922, "finished": 1557070791.7681766}, {"loss": 0.04786805942570693, "info": {"x0": -2.211450673354335, "x1": 4.534964611931592, "x2": 5.6349954671189, "x3": -2.9446521474094625, "x4": 4.1422527096682105, "x5": 0.11578570301452135}}, null] -[[0, 0, 20], 1.0, {"submitted": 1557070791.769207, "started": 1557070791.769273, "finished": 1557070791.7738283}, {"loss": 0.1136765950453061, "info": {"x0": -3.76569485344129, "x1": 7.490497286417272, "x2": 6.782905459459198, "x3": -0.07930322636121279, "x4": 1.3422493001735512, "x5": 0.0459586173996811}}, null] -[[0, 0, 21], 1.0, {"submitted": 1557070791.774901, "started": 1557070791.774987, "finished": 1557070791.7795439}, {"loss": 0.3491552706121535, "info": {"x0": -3.7511929046616226, "x1": 5.527805720095563, "x2": 5.730813818666815, "x3": -3.1966901566054937, "x4": 2.598898675271915, "x5": 0.3763704739406847}}, null] -[[0, 0, 22], 1.0, {"submitted": 1557070791.7805755, "started": 1557070791.7806466, "finished": 1557070791.7865262}, {"loss": 0.867900240921497, "info": {"x0": -5.028463044678748, "x1": 7.0358990781978, "x2": 6.654629213428475, "x3": -1.4530937036181584, "x4": 4.674061902898348, "x5": 0.29324622422237595}}, null] -[[0, 0, 23], 1.0, {"submitted": 1557070791.7878132, "started": 1557070791.787891, "finished": 1557070791.7931216}, {"loss": 0.35752211840327286, "info": {"x0": -3.42425061193442, "x1": 4.946096539290952, "x2": 4.395287009237858, "x3": -0.27771551708270037, "x4": 1.6887062865183866, "x5": 0.3891850070285711}}, null] -[[0, 0, 24], 1.0, {"submitted": 1557070791.794195, "started": 1557070791.7942576, "finished": 1557070791.8012104}, {"loss": 0.8859211582139027, "info": {"x0": -4.367378613423119, "x1": 5.8494835747303915, "x2": 4.864900180386291, "x3": -3.7867501817050933, "x4": 3.289639361881993, "x5": 0.41814601290052494}}, null] -[[0, 0, 25], 1.0, {"submitted": 1557070791.8026772, "started": 1557070791.8027942, "finished": 1557070791.8099246}, {"loss": 0.39364440545907253, "info": {"x0": -3.6761877798931732, "x1": 6.434761712958093, "x2": 7.422894610568735, "x3": -1.6075326600066546, "x4": 4.604213841192108, "x5": 0.42994947382524507}}, null] -[[0, 0, 26], 1.0, {"submitted": 1557070791.8119574, "started": 1557070791.8120666, "finished": 1557070791.821176}, {"loss": 0.34971841973876716, "info": {"x0": -4.271579263199567, "x1": 3.0503054595588655, "x2": 7.5876643374154185, "x3": -1.1285866404086207, "x4": 1.7885451147380005, "x5": 0.06858553843163273}}, null] -[[0, 0, 0], 3.0, {"submitted": 1557070791.8218374, "started": 1557070791.821944, "finished": 1557070791.827531}, {"loss": 0.0444086900327058, "info": {"x0": -2.2795959427289203, "x1": 3.5264747251601114, "x2": 5.114140457767313, "x3": -2.2872248001095947, "x4": 3.5028621769958685, "x5": 0.2730245471534928}}, null] -[[0, 0, 1], 3.0, {"submitted": 1557070791.8283014, "started": 1557070791.828357, "finished": 1557070791.8354993}, {"loss": 0.03676588774111036, "info": {"x0": -3.205971195480498, "x1": 5.113764037219854, "x2": 7.840264113034211, "x3": -2.853143032302125, "x4": 1.585289920709866, "x5": 0.4815324409133795}}, null] -[[0, 0, 3], 3.0, {"submitted": 1557070791.8361204, "started": 1557070791.8361712, "finished": 1557070791.8414137}, {"loss": 0.05349960267208127, "info": {"x0": -2.6477684259092378, "x1": 5.1828499215799635, "x2": 5.154896865872299, "x3": -2.2252725959919295, "x4": 2.0400100654135818, "x5": 0.4924376280899011}}, null] -[[0, 0, 6], 3.0, {"submitted": 1557070791.8420885, "started": 1557070791.8421574, "finished": 1557070791.8481886}, {"loss": 0.04175382230134138, "info": {"x0": -3.202018573519645, "x1": 5.505990612305817, "x2": 6.416644315337212, "x3": -1.75393235527907, "x4": 2.769023353582702, "x5": 0.06233084767177177}}, null] -[[0, 0, 9], 3.0, {"submitted": 1557070791.848776, "started": 1557070791.8488336, "finished": 1557070791.8543384}, {"loss": 0.03177796359610768, "info": {"x0": -2.626718317930279, "x1": 7.907737002869974, "x2": 7.206702265305454, "x3": -3.542221493565954, "x4": 4.044355876769773, "x5": 0.2705341978263208}}, null] -[[0, 0, 10], 3.0, {"submitted": 1557070791.8549273, "started": 1557070791.8549817, "finished": 1557070791.860638}, {"loss": 0.03185840967386268, "info": {"x0": -2.4143406854501244, "x1": 4.552575092856836, "x2": 6.432342945269201, "x3": -0.9413906016957214, "x4": 4.990721403250556, "x5": 0.11790345835029137}}, null] -[[0, 0, 16], 3.0, {"submitted": 1557070791.8612995, "started": 1557070791.861353, "finished": 1557070791.8668282}, {"loss": 0.04698310496820525, "info": {"x0": -2.193530307004775, "x1": 5.995199977599102, "x2": 4.595867694949673, "x3": -0.9061056986754701, "x4": 4.797207006150041, "x5": 0.15751045867114483}}, null] -[[0, 0, 19], 3.0, {"submitted": 1557070791.867535, "started": 1557070791.8676, "finished": 1557070791.8725913}, {"loss": 0.0324215585583175, "info": {"x0": -2.211450673354335, "x1": 4.534964611931592, "x2": 5.6349954671189, "x3": -2.9446521474094625, "x4": 4.1422527096682105, "x5": 0.11578570301452135}}, null] -[[0, 0, 20], 3.0, {"submitted": 1557070791.8732347, "started": 1557070791.8732867, "finished": 1557070791.8782}, {"loss": 0.06251006249641086, "info": {"x0": -3.76569485344129, "x1": 7.490497286417272, "x2": 6.782905459459198, "x3": -0.07930322636121279, "x4": 1.3422493001735512, "x5": 0.0459586173996811}}, null] -[[0, 0, 9], 9.0, {"submitted": 1557070791.8789191, "started": 1557070791.8789837, "finished": 1557070791.8842676}, {"loss": 0.02735318187639201, "info": {"x0": -2.626718317930279, "x1": 7.907737002869974, "x2": 7.206702265305454, "x3": -3.542221493565954, "x4": 4.044355876769773, "x5": 0.2705341978263208}}, null] -[[0, 0, 10], 9.0, {"submitted": 1557070791.8848908, "started": 1557070791.8849533, "finished": 1557070791.8910918}, {"loss": 0.02381335752008429, "info": {"x0": -2.4143406854501244, "x1": 4.552575092856836, "x2": 6.432342945269201, "x3": -0.9413906016957214, "x4": 4.990721403250556, "x5": 0.11790345835029137}}, null] -[[0, 0, 19], 9.0, {"submitted": 1557070791.892086, "started": 1557070791.892169, "finished": 1557070791.899166}, {"loss": 0.02791633120200755, "info": {"x0": -2.211450673354335, "x1": 4.534964611931592, "x2": 5.6349954671189, "x3": -2.9446521474094625, "x4": 4.1422527096682105, "x5": 0.11578570301452135}}, null] -[[0, 0, 10], 27.0, {"submitted": 1557070791.9000714, "started": 1557070791.9001536, "finished": 1557070791.9070926}, {"loss": 0.022847951043544045, "info": {"x0": -2.4143406854501244, "x1": 4.552575092856836, "x2": 6.432342945269201, "x3": -0.9413906016957214, "x4": 4.990721403250556, "x5": 0.11790345835029137}}, null] -[[1, 0, 0], 3.0, {"submitted": 1557070791.9087172, "started": 1557070791.9088297, "finished": 1557070791.916422}, {"loss": 0.878761061461686, "info": {"x0": -5.728937172651032, "x1": 6.122452238167181, "x2": 6.862045381718557, "x3": -0.4340754186040767, "x4": 4.406987969417495, "x5": 0.10386458128258119}}, null] -[[1, 0, 1], 3.0, {"submitted": 1557070791.9174821, "started": 1557070791.9175575, "finished": 1557070791.9227364}, {"loss": 0.04569589614580451, "info": {"x0": -2.7209830997018045, "x1": 5.981342549401124, "x2": 4.9490983646644775, "x3": -1.3826963917616228, "x4": 3.3153298736185013, "x5": 0.3208502579926111}}, null] -[[1, 0, 2], 3.0, {"submitted": 1557070791.923928, "started": 1557070791.9240017, "finished": 1557070791.930236}, {"loss": 0.7715205146297992, "info": {"x0": -4.881159338303487, "x1": 6.249736862987752, "x2": 5.828560870746341, "x3": -0.5461792376363861, "x4": 3.525295398788026, "x5": 0.033956706864178066}}, null] -[[1, 0, 3], 3.0, {"submitted": 1557070791.9314666, "started": 1557070791.931546, "finished": 1557070791.9367614}, {"loss": 0.04810941162746181, "info": {"x0": -3.3398896925190837, "x1": 4.39446703875767, "x2": 6.444126421445626, "x3": -3.6885290361455545, "x4": 3.23533887891913, "x5": 0.3510919180607738}}, null] -[[1, 0, 4], 3.0, {"submitted": 1557070791.9378042, "started": 1557070791.9378679, "finished": 1557070791.9428024}, {"loss": 0.8748189839231013, "info": {"x0": -5.726034433947746, "x1": 3.9485467272362564, "x2": 5.627206761645219, "x3": -1.7074429956550632, "x4": 1.1919344952989088, "x5": 0.3944233989192266}}, null] -[[1, 0, 5], 3.0, {"submitted": 1557070791.9437408, "started": 1557070791.9437985, "finished": 1557070791.9488137}, {"loss": 0.034915525541129075, "info": {"x0": -3.376081816837792, "x1": 3.5774473471963275, "x2": 6.61298895417713, "x3": -1.8935512777248715, "x4": 1.3779457054789694, "x5": 0.02829098696468757}}, null] -[[1, 0, 6], 3.0, {"submitted": 1557070791.949772, "started": 1557070791.9498286, "finished": 1557070791.9551446}, {"loss": 0.027192273143789813, "info": {"x0": -3.036469411701516, "x1": 6.141549817865387, "x2": 6.501612147101886, "x3": -0.5340375526664984, "x4": 2.1980517394189314, "x5": 0.005951283808038665}}, null] -[[1, 0, 7], 3.0, {"submitted": 1557070791.9562125, "started": 1557070791.9562943, "finished": 1557070791.9629629}, {"loss": 0.8039420752410724, "info": {"x0": -4.083029009626211, "x1": 7.307453588275363, "x2": 4.2518363609484915, "x3": -2.059354945464095, "x4": 1.149088838555366, "x5": 0.18944553724557445}}, null] -[[1, 0, 8], 3.0, {"submitted": 1557070791.9645348, "started": 1557070791.964624, "finished": 1557070791.9713004}, {"loss": 0.1608205971992121, "info": {"x0": -3.401173943351156, "x1": 6.252728137476985, "x2": 4.787039616591041, "x3": -0.8969898327567067, "x4": 2.7271872808273527, "x5": 0.08969778849611476}}, null] -[[1, 0, 1], 9.0, {"submitted": 1557070791.9721544, "started": 1557070791.9722357, "finished": 1557070791.9810977}, {"loss": 0.04336283067878177, "info": {"x0": -2.7209830997018045, "x1": 5.981342549401124, "x2": 4.9490983646644775, "x3": -1.3826963917616228, "x4": 3.3153298736185013, "x5": 0.3208502579926111}}, null] -[[1, 0, 5], 9.0, {"submitted": 1557070791.9820735, "started": 1557070791.9821692, "finished": 1557070791.989436}, {"loss": 0.02968624168984465, "info": {"x0": -3.376081816837792, "x1": 3.5774473471963275, "x2": 6.61298895417713, "x3": -1.8935512777248715, "x4": 1.3779457054789694, "x5": 0.02829098696468757}}, null] -[[1, 0, 6], 9.0, {"submitted": 1557070791.990251, "started": 1557070791.9903214, "finished": 1557070791.996333}, {"loss": 0.02574416410990136, "info": {"x0": -3.036469411701516, "x1": 6.141549817865387, "x2": 6.501612147101886, "x3": -0.5340375526664984, "x4": 2.1980517394189314, "x5": 0.005951283808038665}}, null] -[[1, 0, 6], 27.0, {"submitted": 1557070791.997071, "started": 1557070791.9971209, "finished": 1557070792.0031347}, {"loss": 0.02574416410990136, "info": {"x0": -3.036469411701516, "x1": 6.141549817865387, "x2": 6.501612147101886, "x3": -0.5340375526664984, "x4": 2.1980517394189314, "x5": 0.005951283808038665}}, null] -[[2, 0, 0], 9.0, {"submitted": 1557070792.0047255, "started": 1557070792.0047984, "finished": 1557070792.0106785}, {"loss": 0.7200321787256485, "info": {"x0": -4.662919157006925, "x1": 5.0994182638068155, "x2": 4.511383993357866, "x3": -0.17815076106034278, "x4": 3.8015088420213, "x5": 0.024444273167373687}}, null] -[[2, 0, 1], 9.0, {"submitted": 1557070792.0119014, "started": 1557070792.0119693, "finished": 1557070792.017277}, {"loss": 0.9024135149421945, "info": {"x0": -5.895427963360699, "x1": 6.797073485936384, "x2": 5.808208060291019, "x3": -3.5678927691970554, "x4": 2.3244435094553055, "x5": 0.09766744181490283}}, null] -[[2, 0, 2], 9.0, {"submitted": 1557070792.0184238, "started": 1557070792.018496, "finished": 1557070792.0240722}, {"loss": 0.7399034613684983, "info": {"x0": -3.6390207999518243, "x1": 7.988563983034922, "x2": 4.305217744200337, "x3": -1.817681608598921, "x4": 1.8545343730134594, "x5": 0.2637824885569382}}, null] -[[2, 0, 3], 9.0, {"submitted": 1557070792.0249653, "started": 1557070792.0250223, "finished": 1557070792.0301828}, {"loss": 0.02236524620846405, "info": {"x0": -2.7876430908616667, "x1": 4.366742630933615, "x2": 6.732086001521868, "x3": -0.6889692932704374, "x4": 4.237174880807965, "x5": 0.048157957323658296}}, null] -[[2, 0, 4], 9.0, {"submitted": 1557070792.0314116, "started": 1557070792.0314858, "finished": 1557070792.0364034}, {"loss": 0.8908286404404085, "info": {"x0": -5.579529401073048, "x1": 6.351762933624331, "x2": 4.169228628518024, "x3": -2.9346950324591483, "x4": 2.7483658715568633, "x5": 0.3338626005200604}}, null] -[[2, 0, 5], 9.0, {"submitted": 1557070792.0378041, "started": 1557070792.0378957, "finished": 1557070792.0463343}, {"loss": 0.7845534958604692, "info": {"x0": -4.633117994638786, "x1": 3.7971448904474556, "x2": 4.430830528183911, "x3": -2.1399540143681506, "x4": 4.0864070491099955, "x5": 0.2058849883892353}}, null] -[[2, 0, 0], 27.0, {"submitted": 1557070792.0473557, "started": 1557070792.0474281, "finished": 1557070792.0528963}, {"loss": 0.7200321787256485, "info": {"x0": -4.662919157006925, "x1": 5.0994182638068155, "x2": 4.511383993357866, "x3": -0.17815076106034278, "x4": 3.8015088420213, "x5": 0.024444273167373687}}, null] -[[2, 0, 3], 27.0, {"submitted": 1557070792.053656, "started": 1557070792.0537152, "finished": 1557070792.0599654}, {"loss": 0.020273533005534104, "info": {"x0": -2.7876430908616667, "x1": 4.366742630933615, "x2": 6.732086001521868, "x3": -0.6889692932704374, "x4": 4.237174880807965, "x5": 0.048157957323658296}}, null] -[[3, 0, 0], 27.0, {"submitted": 1557070792.0615404, "started": 1557070792.061644, "finished": 1557070792.0702314}, {"loss": 0.16283185814813753, "info": {"x0": -3.6374009226899773, "x1": 7.243985340984489, "x2": 7.627119464750988, "x3": -2.0994756359975497, "x4": 4.226692468802842, "x5": 0.4933361678355189}}, null] -[[3, 0, 1], 27.0, {"submitted": 1557070792.0713174, "started": 1557070792.0713942, "finished": 1557070792.0773163}, {"loss": 0.02944489283995193, "info": {"x0": -2.165887040367549, "x1": 4.941398459137287, "x2": 5.533920954713167, "x3": -2.407347103465903, "x4": 3.878644063621634, "x5": 0.29161815454522877}}, null] -[[3, 0, 2], 27.0, {"submitted": 1557070792.0786202, "started": 1557070792.0786853, "finished": 1557070792.083716}, {"loss": 0.4801287227661641, "info": {"x0": -4.8140488282596285, "x1": 5.032772506849918, "x2": 7.09315306012039, "x3": -2.464496672307114, "x4": 1.330449706381407, "x5": 0.4868765712582}}, null] -[[3, 0, 3], 27.0, {"submitted": 1557070792.0848038, "started": 1557070792.084881, "finished": 1557070792.0903497}, {"loss": 0.02244569622789384, "info": {"x0": -2.085690185630336, "x1": 5.160832591468942, "x2": 6.654393827816824, "x3": -1.9257838527162874, "x4": 3.7948744504299894, "x5": 0.050157418950039334}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/randomsearch/configs.json deleted file mode 100644 index 99bab1f..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/randomsearch/configs.json +++ /dev/null @@ -1,16 +0,0 @@ -[[0, 0, 0], {"x0": -5.059846757810588, "x1": 4.429002355635744, "x2": 5.830093144382047, "x3": -3.9460532998015028, "x4": 2.7668124847317066, "x5": 0.04798194868684602}, {}] -[[0, 0, 1], {"x0": -2.0198193174481274, "x1": 4.949882255532669, "x2": 4.714469682171942, "x3": -0.6192138887049006, "x4": 1.3078505840568138, "x5": 0.07475441676708289}, {}] -[[0, 0, 2], {"x0": -3.232457794777972, "x1": 7.4618476862226695, "x2": 4.236060314353817, "x3": -2.879718500990415, "x4": 4.504736692388113, "x5": 0.23371305190272607}, {}] -[[0, 0, 3], {"x0": -5.12708396214747, "x1": 4.523723222535492, "x2": 7.543944904172491, "x3": -3.9612820945924607, "x4": 1.088377163426625, "x5": 0.059726740783848487}, {}] -[[1, 0, 0], {"x0": -4.951798435522421, "x1": 4.149085937248448, "x2": 7.989299196250472, "x3": -1.4054060608574965, "x4": 1.9327210773283086, "x5": 0.16340873218885332}, {}] -[[1, 0, 1], {"x0": -2.1730930894199796, "x1": 6.185802764778309, "x2": 5.392541173655003, "x3": -3.6032166795389577, "x4": 2.706525265339968, "x5": 0.10500503374357867}, {}] -[[1, 0, 2], {"x0": -2.933702281354683, "x1": 6.7589576280886785, "x2": 4.4276921237564295, "x3": -0.7623586479794229, "x4": 2.5795846436010694, "x5": 0.08691919918827795}, {}] -[[1, 0, 3], {"x0": -3.216234666107403, "x1": 3.700969423305122, "x2": 4.345730150567274, "x3": -1.1997936735879207, "x4": 4.939016970912095, "x5": 0.49085823668744627}, {}] -[[2, 0, 0], {"x0": -5.455442710793564, "x1": 4.7284292757106146, "x2": 6.179481562232178, "x3": -2.263500032087696, "x4": 4.342243447163924, "x5": 0.207206347936509}, {}] -[[2, 0, 1], {"x0": -2.588627627460647, "x1": 6.921942506259525, "x2": 6.916932480693349, "x3": -3.5779373055321924, "x4": 3.685598967168657, "x5": 0.37265886126636094}, {}] -[[2, 0, 2], {"x0": -5.638540497691894, "x1": 3.271762342182522, "x2": 5.4084380094509115, "x3": -1.3787182250397776, "x4": 3.801434937206004, "x5": 0.44543542915008627}, {}] -[[2, 0, 3], {"x0": -5.3270962309928205, "x1": 3.0749024475153623, "x2": 5.790466729323514, "x3": -0.8184404906017484, "x4": 2.898512494458308, "x5": 0.32776257144638954}, {}] -[[3, 0, 0], {"x0": -3.2783060992103823, "x1": 7.588777005089346, "x2": 6.5745774839383575, "x3": -0.82751447993612, "x4": 3.7327169783862453, "x5": 0.40267460335489164}, {}] -[[3, 0, 1], {"x0": -2.36908627175973, "x1": 3.8566611016980445, "x2": 4.217831677804798, "x3": -3.792822145569512, "x4": 2.7139518573291372, "x5": 0.32040335040225665}, {}] -[[3, 0, 2], {"x0": -4.5488277688766185, "x1": 7.461620228743703, "x2": 6.86323802021543, "x3": -2.233335074043152, "x4": 1.0367014217695836, "x5": 0.4417574397873721}, {}] -[[3, 0, 3], {"x0": -5.6448925780113655, "x1": 5.592759128621528, "x2": 5.0747762765255, "x3": -1.792591691322142, "x4": 2.665777054376214, "x5": 0.12224654583564515}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/randomsearch/results.json deleted file mode 100644 index 28ba95c..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/randomsearch/results.json +++ /dev/null @@ -1,16 +0,0 @@ -[[0, 0, 0], 27, {"submitted": 1557070791.2553954, "started": 1557070791.2554758, "finished": 1557070791.261031}, {"loss": 0.8102172123467548, "info": {"x0": -5.059846757810588, "x1": 4.429002355635744, "x2": 5.830093144382047, "x3": -3.9460532998015028, "x4": 2.7668124847317066, "x5": 0.04798194868684602}}, null] -[[0, 0, 1], 27, {"submitted": 1557070791.2622874, "started": 1557070791.262367, "finished": 1557070791.268786}, {"loss": 0.05663716813200248, "info": {"x0": -2.0198193174481274, "x1": 4.949882255532669, "x2": 4.714469682171942, "x3": -0.6192138887049006, "x4": 1.3078505840568138, "x5": 0.07475441676708289}}, null] -[[0, 0, 2], 27, {"submitted": 1557070791.2701795, "started": 1557070791.2702715, "finished": 1557070791.2756302}, {"loss": 0.5878519695536897, "info": {"x0": -3.232457794777972, "x1": 7.4618476862226695, "x2": 4.236060314353817, "x3": -2.879718500990415, "x4": 4.504736692388113, "x5": 0.23371305190272607}}, null] -[[0, 0, 3], 27, {"submitted": 1557070791.2766323, "started": 1557070791.2767015, "finished": 1557070791.281834}, {"loss": 0.5211584833367449, "info": {"x0": -5.12708396214747, "x1": 4.523723222535492, "x2": 7.543944904172491, "x3": -3.9612820945924607, "x4": 1.088377163426625, "x5": 0.059726740783848487}}, null] -[[1, 0, 0], 27, {"submitted": 1557070791.282853, "started": 1557070791.2829218, "finished": 1557070791.2887332}, {"loss": 0.18310539334029413, "info": {"x0": -4.951798435522421, "x1": 4.149085937248448, "x2": 7.989299196250472, "x3": -1.4054060608574965, "x4": 1.9327210773283086, "x5": 0.16340873218885332}}, null] -[[1, 0, 1], 27, {"submitted": 1557070791.289769, "started": 1557070791.2898312, "finished": 1557070791.295141}, {"loss": 0.03185840885867445, "info": {"x0": -2.1730930894199796, "x1": 6.185802764778309, "x2": 5.392541173655003, "x3": -3.6032166795389577, "x4": 2.706525265339968, "x5": 0.10500503374357867}}, null] -[[1, 0, 2], 27, {"submitted": 1557070791.296045, "started": 1557070791.296104, "finished": 1557070791.3008053}, {"loss": 0.07304907140958147, "info": {"x0": -2.933702281354683, "x1": 6.7589576280886785, "x2": 4.4276921237564295, "x3": -0.7623586479794229, "x4": 2.5795846436010694, "x5": 0.08691919918827795}}, null] -[[1, 0, 3], 27, {"submitted": 1557070791.3016598, "started": 1557070791.30172, "finished": 1557070791.3064606}, {"loss": 0.46226870400152287, "info": {"x0": -3.216234666107403, "x1": 3.700969423305122, "x2": 4.345730150567274, "x3": -1.1997936735879207, "x4": 4.939016970912095, "x5": 0.49085823668744627}}, null] -[[2, 0, 0], 27, {"submitted": 1557070791.307459, "started": 1557070791.3075292, "finished": 1557070791.312413}, {"loss": 0.874738535095285, "info": {"x0": -5.455442710793564, "x1": 4.7284292757106146, "x2": 6.179481562232178, "x3": -2.263500032087696, "x4": 4.342243447163924, "x5": 0.207206347936509}}, null] -[[2, 0, 1], 27, {"submitted": 1557070791.3133721, "started": 1557070791.3134463, "finished": 1557070791.3184087}, {"loss": 0.033065165177718917, "info": {"x0": -2.588627627460647, "x1": 6.921942506259525, "x2": 6.916932480693349, "x3": -3.5779373055321924, "x4": 3.685598967168657, "x5": 0.37265886126636094}}, null] -[[2, 0, 2], 27, {"submitted": 1557070791.3196058, "started": 1557070791.3196785, "finished": 1557070791.3246183}, {"loss": 0.8817377292018381, "info": {"x0": -5.638540497691894, "x1": 3.271762342182522, "x2": 5.4084380094509115, "x3": -1.3787182250397776, "x4": 3.801434937206004, "x5": 0.44543542915008627}}, null] -[[2, 0, 3], 27, {"submitted": 1557070791.3255203, "started": 1557070791.3255975, "finished": 1557070791.3306153}, {"loss": 0.7333869636730139, "info": {"x0": -5.3270962309928205, "x1": 3.0749024475153623, "x2": 5.790466729323514, "x3": -0.8184404906017484, "x4": 2.898512494458308, "x5": 0.32776257144638954}}, null] -[[3, 0, 0], 27, {"submitted": 1557070791.3318913, "started": 1557070791.3319607, "finished": 1557070791.3379736}, {"loss": 0.06323411416738914, "info": {"x0": -3.2783060992103823, "x1": 7.588777005089346, "x2": 6.5745774839383575, "x3": -0.82751447993612, "x4": 3.7327169783862453, "x5": 0.40267460335489164}}, null] -[[3, 0, 1], 27, {"submitted": 1557070791.3390741, "started": 1557070791.3391416, "finished": 1557070791.344014}, {"loss": 0.04086886876452287, "info": {"x0": -2.36908627175973, "x1": 3.8566611016980445, "x2": 4.217831677804798, "x3": -3.792822145569512, "x4": 2.7139518573291372, "x5": 0.32040335040225665}}, null] -[[3, 0, 2], 27, {"submitted": 1557070791.344963, "started": 1557070791.3450255, "finished": 1557070791.3502998}, {"loss": 0.6715205149360942, "info": {"x0": -4.5488277688766185, "x1": 7.461620228743703, "x2": 6.86323802021543, "x3": -2.233335074043152, "x4": 1.0367014217695836, "x5": 0.4417574397873721}}, null] -[[3, 0, 3], 27, {"submitted": 1557070791.3513448, "started": 1557070791.351411, "finished": 1557070791.356823}, {"loss": 0.8851971026402108, "info": {"x0": -5.6448925780113655, "x1": 5.592759128621528, "x2": 5.0747762765255, "x3": -1.792591691322142, "x4": 2.665777054376214, "x5": 0.12224654583564515}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/runhistory.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/runhistory.json deleted file mode 100644 index a3e575b..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/runhistory.json +++ /dev/null @@ -1,392 +0,0 @@ -{ - "data": [ - [ - [ - 1, - null, - 0 - ], - [ - 0.0416733711502385, - 0.03251004219055176, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 2, - null, - 0 - ], - [ - 0.5479485102555298, - 0.030748844146728516, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 3, - null, - 0 - ], - [ - 0.028077233475441922, - 0.032642364501953125, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 4, - null, - 0 - ], - [ - 0.058728878395459594, - 0.03661990165710449, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 5, - null, - 0 - ], - [ - 0.7898632333761536, - 0.03695201873779297, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 6, - null, - 0 - ], - [ - 0.8852775538015036, - 0.031670570373535156, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 7, - null, - 0 - ], - [ - 0.6191472192721221, - 0.033319711685180664, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 8, - null, - 0 - ], - [ - 0.5917135909127786, - 0.03633427619934082, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 9, - null, - 0 - ], - [ - 0.6477071525812245, - 0.03733468055725098, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 10, - null, - 0 - ], - [ - 0.029283987320150372, - 0.03290104866027832, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 11, - null, - 0 - ], - [ - 0.08173772908465478, - 0.03463864326477051, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 12, - null, - 0 - ], - [ - 0.028238133931486033, - 0.03771471977233887, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 13, - null, - 0 - ], - [ - 0.8781174565663177, - 0.0381162166595459, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 14, - null, - 0 - ], - [ - 0.019227676188284026, - 0.035634756088256836, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 15, - null, - 0 - ], - [ - 0.03137570289671661, - 0.033463478088378906, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 16, - null, - 0 - ], - [ - 0.02292839726036052, - 0.03842973709106445, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ] - ], - "config_origins": { - "1": "Random initial design.", - "2": "Random Search (sorted)", - "3": "Random Search (sorted)", - "4": "Random Search", - "5": "Random Search", - "6": "Random Search", - "7": "Random Search (sorted)", - "8": "Random Search (sorted)", - "9": "Random Search (sorted)", - "10": "Random Search", - "11": "Random Search (sorted)", - "12": "Random Search (sorted)", - "13": "Random Search", - "14": "Random Search", - "15": "Random Search (sorted)", - "16": "Random Search (sorted)" - }, - "configs": { - "1": { - "x0": -3.232578933436087, - "x1": 4.250634761917889, - "x2": 5.622587025753772, - "x3": -0.8120399678397558, - "x4": 3.0174160722226713, - "x5": 0.2511901743865064 - }, - "2": { - "x0": -4.425779579150442, - "x1": 6.3942324865403215, - "x2": 7.262824490190896, - "x3": -2.8814156893853715, - "x4": 1.3797406308625435, - "x5": 0.09329061492336488 - }, - "3": { - "x0": -2.5208142969549945, - "x1": 3.5814152304781803, - "x2": 7.1727122178173275, - "x3": -1.3279773250202802, - "x4": 4.665141427509068, - "x5": 0.40486919473545746 - }, - "4": { - "x0": -3.1514952495047535, - "x1": 7.269505479370495, - "x2": 6.645701691793382, - "x3": -2.813552655658846, - "x4": 3.789296581955219, - "x5": 0.17490407350465242 - }, - "5": { - "x0": -5.103576378984136, - "x1": 6.104619694695197, - "x2": 7.322889647725891, - "x3": -3.233357059455178, - "x4": 3.7442266097927908, - "x5": 0.03729426317674289 - }, - "6": { - "x0": -5.744738292278779, - "x1": 7.181911296620389, - "x2": 6.876767993143265, - "x3": -2.1513893732032043, - "x4": 1.353750259696636, - "x5": 0.16423708677768123 - }, - "7": { - "x0": -4.202064791847269, - "x1": 3.2425128107899632, - "x2": 5.194545401266208, - "x3": -2.514002780568674, - "x4": 3.6395359783006778, - "x5": 0.42344975387904027 - }, - "8": { - "x0": -5.211816567001454, - "x1": 3.8577761796582237, - "x2": 7.252494759364605, - "x3": -2.297229660269619, - "x4": 1.494325072701805, - "x5": 0.2686901217464917 - }, - "9": { - "x0": -4.843598408394303, - "x1": 3.874444782284081, - "x2": 6.785772503067289, - "x3": -3.9170722776424136, - "x4": 4.933229749522157, - "x5": 0.10886192525694488 - }, - "10": { - "x0": -2.1381087739864664, - "x1": 7.267508108521601, - "x2": 5.2402599853063005, - "x3": -1.083681862451833, - "x4": 2.01753069423246, - "x5": 0.34291609291033687 - }, - "11": { - "x0": -3.241213964037486, - "x1": 5.988347589886024, - "x2": 7.486573547979272, - "x3": -1.0377284731578271, - "x4": 4.9822227477300585, - "x5": 0.44130957410150845 - }, - "12": { - "x0": -2.539265820528716, - "x1": 3.9396416342460885, - "x2": 7.3632565681657915, - "x3": -0.09947738932096861, - "x4": 3.268750535583409, - "x5": 0.04979902479249626 - }, - "13": { - "x0": -5.654367826413787, - "x1": 7.453795476227601, - "x2": 5.452724482923646, - "x3": -1.0925178289195245, - "x4": 3.4083130336095775, - "x5": 0.044342048453614835 - }, - "14": { - "x0": -2.8369664413545017, - "x1": 4.964903935090726, - "x2": 7.2344822753316205, - "x3": -1.1912942012718566, - "x4": 1.2250315266824328, - "x5": 0.09277825946331841 - }, - "15": { - "x0": -3.5048774788778303, - "x1": 5.423022080491639, - "x2": 7.666640903867535, - "x3": -0.8649289703277092, - "x4": 1.0156574092516282, - "x5": 0.2209477083269425 - }, - "16": { - "x0": -2.166889997732616, - "x1": 6.6510801909012205, - "x2": 6.315829467533353, - "x3": -0.41529458973910227, - "x4": 1.8948568343119159, - "x5": 0.14081732725842172 - } - } -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/scenario.txt b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/scenario.txt deleted file mode 100644 index 2b729b9..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/scenario.txt +++ /dev/null @@ -1,12 +0,0 @@ -execdir = . -deterministic = True -run_obj = quality -overall_obj = par10 -par_factor = 10 -cost_for_crash = 2147483647.0 -algo_runs_timelimit = inf -wallclock_limit = inf -always_race_default = False -ta_run_limit = 16.0 -initial_incumbent = RANDOM -pcs_fn = opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/stats.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/stats.json deleted file mode 100644 index 6e0c254..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/stats.json +++ /dev/null @@ -1 +0,0 @@ -{"ta_runs": 16, "n_configs": 16, "wallclock_time_used": 13.698112487792969, "ta_time_used": 0.5590310096740723, "inc_changed": 3, "_n_configs_per_intensify": 14, "_n_calls_of_intensify": 7, "_ema_n_configs_per_intensifiy": 2.0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/traj_aclib2.json deleted file mode 100644 index 4f22d6a..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/traj_aclib2.json +++ /dev/null @@ -1,4 +0,0 @@ -{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 8.153915405273438e-05, "evaluations": 0, "cost": 2147483648, "incumbent": ["x0='-3.232578933436087'", "x1='4.250634761917889'", "x2='5.622587025753772'", "x3='-0.8120399678397558'", "x4='3.0174160722226713'", "x5='0.2511901743865064'"], "origin": "Random initial design."} -{"cpu_time": 0.03251004219055176, "total_cpu_time": null, "wallclock_time": 0.06262755393981934, "evaluations": 1, "cost": 0.0416733711502385, "incumbent": ["x0='-3.232578933436087'", "x1='4.250634761917889'", "x2='5.622587025753772'", "x3='-0.8120399678397558'", "x4='3.0174160722226713'", "x5='0.2511901743865064'"], "origin": "Random initial design."} -{"cpu_time": 0.0959012508392334, "total_cpu_time": null, "wallclock_time": 0.4649069309234619, "evaluations": 3, "cost": 0.028077233475441922, "incumbent": ["x0='-2.5208142969549945'", "x1='3.5814152304781803'", "x2='7.1727122178173275'", "x3='-1.3279773250202802'", "x4='4.665141427509068'", "x5='0.40486919473545746'"], "origin": "Random Search (sorted)"} -{"cpu_time": 0.4871377944946289, "total_cpu_time": null, "wallclock_time": 11.181675910949707, "evaluations": 14, "cost": 0.019227676188284026, "incumbent": ["x0='-2.8369664413545017'", "x1='4.964903935090726'", "x2='7.2344822753316205'", "x3='-1.1912942012718566'", "x4='1.2250315266824328'", "x5='0.09277825946331841'"], "origin": "Random Search"} diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/traj_old.csv b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/traj_old.csv deleted file mode 100644 index 3938683..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/traj_old.csv +++ /dev/null @@ -1,5 +0,0 @@ -"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." -0.000000, 2147483648.000000, 0.000082, 1, 0.000082, x0='-3.232578933436087', x1='4.250634761917889', x2='5.622587025753772', x3='-0.8120399678397558', x4='3.0174160722226713', x5='0.2511901743865064' -0.032510, 0.041673, 0.062628, 1, 0.030118, x0='-3.232578933436087', x1='4.250634761917889', x2='5.622587025753772', x3='-0.8120399678397558', x4='3.0174160722226713', x5='0.2511901743865064' -0.095901, 0.028077, 0.464907, 2, 0.369006, x0='-2.5208142969549945', x1='3.5814152304781803', x2='7.1727122178173275', x3='-1.3279773250202802', x4='4.665141427509068', x5='0.40486919473545746' -0.487138, 0.019228, 11.181676, 3, 10.694538, x0='-2.8369664413545017', x1='4.964903935090726', x2='7.2344822753316205', x3='-1.1912942012718566', x4='1.2250315266824328', x5='0.09277825946331841' diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/bohb/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/bohb/configs.json deleted file mode 100644 index 0b872f0..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/bohb/configs.json +++ /dev/null @@ -1,46 +0,0 @@ -[[0, 0, 0], {"x0": -4.5123430786305025, "x1": 5.114972838224687, "x2": 4.582408183124702, "x3": -3.4842136408001663, "x4": 2.9644276661325684, "x5": 0.15140256513061812}, {"model_based_pick": false}] -[[0, 0, 1], {"x0": -4.213562237006014, "x1": 6.094747728126023, "x2": 7.467348120359864, "x3": -1.2775787581533766, "x4": 1.3525738201802646, "x5": 0.1519200339844483}, {"model_based_pick": false}] -[[0, 0, 2], {"x0": -5.826350757289514, "x1": 4.248824634102585, "x2": 7.629530341264823, "x3": -2.3000329807305198, "x4": 1.722790876871616, "x5": 0.023523815207258936}, {"model_based_pick": false}] -[[0, 0, 3], {"x0": -3.489139175450189, "x1": 7.627126240688301, "x2": 7.548997702310162, "x3": -3.1106084969178047, "x4": 1.3426569960475483, "x5": 0.0659438151734541}, {"model_based_pick": false}] -[[0, 0, 4], {"x0": -2.7828489772602802, "x1": 4.841415592611746, "x2": 6.883822046348151, "x3": -3.74241443606643, "x4": 1.802784904542011, "x5": 0.08934958937099469}, {"model_based_pick": false}] -[[0, 0, 5], {"x0": -5.752027711280776, "x1": 4.370800563708707, "x2": 7.191939283057783, "x3": -1.3177502669544232, "x4": 3.958787794483064, "x5": 0.008788670203884796}, {"model_based_pick": false}] -[[0, 0, 6], {"x0": -5.2494676426018465, "x1": 4.233208845911064, "x2": 5.289963311298801, "x3": -0.22788730255730316, "x4": 2.748099766043, "x5": 0.08241310522221768}, {"model_based_pick": false}] -[[0, 0, 7], {"x0": -4.375036015978699, "x1": 3.666593078057223, "x2": 6.696382643958031, "x3": -0.3179896649385836, "x4": 3.722341703896874, "x5": 0.040868766578130544}, {"model_based_pick": false}] -[[0, 0, 8], {"x0": -5.218428171974633, "x1": 6.912529085737427, "x2": 6.781353239290694, "x3": -0.25388080359331955, "x4": 1.9318725965221364, "x5": 0.012310816574218064}, {"model_based_pick": false}] -[[0, 0, 9], {"x0": -2.054476664032759, "x1": 5.006012535519783, "x2": 6.85703503239963, "x3": -2.6161767857373364, "x4": 4.8589113343140635, "x5": 0.4603966013529508}, {"model_based_pick": false}] -[[0, 0, 10], {"x0": -4.328837742208258, "x1": 4.691335042261787, "x2": 4.327871317665277, "x3": -1.1383107860199928, "x4": 2.8402753161679386, "x5": 0.22680615983376168}, {"model_based_pick": false}] -[[0, 0, 11], {"x0": -2.1928152847411253, "x1": 7.609574309630934, "x2": 7.2396526789486515, "x3": -1.0674543730241797, "x4": 3.4710407711051685, "x5": 0.2450107555120727}, {"model_based_pick": false}] -[[0, 0, 12], {"x0": -5.6730843667690305, "x1": 5.9820663639865135, "x2": 5.797027376283102, "x3": -3.723017847947156, "x4": 2.19420481115916, "x5": 0.22688077141542667}, {"model_based_pick": false}] -[[0, 0, 13], {"x0": -2.801937564598017, "x1": 4.2553477701020945, "x2": 5.184149615230784, "x3": -1.7584811129324716, "x4": 1.394998323847577, "x5": 0.4080187009693593}, {"model_based_pick": false}] -[[0, 0, 14], {"x0": -5.770503191225069, "x1": 7.739534389888368, "x2": 5.330978578532088, "x3": -0.7120379704779309, "x4": 3.259697351047453, "x5": 0.12990737537322605}, {"model_based_pick": false}] -[[0, 0, 15], {"x0": -2.275641266180113, "x1": 6.345106083723035, "x2": 7.884395928523568, "x3": -1.7780654009584356, "x4": 1.051015834949601, "x5": 0.30838097750094384}, {"model_based_pick": true}] -[[0, 0, 16], {"x0": -4.369950197271024, "x1": 7.949906140112741, "x2": 5.646815499078332, "x3": -0.8951743039763591, "x4": 3.8951902844851602, "x5": 0.1506600445239445}, {"model_based_pick": false}] -[[0, 0, 17], {"x0": -2.0156135547278238, "x1": 3.876997672295834, "x2": 6.743041446913847, "x3": -3.023025351195704, "x4": 1.4247419582526817, "x5": 0.08990721441348574}, {"model_based_pick": true}] -[[0, 0, 18], {"x0": -3.098081823517676, "x1": 3.9848585098875438, "x2": 4.292172246466167, "x3": -0.537443502872871, "x4": 4.198919492159021, "x5": 0.0789556257754272}, {"model_based_pick": false}] -[[0, 0, 19], {"x0": -2.1142958546290824, "x1": 7.602719839115382, "x2": 7.419334592460377, "x3": -1.6419490196425057, "x4": 2.4022060278617525, "x5": 0.1256145971579893}, {"model_based_pick": true}] -[[0, 0, 20], {"x0": -5.666304161926313, "x1": 3.5667582264281568, "x2": 7.999216379348698, "x3": -1.9427884557943305, "x4": 1.11337844147, "x5": 0.22448973701083813}, {"model_based_pick": false}] -[[0, 0, 21], {"x0": -2.8465914623898567, "x1": 3.9399037053296655, "x2": 6.479058534586554, "x3": -2.557928846718314, "x4": 1.1692281818447214, "x5": 0.1339541364605218}, {"model_based_pick": false}] -[[0, 0, 22], {"x0": -3.517954250890932, "x1": 5.019743469331264, "x2": 7.184524260838575, "x3": -3.666903645907725, "x4": 1.8877244975106984, "x5": 0.08158321459987783}, {"model_based_pick": false}] -[[0, 0, 23], {"x0": -2.004677720219743, "x1": 7.753227713811928, "x2": 7.794078751857038, "x3": -1.5593524074635692, "x4": 1.4293626972220967, "x5": 0.42671673659530185}, {"model_based_pick": true}] -[[0, 0, 24], {"x0": -2.594793821419907, "x1": 7.174079321344343, "x2": 7.582014494673563, "x3": -2.084196794688891, "x4": 2.8740492794488537, "x5": 0.3587000739029343}, {"model_based_pick": true}] -[[0, 0, 25], {"x0": -2.0129091484228128, "x1": 7.395854701251308, "x2": 7.498998734116271, "x3": -0.3082314628476679, "x4": 3.5567202951252836, "x5": 0.09604400899021548}, {"model_based_pick": true}] -[[0, 0, 26], {"x0": -2.483051690414452, "x1": 6.635909817137683, "x2": 7.424432505774462, "x3": -0.4225302646934175, "x4": 2.524036800407986, "x5": 0.4954122330663855}, {"model_based_pick": true}] -[[1, 0, 0], {"x0": -3.354637671124619, "x1": 7.168122112353164, "x2": 7.520409877394345, "x3": -2.8758422415767004, "x4": 2.0718021496882355, "x5": 0.13669115465915999}, {"model_based_pick": true}] -[[1, 0, 1], {"x0": -3.1371304564804703, "x1": 6.918443828747616, "x2": 7.681410771539927, "x3": -3.2667063203031654, "x4": 1.869843266471467, "x5": 0.08272888296666481}, {"model_based_pick": true}] -[[1, 0, 2], {"x0": -2.5602312550078623, "x1": 7.871447496120587, "x2": 7.404258986913305, "x3": -2.57794038572237, "x4": 2.9701717108496615, "x5": 0.44933429337598}, {"model_based_pick": true}] -[[1, 0, 3], {"x0": -2.623441863860628, "x1": 7.261492466935043, "x2": 7.6412581609224075, "x3": -2.9011639784845307, "x4": 2.455491946040732, "x5": 0.41727576320075793}, {"model_based_pick": true}] -[[1, 0, 4], {"x0": -2.203858663992109, "x1": 7.7077228297392795, "x2": 7.827269358300817, "x3": -2.4432571914320915, "x4": 2.5914290961814874, "x5": 0.38161416499103734}, {"model_based_pick": true}] -[[1, 0, 5], {"x0": -4.427135705984135, "x1": 7.570716264717641, "x2": 7.423571099644818, "x3": -2.649540486616344, "x4": 3.144649858861426, "x5": 0.4824340212351098}, {"model_based_pick": false}] -[[1, 0, 6], {"x0": -5.015773291595966, "x1": 7.411197142979663, "x2": 6.714220991769094, "x3": -3.044208365182489, "x4": 2.8270285997649642, "x5": 0.047761255737658326}, {"model_based_pick": false}] -[[1, 0, 7], {"x0": -2.7175033798887376, "x1": 4.942617985239571, "x2": 6.791271496639007, "x3": -3.949187700387424, "x4": 1.6187102345770972, "x5": 0.19611023708040687}, {"model_based_pick": true}] -[[1, 0, 8], {"x0": -4.937995887991562, "x1": 5.2899348484140445, "x2": 6.368966562691713, "x3": -2.1851212224496877, "x4": 3.2047129016003963, "x5": 0.25862377297334793}, {"model_based_pick": false}] -[[2, 0, 0], {"x0": -3.2700624799919407, "x1": 3.848276858606955, "x2": 4.402243446279638, "x3": -1.6715256340081117, "x4": 2.8229146410946413, "x5": 0.33537983180640824}, {"model_based_pick": false}] -[[2, 0, 1], {"x0": -3.0206036565534906, "x1": 6.80625569442477, "x2": 7.625941049452914, "x3": -1.9061087982841425, "x4": 2.0729495885060896, "x5": 0.08138223762572339}, {"model_based_pick": true}] -[[2, 0, 2], {"x0": -3.0421352419235816, "x1": 5.056299642635587, "x2": 6.842993877079049, "x3": -3.4973209838517128, "x4": 1.6476277780213158, "x5": 0.10552783581784388}, {"model_based_pick": true}] -[[2, 0, 3], {"x0": -3.9648873771902786, "x1": 5.096407996184707, "x2": 7.2178193805006, "x3": -3.7574175207766594, "x4": 1.6652279391003384, "x5": 0.07039878422124368}, {"model_based_pick": true}] -[[2, 0, 4], {"x0": -3.6814787150763992, "x1": 4.515134552371112, "x2": 7.303935664228382, "x3": -2.5839177022000666, "x4": 2.1034991813768085, "x5": 0.007070705209756556}, {"model_based_pick": true}] -[[2, 0, 5], {"x0": -3.991871305781416, "x1": 5.224307237187288, "x2": 7.5188564791288215, "x3": -3.3936227622705935, "x4": 1.915581747808407, "x5": 0.19861840377820145}, {"model_based_pick": true}] -[[3, 0, 0], {"x0": -3.2635036717080568, "x1": 7.747441304774765, "x2": 7.5105615033662545, "x3": -2.998440973980367, "x4": 2.493241658867939, "x5": 0.04402558360346112}, {"model_based_pick": true}] -[[3, 0, 1], {"x0": -3.3763242521816608, "x1": 7.041181442797414, "x2": 7.6918613800986595, "x3": -3.9867610909390057, "x4": 2.249392671497797, "x5": 0.04106699572617653}, {"model_based_pick": true}] -[[3, 0, 2], {"x0": -3.6290420817698466, "x1": 3.1075491008590426, "x2": 4.003813006319317, "x3": -3.574817579674531, "x4": 2.6987866215069016, "x5": 0.02682834940929274}, {"model_based_pick": false}] -[[3, 0, 3], {"x0": -3.2392532266639957, "x1": 6.3359329273181135, "x2": 7.653136763450419, "x3": -2.8808970658193838, "x4": 2.4049625686741702, "x5": 0.19829903613791128}, {"model_based_pick": true}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/bohb/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/bohb/results.json deleted file mode 100644 index 987cc64..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/bohb/results.json +++ /dev/null @@ -1,65 +0,0 @@ -[[0, 0, 0], 81.0, {"submitted": 1557070908.1645277, "started": 1557070908.164656, "finished": 1557070908.1704915}, {"loss": 0.43728058474657566, "info": {"x0": -4.5123430786305025, "x1": 5.114972838224687, "x2": 4.582408183124702, "x3": -3.4842136408001663, "x4": 2.9644276661325684, "x5": 0.15140256513061812}}, null] -[[0, 0, 1], 81.0, {"submitted": 1557070908.1720555, "started": 1557070908.172138, "finished": 1557070908.1781423}, {"loss": 0.39339142508983305, "info": {"x0": -4.213562237006014, "x1": 6.094747728126023, "x2": 7.467348120359864, "x3": -1.2775787581533766, "x4": 1.3525738201802646, "x5": 0.1519200339844483}}, null] -[[0, 0, 2], 81.0, {"submitted": 1557070908.179529, "started": 1557070908.1796062, "finished": 1557070908.1847613}, {"loss": 0.4424775997679745, "info": {"x0": -5.826350757289514, "x1": 4.248824634102585, "x2": 7.629530341264823, "x3": -2.3000329807305198, "x4": 1.722790876871616, "x5": 0.023523815207258936}}, null] -[[0, 0, 3], 81.0, {"submitted": 1557070908.1863112, "started": 1557070908.1863856, "finished": 1557070908.191589}, {"loss": 0.3528208977917557, "info": {"x0": -3.489139175450189, "x1": 7.627126240688301, "x2": 7.548997702310162, "x3": -3.1106084969178047, "x4": 1.3426569960475483, "x5": 0.0659438151734541}}, null] -[[0, 0, 4], 81.0, {"submitted": 1557070908.1933641, "started": 1557070908.1934428, "finished": 1557070908.1988168}, {"loss": 0.07938666407701561, "info": {"x0": -2.7828489772602802, "x1": 4.841415592611746, "x2": 6.883822046348151, "x3": -3.74241443606643, "x4": 1.802784904542011, "x5": 0.08934958937099469}}, null] -[[0, 0, 5], 81.0, {"submitted": 1557070908.2005622, "started": 1557070908.2006524, "finished": 1557070908.2075863}, {"loss": 0.4549291770379149, "info": {"x0": -5.752027711280776, "x1": 4.370800563708707, "x2": 7.191939283057783, "x3": -1.3177502669544232, "x4": 3.958787794483064, "x5": 0.008788670203884796}}, null] -[[0, 0, 6], 81.0, {"submitted": 1557070908.209439, "started": 1557070908.2095268, "finished": 1557070908.2170615}, {"loss": 0.450559052040375, "info": {"x0": -5.2494676426018465, "x1": 4.233208845911064, "x2": 5.289963311298801, "x3": -0.22788730255730316, "x4": 2.748099766043, "x5": 0.08241310522221768}}, null] -[[0, 0, 7], 81.0, {"submitted": 1557070908.2197628, "started": 1557070908.2198591, "finished": 1557070908.2276108}, {"loss": 0.4119591346427772, "info": {"x0": -4.375036015978699, "x1": 3.666593078057223, "x2": 6.696382643958031, "x3": -0.3179896649385836, "x4": 3.722341703896874, "x5": 0.040868766578130544}}, null] -[[0, 0, 8], 81.0, {"submitted": 1557070908.2301562, "started": 1557070908.2302713, "finished": 1557070908.2380373}, {"loss": 0.4305925988697056, "info": {"x0": -5.218428171974633, "x1": 6.912529085737427, "x2": 6.781353239290694, "x3": -0.25388080359331955, "x4": 1.9318725965221364, "x5": 0.012310816574218064}}, null] -[[0, 0, 9], 81.0, {"submitted": 1557070908.2404797, "started": 1557070908.2405846, "finished": 1557070908.2480972}, {"loss": 0.4818234371126387, "info": {"x0": -2.054476664032759, "x1": 5.006012535519783, "x2": 6.85703503239963, "x3": -2.6161767857373364, "x4": 4.8589113343140635, "x5": 0.4603966013529508}}, null] -[[0, 0, 10], 81.0, {"submitted": 1557070908.2504857, "started": 1557070908.2505794, "finished": 1557070908.2580311}, {"loss": 0.4312579907130263, "info": {"x0": -4.328837742208258, "x1": 4.691335042261787, "x2": 4.327871317665277, "x3": -1.1383107860199928, "x4": 2.8402753161679386, "x5": 0.22680615983376168}}, null] -[[0, 0, 11], 81.0, {"submitted": 1557070908.259979, "started": 1557070908.2600577, "finished": 1557070908.2650476}, {"loss": 0.23265895994700406, "info": {"x0": -2.1928152847411253, "x1": 7.609574309630934, "x2": 7.2396526789486515, "x3": -1.0674543730241797, "x4": 3.4710407711051685, "x5": 0.2450107555120727}}, null] -[[0, 0, 12], 81.0, {"submitted": 1557070908.266931, "started": 1557070908.2670102, "finished": 1557070908.2726567}, {"loss": 0.4816745317715262, "info": {"x0": -5.6730843667690305, "x1": 5.9820663639865135, "x2": 5.797027376283102, "x3": -3.723017847947156, "x4": 2.19420481115916, "x5": 0.22688077141542667}}, null] -[[0, 0, 13], 81.0, {"submitted": 1557070908.2749531, "started": 1557070908.275031, "finished": 1557070908.281975}, {"loss": 0.40136919026860607, "info": {"x0": -2.801937564598017, "x1": 4.2553477701020945, "x2": 5.184149615230784, "x3": -1.7584811129324716, "x4": 1.394998323847577, "x5": 0.4080187009693593}}, null] -[[0, 0, 14], 81.0, {"submitted": 1557070908.2844973, "started": 1557070908.2845795, "finished": 1557070908.29157}, {"loss": 0.479135588329996, "info": {"x0": -5.770503191225069, "x1": 7.739534389888368, "x2": 5.330978578532088, "x3": -0.7120379704779309, "x4": 3.259697351047453, "x5": 0.12990737537322605}}, null] -[[0, 0, 15], 81.0, {"submitted": 1557070908.3526464, "started": 1557070908.3527148, "finished": 1557070908.3579004}, {"loss": 0.36595772500375556, "info": {"x0": -2.275641266180113, "x1": 6.345106083723035, "x2": 7.884395928523568, "x3": -1.7780654009584356, "x4": 1.051015834949601, "x5": 0.30838097750094384}}, null] -[[0, 0, 16], 81.0, {"submitted": 1557070908.3602705, "started": 1557070908.3603477, "finished": 1557070908.36585}, {"loss": 0.40940784583976536, "info": {"x0": -4.369950197271024, "x1": 7.949906140112741, "x2": 5.646815499078332, "x3": -0.8951743039763591, "x4": 3.8951902844851602, "x5": 0.1506600445239445}}, null] -[[0, 0, 17], 81.0, {"submitted": 1557070908.4219732, "started": 1557070908.4220562, "finished": 1557070908.4266493}, {"loss": 0.42485371444184467, "info": {"x0": -2.0156135547278238, "x1": 3.876997672295834, "x2": 6.743041446913847, "x3": -3.023025351195704, "x4": 1.4247419582526817, "x5": 0.08990721441348574}}, null] -[[0, 0, 18], 81.0, {"submitted": 1557070908.4285789, "started": 1557070908.4286408, "finished": 1557070908.4334593}, {"loss": 0.40730132204298214, "info": {"x0": -3.098081823517676, "x1": 3.9848585098875438, "x2": 4.292172246466167, "x3": -0.537443502872871, "x4": 4.198919492159021, "x5": 0.0789556257754272}}, null] -[[0, 0, 19], 81.0, {"submitted": 1557070908.4980772, "started": 1557070908.4981446, "finished": 1557070908.5034137}, {"loss": 0.14503772312804597, "info": {"x0": -2.1142958546290824, "x1": 7.602719839115382, "x2": 7.419334592460377, "x3": -1.6419490196425057, "x4": 2.4022060278617525, "x5": 0.1256145971579893}}, null] -[[0, 0, 20], 81.0, {"submitted": 1557070908.5059175, "started": 1557070908.5059938, "finished": 1557070908.5111425}, {"loss": 0.4383254570668774, "info": {"x0": -5.666304161926313, "x1": 3.5667582264281568, "x2": 7.999216379348698, "x3": -1.9427884557943305, "x4": 1.11337844147, "x5": 0.22448973701083813}}, null] -[[0, 0, 21], 81.0, {"submitted": 1557070908.513037, "started": 1557070908.5130973, "finished": 1557070908.5184495}, {"loss": 0.37886643142734033, "info": {"x0": -2.8465914623898567, "x1": 3.9399037053296655, "x2": 6.479058534586554, "x3": -2.557928846718314, "x4": 1.1692281818447214, "x5": 0.1339541364605218}}, null] -[[0, 0, 22], 81.0, {"submitted": 1557070908.520927, "started": 1557070908.5210104, "finished": 1557070908.5271523}, {"loss": 0.3529621001155043, "info": {"x0": -3.517954250890932, "x1": 5.019743469331264, "x2": 7.184524260838575, "x3": -3.666903645907725, "x4": 1.8877244975106984, "x5": 0.08158321459987783}}, null] -[[0, 0, 23], 81.0, {"submitted": 1557070908.5877857, "started": 1557070908.5878797, "finished": 1557070908.5924134}, {"loss": 0.34809468795627463, "info": {"x0": -2.004677720219743, "x1": 7.753227713811928, "x2": 7.794078751857038, "x3": -1.5593524074635692, "x4": 1.4293626972220967, "x5": 0.42671673659530185}}, null] -[[0, 0, 24], 81.0, {"submitted": 1557070908.658238, "started": 1557070908.658322, "finished": 1557070908.6635213}, {"loss": 0.35485063680126816, "info": {"x0": -2.594793821419907, "x1": 7.174079321344343, "x2": 7.582014494673563, "x3": -2.084196794688891, "x4": 2.8740492794488537, "x5": 0.3587000739029343}}, null] -[[0, 0, 25], 81.0, {"submitted": 1557070908.7380514, "started": 1557070908.7381368, "finished": 1557070908.7437713}, {"loss": 0.417022530240376, "info": {"x0": -2.0129091484228128, "x1": 7.395854701251308, "x2": 7.498998734116271, "x3": -0.3082314628476679, "x4": 3.5567202951252836, "x5": 0.09604400899021548}}, null] -[[0, 0, 26], 81.0, {"submitted": 1557070908.8174295, "started": 1557070908.8174942, "finished": 1557070908.8225458}, {"loss": 0.40540175261756495, "info": {"x0": -2.483051690414452, "x1": 6.635909817137683, "x2": 7.424432505774462, "x3": -0.4225302646934175, "x4": 2.524036800407986, "x5": 0.4954122330663855}}, null] -[[0, 0, 3], 243.0, {"submitted": 1557070908.824659, "started": 1557070908.824756, "finished": 1557070908.831483}, {"loss": 0.3472139613729539, "info": {"x0": -3.489139175450189, "x1": 7.627126240688301, "x2": 7.548997702310162, "x3": -3.1106084969178047, "x4": 1.3426569960475483, "x5": 0.0659438151734541}}, null] -[[0, 0, 4], 243.0, {"submitted": 1557070908.832482, "started": 1557070908.832539, "finished": 1557070908.837718}, {"loss": 0.010024709534004394, "info": {"x0": -2.7828489772602802, "x1": 4.841415592611746, "x2": 6.883822046348151, "x3": -3.74241443606643, "x4": 1.802784904542011, "x5": 0.08934958937099469}}, null] -[[0, 0, 11], 243.0, {"submitted": 1557070908.8385723, "started": 1557070908.8386476, "finished": 1557070908.844192}, {"loss": 0.12244142590714528, "info": {"x0": -2.1928152847411253, "x1": 7.609574309630934, "x2": 7.2396526789486515, "x3": -1.0674543730241797, "x4": 3.4710407711051685, "x5": 0.2450107555120727}}, null] -[[0, 0, 15], 243.0, {"submitted": 1557070908.844921, "started": 1557070908.8449724, "finished": 1557070908.8509939}, {"loss": 0.3419829645625482, "info": {"x0": -2.275641266180113, "x1": 6.345106083723035, "x2": 7.884395928523568, "x3": -1.7780654009584356, "x4": 1.051015834949601, "x5": 0.30838097750094384}}, null] -[[0, 0, 19], 243.0, {"submitted": 1557070908.8517585, "started": 1557070908.851813, "finished": 1557070908.857594}, {"loss": 0.10590609995037355, "info": {"x0": -2.1142958546290824, "x1": 7.602719839115382, "x2": 7.419334592460377, "x3": -1.6419490196425057, "x4": 2.4022060278617525, "x5": 0.1256145971579893}}, null] -[[0, 0, 21], 243.0, {"submitted": 1557070908.8583663, "started": 1557070908.8584409, "finished": 1557070908.8640132}, {"loss": 0.35693994337228074, "info": {"x0": -2.8465914623898567, "x1": 3.9399037053296655, "x2": 6.479058534586554, "x3": -2.557928846718314, "x4": 1.1692281818447214, "x5": 0.1339541364605218}}, null] -[[0, 0, 22], 243.0, {"submitted": 1557070908.865006, "started": 1557070908.865077, "finished": 1557070908.8710318}, {"loss": 0.045985086571847814, "info": {"x0": -3.517954250890932, "x1": 5.019743469331264, "x2": 7.184524260838575, "x3": -3.666903645907725, "x4": 1.8877244975106984, "x5": 0.08158321459987783}}, null] -[[0, 0, 23], 243.0, {"submitted": 1557070908.8721359, "started": 1557070908.8722036, "finished": 1557070908.8772433}, {"loss": 0.316441333220918, "info": {"x0": -2.004677720219743, "x1": 7.753227713811928, "x2": 7.794078751857038, "x3": -1.5593524074635692, "x4": 1.4293626972220967, "x5": 0.42671673659530185}}, null] -[[0, 0, 24], 243.0, {"submitted": 1557070908.878357, "started": 1557070908.8784115, "finished": 1557070908.884084}, {"loss": 0.10574240067831467, "info": {"x0": -2.594793821419907, "x1": 7.174079321344343, "x2": 7.582014494673563, "x3": -2.084196794688891, "x4": 2.8740492794488537, "x5": 0.3587000739029343}}, null] -[[0, 0, 4], 729.0, {"submitted": 1557070908.8858702, "started": 1557070908.8859475, "finished": 1557070908.8917167}, {"loss": 0.0048841723556032335, "info": {"x0": -2.7828489772602802, "x1": 4.841415592611746, "x2": 6.883822046348151, "x3": -3.74241443606643, "x4": 1.802784904542011, "x5": 0.08934958937099469}}, null] -[[0, 0, 22], 729.0, {"submitted": 1557070908.8925974, "started": 1557070908.8926685, "finished": 1557070908.8977873}, {"loss": 0.009470503338883551, "info": {"x0": -3.517954250890932, "x1": 5.019743469331264, "x2": 7.184524260838575, "x3": -3.666903645907725, "x4": 1.8877244975106984, "x5": 0.08158321459987783}}, null] -[[0, 0, 24], 729.0, {"submitted": 1557070908.8986516, "started": 1557070908.8987231, "finished": 1557070908.904739}, {"loss": 0.03160349662816887, "info": {"x0": -2.594793821419907, "x1": 7.174079321344343, "x2": 7.582014494673563, "x3": -2.084196794688891, "x4": 2.8740492794488537, "x5": 0.3587000739029343}}, null] -[[0, 0, 4], 2187.0, {"submitted": 1557070908.9056733, "started": 1557070908.9057374, "finished": 1557070908.910937}, {"loss": 0.004739443036488722, "info": {"x0": -2.7828489772602802, "x1": 4.841415592611746, "x2": 6.883822046348151, "x3": -3.74241443606643, "x4": 1.802784904542011, "x5": 0.08934958937099469}}, null] -[[1, 0, 0], 243.0, {"submitted": 1557070908.972136, "started": 1557070908.9722111, "finished": 1557070908.9793432}, {"loss": 0.09922384242328083, "info": {"x0": -3.354637671124619, "x1": 7.168122112353164, "x2": 7.520409877394345, "x3": -2.8758422415767004, "x4": 2.0718021496882355, "x5": 0.13669115465915999}}, null] -[[1, 0, 1], 243.0, {"submitted": 1557070909.0413976, "started": 1557070909.0414882, "finished": 1557070909.0467215}, {"loss": 0.002024883591333937, "info": {"x0": -3.1371304564804703, "x1": 6.918443828747616, "x2": 7.681410771539927, "x3": -3.2667063203031654, "x4": 1.869843266471467, "x5": 0.08272888296666481}}, null] -[[1, 0, 2], 243.0, {"submitted": 1557070909.1117156, "started": 1557070909.1118186, "finished": 1557070909.1171024}, {"loss": 0.26738692783943285, "info": {"x0": -2.5602312550078623, "x1": 7.871447496120587, "x2": 7.404258986913305, "x3": -2.57794038572237, "x4": 2.9701717108496615, "x5": 0.44933429337598}}, null] -[[1, 0, 3], 243.0, {"submitted": 1557070909.1766813, "started": 1557070909.1767654, "finished": 1557070909.1823394}, {"loss": 0.11261174501548829, "info": {"x0": -2.623441863860628, "x1": 7.261492466935043, "x2": 7.6412581609224075, "x3": -2.9011639784845307, "x4": 2.455491946040732, "x5": 0.41727576320075793}}, null] -[[1, 0, 4], 243.0, {"submitted": 1557070909.236627, "started": 1557070909.236708, "finished": 1557070909.2416372}, {"loss": 0.2499629348191391, "info": {"x0": -2.203858663992109, "x1": 7.7077228297392795, "x2": 7.827269358300817, "x3": -2.4432571914320915, "x4": 2.5914290961814874, "x5": 0.38161416499103734}}, null] -[[1, 0, 5], 243.0, {"submitted": 1557070909.2439568, "started": 1557070909.2440372, "finished": 1557070909.249313}, {"loss": 0.4247345879065235, "info": {"x0": -4.427135705984135, "x1": 7.570716264717641, "x2": 7.423571099644818, "x3": -2.649540486616344, "x4": 3.144649858861426, "x5": 0.4824340212351098}}, null] -[[1, 0, 6], 243.0, {"submitted": 1557070909.2515743, "started": 1557070909.2516572, "finished": 1557070909.2580044}, {"loss": 0.4149004985795739, "info": {"x0": -5.015773291595966, "x1": 7.411197142979663, "x2": 6.714220991769094, "x3": -3.044208365182489, "x4": 2.8270285997649642, "x5": 0.047761255737658326}}, null] -[[1, 0, 7], 243.0, {"submitted": 1557070909.3175995, "started": 1557070909.3176801, "finished": 1557070909.3226857}, {"loss": 0.16151391980834826, "info": {"x0": -2.7175033798887376, "x1": 4.942617985239571, "x2": 6.791271496639007, "x3": -3.949187700387424, "x4": 1.6187102345770972, "x5": 0.19611023708040687}}, null] -[[1, 0, 8], 243.0, {"submitted": 1557070909.3248496, "started": 1557070909.3249116, "finished": 1557070909.3304992}, {"loss": 0.41717115698630713, "info": {"x0": -4.937995887991562, "x1": 5.2899348484140445, "x2": 6.368966562691713, "x3": -2.1851212224496877, "x4": 3.2047129016003963, "x5": 0.25862377297334793}}, null] -[[1, 0, 0], 729.0, {"submitted": 1557070909.332138, "started": 1557070909.3322194, "finished": 1557070909.3410907}, {"loss": 0.07155142515725482, "info": {"x0": -3.354637671124619, "x1": 7.168122112353164, "x2": 7.520409877394345, "x3": -2.8758422415767004, "x4": 2.0718021496882355, "x5": 0.13669115465915999}}, null] -[[1, 0, 1], 729.0, {"submitted": 1557070909.3418741, "started": 1557070909.341931, "finished": 1557070909.3471787}, {"loss": 0.0011706285677251626, "info": {"x0": -3.1371304564804703, "x1": 6.918443828747616, "x2": 7.681410771539927, "x3": -3.2667063203031654, "x4": 1.869843266471467, "x5": 0.08272888296666481}}, null] -[[1, 0, 3], 729.0, {"submitted": 1557070909.3484855, "started": 1557070909.3485913, "finished": 1557070909.3540154}, {"loss": 0.06914530197998509, "info": {"x0": -2.623441863860628, "x1": 7.261492466935043, "x2": 7.6412581609224075, "x3": -2.9011639784845307, "x4": 2.455491946040732, "x5": 0.41727576320075793}}, null] -[[1, 0, 1], 2187.0, {"submitted": 1557070909.3547878, "started": 1557070909.3548582, "finished": 1557070909.359586}, {"loss": 0.0011079714875069202, "info": {"x0": -3.1371304564804703, "x1": 6.918443828747616, "x2": 7.681410771539927, "x3": -3.2667063203031654, "x4": 1.869843266471467, "x5": 0.08272888296666481}}, null] -[[2, 0, 0], 729.0, {"submitted": 1557070909.3611102, "started": 1557070909.3611665, "finished": 1557070909.3661432}, {"loss": 0.3922278567452408, "info": {"x0": -3.2700624799919407, "x1": 3.848276858606955, "x2": 4.402243446279638, "x3": -1.6715256340081117, "x4": 2.8229146410946413, "x5": 0.33537983180640824}}, null] -[[2, 0, 1], 729.0, {"submitted": 1557070909.4216268, "started": 1557070909.421707, "finished": 1557070909.4271185}, {"loss": 0.0013255085621844743, "info": {"x0": -3.0206036565534906, "x1": 6.80625569442477, "x2": 7.625941049452914, "x3": -1.9061087982841425, "x4": 2.0729495885060896, "x5": 0.08138223762572339}}, null] -[[2, 0, 2], 729.0, {"submitted": 1557070909.489693, "started": 1557070909.489759, "finished": 1557070909.4949214}, {"loss": 0.003809292278748255, "info": {"x0": -3.0421352419235816, "x1": 5.056299642635587, "x2": 6.842993877079049, "x3": -3.4973209838517128, "x4": 1.6476277780213158, "x5": 0.10552783581784388}}, null] -[[2, 0, 3], 729.0, {"submitted": 1557070909.549021, "started": 1557070909.549102, "finished": 1557070909.5541039}, {"loss": 0.17950535771331336, "info": {"x0": -3.9648873771902786, "x1": 5.096407996184707, "x2": 7.2178193805006, "x3": -3.7574175207766594, "x4": 1.6652279391003384, "x5": 0.07039878422124368}}, null] -[[2, 0, 4], 729.0, {"submitted": 1557070909.607449, "started": 1557070909.6075296, "finished": 1557070909.6128478}, {"loss": 0.024117724419255582, "info": {"x0": -3.6814787150763992, "x1": 4.515134552371112, "x2": 7.303935664228382, "x3": -2.5839177022000666, "x4": 2.1034991813768085, "x5": 0.007070705209756556}}, null] -[[2, 0, 5], 729.0, {"submitted": 1557070909.673102, "started": 1557070909.6731641, "finished": 1557070909.6786473}, {"loss": 0.2007973310937608, "info": {"x0": -3.991871305781416, "x1": 5.224307237187288, "x2": 7.5188564791288215, "x3": -3.3936227622705935, "x4": 1.915581747808407, "x5": 0.19861840377820145}}, null] -[[2, 0, 1], 2187.0, {"submitted": 1557070909.6799977, "started": 1557070909.680074, "finished": 1557070909.6851628}, {"loss": 0.001294179969750653, "info": {"x0": -3.0206036565534906, "x1": 6.80625569442477, "x2": 7.625941049452914, "x3": -1.9061087982841425, "x4": 2.0729495885060896, "x5": 0.08138223762572339}}, null] -[[2, 0, 2], 2187.0, {"submitted": 1557070909.686022, "started": 1557070909.6860824, "finished": 1557070909.6912694}, {"loss": 0.003526452406488023, "info": {"x0": -3.0421352419235816, "x1": 5.056299642635587, "x2": 6.842993877079049, "x3": -3.4973209838517128, "x4": 1.6476277780213158, "x5": 0.10552783581784388}}, null] -[[3, 0, 0], 2187.0, {"submitted": 1557070909.756667, "started": 1557070909.756747, "finished": 1557070909.7621899}, {"loss": 0.10330185756289159, "info": {"x0": -3.2635036717080568, "x1": 7.747441304774765, "x2": 7.5105615033662545, "x3": -2.998440973980367, "x4": 2.493241658867939, "x5": 0.04402558360346112}}, null] -[[3, 0, 1], 2187.0, {"submitted": 1557070909.8155894, "started": 1557070909.8156514, "finished": 1557070909.8206563}, {"loss": 0.018620217479938028, "info": {"x0": -3.3763242521816608, "x1": 7.041181442797414, "x2": 7.6918613800986595, "x3": -3.9867610909390057, "x4": 2.249392671497797, "x5": 0.04106699572617653}}, null] -[[3, 0, 2], 2187.0, {"submitted": 1557070909.8220766, "started": 1557070909.8221474, "finished": 1557070909.8301055}, {"loss": 0.2997290717171194, "info": {"x0": -3.6290420817698466, "x1": 3.1075491008590426, "x2": 4.003813006319317, "x3": -3.574817579674531, "x4": 2.6987866215069016, "x5": 0.02682834940929274}}, null] -[[3, 0, 3], 2187.0, {"submitted": 1557070909.9020605, "started": 1557070909.902144, "finished": 1557070909.9075513}, {"loss": 0.04490182113943077, "info": {"x0": -3.2392532266639957, "x1": 6.3359329273181135, "x2": 7.653136763450419, "x3": -2.8808970658193838, "x4": 2.4049625686741702, "x5": 0.19829903613791128}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/hyperband/configs.json deleted file mode 100644 index e503549..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/hyperband/configs.json +++ /dev/null @@ -1,46 +0,0 @@ -[[0, 0, 0], {"x0": -2.2351987615850537, "x1": 6.335440996688257, "x2": 6.215278610353543, "x3": -2.2286691461962076, "x4": 4.994936110054605, "x5": 0.22462278541384412}, {}] -[[0, 0, 1], {"x0": -5.736556872543069, "x1": 3.963818152218057, "x2": 5.173868474947227, "x3": -0.5503354588554772, "x4": 4.6362661385235135, "x5": 0.06444577038693355}, {}] -[[0, 0, 2], {"x0": -5.451532773906905, "x1": 3.6555532288358323, "x2": 7.765404763528313, "x3": -2.4874047884772703, "x4": 2.6228137694254348, "x5": 0.180241506877917}, {}] -[[0, 0, 3], {"x0": -3.7545066258201887, "x1": 3.18574773315934, "x2": 5.664613951699883, "x3": -0.6717065895815995, "x4": 2.1512520110069984, "x5": 0.4902446773775538}, {}] -[[0, 0, 4], {"x0": -2.929333445393379, "x1": 4.240250383019706, "x2": 6.48259420556626, "x3": -0.16366493964157192, "x4": 2.5508412791924333, "x5": 0.29052987634611044}, {}] -[[0, 0, 5], {"x0": -4.474976003644908, "x1": 4.945106453589748, "x2": 5.932124646766296, "x3": -2.770001823902158, "x4": 4.249419561188912, "x5": 0.2619173312956133}, {}] -[[0, 0, 6], {"x0": -5.416278559102905, "x1": 3.1125900025588815, "x2": 7.742482341448126, "x3": -1.0684522688130977, "x4": 3.1744761944121436, "x5": 0.45847768571000574}, {}] -[[0, 0, 7], {"x0": -3.709080489506843, "x1": 5.5136080047671125, "x2": 4.26045916317596, "x3": -2.1394970516916403, "x4": 2.15138834161571, "x5": 0.47705123495470064}, {}] -[[0, 0, 8], {"x0": -2.8190744295862484, "x1": 5.320907549962181, "x2": 7.72901660596024, "x3": -2.0427037260640653, "x4": 2.158650890223447, "x5": 0.019798452434232894}, {}] -[[0, 0, 9], {"x0": -5.163634702793283, "x1": 4.445078964650756, "x2": 7.352779286221972, "x3": -3.394394863755498, "x4": 1.5510061187022743, "x5": 0.3048149442943302}, {}] -[[0, 0, 10], {"x0": -5.2732707974328275, "x1": 7.087876793011368, "x2": 4.3580265357864825, "x3": -1.5417895945594027, "x4": 1.1284536045252342, "x5": 0.09837474990553757}, {}] -[[0, 0, 11], {"x0": -3.2726870560986256, "x1": 4.867324554114601, "x2": 6.829904103702054, "x3": -0.5391460730668953, "x4": 4.314705142490157, "x5": 0.2597161348856433}, {}] -[[0, 0, 12], {"x0": -3.98534505184552, "x1": 6.608710389510057, "x2": 5.104091524032782, "x3": -0.44047170392490864, "x4": 1.6043223188306364, "x5": 0.005467626543827819}, {}] -[[0, 0, 13], {"x0": -4.368196407162145, "x1": 4.282603470066052, "x2": 7.288927626685461, "x3": -3.1923029060011645, "x4": 4.387718711822261, "x5": 0.04871165728042748}, {}] -[[0, 0, 14], {"x0": -3.0257345888253413, "x1": 7.200344008159706, "x2": 5.443926337605854, "x3": -3.1116868801774187, "x4": 1.0874242688580855, "x5": 0.15992306112636528}, {}] -[[0, 0, 15], {"x0": -5.985414184859545, "x1": 6.700884452003116, "x2": 7.803627433109019, "x3": -0.9874139401892141, "x4": 1.7829264372692637, "x5": 0.32069966654620097}, {}] -[[0, 0, 16], {"x0": -3.100824162358461, "x1": 4.14467896036638, "x2": 6.7916903116179315, "x3": -0.500299754188887, "x4": 3.1811021840200735, "x5": 0.12127966952961505}, {}] -[[0, 0, 17], {"x0": -5.092950355784398, "x1": 4.60921348046989, "x2": 4.880205888910307, "x3": -1.2016059316548384, "x4": 4.027950592717517, "x5": 0.023679789885712954}, {}] -[[0, 0, 18], {"x0": -4.474608730021027, "x1": 7.878470692418498, "x2": 6.804464887764883, "x3": -1.011930131158576, "x4": 4.542895424503078, "x5": 0.4065066258281098}, {}] -[[0, 0, 19], {"x0": -5.8681604303300485, "x1": 3.3279646089660453, "x2": 7.291253109113873, "x3": -0.47394738869206865, "x4": 1.1643922624811909, "x5": 0.29027015952385393}, {}] -[[0, 0, 20], {"x0": -5.484177507194564, "x1": 6.309459332305621, "x2": 4.654858436616626, "x3": -2.8273528257863654, "x4": 3.927463400400449, "x5": 0.25554378672125744}, {}] -[[0, 0, 21], {"x0": -3.8417656722995743, "x1": 4.268341448141811, "x2": 6.463396290638421, "x3": -3.558280214755333, "x4": 3.131513640850673, "x5": 0.2035405990576219}, {}] -[[0, 0, 22], {"x0": -5.141657109674128, "x1": 6.773660172894378, "x2": 4.267638787901233, "x3": -0.7244943657719598, "x4": 4.598480710823317, "x5": 0.3249298203283687}, {}] -[[0, 0, 23], {"x0": -4.058898746609611, "x1": 4.031512930288246, "x2": 7.298022529755391, "x3": -2.447723837157242, "x4": 2.84921563556939, "x5": 0.19616781633071417}, {}] -[[0, 0, 24], {"x0": -2.3800178143063198, "x1": 5.476041046123255, "x2": 7.0548176150329205, "x3": -0.921356479894873, "x4": 3.4304080877999508, "x5": 0.1381254459604805}, {}] -[[0, 0, 25], {"x0": -2.5165857013339044, "x1": 3.4402089374180695, "x2": 7.532456501650572, "x3": -2.6667254440712562, "x4": 1.2273736405087456, "x5": 0.07139783008877221}, {}] -[[0, 0, 26], {"x0": -4.241236747708186, "x1": 6.61581080747488, "x2": 4.019474825717607, "x3": -1.1542429848618885, "x4": 3.8356503285649084, "x5": 0.01252075244041545}, {}] -[[1, 0, 0], {"x0": -3.6777819451720815, "x1": 5.071603174522883, "x2": 7.080813249898796, "x3": -1.66105840760626, "x4": 1.66263458421746, "x5": 0.42978088471957593}, {}] -[[1, 0, 1], {"x0": -4.530481678777063, "x1": 3.5115290543717306, "x2": 4.808136665432835, "x3": -3.003896707309853, "x4": 2.834009551797318, "x5": 0.2645720317144373}, {}] -[[1, 0, 2], {"x0": -5.45572359654401, "x1": 7.66809567414327, "x2": 6.209049300292341, "x3": -3.1674051866035438, "x4": 1.5422874041530648, "x5": 0.33637477189362286}, {}] -[[1, 0, 3], {"x0": -2.2191408295291364, "x1": 6.7761021261913665, "x2": 6.156721350718854, "x3": -1.3651984720365085, "x4": 2.04492984659457, "x5": 0.4530499026897392}, {}] -[[1, 0, 4], {"x0": -4.722646070959184, "x1": 6.6210301734737715, "x2": 5.805602158809631, "x3": -1.4807678585921664, "x4": 2.226581174432021, "x5": 0.12304433106548984}, {}] -[[1, 0, 5], {"x0": -4.144500833290202, "x1": 7.413393394055354, "x2": 4.401610210689727, "x3": -2.9553868179702256, "x4": 2.373025691018829, "x5": 0.14630828890268288}, {}] -[[1, 0, 6], {"x0": -4.510247586017671, "x1": 5.977982929871361, "x2": 4.288201248186695, "x3": -2.9305184574911465, "x4": 2.2350474192044194, "x5": 0.27889119044589694}, {}] -[[1, 0, 7], {"x0": -3.307174628980932, "x1": 3.659356485774025, "x2": 6.119128473016406, "x3": -0.3784130976857223, "x4": 4.323782650107799, "x5": 0.3065847563827823}, {}] -[[1, 0, 8], {"x0": -5.509806022353897, "x1": 3.6899104725640903, "x2": 4.627200341270171, "x3": -3.120736703234332, "x4": 2.4436771367163197, "x5": 0.2784329470319033}, {}] -[[2, 0, 0], {"x0": -2.1117279044427204, "x1": 6.928094486550981, "x2": 5.901438799943015, "x3": -2.591487771451807, "x4": 3.817874191987456, "x5": 0.36339857167023853}, {}] -[[2, 0, 1], {"x0": -5.633514010266158, "x1": 6.365208520563194, "x2": 6.7894353927985325, "x3": -0.6849722377208871, "x4": 3.547778271302562, "x5": 0.19696774804495426}, {}] -[[2, 0, 2], {"x0": -4.364026519787239, "x1": 4.794606026954471, "x2": 7.957885895672977, "x3": -2.579894692883431, "x4": 2.348872929582024, "x5": 0.18683725867234308}, {}] -[[2, 0, 3], {"x0": -4.844976359496685, "x1": 3.6410622274308606, "x2": 6.413354530513695, "x3": -2.1449589395011524, "x4": 3.4271894405573873, "x5": 0.43181887085044923}, {}] -[[2, 0, 4], {"x0": -5.533213186912697, "x1": 7.774430690628414, "x2": 5.678366006007707, "x3": -3.8366259195499657, "x4": 2.9848266642980845, "x5": 0.3009151392664698}, {}] -[[2, 0, 5], {"x0": -2.9196414322220634, "x1": 6.455502828452885, "x2": 7.736931662622066, "x3": -0.39427978164256583, "x4": 1.3898471436890336, "x5": 0.27261224649349575}, {}] -[[3, 0, 0], {"x0": -3.4169845355056077, "x1": 5.182103596869972, "x2": 4.467660638324201, "x3": -0.09638985331221273, "x4": 1.6336855126414105, "x5": 0.4145567140267736}, {}] -[[3, 0, 1], {"x0": -3.6575683689228202, "x1": 5.7043095536536805, "x2": 4.906878931850418, "x3": -0.10377215587974087, "x4": 3.702464890697497, "x5": 0.19563935827456125}, {}] -[[3, 0, 2], {"x0": -5.459434860579883, "x1": 6.052411125632304, "x2": 5.557701545426526, "x3": -3.1991111901868203, "x4": 1.3133776930551453, "x5": 0.102554790598608}, {}] -[[3, 0, 3], {"x0": -5.646800282802811, "x1": 7.776097692716239, "x2": 6.745602922633785, "x3": -1.6004584926467191, "x4": 2.7250871380839015, "x5": 0.27636432697419794}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/hyperband/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/hyperband/results.json deleted file mode 100644 index 0bf0ea5..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/hyperband/results.json +++ /dev/null @@ -1,65 +0,0 @@ -[[0, 0, 0], 81.0, {"submitted": 1557070910.5649564, "started": 1557070910.5650566, "finished": 1557070910.5714011}, {"loss": 0.3590380797238414, "info": {"x0": -2.2351987615850537, "x1": 6.335440996688257, "x2": 6.215278610353543, "x3": -2.2286691461962076, "x4": 4.994936110054605, "x5": 0.22462278541384412}}, null] -[[0, 0, 1], 81.0, {"submitted": 1557070910.5724964, "started": 1557070910.5725543, "finished": 1557070910.5775895}, {"loss": 0.4938935623393538, "info": {"x0": -5.736556872543069, "x1": 3.963818152218057, "x2": 5.173868474947227, "x3": -0.5503354588554772, "x4": 4.6362661385235135, "x5": 0.06444577038693355}}, null] -[[0, 0, 2], 81.0, {"submitted": 1557070910.5785542, "started": 1557070910.5786126, "finished": 1557070910.5836036}, {"loss": 1, "info": {"x0": -5.451532773906905, "x1": 3.6555532288358323, "x2": 7.765404763528313, "x3": -2.4874047884772703, "x4": 2.6228137694254348, "x5": 0.180241506877917}}, null] -[[0, 0, 3], 81.0, {"submitted": 1557070910.5845773, "started": 1557070910.5846362, "finished": 1557070910.5895026}, {"loss": 0.4254326417287821, "info": {"x0": -3.7545066258201887, "x1": 3.18574773315934, "x2": 5.664613951699883, "x3": -0.6717065895815995, "x4": 2.1512520110069984, "x5": 0.4902446773775538}}, null] -[[0, 0, 4], 81.0, {"submitted": 1557070910.5906312, "started": 1557070910.5907085, "finished": 1557070910.5969684}, {"loss": 0.4024109761233598, "info": {"x0": -2.929333445393379, "x1": 4.240250383019706, "x2": 6.48259420556626, "x3": -0.16366493964157192, "x4": 2.5508412791924333, "x5": 0.29052987634611044}}, null] -[[0, 0, 5], 81.0, {"submitted": 1557070910.5981712, "started": 1557070910.5982533, "finished": 1557070910.6045678}, {"loss": 0.4286868401148533, "info": {"x0": -4.474976003644908, "x1": 4.945106453589748, "x2": 5.932124646766296, "x3": -2.770001823902158, "x4": 4.249419561188912, "x5": 0.2619173312956133}}, null] -[[0, 0, 6], 81.0, {"submitted": 1557070910.605795, "started": 1557070910.6058695, "finished": 1557070910.6111994}, {"loss": 1, "info": {"x0": -5.416278559102905, "x1": 3.1125900025588815, "x2": 7.742482341448126, "x3": -1.0684522688130977, "x4": 3.1744761944121436, "x5": 0.45847768571000574}}, null] -[[0, 0, 7], 81.0, {"submitted": 1557070910.6120386, "started": 1557070910.6120946, "finished": 1557070910.6174998}, {"loss": 0.4114909724876129, "info": {"x0": -3.709080489506843, "x1": 5.5136080047671125, "x2": 4.26045916317596, "x3": -2.1394970516916403, "x4": 2.15138834161571, "x5": 0.47705123495470064}}, null] -[[0, 0, 8], 81.0, {"submitted": 1557070910.6188605, "started": 1557070910.6189528, "finished": 1557070910.6257598}, {"loss": 0.039162072615627055, "info": {"x0": -2.8190744295862484, "x1": 5.320907549962181, "x2": 7.72901660596024, "x3": -2.0427037260640653, "x4": 2.158650890223447, "x5": 0.019798452434232894}}, null] -[[0, 0, 9], 81.0, {"submitted": 1557070910.627232, "started": 1557070910.627319, "finished": 1557070910.6343348}, {"loss": 0.4212284300713181, "info": {"x0": -5.163634702793283, "x1": 4.445078964650756, "x2": 7.352779286221972, "x3": -3.394394863755498, "x4": 1.5510061187022743, "x5": 0.3048149442943302}}, null] -[[0, 0, 10], 81.0, {"submitted": 1557070910.6354945, "started": 1557070910.635574, "finished": 1557070910.6409905}, {"loss": 0.46282354098997375, "info": {"x0": -5.2732707974328275, "x1": 7.087876793011368, "x2": 4.3580265357864825, "x3": -1.5417895945594027, "x4": 1.1284536045252342, "x5": 0.09837474990553757}}, null] -[[0, 0, 11], 81.0, {"submitted": 1557070910.6421912, "started": 1557070910.6422684, "finished": 1557070910.6478155}, {"loss": 0.4011075288667497, "info": {"x0": -3.2726870560986256, "x1": 4.867324554114601, "x2": 6.829904103702054, "x3": -0.5391460730668953, "x4": 4.314705142490157, "x5": 0.2597161348856433}}, null] -[[0, 0, 12], 81.0, {"submitted": 1557070910.6492155, "started": 1557070910.6493123, "finished": 1557070910.6559706}, {"loss": 0.31494771415063055, "info": {"x0": -3.98534505184552, "x1": 6.608710389510057, "x2": 5.104091524032782, "x3": -0.44047170392490864, "x4": 1.6043223188306364, "x5": 0.005467626543827819}}, null] -[[0, 0, 13], 81.0, {"submitted": 1557070910.6572793, "started": 1557070910.6573627, "finished": 1557070910.6640346}, {"loss": 1, "info": {"x0": -4.368196407162145, "x1": 4.282603470066052, "x2": 7.288927626685461, "x3": -3.1923029060011645, "x4": 4.387718711822261, "x5": 0.04871165728042748}}, null] -[[0, 0, 14], 81.0, {"submitted": 1557070910.6654034, "started": 1557070910.6654947, "finished": 1557070910.6735404}, {"loss": 0.35396019671126927, "info": {"x0": -3.0257345888253413, "x1": 7.200344008159706, "x2": 5.443926337605854, "x3": -3.1116868801774187, "x4": 1.0874242688580855, "x5": 0.15992306112636528}}, null] -[[0, 0, 15], 81.0, {"submitted": 1557070910.675196, "started": 1557070910.6753297, "finished": 1557070910.6844947}, {"loss": 0.46170453895122243, "info": {"x0": -5.985414184859545, "x1": 6.700884452003116, "x2": 7.803627433109019, "x3": -0.9874139401892141, "x4": 1.7829264372692637, "x5": 0.32069966654620097}}, null] -[[0, 0, 16], 81.0, {"submitted": 1557070910.6856873, "started": 1557070910.6857653, "finished": 1557070910.6912496}, {"loss": 0.30716144889002023, "info": {"x0": -3.100824162358461, "x1": 4.14467896036638, "x2": 6.7916903116179315, "x3": -0.500299754188887, "x4": 3.1811021840200735, "x5": 0.12127966952961505}}, null] -[[0, 0, 17], 81.0, {"submitted": 1557070910.6925375, "started": 1557070910.6926165, "finished": 1557070910.6981325}, {"loss": 0.45240656327118767, "info": {"x0": -5.092950355784398, "x1": 4.60921348046989, "x2": 4.880205888910307, "x3": -1.2016059316548384, "x4": 4.027950592717517, "x5": 0.023679789885712954}}, null] -[[0, 0, 18], 81.0, {"submitted": 1557070910.6992373, "started": 1557070910.6993146, "finished": 1557070910.7045007}, {"loss": 0.43769227361772967, "info": {"x0": -4.474608730021027, "x1": 7.878470692418498, "x2": 6.804464887764883, "x3": -1.011930131158576, "x4": 4.542895424503078, "x5": 0.4065066258281098}}, null] -[[0, 0, 19], 81.0, {"submitted": 1557070910.705796, "started": 1557070910.7058687, "finished": 1557070910.7131898}, {"loss": 0.47517671432935404, "info": {"x0": -5.8681604303300485, "x1": 3.3279646089660453, "x2": 7.291253109113873, "x3": -0.47394738869206865, "x4": 1.1643922624811909, "x5": 0.29027015952385393}}, null] -[[0, 0, 20], 81.0, {"submitted": 1557070910.71427, "started": 1557070910.7143307, "finished": 1557070910.7197328}, {"loss": 0.4927004346190076, "info": {"x0": -5.484177507194564, "x1": 6.309459332305621, "x2": 4.654858436616626, "x3": -2.8273528257863654, "x4": 3.927463400400449, "x5": 0.25554378672125744}}, null] -[[0, 0, 21], 81.0, {"submitted": 1557070910.7210736, "started": 1557070910.721146, "finished": 1557070910.72668}, {"loss": 0.4092397221602898, "info": {"x0": -3.8417656722995743, "x1": 4.268341448141811, "x2": 6.463396290638421, "x3": -3.558280214755333, "x4": 3.131513640850673, "x5": 0.2035405990576219}}, null] -[[0, 0, 22], 81.0, {"submitted": 1557070910.727927, "started": 1557070910.7280123, "finished": 1557070910.7334685}, {"loss": 0.4831010875379908, "info": {"x0": -5.141657109674128, "x1": 6.773660172894378, "x2": 4.267638787901233, "x3": -0.7244943657719598, "x4": 4.598480710823317, "x5": 0.3249298203283687}}, null] -[[0, 0, 23], 81.0, {"submitted": 1557070910.7345612, "started": 1557070910.7346299, "finished": 1557070910.7402723}, {"loss": 0.40808895244464594, "info": {"x0": -4.058898746609611, "x1": 4.031512930288246, "x2": 7.298022529755391, "x3": -2.447723837157242, "x4": 2.84921563556939, "x5": 0.19616781633071417}}, null] -[[0, 0, 24], 81.0, {"submitted": 1557070910.7413383, "started": 1557070910.7413943, "finished": 1557070910.746328}, {"loss": 0.18753563113613508, "info": {"x0": -2.3800178143063198, "x1": 5.476041046123255, "x2": 7.0548176150329205, "x3": -0.921356479894873, "x4": 3.4304080877999508, "x5": 0.1381254459604805}}, null] -[[0, 0, 25], 81.0, {"submitted": 1557070910.7473118, "started": 1557070910.7473805, "finished": 1557070910.7524562}, {"loss": 0.3832255163124973, "info": {"x0": -2.5165857013339044, "x1": 3.4402089374180695, "x2": 7.532456501650572, "x3": -2.6667254440712562, "x4": 1.2273736405087456, "x5": 0.07139783008877221}}, null] -[[0, 0, 26], 81.0, {"submitted": 1557070910.7535403, "started": 1557070910.753615, "finished": 1557070910.7590094}, {"loss": 0.4098032018789777, "info": {"x0": -4.241236747708186, "x1": 6.61581080747488, "x2": 4.019474825717607, "x3": -1.1542429848618885, "x4": 3.8356503285649084, "x5": 0.01252075244041545}}, null] -[[0, 0, 0], 243.0, {"submitted": 1557070910.759803, "started": 1557070910.759881, "finished": 1557070910.7652385}, {"loss": 0.29442703933308795, "info": {"x0": -2.2351987615850537, "x1": 6.335440996688257, "x2": 6.215278610353543, "x3": -2.2286691461962076, "x4": 4.994936110054605, "x5": 0.22462278541384412}}, null] -[[0, 0, 4], 243.0, {"submitted": 1557070910.7659283, "started": 1557070910.766003, "finished": 1557070910.7713828}, {"loss": 0.28260953745903966, "info": {"x0": -2.929333445393379, "x1": 4.240250383019706, "x2": 6.48259420556626, "x3": -0.16366493964157192, "x4": 2.5508412791924333, "x5": 0.29052987634611044}}, null] -[[0, 0, 8], 243.0, {"submitted": 1557070910.771997, "started": 1557070910.772075, "finished": 1557070910.7774916}, {"loss": 0.002509820219414516, "info": {"x0": -2.8190744295862484, "x1": 5.320907549962181, "x2": 7.72901660596024, "x3": -2.0427037260640653, "x4": 2.158650890223447, "x5": 0.019798452434232894}}, null] -[[0, 0, 11], 243.0, {"submitted": 1557070910.778086, "started": 1557070910.778143, "finished": 1557070910.7827885}, {"loss": 0.19181705996156792, "info": {"x0": -3.2726870560986256, "x1": 4.867324554114601, "x2": 6.829904103702054, "x3": -0.5391460730668953, "x4": 4.314705142490157, "x5": 0.2597161348856433}}, null] -[[0, 0, 12], 243.0, {"submitted": 1557070910.783416, "started": 1557070910.7834864, "finished": 1557070910.788711}, {"loss": 0.2358791888065773, "info": {"x0": -3.98534505184552, "x1": 6.608710389510057, "x2": 5.104091524032782, "x3": -0.44047170392490864, "x4": 1.6043223188306364, "x5": 0.005467626543827819}}, null] -[[0, 0, 14], 243.0, {"submitted": 1557070910.7894595, "started": 1557070910.789515, "finished": 1557070910.7946963}, {"loss": 0.3474756184281265, "info": {"x0": -3.0257345888253413, "x1": 7.200344008159706, "x2": 5.443926337605854, "x3": -3.1116868801774187, "x4": 1.0874242688580855, "x5": 0.15992306112636528}}, null] -[[0, 0, 16], 243.0, {"submitted": 1557070910.7952816, "started": 1557070910.7953312, "finished": 1557070910.8004403}, {"loss": 0.075802849386574, "info": {"x0": -3.100824162358461, "x1": 4.14467896036638, "x2": 6.7916903116179315, "x3": -0.500299754188887, "x4": 3.1811021840200735, "x5": 0.12127966952961505}}, null] -[[0, 0, 24], 243.0, {"submitted": 1557070910.8010728, "started": 1557070910.8011298, "finished": 1557070910.8059838}, {"loss": 0.07805851050200237, "info": {"x0": -2.3800178143063198, "x1": 5.476041046123255, "x2": 7.0548176150329205, "x3": -0.921356479894873, "x4": 3.4304080877999508, "x5": 0.1381254459604805}}, null] -[[0, 0, 25], 243.0, {"submitted": 1557070910.806629, "started": 1557070910.8066833, "finished": 1557070910.8113585}, {"loss": 0.34822397175475567, "info": {"x0": -2.5165857013339044, "x1": 3.4402089374180695, "x2": 7.532456501650572, "x3": -2.6667254440712562, "x4": 1.2273736405087456, "x5": 0.07139783008877221}}, null] -[[0, 0, 8], 729.0, {"submitted": 1557070910.8120744, "started": 1557070910.8121283, "finished": 1557070910.8172605}, {"loss": 0.0010594373070614616, "info": {"x0": -2.8190744295862484, "x1": 5.320907549962181, "x2": 7.72901660596024, "x3": -2.0427037260640653, "x4": 2.158650890223447, "x5": 0.019798452434232894}}, null] -[[0, 0, 16], 729.0, {"submitted": 1557070910.8179517, "started": 1557070910.8180037, "finished": 1557070910.8230011}, {"loss": 0.037225873701408195, "info": {"x0": -3.100824162358461, "x1": 4.14467896036638, "x2": 6.7916903116179315, "x3": -0.500299754188887, "x4": 3.1811021840200735, "x5": 0.12127966952961505}}, null] -[[0, 0, 24], 729.0, {"submitted": 1557070910.8237417, "started": 1557070910.8238108, "finished": 1557070910.8291142}, {"loss": 0.04474518194758492, "info": {"x0": -2.3800178143063198, "x1": 5.476041046123255, "x2": 7.0548176150329205, "x3": -0.921356479894873, "x4": 3.4304080877999508, "x5": 0.1381254459604805}}, null] -[[0, 0, 8], 2187.0, {"submitted": 1557070910.8298366, "started": 1557070910.829905, "finished": 1557070910.8350525}, {"loss": 0.0009716288081777936, "info": {"x0": -2.8190744295862484, "x1": 5.320907549962181, "x2": 7.72901660596024, "x3": -2.0427037260640653, "x4": 2.158650890223447, "x5": 0.019798452434232894}}, null] -[[1, 0, 0], 243.0, {"submitted": 1557070910.836671, "started": 1557070910.8367577, "finished": 1557070910.8425808}, {"loss": 0.31615011005863874, "info": {"x0": -3.6777819451720815, "x1": 5.071603174522883, "x2": 7.080813249898796, "x3": -1.66105840760626, "x4": 1.66263458421746, "x5": 0.42978088471957593}}, null] -[[1, 0, 1], 243.0, {"submitted": 1557070910.8436613, "started": 1557070910.8437445, "finished": 1557070910.8504133}, {"loss": 0.42597052042747185, "info": {"x0": -4.530481678777063, "x1": 3.5115290543717306, "x2": 4.808136665432835, "x3": -3.003896707309853, "x4": 2.834009551797318, "x5": 0.2645720317144373}}, null] -[[1, 0, 2], 243.0, {"submitted": 1557070910.8514857, "started": 1557070910.8515525, "finished": 1557070910.8568017}, {"loss": 0.45599082014505654, "info": {"x0": -5.45572359654401, "x1": 7.66809567414327, "x2": 6.209049300292341, "x3": -3.1674051866035438, "x4": 1.5422874041530648, "x5": 0.33637477189362286}}, null] -[[1, 0, 3], 243.0, {"submitted": 1557070910.8579686, "started": 1557070910.8580546, "finished": 1557070910.8633265}, {"loss": 0.35049242739674696, "info": {"x0": -2.2191408295291364, "x1": 6.7761021261913665, "x2": 6.156721350718854, "x3": -1.3651984720365085, "x4": 2.04492984659457, "x5": 0.4530499026897392}}, null] -[[1, 0, 4], 243.0, {"submitted": 1557070910.864477, "started": 1557070910.8645506, "finished": 1557070910.8697631}, {"loss": 0.41235229062023065, "info": {"x0": -4.722646070959184, "x1": 6.6210301734737715, "x2": 5.805602158809631, "x3": -1.4807678585921664, "x4": 2.226581174432021, "x5": 0.12304433106548984}}, null] -[[1, 0, 5], 243.0, {"submitted": 1557070910.8709247, "started": 1557070910.8710063, "finished": 1557070910.8773525}, {"loss": 0.41752900924328956, "info": {"x0": -4.144500833290202, "x1": 7.413393394055354, "x2": 4.401610210689727, "x3": -2.9553868179702256, "x4": 2.373025691018829, "x5": 0.14630828890268288}}, null] -[[1, 0, 6], 243.0, {"submitted": 1557070910.8787806, "started": 1557070910.8788655, "finished": 1557070910.8856354}, {"loss": 0.42271675764523503, "info": {"x0": -4.510247586017671, "x1": 5.977982929871361, "x2": 4.288201248186695, "x3": -2.9305184574911465, "x4": 2.2350474192044194, "x5": 0.27889119044589694}}, null] -[[1, 0, 7], 243.0, {"submitted": 1557070910.8868923, "started": 1557070910.8869681, "finished": 1557070910.8944488}, {"loss": 0.3386091829672714, "info": {"x0": -3.307174628980932, "x1": 3.659356485774025, "x2": 6.119128473016406, "x3": -0.3784130976857223, "x4": 4.323782650107799, "x5": 0.3065847563827823}}, null] -[[1, 0, 8], 243.0, {"submitted": 1557070910.8958192, "started": 1557070910.895891, "finished": 1557070910.9021444}, {"loss": 0.48294090804501294, "info": {"x0": -5.509806022353897, "x1": 3.6899104725640903, "x2": 4.627200341270171, "x3": -3.120736703234332, "x4": 2.4436771367163197, "x5": 0.2784329470319033}}, null] -[[1, 0, 0], 729.0, {"submitted": 1557070910.903071, "started": 1557070910.9031541, "finished": 1557070910.910555}, {"loss": 0.22314786048734989, "info": {"x0": -3.6777819451720815, "x1": 5.071603174522883, "x2": 7.080813249898796, "x3": -1.66105840760626, "x4": 1.66263458421746, "x5": 0.42978088471957593}}, null] -[[1, 0, 3], 729.0, {"submitted": 1557070910.9116547, "started": 1557070910.9118304, "finished": 1557070910.9205532}, {"loss": 0.34023915105949765, "info": {"x0": -2.2191408295291364, "x1": 6.7761021261913665, "x2": 6.156721350718854, "x3": -1.3651984720365085, "x4": 2.04492984659457, "x5": 0.4530499026897392}}, null] -[[1, 0, 7], 729.0, {"submitted": 1557070910.9213665, "started": 1557070910.9214382, "finished": 1557070910.9265425}, {"loss": 0.26246833784713414, "info": {"x0": -3.307174628980932, "x1": 3.659356485774025, "x2": 6.119128473016406, "x3": -0.3784130976857223, "x4": 4.323782650107799, "x5": 0.3065847563827823}}, null] -[[1, 0, 0], 2187.0, {"submitted": 1557070910.9272623, "started": 1557070910.9273157, "finished": 1557070910.9328287}, {"loss": 0.19971362722548985, "info": {"x0": -3.6777819451720815, "x1": 5.071603174522883, "x2": 7.080813249898796, "x3": -1.66105840760626, "x4": 1.66263458421746, "x5": 0.42978088471957593}}, null] -[[2, 0, 0], 729.0, {"submitted": 1557070910.93414, "started": 1557070910.9342222, "finished": 1557070910.940825}, {"loss": 0.37651723091457234, "info": {"x0": -2.1117279044427204, "x1": 6.928094486550981, "x2": 5.901438799943015, "x3": -2.591487771451807, "x4": 3.817874191987456, "x5": 0.36339857167023853}}, null] -[[2, 0, 1], 729.0, {"submitted": 1557070910.9421299, "started": 1557070910.9422073, "finished": 1557070910.947444}, {"loss": 0.4149759521004207, "info": {"x0": -5.633514010266158, "x1": 6.365208520563194, "x2": 6.7894353927985325, "x3": -0.6849722377208871, "x4": 3.547778271302562, "x5": 0.19696774804495426}}, null] -[[2, 0, 2], 729.0, {"submitted": 1557070910.948366, "started": 1557070910.948422, "finished": 1557070910.9532058}, {"loss": 0.35171424845005816, "info": {"x0": -4.364026519787239, "x1": 4.794606026954471, "x2": 7.957885895672977, "x3": -2.579894692883431, "x4": 2.348872929582024, "x5": 0.18683725867234308}}, null] -[[2, 0, 3], 729.0, {"submitted": 1557070910.9541745, "started": 1557070910.954228, "finished": 1557070910.9591389}, {"loss": 0.414393057086365, "info": {"x0": -4.844976359496685, "x1": 3.6410622274308606, "x2": 6.413354530513695, "x3": -2.1449589395011524, "x4": 3.4271894405573873, "x5": 0.43181887085044923}}, null] -[[2, 0, 4], 729.0, {"submitted": 1557070910.9600487, "started": 1557070910.9601128, "finished": 1557070910.9650853}, {"loss": 0.4827551485195099, "info": {"x0": -5.533213186912697, "x1": 7.774430690628414, "x2": 5.678366006007707, "x3": -3.8366259195499657, "x4": 2.9848266642980845, "x5": 0.3009151392664698}}, null] -[[2, 0, 5], 729.0, {"submitted": 1557070910.9660933, "started": 1557070910.9661725, "finished": 1557070910.971088}, {"loss": 0.31783038335847513, "info": {"x0": -2.9196414322220634, "x1": 6.455502828452885, "x2": 7.736931662622066, "x3": -0.39427978164256583, "x4": 1.3898471436890336, "x5": 0.27261224649349575}}, null] -[[2, 0, 2], 2187.0, {"submitted": 1557070910.9719841, "started": 1557070910.972055, "finished": 1557070910.979001}, {"loss": 0.33155407623530264, "info": {"x0": -4.364026519787239, "x1": 4.794606026954471, "x2": 7.957885895672977, "x3": -2.579894692883431, "x4": 2.348872929582024, "x5": 0.18683725867234308}}, null] -[[2, 0, 5], 2187.0, {"submitted": 1557070910.9797878, "started": 1557070910.9798746, "finished": 1557070910.986941}, {"loss": 0.31783038335847513, "info": {"x0": -2.9196414322220634, "x1": 6.455502828452885, "x2": 7.736931662622066, "x3": -0.39427978164256583, "x4": 1.3898471436890336, "x5": 0.27261224649349575}}, null] -[[3, 0, 0], 2187.0, {"submitted": 1557070910.9884157, "started": 1557070910.9885113, "finished": 1557070910.9954596}, {"loss": 0.39695582725179673, "info": {"x0": -3.4169845355056077, "x1": 5.182103596869972, "x2": 4.467660638324201, "x3": -0.09638985331221273, "x4": 1.6336855126414105, "x5": 0.4145567140267736}}, null] -[[3, 0, 1], 2187.0, {"submitted": 1557070910.997042, "started": 1557070910.9971433, "finished": 1557070911.002598}, {"loss": 0.31604508643756446, "info": {"x0": -3.6575683689228202, "x1": 5.7043095536536805, "x2": 4.906878931850418, "x3": -0.10377215587974087, "x4": 3.702464890697497, "x5": 0.19563935827456125}}, null] -[[3, 0, 2], 2187.0, {"submitted": 1557070911.0038836, "started": 1557070911.003962, "finished": 1557070911.0100899}, {"loss": 0.43622071004948004, "info": {"x0": -5.459434860579883, "x1": 6.052411125632304, "x2": 5.557701545426526, "x3": -3.1991111901868203, "x4": 1.3133776930551453, "x5": 0.102554790598608}}, null] -[[3, 0, 3], 2187.0, {"submitted": 1557070911.0113246, "started": 1557070911.0113983, "finished": 1557070911.0168068}, {"loss": 0.43637117936645053, "info": {"x0": -5.646800282802811, "x1": 7.776097692716239, "x2": 6.745602922633785, "x3": -1.6004584926467191, "x4": 2.7250871380839015, "x5": 0.27636432697419794}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/randomsearch/configs.json deleted file mode 100644 index e1d7f29..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/randomsearch/configs.json +++ /dev/null @@ -1,16 +0,0 @@ -[[0, 0, 0], {"x0": -3.9044219487866454, "x1": 7.569345183362934, "x2": 7.5690534693550715, "x3": -0.11469451978538547, "x4": 1.9193638384363503, "x5": 0.17828355278126373}, {}] -[[0, 0, 1], {"x0": -3.32582852200564, "x1": 6.779526429209603, "x2": 5.963431197863487, "x3": -3.3420251116756754, "x4": 2.3173288960379823, "x5": 0.36746846098579183}, {}] -[[0, 0, 2], {"x0": -5.278473903697531, "x1": 5.965612228695035, "x2": 4.978401613330067, "x3": -2.4716516386573537, "x4": 1.9344866646978471, "x5": 0.15049121102458668}, {}] -[[0, 0, 3], {"x0": -3.357936591772003, "x1": 4.407442785816333, "x2": 4.10085298955177, "x3": -3.1057175915086517, "x4": 1.7733381074964463, "x5": 0.0023906581154546913}, {}] -[[1, 0, 0], {"x0": -3.9807169060444467, "x1": 7.715725753492501, "x2": 6.679858859765818, "x3": -2.748261272902812, "x4": 3.1009224242804816, "x5": 0.0890674684368773}, {}] -[[1, 0, 1], {"x0": -5.705834689547996, "x1": 7.783174338194544, "x2": 4.763816659024765, "x3": -1.6013306876456022, "x4": 3.3758771141141626, "x5": 0.4634902451065904}, {}] -[[1, 0, 2], {"x0": -3.970774831825817, "x1": 6.1721824694251675, "x2": 4.878789826165186, "x3": -1.2693905403678207, "x4": 4.493319858684508, "x5": 0.4383613402364717}, {}] -[[1, 0, 3], {"x0": -4.329513747887933, "x1": 6.198894373409692, "x2": 5.8093892253494, "x3": -0.6770437010197039, "x4": 2.250592076072202, "x5": 0.08780133767901765}, {}] -[[2, 0, 0], {"x0": -5.840953363187647, "x1": 6.989736898553868, "x2": 4.539870219367835, "x3": -2.9502931269858963, "x4": 2.2701290492035473, "x5": 0.33942129950708133}, {}] -[[2, 0, 1], {"x0": -4.3214265777548615, "x1": 3.4045755772213626, "x2": 5.519857784699917, "x3": -0.10130607887273779, "x4": 2.3210572824723172, "x5": 0.34580015116991486}, {}] -[[2, 0, 2], {"x0": -2.9006395251448076, "x1": 5.039135463566346, "x2": 7.665461919635525, "x3": -3.3101064722960136, "x4": 2.1017652307289865, "x5": 0.0966303654863811}, {}] -[[2, 0, 3], {"x0": -3.23242483023046, "x1": 6.024244178209523, "x2": 7.006308281176408, "x3": -3.7830241784472993, "x4": 3.3559949020985407, "x5": 0.32266937414415453}, {}] -[[3, 0, 0], {"x0": -2.929886402118699, "x1": 3.187337396493617, "x2": 4.7863598879161, "x3": -1.882316171454144, "x4": 1.5479908224144299, "x5": 0.4840324561559311}, {}] -[[3, 0, 1], {"x0": -3.531265679710517, "x1": 7.595667232783932, "x2": 4.026490049953516, "x3": -3.4051056157535373, "x4": 4.5790379004224215, "x5": 0.47053506180364646}, {}] -[[3, 0, 2], {"x0": -4.585179536841661, "x1": 6.664294375456657, "x2": 4.066868201198588, "x3": -2.0504686284015614, "x4": 2.449699672697872, "x5": 0.06453372111154049}, {}] -[[3, 0, 3], {"x0": -2.029299810380615, "x1": 3.011507046966313, "x2": 5.481119056702665, "x3": -2.0020096418731494, "x4": 3.7595929568406805, "x5": 0.205555636465373}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/randomsearch/results.json deleted file mode 100644 index 3dbb4c2..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/randomsearch/results.json +++ /dev/null @@ -1,16 +0,0 @@ -[[0, 0, 0], 2187, {"submitted": 1557070910.1804595, "started": 1557070910.1805289, "finished": 1557070910.184499}, {"loss": 0.15185897805192847, "info": {"x0": -3.9044219487866454, "x1": 7.569345183362934, "x2": 7.5690534693550715, "x3": -0.11469451978538547, "x4": 1.9193638384363503, "x5": 0.17828355278126373}}, null] -[[0, 0, 1], 2187, {"submitted": 1557070910.1855564, "started": 1557070910.1856148, "finished": 1557070910.1902666}, {"loss": 0.3150836122633789, "info": {"x0": -3.32582852200564, "x1": 6.779526429209603, "x2": 5.963431197863487, "x3": -3.3420251116756754, "x4": 2.3173288960379823, "x5": 0.36746846098579183}}, null] -[[0, 0, 2], 2187, {"submitted": 1557070910.1915781, "started": 1557070910.191774, "finished": 1557070910.1978507}, {"loss": 0.4401054539132986, "info": {"x0": -5.278473903697531, "x1": 5.965612228695035, "x2": 4.978401613330067, "x3": -2.4716516386573537, "x4": 1.9344866646978471, "x5": 0.15049121102458668}}, null] -[[0, 0, 3], 2187, {"submitted": 1557070910.1989121, "started": 1557070910.1989875, "finished": 1557070910.204437}, {"loss": 0.16981379328114685, "info": {"x0": -3.357936591772003, "x1": 4.407442785816333, "x2": 4.10085298955177, "x3": -3.1057175915086517, "x4": 1.7733381074964463, "x5": 0.0023906581154546913}}, null] -[[1, 0, 0], 2187, {"submitted": 1557070910.2054245, "started": 1557070910.2054958, "finished": 1557070910.2107382}, {"loss": 0.28778714139862177, "info": {"x0": -3.9807169060444467, "x1": 7.715725753492501, "x2": 6.679858859765818, "x3": -2.748261272902812, "x4": 3.1009224242804816, "x5": 0.0890674684368773}}, null] -[[1, 0, 1], 2187, {"submitted": 1557070910.2118158, "started": 1557070910.2118838, "finished": 1557070910.2176008}, {"loss": 0.4828945860197055, "info": {"x0": -5.705834689547996, "x1": 7.783174338194544, "x2": 4.763816659024765, "x3": -1.6013306876456022, "x4": 3.3758771141141626, "x5": 0.4634902451065904}}, null] -[[1, 0, 2], 2187, {"submitted": 1557070910.219073, "started": 1557070910.2191877, "finished": 1557070910.2259376}, {"loss": 0.4132886202290621, "info": {"x0": -3.970774831825817, "x1": 6.1721824694251675, "x2": 4.878789826165186, "x3": -1.2693905403678207, "x4": 4.493319858684508, "x5": 0.4383613402364717}}, null] -[[1, 0, 3], 2187, {"submitted": 1557070910.2273116, "started": 1557070910.2273993, "finished": 1557070910.2341936}, {"loss": 0.38332877236844287, "info": {"x0": -4.329513747887933, "x1": 6.198894373409692, "x2": 5.8093892253494, "x3": -0.6770437010197039, "x4": 2.250592076072202, "x5": 0.08780133767901765}}, null] -[[2, 0, 0], 2187, {"submitted": 1557070910.2352986, "started": 1557070910.2353683, "finished": 1557070910.240416}, {"loss": 0.49038564968168574, "info": {"x0": -5.840953363187647, "x1": 6.989736898553868, "x2": 4.539870219367835, "x3": -2.9502931269858963, "x4": 2.2701290492035473, "x5": 0.33942129950708133}}, null] -[[2, 0, 1], 2187, {"submitted": 1557070910.2414973, "started": 1557070910.2415583, "finished": 1557070910.2466784}, {"loss": 0.3788867232460504, "info": {"x0": -4.3214265777548615, "x1": 3.4045755772213626, "x2": 5.519857784699917, "x3": -0.10130607887273779, "x4": 2.3210572824723172, "x5": 0.34580015116991486}}, null] -[[2, 0, 2], 2187, {"submitted": 1557070910.2477355, "started": 1557070910.2477927, "finished": 1557070910.2528617}, {"loss": 0.0016573265274188675, "info": {"x0": -2.9006395251448076, "x1": 5.039135463566346, "x2": 7.665461919635525, "x3": -3.3101064722960136, "x4": 2.1017652307289865, "x5": 0.0966303654863811}}, null] -[[2, 0, 3], 2187, {"submitted": 1557070910.253987, "started": 1557070910.2540767, "finished": 1557070910.2596087}, {"loss": 0.062496136642865276, "info": {"x0": -3.23242483023046, "x1": 6.024244178209523, "x2": 7.006308281176408, "x3": -3.7830241784472993, "x4": 3.3559949020985407, "x5": 0.32266937414415453}}, null] -[[3, 0, 0], 2187, {"submitted": 1557070910.260723, "started": 1557070910.2607856, "finished": 1557070910.266168}, {"loss": 0.4143930602552074, "info": {"x0": -2.929886402118699, "x1": 3.187337396493617, "x2": 4.7863598879161, "x3": -1.882316171454144, "x4": 1.5479908224144299, "x5": 0.4840324561559311}}, null] -[[3, 0, 1], 2187, {"submitted": 1557070910.2674646, "started": 1557070910.2675333, "finished": 1557070910.273768}, {"loss": 0.46827383661157845, "info": {"x0": -3.531265679710517, "x1": 7.595667232783932, "x2": 4.026490049953516, "x3": -3.4051056157535373, "x4": 4.5790379004224215, "x5": 0.47053506180364646}}, null] -[[3, 0, 2], 2187, {"submitted": 1557070910.2747831, "started": 1557070910.274843, "finished": 1557070910.2805192}, {"loss": 0.4195980188561478, "info": {"x0": -4.585179536841661, "x1": 6.664294375456657, "x2": 4.066868201198588, "x3": -2.0504686284015614, "x4": 2.449699672697872, "x5": 0.06453372111154049}}, null] -[[3, 0, 3], 2187, {"submitted": 1557070910.2815502, "started": 1557070910.2816267, "finished": 1557070910.290327}, {"loss": 0.4085400507589867, "info": {"x0": -2.029299810380615, "x1": 3.011507046966313, "x2": 5.481119056702665, "x3": -2.0020096418731494, "x4": 3.7595929568406805, "x5": 0.205555636465373}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/runhistory.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/runhistory.json deleted file mode 100644 index ba9d95c..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/runhistory.json +++ /dev/null @@ -1,392 +0,0 @@ -{ - "data": [ - [ - [ - 1, - null, - 0 - ], - [ - 0.32103207657334343, - 0.04063248634338379, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 2, - null, - 0 - ], - [ - 0.20234037692749465, - 0.03391599655151367, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 3, - null, - 0 - ], - [ - 0.42444336305156216, - 0.03620314598083496, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 4, - null, - 0 - ], - [ - 0.3721034251219747, - 0.03952503204345703, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 5, - null, - 0 - ], - [ - 0.09220535231272806, - 0.041318655014038086, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 6, - null, - 0 - ], - [ - 0.4539871126204059, - 0.04164910316467285, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 7, - null, - 0 - ], - [ - 0.19842033164375894, - 0.03783535957336426, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 8, - null, - 0 - ], - [ - 0.3224392179926296, - 0.0428164005279541, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 9, - null, - 0 - ], - [ - 0.17855049901167883, - 0.045668840408325195, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 10, - null, - 0 - ], - [ - 0.35538542537083667, - 0.03979849815368652, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 11, - null, - 0 - ], - [ - 0.3588293676171851, - 0.03817939758300781, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 12, - null, - 0 - ], - [ - 0.4716237904949125, - 0.042084455490112305, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 13, - null, - 0 - ], - [ - 0.12543837994924897, - 0.04156780242919922, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 14, - null, - 0 - ], - [ - 0.4185690326768759, - 0.03839683532714844, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 15, - null, - 0 - ], - [ - 0.029007192667982497, - 0.03908395767211914, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ], - [ - [ - 16, - null, - 0 - ], - [ - 0.2511869552687723, - 0.04265928268432617, - { - "__enum__": "StatusType.SUCCESS" - }, - [] - ] - ] - ], - "config_origins": { - "1": "Random initial design.", - "2": "Random Search", - "3": "Random Search (sorted)", - "4": "Random Search", - "5": "Random Search", - "6": "Random Search", - "7": "Random Search", - "8": "Random Search (sorted)", - "9": "Random Search (sorted)", - "10": "Random Search", - "11": "Random Search (sorted)", - "12": "Random Search", - "13": "Random Search (sorted)", - "14": "Random Search", - "15": "Random Search (sorted)", - "16": "Random Search" - }, - "configs": { - "1": { - "x0": -4.143064484620699, - "x1": 3.41201617926935, - "x2": 5.885390375676876, - "x3": -1.3996332638421483, - "x4": 2.4787544701344886, - "x5": 0.06315585129981383 - }, - "2": { - "x0": -2.6469587013784497, - "x1": 4.0777176776897335, - "x2": 4.894130669530188, - "x3": -1.5950978305698338, - "x4": 1.8817094889080397, - "x5": 0.11818460275329984 - }, - "3": { - "x0": -5.726323293400514, - "x1": 7.476188856645505, - "x2": 6.418310501785704, - "x3": -1.2065220013073183, - "x4": 4.289067878398386, - "x5": 0.06682679116944812 - }, - "4": { - "x0": -2.9099644379362477, - "x1": 3.6902960794173025, - "x2": 5.072363871433158, - "x3": -1.922526243098079, - "x4": 1.3616487745054755, - "x5": 0.227496330483815 - }, - "5": { - "x0": -3.5515296284958286, - "x1": 3.4159337556575404, - "x2": 6.850258132478894, - "x3": -1.0137966424437348, - "x4": 4.663335884295854, - "x5": 0.2607717284028018 - }, - "6": { - "x0": -4.7299802298944424, - "x1": 6.60029852248508, - "x2": 4.777274899176871, - "x3": -0.0658260092843368, - "x4": 2.8870078984463627, - "x5": 0.4417218241571259 - }, - "7": { - "x0": -3.3305496452533703, - "x1": 6.25040884257302, - "x2": 5.881131151910826, - "x3": -3.8154043289992225, - "x4": 1.7827005186150466, - "x5": 0.19637945323924177 - }, - "8": { - "x0": -2.1904041908330667, - "x1": 7.54751909668406, - "x2": 6.201093591201966, - "x3": -3.417326026931067, - "x4": 4.236042553692262, - "x5": 0.3784562481161856 - }, - "9": { - "x0": -3.620636708553796, - "x1": 5.052005744850033, - "x2": 6.986275652599076, - "x3": -1.5883794837950607, - "x4": 2.7129643418140694, - "x5": 0.4053663253890675 - }, - "10": { - "x0": -3.994009338334601, - "x1": 4.33618140240007, - "x2": 6.1024680708812795, - "x3": -3.643408424073856, - "x4": 1.0571576131997338, - "x5": 0.023658071308379047 - }, - "11": { - "x0": -3.2420970116988883, - "x1": 4.7230742829563095, - "x2": 4.113257867864734, - "x3": -1.6345562744346842, - "x4": 2.691404327409383, - "x5": 0.19778419455991558 - }, - "12": { - "x0": -5.446387614532096, - "x1": 5.785369405528467, - "x2": 4.5324053021040305, - "x3": -1.6766989410855646, - "x4": 4.327498762527371, - "x5": 0.14413515461817533 - }, - "13": { - "x0": -3.8715074198322164, - "x1": 5.24090213306046, - "x2": 7.571780712243335, - "x3": -0.8848299266989224, - "x4": 1.9329501937396611, - "x5": 0.3113153153334344 - }, - "14": { - "x0": -5.988613323812425, - "x1": 5.381590167246204, - "x2": 6.735529359483694, - "x3": -0.14389078903232422, - "x4": 3.0392867007728706, - "x5": 0.04654615359920378 - }, - "15": { - "x0": -3.900032196859244, - "x1": 5.562547296496028, - "x2": 7.188160010744838, - "x3": -0.6017059649237835, - "x4": 3.8842385319756785, - "x5": 0.23351191896088325 - }, - "16": { - "x0": -3.81322652102452, - "x1": 7.374589252469348, - "x2": 7.494268778895577, - "x3": -3.1468421403924993, - "x4": 4.930746415474747, - "x5": 0.049432242482648714 - } - } -} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/scenario.txt b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/scenario.txt deleted file mode 100644 index 848b700..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/scenario.txt +++ /dev/null @@ -1,12 +0,0 @@ -execdir = . -deterministic = True -run_obj = quality -overall_obj = par10 -par_factor = 10 -cost_for_crash = 2147483647.0 -algo_runs_timelimit = inf -wallclock_limit = inf -always_race_default = False -ta_run_limit = 16.0 -initial_incumbent = RANDOM -pcs_fn = opt_results/paramnet_surrogate/poker/smac/run_389996652/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/stats.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/stats.json deleted file mode 100644 index 3ed93f7..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/stats.json +++ /dev/null @@ -1 +0,0 @@ -{"ta_runs": 16, "n_configs": 16, "wallclock_time_used": 13.914662599563599, "ta_time_used": 0.6413352489471436, "inc_changed": 4, "_n_configs_per_intensify": 14, "_n_calls_of_intensify": 7, "_ema_n_configs_per_intensifiy": 2.0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/traj_aclib2.json deleted file mode 100644 index e364a49..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/traj_aclib2.json +++ /dev/null @@ -1,5 +0,0 @@ -{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 7.033348083496094e-05, "evaluations": 0, "cost": 2147483648, "incumbent": ["x0='-4.143064484620699'", "x1='3.41201617926935'", "x2='5.885390375676876'", "x3='-1.3996332638421483'", "x4='2.4787544701344886'", "x5='0.06315585129981383'"], "origin": "Random initial design."} -{"cpu_time": 0.04063248634338379, "total_cpu_time": null, "wallclock_time": 0.08260107040405273, "evaluations": 1, "cost": 0.32103207657334343, "incumbent": ["x0='-4.143064484620699'", "x1='3.41201617926935'", "x2='5.885390375676876'", "x3='-1.3996332638421483'", "x4='2.4787544701344886'", "x5='0.06315585129981383'"], "origin": "Random initial design."} -{"cpu_time": 0.07454848289489746, "total_cpu_time": null, "wallclock_time": 0.42035937309265137, "evaluations": 2, "cost": 0.20234037692749465, "incumbent": ["x0='-2.6469587013784497'", "x1='4.0777176776897335'", "x2='4.894130669530188'", "x3='-1.5950978305698338'", "x4='1.8817094889080397'", "x5='0.11818460275329984'"], "origin": "Random Search"} -{"cpu_time": 0.19159531593322754, "total_cpu_time": null, "wallclock_time": 1.3232083320617676, "evaluations": 5, "cost": 0.09220535231272806, "incumbent": ["x0='-3.5515296284958286'", "x1='3.4159337556575404'", "x2='6.850258132478894'", "x3='-1.0137966424437348'", "x4='4.663335884295854'", "x5='0.2607717284028018'"], "origin": "Random Search"} -{"cpu_time": 0.5986759662628174, "total_cpu_time": null, "wallclock_time": 11.62325644493103, "evaluations": 15, "cost": 0.029007192667982497, "incumbent": ["x0='-3.900032196859244'", "x1='5.562547296496028'", "x2='7.188160010744838'", "x3='-0.6017059649237835'", "x4='3.8842385319756785'", "x5='0.23351191896088325'"], "origin": "Random Search (sorted)"} diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/traj_old.csv b/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/traj_old.csv deleted file mode 100644 index e6db07e..0000000 --- a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/traj_old.csv +++ /dev/null @@ -1,6 +0,0 @@ -"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." -0.000000, 2147483648.000000, 0.000070, 1, 0.000070, x0='-4.143064484620699', x1='3.41201617926935', x2='5.885390375676876', x3='-1.3996332638421483', x4='2.4787544701344886', x5='0.06315585129981383' -0.040632, 0.321032, 0.082601, 1, 0.041969, x0='-4.143064484620699', x1='3.41201617926935', x2='5.885390375676876', x3='-1.3996332638421483', x4='2.4787544701344886', x5='0.06315585129981383' -0.074548, 0.202340, 0.420359, 2, 0.345811, x0='-2.6469587013784497', x1='4.0777176776897335', x2='4.894130669530188', x3='-1.5950978305698338', x4='1.8817094889080397', x5='0.11818460275329984' -0.191595, 0.092205, 1.323208, 3, 1.131613, x0='-3.5515296284958286', x1='3.4159337556575404', x2='6.850258132478894', x3='-1.0137966424437348', x4='4.663335884295854', x5='0.2607717284028018' -0.598676, 0.029007, 11.623256, 4, 11.024580, x0='-3.900032196859244', x1='5.562547296496028', x2='7.188160010744838', x3='-0.6017059649237835', x4='3.8842385319756785', x5='0.23351191896088325' diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/bohb/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/bohb/configs.json new file mode 100644 index 0000000..62f2d99 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/bohb/configs.json @@ -0,0 +1,128 @@ +[[0, 0, 0], {"x0": -5.15686881032458, "x1": 7.2315219638944646, "x2": 7.212047765395952, "x3": -0.6358199494884471, "x4": 4.216252103542357, "x5": 0.37990333959295797}, {"model_based_pick": false}] +[[0, 0, 1], {"x0": -5.975185848548001, "x1": 3.9088978268607804, "x2": 5.889184120601508, "x3": -2.9252395056249503, "x4": 3.5348583560046856, "x5": 0.37935536623001814}, {"model_based_pick": false}] +[[0, 0, 2], {"x0": -5.892634853499836, "x1": 5.729832389723599, "x2": 6.826309904826703, "x3": -3.865560125310388, "x4": 3.3116800722842537, "x5": 0.17798565914047781}, {"model_based_pick": false}] +[[0, 0, 3], {"x0": -2.9931080695835863, "x1": 5.460754763135762, "x2": 7.719991964843164, "x3": -0.08781112826951087, "x4": 1.8767564530775633, "x5": 0.18438957173712117}, {"model_based_pick": false}] +[[0, 0, 4], {"x0": -3.5435467787370234, "x1": 6.591653364532542, "x2": 6.043020201706043, "x3": -0.11101900514343788, "x4": 4.639126521873411, "x5": 0.183052807495651}, {"model_based_pick": false}] +[[0, 0, 5], {"x0": -2.6917208198240323, "x1": 4.212517225317727, "x2": 5.550072251960076, "x3": -2.5296980570667507, "x4": 2.6598581170680506, "x5": 0.18245812274822676}, {"model_based_pick": false}] +[[0, 0, 6], {"x0": -2.3467307585338832, "x1": 6.235095305720578, "x2": 7.73475526855373, "x3": -2.7499877140092184, "x4": 3.307370283408885, "x5": 0.16109344742248694}, {"model_based_pick": false}] +[[0, 0, 7], {"x0": -5.974375763264281, "x1": 3.619244653809035, "x2": 6.572169310007478, "x3": -3.1434549965170095, "x4": 2.52490056308669, "x5": 0.4813362541049674}, {"model_based_pick": false}] +[[0, 0, 8], {"x0": -4.150489124007221, "x1": 3.2457528903161528, "x2": 6.876258655812547, "x3": -2.0008790987897846, "x4": 1.0001258574029488, "x5": 0.2785460533451156}, {"model_based_pick": false}] +[[0, 0, 9], {"x0": -5.803337931162378, "x1": 5.999724458509371, "x2": 4.399919513086821, "x3": -3.209632997211728, "x4": 1.3569242638778456, "x5": 0.27232122005812354}, {"model_based_pick": false}] +[[0, 0, 10], {"x0": -3.9396022533358472, "x1": 4.540813254760183, "x2": 5.700110188082608, "x3": -1.3255875800623613, "x4": 1.0058938789654266, "x5": 0.18062369454070243}, {"model_based_pick": false}] +[[0, 0, 11], {"x0": -3.44890594672476, "x1": 7.511352727056815, "x2": 5.239990272538832, "x3": -2.2696515283870307, "x4": 2.3603865469882823, "x5": 0.22010915158794492}, {"model_based_pick": false}] +[[0, 0, 12], {"x0": -2.061532998145789, "x1": 7.055982023137409, "x2": 4.54131534214511, "x3": -1.4409842439327583, "x4": 1.8149533820482109, "x5": 0.33306030250961194}, {"model_based_pick": false}] +[[0, 0, 13], {"x0": -2.6943602014856123, "x1": 3.306234437336303, "x2": 7.933681225555798, "x3": -3.346636581267029, "x4": 2.7166721448562132, "x5": 0.22810077462841644}, {"model_based_pick": false}] +[[0, 0, 14], {"x0": -3.072682907983653, "x1": 6.29514290900394, "x2": 6.761554823909811, "x3": -0.4941614881124212, "x4": 4.664040760286188, "x5": 0.19476226161502364}, {"model_based_pick": false}] +[[0, 0, 15], {"x0": -3.4886394311448345, "x1": 6.1083902805905606, "x2": 7.401274509918068, "x3": -1.9209140873859076, "x4": 3.3406447254387888, "x5": 0.27344027670338616}, {"model_based_pick": false}] +[[0, 0, 16], {"x0": -2.6552723330930204, "x1": 7.6413308847544625, "x2": 7.414607969296435, "x3": -3.048315993139383, "x4": 3.5551927102937597, "x5": 0.19237383920578674}, {"model_based_pick": true}] +[[0, 0, 17], {"x0": -4.727532590956209, "x1": 4.060726473672846, "x2": 6.820991674633261, "x3": -3.146309218777372, "x4": 4.582960849844589, "x5": 0.24617773383271313}, {"model_based_pick": false}] +[[0, 0, 18], {"x0": -2.816884914555361, "x1": 3.5226014003832176, "x2": 5.547491359702931, "x3": -2.4334173276474926, "x4": 2.435590964472291, "x5": 0.17734974914744409}, {"model_based_pick": true}] +[[0, 0, 19], {"x0": -2.730167764741446, "x1": 4.127924306866206, "x2": 4.080022530658715, "x3": -3.1252763988863004, "x4": 2.246828074035678, "x5": 0.17735917474524449}, {"model_based_pick": true}] +[[0, 0, 20], {"x0": -4.968306329432683, "x1": 4.509141967903255, "x2": 5.730691106485166, "x3": -0.462336368762184, "x4": 3.8543300582790505, "x5": 0.3466758660160611}, {"model_based_pick": false}] +[[0, 0, 21], {"x0": -2.859799801763864, "x1": 3.4597260866485224, "x2": 4.428260173645625, "x3": -0.7400986378868821, "x4": 2.7467892474133904, "x5": 0.16523442753653553}, {"model_based_pick": true}] +[[0, 0, 22], {"x0": -2.6137322321924716, "x1": 4.677080324188133, "x2": 5.806135728973772, "x3": -2.5918060020237013, "x4": 3.356348527063376, "x5": 0.17185081932688118}, {"model_based_pick": true}] +[[0, 0, 23], {"x0": -2.052880432174135, "x1": 6.196565482805144, "x2": 6.901611975098838, "x3": -3.134478753882763, "x4": 3.2873814941286286, "x5": 0.16001216202945462}, {"model_based_pick": true}] +[[0, 0, 24], {"x0": -2.289724935946428, "x1": 4.926329623715347, "x2": 6.662660462309178, "x3": -1.3476610464864591, "x4": 4.361919854440959, "x5": 0.19216621494070762}, {"model_based_pick": false}] +[[0, 0, 25], {"x0": -2.0882648233221963, "x1": 7.785963907876233, "x2": 6.378172187853476, "x3": -2.8094059717770543, "x4": 3.456373978495998, "x5": 0.15071562086146215}, {"model_based_pick": true}] +[[0, 0, 26], {"x0": -5.860448886676872, "x1": 6.437565533625266, "x2": 6.737399816712135, "x3": -0.8022599072073002, "x4": 3.819559507965561, "x5": 0.08979591138053966}, {"model_based_pick": false}] +[[1, 0, 0], {"x0": -2.4940273940297195, "x1": 7.223917723290782, "x2": 6.182609991603749, "x3": -3.2374406211009075, "x4": 3.651668155103864, "x5": 0.18719942161858263}, {"model_based_pick": true}] +[[1, 0, 1], {"x0": -3.2599288730293594, "x1": 5.4397706763232065, "x2": 7.765107128795538, "x3": -0.1387093941519053, "x4": 2.6316512977503486, "x5": 0.17669344966162595}, {"model_based_pick": true}] +[[1, 0, 2], {"x0": -5.91405221919284, "x1": 4.492350488619039, "x2": 6.144825686864432, "x3": -2.7696583893738875, "x4": 2.5051672143620873, "x5": 0.46959423441955267}, {"model_based_pick": false}] +[[1, 0, 3], {"x0": -2.0296947818565503, "x1": 6.506420036147828, "x2": 5.505813872788671, "x3": -3.6790766533424355, "x4": 2.6698104231977595, "x5": 0.16527547372138526}, {"model_based_pick": true}] +[[1, 0, 4], {"x0": -4.589474898764163, "x1": 7.707498860609432, "x2": 4.736643133387213, "x3": -2.4497436989861594, "x4": 3.979092595860346, "x5": 0.24876020785621278}, {"model_based_pick": false}] +[[1, 0, 5], {"x0": -2.667172165783984, "x1": 7.0668550440048845, "x2": 6.964310581478136, "x3": -3.2750379363400204, "x4": 3.130991485721422, "x5": 0.17734036022638305}, {"model_based_pick": true}] +[[1, 0, 6], {"x0": -2.1874933991531655, "x1": 5.448207873587077, "x2": 7.103387576147437, "x3": -2.8309111032299628, "x4": 3.4012282410802124, "x5": 0.15531402224554655}, {"model_based_pick": true}] +[[1, 0, 7], {"x0": -2.468608306487937, "x1": 6.840955801918024, "x2": 5.752892785108464, "x3": -3.270096291312073, "x4": 3.5183759602112823, "x5": 0.16898620738039086}, {"model_based_pick": true}] +[[1, 0, 8], {"x0": -3.9060165954367165, "x1": 4.120487967142355, "x2": 7.4113871696046845, "x3": -0.2809528398881631, "x4": 2.011373822484513, "x5": 0.057929457300462006}, {"model_based_pick": false}] +[[2, 0, 0], {"x0": -2.6108626176566117, "x1": 7.945855119427077, "x2": 6.155571303832027, "x3": -3.438069768068032, "x4": 3.795921224842031, "x5": 0.1968147345758346}, {"model_based_pick": true}] +[[2, 0, 1], {"x0": -2.3313796415809764, "x1": 4.7916310627862435, "x2": 7.017117845420014, "x3": -2.5275182196733095, "x4": 3.8470905826914854, "x5": 0.16780811746741298}, {"model_based_pick": true}] +[[2, 0, 2], {"x0": -4.370228381467781, "x1": 4.94537180345339, "x2": 7.511678673797369, "x3": -2.4655822123755016, "x4": 4.5382348813739695, "x5": 0.11200149634115553}, {"model_based_pick": false}] +[[2, 0, 3], {"x0": -2.4601231502555274, "x1": 5.950698071346752, "x2": 7.8174063790647335, "x3": -2.7062196509882845, "x4": 3.233359590657712, "x5": 0.167657731538958}, {"model_based_pick": true}] +[[2, 0, 4], {"x0": -4.839137470182124, "x1": 5.281221754091013, "x2": 4.5468308550122405, "x3": -3.9582155609084517, "x4": 4.516575970692327, "x5": 0.22560994979344334}, {"model_based_pick": false}] +[[2, 0, 5], {"x0": -2.8212492028098595, "x1": 4.804964068483388, "x2": 6.278716669447764, "x3": -2.5069474850960782, "x4": 3.762590469934138, "x5": 0.1750182149726913}, {"model_based_pick": true}] +[[3, 0, 0], {"x0": -2.5852734240936908, "x1": 6.490198222955183, "x2": 7.7667227122193445, "x3": -2.9183530310674692, "x4": 3.486873878345431, "x5": 0.18307815117768572}, {"model_based_pick": true}] +[[3, 0, 1], {"x0": -4.413032721796737, "x1": 5.784411292659046, "x2": 6.80598654850365, "x3": -0.2861761394804616, "x4": 3.4891719801221965, "x5": 0.43548626318576467}, {"model_based_pick": false}] +[[3, 0, 2], {"x0": -4.153744854780104, "x1": 4.233353333949092, "x2": 7.052669360067435, "x3": -0.5937703265476793, "x4": 3.569046205920008, "x5": 0.2107779114779491}, {"model_based_pick": false}] +[[3, 0, 3], {"x0": -4.086398786189664, "x1": 5.071801820037695, "x2": 5.333455082925313, "x3": -1.85981100666343, "x4": 3.9052043493255573, "x5": 0.10066003053979483}, {"model_based_pick": false}] +[[4, 0, 0], {"x0": -2.6091824210656833, "x1": 7.903529817493633, "x2": 7.248217067299828, "x3": -2.9990141740885994, "x4": 3.0688702526296896, "x5": 0.19060421980380127}, {"model_based_pick": true}] +[[4, 0, 1], {"x0": -2.694406972938843, "x1": 6.793925521576874, "x2": 7.765794350996061, "x3": -2.9657759105297528, "x4": 3.257950598891437, "x5": 0.17487937126980688}, {"model_based_pick": true}] +[[4, 0, 2], {"x0": -5.44917066558475, "x1": 5.612620636729524, "x2": 6.27804722188052, "x3": -1.2819988526970332, "x4": 3.5687390737907614, "x5": 0.42885825206793476}, {"model_based_pick": false}] +[[4, 0, 3], {"x0": -2.309896499142773, "x1": 4.8508294417320155, "x2": 7.9795700629282225, "x3": -2.5739687837441902, "x4": 3.156299404013666, "x5": 0.17139858410852418}, {"model_based_pick": true}] +[[4, 0, 4], {"x0": -2.5078599015900727, "x1": 6.57470002594515, "x2": 7.240943985075087, "x3": -2.754980260967929, "x4": 3.4093377276816224, "x5": 0.16767093758497234}, {"model_based_pick": true}] +[[4, 0, 5], {"x0": -3.7592845741658545, "x1": 4.1229904696950275, "x2": 7.6454770559141245, "x3": -2.5823586552322806, "x4": 4.164558694783446, "x5": 0.08297754528193352}, {"model_based_pick": false}] +[[4, 0, 6], {"x0": -2.866738746193603, "x1": 4.9840025694169166, "x2": 4.247035329463587, "x3": -3.2916476373354033, "x4": 1.2889760622583337, "x5": 0.17158699244634196}, {"model_based_pick": true}] +[[4, 0, 7], {"x0": -2.5490325306962713, "x1": 6.998689489282251, "x2": 6.036068196823528, "x3": -3.3077451108679785, "x4": 3.420009364319802, "x5": 0.19462645026383724}, {"model_based_pick": true}] +[[4, 0, 8], {"x0": -5.486407418604705, "x1": 3.8013178449554585, "x2": 4.929529758718422, "x3": -0.5760816672234048, "x4": 2.1630894411164814, "x5": 0.4916822753584863}, {"model_based_pick": false}] +[[4, 0, 9], {"x0": -3.36285890803085, "x1": 4.248491903692779, "x2": 6.550609156984085, "x3": -0.11732493144419687, "x4": 4.199523483035742, "x5": 0.014269900193904284}, {"model_based_pick": false}] +[[4, 0, 10], {"x0": -2.692868991123784, "x1": 6.2021209190784745, "x2": 4.1122189968755, "x3": -3.349453955116722, "x4": 1.9090135918784659, "x5": 0.17983236267288616}, {"model_based_pick": true}] +[[4, 0, 11], {"x0": -4.765067896858038, "x1": 4.6933233614362475, "x2": 7.068340593116353, "x3": -0.30285124623638726, "x4": 1.712334702744469, "x5": 0.46680935730405837}, {"model_based_pick": false}] +[[4, 0, 12], {"x0": -3.0641070976159783, "x1": 7.7676146875382175, "x2": 6.473738787763455, "x3": -1.1151138372797673, "x4": 2.274689027308646, "x5": 0.006741741662304235}, {"model_based_pick": false}] +[[4, 0, 13], {"x0": -2.3463501002594516, "x1": 6.660505245736129, "x2": 6.692257521511192, "x3": -2.7937611167219183, "x4": 3.689078208203941, "x5": 0.16469195189828983}, {"model_based_pick": true}] +[[4, 0, 14], {"x0": -2.137562863849417, "x1": 4.0490114392271295, "x2": 5.962212835462552, "x3": -0.7885177715848304, "x4": 4.818442348448263, "x5": 0.48238802141576714}, {"model_based_pick": false}] +[[4, 0, 15], {"x0": -3.474557330110438, "x1": 4.216313498313935, "x2": 7.12410362240509, "x3": -1.8589856017523454, "x4": 3.2310471480429377, "x5": 0.1573425602303533}, {"model_based_pick": false}] +[[4, 0, 16], {"x0": -2.3270169201546675, "x1": 7.5546013472262885, "x2": 7.920150854627595, "x3": -2.75490785623193, "x4": 3.2261142847774664, "x5": 0.1539249424857586}, {"model_based_pick": true}] +[[4, 0, 17], {"x0": -2.7332276579464576, "x1": 3.0086011298257747, "x2": 6.280969853257829, "x3": -2.53303760409173, "x4": 2.856689550572619, "x5": 0.17397375974705576}, {"model_based_pick": true}] +[[4, 0, 18], {"x0": -3.5960422047285507, "x1": 5.512808886943641, "x2": 7.143232277273794, "x3": -0.5930139159448045, "x4": 4.42319015916067, "x5": 0.4751596391517019}, {"model_based_pick": false}] +[[4, 0, 19], {"x0": -2.7679294814278563, "x1": 4.509882401723822, "x2": 6.626951858434992, "x3": -2.489821156190186, "x4": 3.1685802803100507, "x5": 0.1577834099401497}, {"model_based_pick": true}] +[[4, 0, 20], {"x0": -2.6217873039073565, "x1": 7.382940425774061, "x2": 7.607980550470435, "x3": -3.521048076329546, "x4": 3.7966854738686777, "x5": 0.17749393674047642}, {"model_based_pick": true}] +[[4, 0, 21], {"x0": -2.8001808992493746, "x1": 5.368209944150519, "x2": 5.4361778846008395, "x3": -3.289245756195201, "x4": 3.553651409462004, "x5": 0.22102358485068957}, {"model_based_pick": false}] +[[4, 0, 22], {"x0": -2.6554378517286352, "x1": 6.1968123254878975, "x2": 7.785809723109287, "x3": -3.1516569056842303, "x4": 4.084694112744588, "x5": 0.19362168640003719}, {"model_based_pick": true}] +[[4, 0, 23], {"x0": -2.1089377909809164, "x1": 4.939888446248068, "x2": 7.9760478512693265, "x3": -3.1713937175142304, "x4": 3.1445686949053195, "x5": 0.1644001527158567}, {"model_based_pick": true}] +[[4, 0, 24], {"x0": -2.0139035179066775, "x1": 7.180629729263526, "x2": 7.662915418741342, "x3": -3.0097094796709896, "x4": 2.9673543545393763, "x5": 0.15691429080081495}, {"model_based_pick": true}] +[[4, 0, 25], {"x0": -2.579979878712663, "x1": 3.6986576551963877, "x2": 4.708542569006952, "x3": -3.0265871218266556, "x4": 2.026497379343386, "x5": 0.17503661151861685}, {"model_based_pick": true}] +[[4, 0, 26], {"x0": -2.284807232333427, "x1": 7.173781346506753, "x2": 7.645201733955539, "x3": -2.735554713746864, "x4": 2.5117810658696462, "x5": 0.15619999783894642}, {"model_based_pick": true}] +[[5, 0, 0], {"x0": -2.201127572228253, "x1": 4.008259875080353, "x2": 4.937862338676363, "x3": -3.356881439691705, "x4": 1.2173818582290805, "x5": 0.19054061141261602}, {"model_based_pick": true}] +[[5, 0, 1], {"x0": -3.9940553053090855, "x1": 4.243312623717907, "x2": 6.546266567891036, "x3": -1.459577489248777, "x4": 1.6596783360716139, "x5": 0.1490887587433667}, {"model_based_pick": true}] +[[5, 0, 2], {"x0": -2.5125875387532197, "x1": 3.244695895931491, "x2": 7.665684697950708, "x3": -2.4325482476911566, "x4": 1.4137237746553413, "x5": 0.17724306317710967}, {"model_based_pick": true}] +[[5, 0, 3], {"x0": -3.426495832801997, "x1": 4.425766894387273, "x2": 5.1901898369610535, "x3": -0.7297720489596213, "x4": 4.779139550507878, "x5": 0.10806448356244086}, {"model_based_pick": false}] +[[5, 0, 4], {"x0": -2.5022609311871817, "x1": 3.288027947066876, "x2": 6.18903657642606, "x3": -3.094930908435852, "x4": 2.2339594640121807, "x5": 0.13453295665677828}, {"model_based_pick": false}] +[[5, 0, 5], {"x0": -3.512052967535679, "x1": 7.34508301355893, "x2": 5.945621423011607, "x3": -1.9946494193682542, "x4": 4.203020428133042, "x5": 0.013893617735023234}, {"model_based_pick": false}] +[[5, 0, 6], {"x0": -2.139735516606583, "x1": 6.085010238998828, "x2": 7.471873068902228, "x3": -2.8044253382721425, "x4": 1.78374830867362, "x5": 0.24072333205209967}, {"model_based_pick": false}] +[[5, 0, 7], {"x0": -2.118565110350799, "x1": 3.681071547006251, "x2": 7.422041316713154, "x3": -3.129724898725745, "x4": 1.0080210264277936, "x5": 0.179379584283564}, {"model_based_pick": true}] +[[5, 0, 8], {"x0": -5.85505864375537, "x1": 5.843747777296883, "x2": 4.5786685350677025, "x3": -1.4020904036599595, "x4": 3.8043342810863545, "x5": 0.3593661342637794}, {"model_based_pick": false}] +[[6, 0, 0], {"x0": -2.9376126667197267, "x1": 5.884364949765854, "x2": 4.78697696266441, "x3": -0.7120286649199428, "x4": 1.0563912963084485, "x5": 0.15998773950857836}, {"model_based_pick": true}] +[[6, 0, 1], {"x0": -2.4913873770871846, "x1": 6.349962056331908, "x2": 4.316078912443985, "x3": -3.0723154676959883, "x4": 1.9711516004742156, "x5": 0.1787247636989231}, {"model_based_pick": true}] +[[6, 0, 2], {"x0": -5.697672536845649, "x1": 3.6464598598583446, "x2": 6.216026916730415, "x3": -2.1258829096106666, "x4": 4.1019288354890415, "x5": 0.23452608067185743}, {"model_based_pick": false}] +[[6, 0, 3], {"x0": -2.7190467061455146, "x1": 6.007185507987052, "x2": 5.892582443273083, "x3": -3.800298003225105, "x4": 4.6377494555976995, "x5": 0.024964536678160065}, {"model_based_pick": false}] +[[6, 0, 4], {"x0": -2.5113193171558432, "x1": 7.766427294679639, "x2": 7.897264751521041, "x3": -1.9397879944138312, "x4": 2.7403227773247054, "x5": 0.165242723522334}, {"model_based_pick": true}] +[[6, 0, 5], {"x0": -2.9847906589170172, "x1": 3.7516234764643115, "x2": 6.560383711692155, "x3": -2.028013564204701, "x4": 1.505236953513497, "x5": 0.17922979794742178}, {"model_based_pick": true}] +[[7, 0, 0], {"x0": -2.45921941162368, "x1": 4.229480164211742, "x2": 4.285996305606855, "x3": -2.702792227497105, "x4": 2.523758955503287, "x5": 0.16088316980686207}, {"model_based_pick": true}] +[[7, 0, 1], {"x0": -2.15307521032908, "x1": 3.5235445143743656, "x2": 4.767093664748013, "x3": -2.7565673796896357, "x4": 2.866524452824085, "x5": 0.16621002109155866}, {"model_based_pick": true}] +[[7, 0, 2], {"x0": -2.636520949174737, "x1": 7.883462312538595, "x2": 4.560050731535289, "x3": -2.9796832838854685, "x4": 3.97718740494222, "x5": 0.17219585511953603}, {"model_based_pick": true}] +[[7, 0, 3], {"x0": -4.357756761630929, "x1": 4.851197400784852, "x2": 4.657507815322994, "x3": -1.0985204202644496, "x4": 1.8188838407367087, "x5": 0.3346785190892232}, {"model_based_pick": false}] +[[8, 0, 0], {"x0": -3.7884125530530692, "x1": 3.347674199974966, "x2": 4.334175989947923, "x3": -3.7622326706204907, "x4": 3.5697155420759152, "x5": 0.3136798963585588}, {"model_based_pick": false}] +[[8, 0, 1], {"x0": -3.6354205765165646, "x1": 4.150273708615137, "x2": 6.588790240370595, "x3": -2.8572875634211643, "x4": 1.554584053390176, "x5": 0.47874825121215636}, {"model_based_pick": false}] +[[8, 0, 2], {"x0": -2.5195483398411596, "x1": 7.314122313684838, "x2": 6.810590016308078, "x3": -2.475801459387389, "x4": 2.0694105532653726, "x5": 0.16346516218876297}, {"model_based_pick": true}] +[[8, 0, 3], {"x0": -2.4288432564134323, "x1": 7.610533898870486, "x2": 7.880383129072808, "x3": -2.6026303921110454, "x4": 3.3550151166179774, "x5": 0.17235497830153143}, {"model_based_pick": true}] +[[8, 0, 4], {"x0": -2.481872275842868, "x1": 3.1727448639957934, "x2": 7.127236612390208, "x3": -2.4911746924559655, "x4": 1.772952658726836, "x5": 0.17802669813994507}, {"model_based_pick": true}] +[[8, 0, 5], {"x0": -2.7335190657086947, "x1": 4.079661308850747, "x2": 7.243730080811618, "x3": -2.623461726167962, "x4": 3.990661424919009, "x5": 0.20099278874098359}, {"model_based_pick": false}] +[[8, 0, 6], {"x0": -2.4765209709118357, "x1": 5.39556388036087, "x2": 7.093288577075617, "x3": -2.5386232233416375, "x4": 1.0070001436702554, "x5": 0.18669912909991138}, {"model_based_pick": true}] +[[8, 0, 7], {"x0": -2.1569908987316526, "x1": 6.367189012513345, "x2": 7.904523634690481, "x3": -0.8136155190818264, "x4": 1.9478746374688827, "x5": 0.12497903990312331}, {"model_based_pick": false}] +[[8, 0, 8], {"x0": -2.5250628950043734, "x1": 7.879228487723913, "x2": 7.88010492231448, "x3": -3.6295888456231973, "x4": 4.166570281460274, "x5": 0.18515240695838955}, {"model_based_pick": true}] +[[8, 0, 9], {"x0": -2.353764361964292, "x1": 7.111900310054281, "x2": 7.438388279312951, "x3": -2.722584351901644, "x4": 3.145092736719562, "x5": 0.14939571487359501}, {"model_based_pick": true}] +[[8, 0, 10], {"x0": -2.1706198669463554, "x1": 4.584686727182276, "x2": 4.47098955378865, "x3": -0.5157049949495396, "x4": 3.4228119964339885, "x5": 0.37825697729502844}, {"model_based_pick": false}] +[[8, 0, 11], {"x0": -2.500997766814863, "x1": 4.609845732902844, "x2": 7.422953183156016, "x3": -2.087060760524445, "x4": 1.4982477834294052, "x5": 0.18293685121904166}, {"model_based_pick": true}] +[[8, 0, 12], {"x0": -3.9675524203923445, "x1": 6.861734644724297, "x2": 5.966371878455732, "x3": -2.3537598281872243, "x4": 3.2774222257965198, "x5": 0.4521294958913686}, {"model_based_pick": false}] +[[8, 0, 13], {"x0": -2.510982552652958, "x1": 7.663715335748076, "x2": 7.155679768887145, "x3": -2.3073129044098826, "x4": 2.6482884702064187, "x5": 0.18636051457487665}, {"model_based_pick": true}] +[[8, 0, 14], {"x0": -2.3573430326260896, "x1": 7.06310062097361, "x2": 7.530469956224274, "x3": -2.5366141453045206, "x4": 1.6174762470580941, "x5": 0.17070047631522992}, {"model_based_pick": true}] +[[8, 0, 15], {"x0": -2.543991235464288, "x1": 7.713820228100786, "x2": 7.671446743232948, "x3": -3.202385207385535, "x4": 1.340887506658587, "x5": 0.17143231246600976}, {"model_based_pick": true}] +[[8, 0, 16], {"x0": -4.73690596892718, "x1": 4.6818657996491115, "x2": 5.636107266638902, "x3": -3.6660515411740566, "x4": 1.8730171342686144, "x5": 0.3674203370616897}, {"model_based_pick": false}] +[[8, 0, 17], {"x0": -3.081091439424283, "x1": 3.8664443956997014, "x2": 5.886652931897018, "x3": -1.3424824530414994, "x4": 4.698176513607133, "x5": 0.26504297749825206}, {"model_based_pick": false}] +[[8, 0, 18], {"x0": -2.5226826442684755, "x1": 7.200391221170538, "x2": 7.796874700484517, "x3": -1.9872035186572239, "x4": 1.0899248808656707, "x5": 0.15050842530339162}, {"model_based_pick": true}] +[[8, 0, 19], {"x0": -4.226379853831052, "x1": 6.232460047180539, "x2": 7.491483985164589, "x3": -0.43143877674814446, "x4": 3.618552872032622, "x5": 0.4256169045472076}, {"model_based_pick": false}] +[[8, 0, 20], {"x0": -2.4920729591879285, "x1": 7.55554386882763, "x2": 6.995678093770117, "x3": -2.0391740532667577, "x4": 2.166877678304898, "x5": 0.15112576465998287}, {"model_based_pick": true}] +[[8, 0, 21], {"x0": -5.654845525388064, "x1": 6.376126123600574, "x2": 4.094961943581881, "x3": -3.5270163430570793, "x4": 2.9147388933351213, "x5": 0.11138071340721506}, {"model_based_pick": false}] +[[8, 0, 22], {"x0": -3.5440848887007, "x1": 4.434539101233847, "x2": 5.454531189743035, "x3": -1.8163718420675017, "x4": 2.6206597706782486, "x5": 0.2127432659548309}, {"model_based_pick": false}] +[[8, 0, 23], {"x0": -5.358246676795307, "x1": 4.219948735025079, "x2": 7.282020524712619, "x3": -3.7180013324185097, "x4": 4.2712968224455325, "x5": 0.4872595427666512}, {"model_based_pick": false}] +[[8, 0, 24], {"x0": -5.212032975915107, "x1": 3.1063847782737737, "x2": 6.949731809964712, "x3": -0.6547986870577822, "x4": 1.3923709426401838, "x5": 0.10596699092598172}, {"model_based_pick": false}] +[[8, 0, 25], {"x0": -2.5270715172741536, "x1": 3.915051448583604, "x2": 6.216679735586317, "x3": -2.8149806412174954, "x4": 1.3030755251319717, "x5": 0.17985923227753314}, {"model_based_pick": true}] +[[8, 0, 26], {"x0": -2.43819558529585, "x1": 7.91525314351785, "x2": 7.273449825491949, "x3": -2.908645979997339, "x4": 1.7597383020913977, "x5": 0.17257435730821433}, {"model_based_pick": true}] +[[9, 0, 0], {"x0": -5.238298188559485, "x1": 4.367095042707257, "x2": 5.102365589054932, "x3": -0.4378254556603345, "x4": 1.126005546196991, "x5": 0.39498154284183795}, {"model_based_pick": false}] +[[9, 0, 1], {"x0": -2.6756983731768824, "x1": 3.844463750452506, "x2": 7.476642600291793, "x3": -2.605095349044924, "x4": 1.3387321267307963, "x5": 0.19162690447067512}, {"model_based_pick": true}] +[[9, 0, 2], {"x0": -2.443672079856221, "x1": 6.822196280507671, "x2": 6.924183059106763, "x3": -3.449005763259539, "x4": 4.341410734005239, "x5": 0.1922295129713013}, {"model_based_pick": true}] +[[9, 0, 3], {"x0": -2.3678527984482596, "x1": 6.654417401610326, "x2": 5.858091301927765, "x3": -1.6944916681574211, "x4": 4.930691045814662, "x5": 0.2395292008616956}, {"model_based_pick": false}] +[[9, 0, 4], {"x0": -4.251477908808765, "x1": 6.594587899794971, "x2": 6.304307979848133, "x3": -1.471124609275774, "x4": 1.2683143766382114, "x5": 0.311777686770752}, {"model_based_pick": false}] +[[9, 0, 5], {"x0": -2.4963584052553096, "x1": 6.834822394361216, "x2": 7.236809487275525, "x3": -3.3645995733061014, "x4": 3.9409162516736536, "x5": 0.19099009898395694}, {"model_based_pick": true}] +[[9, 0, 6], {"x0": -2.4616374603053974, "x1": 3.6453470683479874, "x2": 6.967419652350118, "x3": -2.7380411249606933, "x4": 2.362335267495266, "x5": 0.1737865028448347}, {"model_based_pick": true}] +[[9, 0, 7], {"x0": -4.9465424717471755, "x1": 4.834985443369193, "x2": 4.699564848574699, "x3": -3.7446214104227447, "x4": 3.598499118823584, "x5": 0.10785687991698356}, {"model_based_pick": false}] +[[9, 0, 8], {"x0": -2.5738066939282676, "x1": 7.530688622247068, "x2": 7.068326930967579, "x3": -2.8338265811632493, "x4": 4.921186767153196, "x5": 0.19656182427958227}, {"model_based_pick": true}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/bohb/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/bohb/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/bohb/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/bohb/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/bohb/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/bohb/results.json new file mode 100644 index 0000000..776ed21 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/bohb/results.json @@ -0,0 +1,183 @@ +[[0, 0, 0], 9.0, {"submitted": 1558193377.0669012, "started": 1558193377.067414, "finished": 1558193377.075109}, {"loss": 0.20949073984501537, "info": {"x0": -5.15686881032458, "x1": 7.2315219638944646, "x2": 7.212047765395952, "x3": -0.6358199494884471, "x4": 4.216252103542357, "x5": 0.37990333959295797}}, null] +[[0, 0, 1], 9.0, {"submitted": 1558193377.077296, "started": 1558193377.0776367, "finished": 1558193377.084284}, {"loss": 0.3088703653052173, "info": {"x0": -5.975185848548001, "x1": 3.9088978268607804, "x2": 5.889184120601508, "x3": -2.9252395056249503, "x4": 3.5348583560046856, "x5": 0.37935536623001814}}, null] +[[0, 0, 2], 9.0, {"submitted": 1558193377.0873418, "started": 1558193377.0877604, "finished": 1558193377.09528}, {"loss": 0.2688333291295502, "info": {"x0": -5.892634853499836, "x1": 5.729832389723599, "x2": 6.826309904826703, "x3": -3.865560125310388, "x4": 3.3116800722842537, "x5": 0.17798565914047781}}, null] +[[0, 0, 3], 9.0, {"submitted": 1558193377.0984056, "started": 1558193377.0989544, "finished": 1558193377.1063967}, {"loss": 0.1519907393499657, "info": {"x0": -2.9931080695835863, "x1": 5.460754763135762, "x2": 7.719991964843164, "x3": -0.08781112826951087, "x4": 1.8767564530775633, "x5": 0.18438957173712117}}, null] +[[0, 0, 4], 9.0, {"submitted": 1558193377.1085813, "started": 1558193377.1089127, "finished": 1558193377.1150243}, {"loss": 0.1596388847419509, "info": {"x0": -3.5435467787370234, "x1": 6.591653364532542, "x2": 6.043020201706043, "x3": -0.11101900514343788, "x4": 4.639126521873411, "x5": 0.183052807495651}}, null] +[[0, 0, 5], 9.0, {"submitted": 1558193377.117235, "started": 1558193377.1182244, "finished": 1558193377.126083}, {"loss": 0.1526203690397519, "info": {"x0": -2.6917208198240323, "x1": 4.212517225317727, "x2": 5.550072251960076, "x3": -2.5296980570667507, "x4": 2.6598581170680506, "x5": 0.18245812274822676}}, null] +[[0, 0, 6], 9.0, {"submitted": 1558193377.1287794, "started": 1558193377.129198, "finished": 1558193377.136414}, {"loss": 0.15151851624857496, "info": {"x0": -2.3467307585338832, "x1": 6.235095305720578, "x2": 7.73475526855373, "x3": -2.7499877140092184, "x4": 3.307370283408885, "x5": 0.16109344742248694}}, null] +[[0, 0, 7], 9.0, {"submitted": 1558193377.1396313, "started": 1558193377.1400123, "finished": 1558193377.1472795}, {"loss": 0.33656789967316536, "info": {"x0": -5.974375763264281, "x1": 3.619244653809035, "x2": 6.572169310007478, "x3": -3.1434549965170095, "x4": 2.52490056308669, "x5": 0.4813362541049674}}, null] +[[0, 0, 8], 9.0, {"submitted": 1558193377.1534598, "started": 1558193377.153972, "finished": 1558193377.1625752}, {"loss": 0.16167592164598127, "info": {"x0": -4.150489124007221, "x1": 3.2457528903161528, "x2": 6.876258655812547, "x3": -2.0008790987897846, "x4": 1.0001258574029488, "x5": 0.2785460533451156}}, null] +[[0, 0, 9], 9.0, {"submitted": 1558193377.1652007, "started": 1558193377.1656196, "finished": 1558193377.1724648}, {"loss": 0.41761111183630095, "info": {"x0": -5.803337931162378, "x1": 5.999724458509371, "x2": 4.399919513086821, "x3": -3.209632997211728, "x4": 1.3569242638778456, "x5": 0.27232122005812354}}, null] +[[0, 0, 10], 9.0, {"submitted": 1558193377.1749232, "started": 1558193377.1752903, "finished": 1558193377.1814353}, {"loss": 0.15705555236587926, "info": {"x0": -3.9396022533358472, "x1": 4.540813254760183, "x2": 5.700110188082608, "x3": -1.3255875800623613, "x4": 1.0058938789654266, "x5": 0.18062369454070243}}, null] +[[0, 0, 11], 9.0, {"submitted": 1558193377.1853402, "started": 1558193377.185879, "finished": 1558193377.1955154}, {"loss": 0.1539143527123939, "info": {"x0": -3.44890594672476, "x1": 7.511352727056815, "x2": 5.239990272538832, "x3": -2.2696515283870307, "x4": 2.3603865469882823, "x5": 0.22010915158794492}}, null] +[[0, 0, 12], 9.0, {"submitted": 1558193377.1985621, "started": 1558193377.1996264, "finished": 1558193377.208416}, {"loss": 0.1558981487557844, "info": {"x0": -2.061532998145789, "x1": 7.055982023137409, "x2": 4.54131534214511, "x3": -1.4409842439327583, "x4": 1.8149533820482109, "x5": 0.33306030250961194}}, null] +[[0, 0, 13], 9.0, {"submitted": 1558193377.2117612, "started": 1558193377.21212, "finished": 1558193377.224437}, {"loss": 0.1577685165626031, "info": {"x0": -2.6943602014856123, "x1": 3.306234437336303, "x2": 7.933681225555798, "x3": -3.346636581267029, "x4": 2.7166721448562132, "x5": 0.22810077462841644}}, null] +[[0, 0, 14], 9.0, {"submitted": 1558193377.228774, "started": 1558193377.229242, "finished": 1558193377.2361488}, {"loss": 0.1526296299342756, "info": {"x0": -3.072682907983653, "x1": 6.29514290900394, "x2": 6.761554823909811, "x3": -0.4941614881124212, "x4": 4.664040760286188, "x5": 0.19476226161502364}}, null] +[[0, 0, 15], 9.0, {"submitted": 1558193377.2399201, "started": 1558193377.240485, "finished": 1558193377.2503986}, {"loss": 0.15496296310038477, "info": {"x0": -3.4886394311448345, "x1": 6.1083902805905606, "x2": 7.401274509918068, "x3": -1.9209140873859076, "x4": 3.3406447254387888, "x5": 0.27344027670338616}}, null] +[[0, 0, 16], 9.0, {"submitted": 1558193377.3167899, "started": 1558193377.3172226, "finished": 1558193377.3300855}, {"loss": 0.15134259088889315, "info": {"x0": -2.6552723330930204, "x1": 7.6413308847544625, "x2": 7.414607969296435, "x3": -3.048315993139383, "x4": 3.5551927102937597, "x5": 0.19237383920578674}}, null] +[[0, 0, 17], 9.0, {"submitted": 1558193377.3353436, "started": 1558193377.3357313, "finished": 1558193377.3426971}, {"loss": 0.18523147852498073, "info": {"x0": -4.727532590956209, "x1": 4.060726473672846, "x2": 6.820991674633261, "x3": -3.146309218777372, "x4": 4.582960849844589, "x5": 0.24617773383271313}}, null] +[[0, 0, 18], 9.0, {"submitted": 1558193377.4287462, "started": 1558193377.4292622, "finished": 1558193377.4406958}, {"loss": 0.15354629586857776, "info": {"x0": -2.816884914555361, "x1": 3.5226014003832176, "x2": 5.547491359702931, "x3": -2.4334173276474926, "x4": 2.435590964472291, "x5": 0.17734974914744409}}, null] +[[0, 0, 19], 9.0, {"submitted": 1558193377.5569186, "started": 1558193377.5575058, "finished": 1558193377.5643232}, {"loss": 0.15077777773279838, "info": {"x0": -2.730167764741446, "x1": 4.127924306866206, "x2": 4.080022530658715, "x3": -3.1252763988863004, "x4": 2.246828074035678, "x5": 0.17735917474524449}}, null] +[[0, 0, 20], 9.0, {"submitted": 1558193377.5700583, "started": 1558193377.57057, "finished": 1558193377.5800672}, {"loss": 0.20532407309280504, "info": {"x0": -4.968306329432683, "x1": 4.509141967903255, "x2": 5.730691106485166, "x3": -0.462336368762184, "x4": 3.8543300582790505, "x5": 0.3466758660160611}}, null] +[[0, 0, 21], 9.0, {"submitted": 1558193377.6764421, "started": 1558193377.676872, "finished": 1558193377.6829731}, {"loss": 0.15482870265579335, "info": {"x0": -2.859799801763864, "x1": 3.4597260866485224, "x2": 4.428260173645625, "x3": -0.7400986378868821, "x4": 2.7467892474133904, "x5": 0.16523442753653553}}, null] +[[0, 0, 22], 9.0, {"submitted": 1558193377.7643158, "started": 1558193377.7647033, "finished": 1558193377.775073}, {"loss": 0.15152777580475366, "info": {"x0": -2.6137322321924716, "x1": 4.677080324188133, "x2": 5.806135728973772, "x3": -2.5918060020237013, "x4": 3.356348527063376, "x5": 0.17185081932688118}}, null] +[[0, 0, 23], 9.0, {"submitted": 1558193377.8593755, "started": 1558193377.859803, "finished": 1558193377.8688047}, {"loss": 0.15076851838992705, "info": {"x0": -2.052880432174135, "x1": 6.196565482805144, "x2": 6.901611975098838, "x3": -3.134478753882763, "x4": 3.2873814941286286, "x5": 0.16001216202945462}}, null] +[[0, 0, 24], 9.0, {"submitted": 1558193377.876201, "started": 1558193377.8766947, "finished": 1558193377.8886838}, {"loss": 0.15539814937445856, "info": {"x0": -2.289724935946428, "x1": 4.926329623715347, "x2": 6.662660462309178, "x3": -1.3476610464864591, "x4": 4.361919854440959, "x5": 0.19216621494070762}}, null] +[[0, 0, 25], 9.0, {"submitted": 1558193377.9845676, "started": 1558193377.9850135, "finished": 1558193377.9935632}, {"loss": 0.15167592790612466, "info": {"x0": -2.0882648233221963, "x1": 7.785963907876233, "x2": 6.378172187853476, "x3": -2.8094059717770543, "x4": 3.456373978495998, "x5": 0.15071562086146215}}, null] +[[0, 0, 26], 9.0, {"submitted": 1558193378.002649, "started": 1558193378.0030313, "finished": 1558193378.0122933}, {"loss": 0.29298148028607723, "info": {"x0": -5.860448886676872, "x1": 6.437565533625266, "x2": 6.737399816712135, "x3": -0.8022599072073002, "x4": 3.819559507965561, "x5": 0.08979591138053966}}, null] +[[0, 0, 3], 27.0, {"submitted": 1558193378.0196698, "started": 1558193378.0228825, "finished": 1558193378.0304098}, {"loss": 0.15112962853853348, "info": {"x0": -2.9931080695835863, "x1": 5.460754763135762, "x2": 7.719991964843164, "x3": -0.08781112826951087, "x4": 1.8767564530775633, "x5": 0.18438957173712117}}, null] +[[0, 0, 5], 27.0, {"submitted": 1558193378.0320506, "started": 1558193378.0323744, "finished": 1558193378.0406063}, {"loss": 0.15217592455225964, "info": {"x0": -2.6917208198240323, "x1": 4.212517225317727, "x2": 5.550072251960076, "x3": -2.5296980570667507, "x4": 2.6598581170680506, "x5": 0.18245812274822676}}, null] +[[0, 0, 6], 27.0, {"submitted": 1558193378.0433128, "started": 1558193378.0438714, "finished": 1558193378.053664}, {"loss": 0.14865740517995976, "info": {"x0": -2.3467307585338832, "x1": 6.235095305720578, "x2": 7.73475526855373, "x3": -2.7499877140092184, "x4": 3.307370283408885, "x5": 0.16109344742248694}}, null] +[[0, 0, 14], 27.0, {"submitted": 1558193378.056902, "started": 1558193378.057599, "finished": 1558193378.0686934}, {"loss": 0.15102777803716835, "info": {"x0": -3.072682907983653, "x1": 6.29514290900394, "x2": 6.761554823909811, "x3": -0.4941614881124212, "x4": 4.664040760286188, "x5": 0.19476226161502364}}, null] +[[0, 0, 16], 27.0, {"submitted": 1558193378.070159, "started": 1558193378.0706358, "finished": 1558193378.0780745}, {"loss": 0.1490185191956935, "info": {"x0": -2.6552723330930204, "x1": 7.6413308847544625, "x2": 7.414607969296435, "x3": -3.048315993139383, "x4": 3.5551927102937597, "x5": 0.19237383920578674}}, null] +[[0, 0, 19], 27.0, {"submitted": 1558193378.0804133, "started": 1558193378.0807686, "finished": 1558193378.0887806}, {"loss": 0.15015740765603608, "info": {"x0": -2.730167764741446, "x1": 4.127924306866206, "x2": 4.080022530658715, "x3": -3.1252763988863004, "x4": 2.246828074035678, "x5": 0.17735917474524449}}, null] +[[0, 0, 22], 27.0, {"submitted": 1558193378.092566, "started": 1558193378.0931988, "finished": 1558193378.1000612}, {"loss": 0.14997222006210575, "info": {"x0": -2.6137322321924716, "x1": 4.677080324188133, "x2": 5.806135728973772, "x3": -2.5918060020237013, "x4": 3.356348527063376, "x5": 0.17185081932688118}}, null] +[[0, 0, 23], 27.0, {"submitted": 1558193378.1023738, "started": 1558193378.1030655, "finished": 1558193378.111673}, {"loss": 0.14947222225368023, "info": {"x0": -2.052880432174135, "x1": 6.196565482805144, "x2": 6.901611975098838, "x3": -3.134478753882763, "x4": 3.2873814941286286, "x5": 0.16001216202945462}}, null] +[[0, 0, 25], 27.0, {"submitted": 1558193378.1138244, "started": 1558193378.114701, "finished": 1558193378.1212971}, {"loss": 0.15139814892024908, "info": {"x0": -2.0882648233221963, "x1": 7.785963907876233, "x2": 6.378172187853476, "x3": -2.8094059717770543, "x4": 3.456373978495998, "x5": 0.15071562086146215}}, null] +[[0, 0, 6], 81.0, {"submitted": 1558193378.1243377, "started": 1558193378.1248667, "finished": 1558193378.132415}, {"loss": 0.14898147973804565, "info": {"x0": -2.3467307585338832, "x1": 6.235095305720578, "x2": 7.73475526855373, "x3": -2.7499877140092184, "x4": 3.307370283408885, "x5": 0.16109344742248694}}, null] +[[0, 0, 16], 81.0, {"submitted": 1558193378.1341627, "started": 1558193378.1344988, "finished": 1558193378.1420555}, {"loss": 0.1490370365248786, "info": {"x0": -2.6552723330930204, "x1": 7.6413308847544625, "x2": 7.414607969296435, "x3": -3.048315993139383, "x4": 3.5551927102937597, "x5": 0.19237383920578674}}, null] +[[0, 0, 23], 81.0, {"submitted": 1558193378.1447718, "started": 1558193378.1451404, "finished": 1558193378.1559658}, {"loss": 0.15020370392998061, "info": {"x0": -2.052880432174135, "x1": 6.196565482805144, "x2": 6.901611975098838, "x3": -3.134478753882763, "x4": 3.2873814941286286, "x5": 0.16001216202945462}}, null] +[[0, 0, 6], 243.0, {"submitted": 1558193378.1577308, "started": 1558193378.1581743, "finished": 1558193378.1700425}, {"loss": 0.1497685168920844, "info": {"x0": -2.3467307585338832, "x1": 6.235095305720578, "x2": 7.73475526855373, "x3": -2.7499877140092184, "x4": 3.307370283408885, "x5": 0.16109344742248694}}, null] +[[1, 0, 0], 27.0, {"submitted": 1558193378.2617087, "started": 1558193378.2630856, "finished": 1558193378.273436}, {"loss": 0.1489444425133643, "info": {"x0": -2.4940273940297195, "x1": 7.223917723290782, "x2": 6.182609991603749, "x3": -3.2374406211009075, "x4": 3.651668155103864, "x5": 0.18719942161858263}}, null] +[[1, 0, 1], 27.0, {"submitted": 1558193378.3640344, "started": 1558193378.3644826, "finished": 1558193378.380047}, {"loss": 0.15099074079151506, "info": {"x0": -3.2599288730293594, "x1": 5.4397706763232065, "x2": 7.765107128795538, "x3": -0.1387093941519053, "x4": 2.6316512977503486, "x5": 0.17669344966162595}}, null] +[[1, 0, 2], 27.0, {"submitted": 1558193378.3841827, "started": 1558193378.3846343, "finished": 1558193378.3922772}, {"loss": 0.2453055560125245, "info": {"x0": -5.91405221919284, "x1": 4.492350488619039, "x2": 6.144825686864432, "x3": -2.7696583893738875, "x4": 2.5051672143620873, "x5": 0.46959423441955267}}, null] +[[1, 0, 3], 27.0, {"submitted": 1558193378.47921, "started": 1558193378.4796124, "finished": 1558193378.4886384}, {"loss": 0.15189814881483713, "info": {"x0": -2.0296947818565503, "x1": 6.506420036147828, "x2": 5.505813872788671, "x3": -3.6790766533424355, "x4": 2.6698104231977595, "x5": 0.16527547372138526}}, null] +[[1, 0, 4], 27.0, {"submitted": 1558193378.4937084, "started": 1558193378.4941416, "finished": 1558193378.5041056}, {"loss": 0.2268703706672898, "info": {"x0": -4.589474898764163, "x1": 7.707498860609432, "x2": 4.736643133387213, "x3": -2.4497436989861594, "x4": 3.979092595860346, "x5": 0.24876020785621278}}, null] +[[1, 0, 5], 27.0, {"submitted": 1558193378.5761168, "started": 1558193378.5764952, "finished": 1558193378.5841289}, {"loss": 0.1502499966086061, "info": {"x0": -2.667172165783984, "x1": 7.0668550440048845, "x2": 6.964310581478136, "x3": -3.2750379363400204, "x4": 3.130991485721422, "x5": 0.17734036022638305}}, null] +[[1, 0, 6], 27.0, {"submitted": 1558193378.6511629, "started": 1558193378.6518145, "finished": 1558193378.6578543}, {"loss": 0.15034259347286488, "info": {"x0": -2.1874933991531655, "x1": 5.448207873587077, "x2": 7.103387576147437, "x3": -2.8309111032299628, "x4": 3.4012282410802124, "x5": 0.15531402224554655}}, null] +[[1, 0, 7], 27.0, {"submitted": 1558193378.7322745, "started": 1558193378.7328155, "finished": 1558193378.741597}, {"loss": 0.15054629413562792, "info": {"x0": -2.468608306487937, "x1": 6.840955801918024, "x2": 5.752892785108464, "x3": -3.270096291312073, "x4": 3.5183759602112823, "x5": 0.16898620738039086}}, null] +[[1, 0, 8], 27.0, {"submitted": 1558193378.7453187, "started": 1558193378.7462976, "finished": 1558193378.758726}, {"loss": 0.1530277768533539, "info": {"x0": -3.9060165954367165, "x1": 4.120487967142355, "x2": 7.4113871696046845, "x3": -0.2809528398881631, "x4": 2.011373822484513, "x5": 0.057929457300462006}}, null] +[[1, 0, 0], 81.0, {"submitted": 1558193378.7624047, "started": 1558193378.763176, "finished": 1558193378.7698205}, {"loss": 0.14916666469750578, "info": {"x0": -2.4940273940297195, "x1": 7.223917723290782, "x2": 6.182609991603749, "x3": -3.2374406211009075, "x4": 3.651668155103864, "x5": 0.18719942161858263}}, null] +[[1, 0, 5], 81.0, {"submitted": 1558193378.7720187, "started": 1558193378.772422, "finished": 1558193378.7790558}, {"loss": 0.15076851529655633, "info": {"x0": -2.667172165783984, "x1": 7.0668550440048845, "x2": 6.964310581478136, "x3": -3.2750379363400204, "x4": 3.130991485721422, "x5": 0.17734036022638305}}, null] +[[1, 0, 6], 81.0, {"submitted": 1558193378.780483, "started": 1558193378.7807872, "finished": 1558193378.7890897}, {"loss": 0.1516203714173149, "info": {"x0": -2.1874933991531655, "x1": 5.448207873587077, "x2": 7.103387576147437, "x3": -2.8309111032299628, "x4": 3.4012282410802124, "x5": 0.15531402224554655}}, null] +[[1, 0, 0], 243.0, {"submitted": 1558193378.7915926, "started": 1558193378.792097, "finished": 1558193378.8011525}, {"loss": 0.14916666469750578, "info": {"x0": -2.4940273940297195, "x1": 7.223917723290782, "x2": 6.182609991603749, "x3": -3.2374406211009075, "x4": 3.651668155103864, "x5": 0.18719942161858263}}, null] +[[2, 0, 0], 81.0, {"submitted": 1558193378.8823836, "started": 1558193378.8836536, "finished": 1558193378.8921964}, {"loss": 0.15125925566587184, "info": {"x0": -2.6108626176566117, "x1": 7.945855119427077, "x2": 6.155571303832027, "x3": -3.438069768068032, "x4": 3.795921224842031, "x5": 0.1968147345758346}}, null] +[[2, 0, 1], 81.0, {"submitted": 1558193378.9774718, "started": 1558193378.9778676, "finished": 1558193378.9840798}, {"loss": 0.15001851611887967, "info": {"x0": -2.3313796415809764, "x1": 4.7916310627862435, "x2": 7.017117845420014, "x3": -2.5275182196733095, "x4": 3.8470905826914854, "x5": 0.16780811746741298}}, null] +[[2, 0, 2], 81.0, {"submitted": 1558193378.98735, "started": 1558193378.987726, "finished": 1558193378.9973404}, {"loss": 0.15542901377103951, "info": {"x0": -4.370228381467781, "x1": 4.94537180345339, "x2": 7.511678673797369, "x3": -2.4655822123755016, "x4": 4.5382348813739695, "x5": 0.11200149634115553}}, null] +[[2, 0, 3], 81.0, {"submitted": 1558193379.0690105, "started": 1558193379.0694046, "finished": 1558193379.0770931}, {"loss": 0.1479444430989248, "info": {"x0": -2.4601231502555274, "x1": 5.950698071346752, "x2": 7.8174063790647335, "x3": -2.7062196509882845, "x4": 3.233359590657712, "x5": 0.167657731538958}}, null] +[[2, 0, 4], 81.0, {"submitted": 1558193379.0808704, "started": 1558193379.0813384, "finished": 1558193379.089413}, {"loss": 0.22320061757967427, "info": {"x0": -4.839137470182124, "x1": 5.281221754091013, "x2": 4.5468308550122405, "x3": -3.9582155609084517, "x4": 4.516575970692327, "x5": 0.22560994979344334}}, null] +[[2, 0, 5], 81.0, {"submitted": 1558193379.1563125, "started": 1558193379.156699, "finished": 1558193379.1687202}, {"loss": 0.15012962555223042, "info": {"x0": -2.8212492028098595, "x1": 4.804964068483388, "x2": 6.278716669447764, "x3": -2.5069474850960782, "x4": 3.762590469934138, "x5": 0.1750182149726913}}, null] +[[2, 0, 1], 243.0, {"submitted": 1558193379.1712635, "started": 1558193379.1716783, "finished": 1558193379.1825626}, {"loss": 0.15051851621877263, "info": {"x0": -2.3313796415809764, "x1": 4.7916310627862435, "x2": 7.017117845420014, "x3": -2.5275182196733095, "x4": 3.8470905826914854, "x5": 0.16780811746741298}}, null] +[[2, 0, 3], 243.0, {"submitted": 1558193379.1850007, "started": 1558193379.1854038, "finished": 1558193379.1929386}, {"loss": 0.1483796278425941, "info": {"x0": -2.4601231502555274, "x1": 5.950698071346752, "x2": 7.8174063790647335, "x3": -2.7062196509882845, "x4": 3.233359590657712, "x5": 0.167657731538958}}, null] +[[3, 0, 0], 243.0, {"submitted": 1558193379.2976592, "started": 1558193379.2982295, "finished": 1558193379.3076425}, {"loss": 0.14830555729292055, "info": {"x0": -2.5852734240936908, "x1": 6.490198222955183, "x2": 7.7667227122193445, "x3": -2.9183530310674692, "x4": 3.486873878345431, "x5": 0.18307815117768572}}, null] +[[3, 0, 1], 243.0, {"submitted": 1558193379.3113527, "started": 1558193379.311847, "finished": 1558193379.32068}, {"loss": 0.1601296309536254, "info": {"x0": -4.413032721796737, "x1": 5.784411292659046, "x2": 6.80598654850365, "x3": -0.2861761394804616, "x4": 3.4891719801221965, "x5": 0.43548626318576467}}, null] +[[3, 0, 2], 243.0, {"submitted": 1558193379.3247552, "started": 1558193379.325972, "finished": 1558193379.3405511}, {"loss": 0.15385184910010405, "info": {"x0": -4.153744854780104, "x1": 4.233353333949092, "x2": 7.052669360067435, "x3": -0.5937703265476793, "x4": 3.569046205920008, "x5": 0.2107779114779491}}, null] +[[3, 0, 3], 243.0, {"submitted": 1558193379.343326, "started": 1558193379.3439474, "finished": 1558193379.354594}, {"loss": 0.15919444116453332, "info": {"x0": -4.086398786189664, "x1": 5.071801820037695, "x2": 5.333455082925313, "x3": -1.85981100666343, "x4": 3.9052043493255573, "x5": 0.10066003053979483}}, null] +[[4, 0, 0], 9.0, {"submitted": 1558193379.434642, "started": 1558193379.4350955, "finished": 1558193379.4413137}, {"loss": 0.1501388938073759, "info": {"x0": -2.6091824210656833, "x1": 7.903529817493633, "x2": 7.248217067299828, "x3": -2.9990141740885994, "x4": 3.0688702526296896, "x5": 0.19060421980380127}}, null] +[[4, 0, 1], 9.0, {"submitted": 1558193379.5166743, "started": 1558193379.5170407, "finished": 1558193379.5240533}, {"loss": 0.15243518358800148, "info": {"x0": -2.694406972938843, "x1": 6.793925521576874, "x2": 7.765794350996061, "x3": -2.9657759105297528, "x4": 3.257950598891437, "x5": 0.17487937126980688}}, null] +[[4, 0, 2], 9.0, {"submitted": 1558193379.5262887, "started": 1558193379.5268044, "finished": 1558193379.5349596}, {"loss": 0.2450833330435885, "info": {"x0": -5.44917066558475, "x1": 5.612620636729524, "x2": 6.27804722188052, "x3": -1.2819988526970332, "x4": 3.5687390737907614, "x5": 0.42885825206793476}}, null] +[[4, 0, 3], 9.0, {"submitted": 1558193379.611839, "started": 1558193379.6122234, "finished": 1558193379.6214793}, {"loss": 0.15328703790516762, "info": {"x0": -2.309896499142773, "x1": 4.8508294417320155, "x2": 7.9795700629282225, "x3": -2.5739687837441902, "x4": 3.156299404013666, "x5": 0.17139858410852418}}, null] +[[4, 0, 4], 9.0, {"submitted": 1558193379.696228, "started": 1558193379.6967936, "finished": 1558193379.7036808}, {"loss": 0.15042592471948374, "info": {"x0": -2.5078599015900727, "x1": 6.57470002594515, "x2": 7.240943985075087, "x3": -2.754980260967929, "x4": 3.4093377276816224, "x5": 0.16767093758497234}}, null] +[[4, 0, 5], 9.0, {"submitted": 1558193379.7062247, "started": 1558193379.70659, "finished": 1558193379.7158754}, {"loss": 0.15832407068019666, "info": {"x0": -3.7592845741658545, "x1": 4.1229904696950275, "x2": 7.6454770559141245, "x3": -2.5823586552322806, "x4": 4.164558694783446, "x5": 0.08297754528193352}}, null] +[[4, 0, 6], 9.0, {"submitted": 1558193379.7959182, "started": 1558193379.7963853, "finished": 1558193379.8034909}, {"loss": 0.15147221836696068, "info": {"x0": -2.866738746193603, "x1": 4.9840025694169166, "x2": 4.247035329463587, "x3": -3.2916476373354033, "x4": 1.2889760622583337, "x5": 0.17158699244634196}}, null] +[[4, 0, 7], 9.0, {"submitted": 1558193379.891884, "started": 1558193379.8922799, "finished": 1558193379.8994937}, {"loss": 0.1496759228816739, "info": {"x0": -2.5490325306962713, "x1": 6.998689489282251, "x2": 6.036068196823528, "x3": -3.3077451108679785, "x4": 3.420009364319802, "x5": 0.19462645026383724}}, null] +[[4, 0, 8], 9.0, {"submitted": 1558193379.9018526, "started": 1558193379.903984, "finished": 1558193379.9157672}, {"loss": 0.34088888527528827, "info": {"x0": -5.486407418604705, "x1": 3.8013178449554585, "x2": 4.929529758718422, "x3": -0.5760816672234048, "x4": 2.1630894411164814, "x5": 0.4916822753584863}}, null] +[[4, 0, 9], 9.0, {"submitted": 1558193379.9186218, "started": 1558193379.918991, "finished": 1558193379.9281018}, {"loss": 0.15306481413267276, "info": {"x0": -3.36285890803085, "x1": 4.248491903692779, "x2": 6.550609156984085, "x3": -0.11732493144419687, "x4": 4.199523483035742, "x5": 0.014269900193904284}}, null] +[[4, 0, 10], 9.0, {"submitted": 1558193380.0084963, "started": 1558193380.008906, "finished": 1558193380.0166996}, {"loss": 0.1518055577487857, "info": {"x0": -2.692868991123784, "x1": 6.2021209190784745, "x2": 4.1122189968755, "x3": -3.349453955116722, "x4": 1.9090135918784659, "x5": 0.17983236267288616}}, null] +[[4, 0, 11], 9.0, {"submitted": 1558193380.0214176, "started": 1558193380.0221727, "finished": 1558193380.0344107}, {"loss": 0.1788240710535535, "info": {"x0": -4.765067896858038, "x1": 4.6933233614362475, "x2": 7.068340593116353, "x3": -0.30285124623638726, "x4": 1.712334702744469, "x5": 0.46680935730405837}}, null] +[[4, 0, 12], 9.0, {"submitted": 1558193380.0382469, "started": 1558193380.0388093, "finished": 1558193380.0466757}, {"loss": 0.14958333259103476, "info": {"x0": -3.0641070976159783, "x1": 7.7676146875382175, "x2": 6.473738787763455, "x3": -1.1151138372797673, "x4": 2.274689027308646, "x5": 0.006741741662304235}}, null] +[[4, 0, 13], 9.0, {"submitted": 1558193380.1317492, "started": 1558193380.1323054, "finished": 1558193380.1415155}, {"loss": 0.15055555687568808, "info": {"x0": -2.3463501002594516, "x1": 6.660505245736129, "x2": 6.692257521511192, "x3": -2.7937611167219183, "x4": 3.689078208203941, "x5": 0.16469195189828983}}, null] +[[4, 0, 14], 9.0, {"submitted": 1558193380.1436272, "started": 1558193380.14425, "finished": 1558193380.1552975}, {"loss": 0.16956481428554765, "info": {"x0": -2.137562863849417, "x1": 4.0490114392271295, "x2": 5.962212835462552, "x3": -0.7885177715848304, "x4": 4.818442348448263, "x5": 0.48238802141576714}}, null] +[[4, 0, 15], 9.0, {"submitted": 1558193380.1585846, "started": 1558193380.1590157, "finished": 1558193380.1704357}, {"loss": 0.15094444127463633, "info": {"x0": -3.474557330110438, "x1": 4.216313498313935, "x2": 7.12410362240509, "x3": -1.8589856017523454, "x4": 3.2310471480429377, "x5": 0.1573425602303533}}, null] +[[4, 0, 16], 9.0, {"submitted": 1558193380.2401469, "started": 1558193380.2405481, "finished": 1558193380.2480009}, {"loss": 0.15128703830915463, "info": {"x0": -2.3270169201546675, "x1": 7.5546013472262885, "x2": 7.920150854627595, "x3": -2.75490785623193, "x4": 3.2261142847774664, "x5": 0.1539249424857586}}, null] +[[4, 0, 17], 9.0, {"submitted": 1558193380.3285048, "started": 1558193380.3289685, "finished": 1558193380.3388958}, {"loss": 0.15561110831797123, "info": {"x0": -2.7332276579464576, "x1": 3.0086011298257747, "x2": 6.280969853257829, "x3": -2.53303760409173, "x4": 2.856689550572619, "x5": 0.17397375974705576}}, null] +[[4, 0, 18], 9.0, {"submitted": 1558193380.343702, "started": 1558193380.3440752, "finished": 1558193380.3536606}, {"loss": 0.15911111082357388, "info": {"x0": -3.5960422047285507, "x1": 5.512808886943641, "x2": 7.143232277273794, "x3": -0.5930139159448045, "x4": 4.42319015916067, "x5": 0.4751596391517019}}, null] +[[4, 0, 19], 9.0, {"submitted": 1558193380.4223924, "started": 1558193380.4228082, "finished": 1558193380.4308078}, {"loss": 0.15282407434836584, "info": {"x0": -2.7679294814278563, "x1": 4.509882401723822, "x2": 6.626951858434992, "x3": -2.489821156190186, "x4": 3.1685802803100507, "x5": 0.1577834099401497}}, null] +[[4, 0, 20], 9.0, {"submitted": 1558193380.5082576, "started": 1558193380.5086422, "finished": 1558193380.518339}, {"loss": 0.15257407171858678, "info": {"x0": -2.6217873039073565, "x1": 7.382940425774061, "x2": 7.607980550470435, "x3": -3.521048076329546, "x4": 3.7966854738686777, "x5": 0.17749393674047642}}, null] +[[4, 0, 21], 9.0, {"submitted": 1558193380.5220425, "started": 1558193380.5224261, "finished": 1558193380.5343723}, {"loss": 0.15239814621320474, "info": {"x0": -2.8001808992493746, "x1": 5.368209944150519, "x2": 5.4361778846008395, "x3": -3.289245756195201, "x4": 3.553651409462004, "x5": 0.22102358485068957}}, null] +[[4, 0, 22], 9.0, {"submitted": 1558193380.6320043, "started": 1558193380.6328917, "finished": 1558193380.645933}, {"loss": 0.15205555166193735, "info": {"x0": -2.6554378517286352, "x1": 6.1968123254878975, "x2": 7.785809723109287, "x3": -3.1516569056842303, "x4": 4.084694112744588, "x5": 0.19362168640003719}}, null] +[[4, 0, 23], 9.0, {"submitted": 1558193380.7619114, "started": 1558193380.7622914, "finished": 1558193380.7692583}, {"loss": 0.16554629640667526, "info": {"x0": -2.1089377909809164, "x1": 4.939888446248068, "x2": 7.9760478512693265, "x3": -3.1713937175142304, "x4": 3.1445686949053195, "x5": 0.1644001527158567}}, null] +[[4, 0, 24], 9.0, {"submitted": 1558193380.8490753, "started": 1558193380.849436, "finished": 1558193380.8560965}, {"loss": 0.1554444457248405, "info": {"x0": -2.0139035179066775, "x1": 7.180629729263526, "x2": 7.662915418741342, "x3": -3.0097094796709896, "x4": 2.9673543545393763, "x5": 0.15691429080081495}}, null] +[[4, 0, 25], 9.0, {"submitted": 1558193380.9403782, "started": 1558193380.9407866, "finished": 1558193380.9490964}, {"loss": 0.14989814661857154, "info": {"x0": -2.579979878712663, "x1": 3.6986576551963877, "x2": 4.708542569006952, "x3": -3.0265871218266556, "x4": 2.026497379343386, "x5": 0.17503661151861685}}, null] +[[4, 0, 26], 9.0, {"submitted": 1558193381.0393734, "started": 1558193381.0398014, "finished": 1558193381.0497403}, {"loss": 0.1534351857966847, "info": {"x0": -2.284807232333427, "x1": 7.173781346506753, "x2": 7.645201733955539, "x3": -2.735554713746864, "x4": 2.5117810658696462, "x5": 0.15619999783894642}}, null] +[[4, 0, 0], 27.0, {"submitted": 1558193381.0546312, "started": 1558193381.0551262, "finished": 1558193381.0653243}, {"loss": 0.14858333656412584, "info": {"x0": -2.6091824210656833, "x1": 7.903529817493633, "x2": 7.248217067299828, "x3": -2.9990141740885994, "x4": 3.0688702526296896, "x5": 0.19060421980380127}}, null] +[[4, 0, 4], 27.0, {"submitted": 1558193381.0711856, "started": 1558193381.0717504, "finished": 1558193381.0821853}, {"loss": 0.14941666559433497, "info": {"x0": -2.5078599015900727, "x1": 6.57470002594515, "x2": 7.240943985075087, "x3": -2.754980260967929, "x4": 3.4093377276816224, "x5": 0.16767093758497234}}, null] +[[4, 0, 6], 27.0, {"submitted": 1558193381.08602, "started": 1558193381.0863175, "finished": 1558193381.0951803}, {"loss": 0.15083332959976464, "info": {"x0": -2.866738746193603, "x1": 4.9840025694169166, "x2": 4.247035329463587, "x3": -3.2916476373354033, "x4": 1.2889760622583337, "x5": 0.17158699244634196}}, null] +[[4, 0, 7], 27.0, {"submitted": 1558193381.099533, "started": 1558193381.1006927, "finished": 1558193381.1091175}, {"loss": 0.14988888583139137, "info": {"x0": -2.5490325306962713, "x1": 6.998689489282251, "x2": 6.036068196823528, "x3": -3.3077451108679785, "x4": 3.420009364319802, "x5": 0.19462645026383724}}, null] +[[4, 0, 12], 27.0, {"submitted": 1558193381.112528, "started": 1558193381.1129081, "finished": 1558193381.1225994}, {"loss": 0.15185185057200767, "info": {"x0": -3.0641070976159783, "x1": 7.7676146875382175, "x2": 6.473738787763455, "x3": -1.1151138372797673, "x4": 2.274689027308646, "x5": 0.006741741662304235}}, null] +[[4, 0, 13], 27.0, {"submitted": 1558193381.1253562, "started": 1558193381.125827, "finished": 1558193381.1350207}, {"loss": 0.14880555655558908, "info": {"x0": -2.3463501002594516, "x1": 6.660505245736129, "x2": 6.692257521511192, "x3": -2.7937611167219183, "x4": 3.689078208203941, "x5": 0.16469195189828983}}, null] +[[4, 0, 15], 27.0, {"submitted": 1558193381.138036, "started": 1558193381.1385107, "finished": 1558193381.1457875}, {"loss": 0.14873147811740636, "info": {"x0": -3.474557330110438, "x1": 4.216313498313935, "x2": 7.12410362240509, "x3": -1.8589856017523454, "x4": 3.2310471480429377, "x5": 0.1573425602303533}}, null] +[[4, 0, 16], 27.0, {"submitted": 1558193381.149522, "started": 1558193381.1499856, "finished": 1558193381.1584067}, {"loss": 0.1489166671258432, "info": {"x0": -2.3270169201546675, "x1": 7.5546013472262885, "x2": 7.920150854627595, "x3": -2.75490785623193, "x4": 3.2261142847774664, "x5": 0.1539249424857586}}, null] +[[4, 0, 25], 27.0, {"submitted": 1558193381.162056, "started": 1558193381.1624522, "finished": 1558193381.173406}, {"loss": 0.14824999750791878, "info": {"x0": -2.579979878712663, "x1": 3.6986576551963877, "x2": 4.708542569006952, "x3": -3.0265871218266556, "x4": 2.026497379343386, "x5": 0.17503661151861685}}, null] +[[4, 0, 0], 81.0, {"submitted": 1558193381.176983, "started": 1558193381.1773462, "finished": 1558193381.1855474}, {"loss": 0.14900926223618013, "info": {"x0": -2.6091824210656833, "x1": 7.903529817493633, "x2": 7.248217067299828, "x3": -2.9990141740885994, "x4": 3.0688702526296896, "x5": 0.19060421980380127}}, null] +[[4, 0, 15], 81.0, {"submitted": 1558193381.187778, "started": 1558193381.1882315, "finished": 1558193381.1961436}, {"loss": 0.14881481148330147, "info": {"x0": -3.474557330110438, "x1": 4.216313498313935, "x2": 7.12410362240509, "x3": -1.8589856017523454, "x4": 3.2310471480429377, "x5": 0.1573425602303533}}, null] +[[4, 0, 25], 81.0, {"submitted": 1558193381.2023246, "started": 1558193381.2027953, "finished": 1558193381.2095888}, {"loss": 0.14756481208707445, "info": {"x0": -2.579979878712663, "x1": 3.6986576551963877, "x2": 4.708542569006952, "x3": -3.0265871218266556, "x4": 2.026497379343386, "x5": 0.17503661151861685}}, null] +[[4, 0, 25], 243.0, {"submitted": 1558193381.212401, "started": 1558193381.2129195, "finished": 1558193381.2206118}, {"loss": 0.14775925660878414, "info": {"x0": -2.579979878712663, "x1": 3.6986576551963877, "x2": 4.708542569006952, "x3": -3.0265871218266556, "x4": 2.026497379343386, "x5": 0.17503661151861685}}, null] +[[5, 0, 0], 27.0, {"submitted": 1558193381.3064759, "started": 1558193381.3069446, "finished": 1558193381.3136077}, {"loss": 0.15310185149587968, "info": {"x0": -2.201127572228253, "x1": 4.008259875080353, "x2": 4.937862338676363, "x3": -3.356881439691705, "x4": 1.2173818582290805, "x5": 0.19054061141261602}}, null] +[[5, 0, 1], 27.0, {"submitted": 1558193381.3813248, "started": 1558193381.3820753, "finished": 1558193381.3887105}, {"loss": 0.15333333090113271, "info": {"x0": -3.9940553053090855, "x1": 4.243312623717907, "x2": 6.546266567891036, "x3": -1.459577489248777, "x4": 1.6596783360716139, "x5": 0.1490887587433667}}, null] +[[5, 0, 2], 27.0, {"submitted": 1558193381.468671, "started": 1558193381.4692886, "finished": 1558193381.4769058}, {"loss": 0.15005555424508116, "info": {"x0": -2.5125875387532197, "x1": 3.244695895931491, "x2": 7.665684697950708, "x3": -2.4325482476911566, "x4": 1.4137237746553413, "x5": 0.17724306317710967}}, null] +[[5, 0, 3], 27.0, {"submitted": 1558193381.4789338, "started": 1558193381.4793465, "finished": 1558193381.4880466}, {"loss": 0.15298148022592067, "info": {"x0": -3.426495832801997, "x1": 4.425766894387273, "x2": 5.1901898369610535, "x3": -0.7297720489596213, "x4": 4.779139550507878, "x5": 0.10806448356244086}}, null] +[[5, 0, 4], 27.0, {"submitted": 1558193381.490198, "started": 1558193381.4905324, "finished": 1558193381.5000246}, {"loss": 0.15105555116992309, "info": {"x0": -2.5022609311871817, "x1": 3.288027947066876, "x2": 6.18903657642606, "x3": -3.094930908435852, "x4": 2.2339594640121807, "x5": 0.13453295665677828}}, null] +[[5, 0, 5], 27.0, {"submitted": 1558193381.5052106, "started": 1558193381.505683, "finished": 1558193381.5127478}, {"loss": 0.15526851864435057, "info": {"x0": -3.512052967535679, "x1": 7.34508301355893, "x2": 5.945621423011607, "x3": -1.9946494193682542, "x4": 4.203020428133042, "x5": 0.013893617735023234}}, null] +[[5, 0, 6], 27.0, {"submitted": 1558193381.5203865, "started": 1558193381.520913, "finished": 1558193381.5309525}, {"loss": 0.14876852053845374, "info": {"x0": -2.139735516606583, "x1": 6.085010238998828, "x2": 7.471873068902228, "x3": -2.8044253382721425, "x4": 1.78374830867362, "x5": 0.24072333205209967}}, null] +[[5, 0, 7], 27.0, {"submitted": 1558193381.618358, "started": 1558193381.6188214, "finished": 1558193381.626582}, {"loss": 0.15228703523151302, "info": {"x0": -2.118565110350799, "x1": 3.681071547006251, "x2": 7.422041316713154, "x3": -3.129724898725745, "x4": 1.0080210264277936, "x5": 0.179379584283564}}, null] +[[5, 0, 8], 27.0, {"submitted": 1558193381.6287982, "started": 1558193381.629199, "finished": 1558193381.6408262}, {"loss": 0.298730152091652, "info": {"x0": -5.85505864375537, "x1": 5.843747777296883, "x2": 4.5786685350677025, "x3": -1.4020904036599595, "x4": 3.8043342810863545, "x5": 0.3593661342637794}}, null] +[[5, 0, 2], 81.0, {"submitted": 1558193381.647217, "started": 1558193381.650571, "finished": 1558193381.6587865}, {"loss": 0.14863888757289562, "info": {"x0": -2.5125875387532197, "x1": 3.244695895931491, "x2": 7.665684697950708, "x3": -2.4325482476911566, "x4": 1.4137237746553413, "x5": 0.17724306317710967}}, null] +[[5, 0, 4], 81.0, {"submitted": 1558193381.661038, "started": 1558193381.6614, "finished": 1558193381.6705525}, {"loss": 0.15043518103659154, "info": {"x0": -2.5022609311871817, "x1": 3.288027947066876, "x2": 6.18903657642606, "x3": -3.094930908435852, "x4": 2.2339594640121807, "x5": 0.13453295665677828}}, null] +[[5, 0, 6], 81.0, {"submitted": 1558193381.6732962, "started": 1558193381.674816, "finished": 1558193381.6876726}, {"loss": 0.14960185392256137, "info": {"x0": -2.139735516606583, "x1": 6.085010238998828, "x2": 7.471873068902228, "x3": -2.8044253382721425, "x4": 1.78374830867362, "x5": 0.24072333205209967}}, null] +[[5, 0, 2], 243.0, {"submitted": 1558193381.6900864, "started": 1558193381.690563, "finished": 1558193381.6997845}, {"loss": 0.1489074059835187, "info": {"x0": -2.5125875387532197, "x1": 3.244695895931491, "x2": 7.665684697950708, "x3": -2.4325482476911566, "x4": 1.4137237746553413, "x5": 0.17724306317710967}}, null] +[[6, 0, 0], 81.0, {"submitted": 1558193381.7733347, "started": 1558193381.7737188, "finished": 1558193381.780377}, {"loss": 0.15072222007259173, "info": {"x0": -2.9376126667197267, "x1": 5.884364949765854, "x2": 4.78697696266441, "x3": -0.7120286649199428, "x4": 1.0563912963084485, "x5": 0.15998773950857836}}, null] +[[6, 0, 1], 81.0, {"submitted": 1558193381.8699732, "started": 1558193381.870479, "finished": 1558193381.8775947}, {"loss": 0.15233333159817586, "info": {"x0": -2.4913873770871846, "x1": 6.349962056331908, "x2": 4.316078912443985, "x3": -3.0723154676959883, "x4": 1.9711516004742156, "x5": 0.1787247636989231}}, null] +[[6, 0, 2], 81.0, {"submitted": 1558193381.8841593, "started": 1558193381.8845751, "finished": 1558193381.8919628}, {"loss": 0.21060185165432865, "info": {"x0": -5.697672536845649, "x1": 3.6464598598583446, "x2": 6.216026916730415, "x3": -2.1258829096106666, "x4": 4.1019288354890415, "x5": 0.23452608067185743}}, null] +[[6, 0, 3], 81.0, {"submitted": 1558193381.8958335, "started": 1558193381.896381, "finished": 1558193381.9061878}, {"loss": 0.15463888977578394, "info": {"x0": -2.7190467061455146, "x1": 6.007185507987052, "x2": 5.892582443273083, "x3": -3.800298003225105, "x4": 4.6377494555976995, "x5": 0.024964536678160065}}, null] +[[6, 0, 4], 81.0, {"submitted": 1558193382.0045118, "started": 1558193382.0050235, "finished": 1558193382.011437}, {"loss": 0.14975926167324735, "info": {"x0": -2.5113193171558432, "x1": 7.766427294679639, "x2": 7.897264751521041, "x3": -1.9397879944138312, "x4": 2.7403227773247054, "x5": 0.165242723522334}}, null] +[[6, 0, 5], 81.0, {"submitted": 1558193382.1182194, "started": 1558193382.1187594, "finished": 1558193382.1252818}, {"loss": 0.15085184865389709, "info": {"x0": -2.9847906589170172, "x1": 3.7516234764643115, "x2": 6.560383711692155, "x3": -2.028013564204701, "x4": 1.505236953513497, "x5": 0.17922979794742178}}, null] +[[6, 0, 0], 243.0, {"submitted": 1558193382.1279302, "started": 1558193382.128267, "finished": 1558193382.1368186}, {"loss": 0.15072222007259173, "info": {"x0": -2.9376126667197267, "x1": 5.884364949765854, "x2": 4.78697696266441, "x3": -0.7120286649199428, "x4": 1.0563912963084485, "x5": 0.15998773950857836}}, null] +[[6, 0, 4], 243.0, {"submitted": 1558193382.138972, "started": 1558193382.1394012, "finished": 1558193382.15357}, {"loss": 0.15024074200237242, "info": {"x0": -2.5113193171558432, "x1": 7.766427294679639, "x2": 7.897264751521041, "x3": -1.9397879944138312, "x4": 2.7403227773247054, "x5": 0.165242723522334}}, null] +[[7, 0, 0], 243.0, {"submitted": 1558193382.2290199, "started": 1558193382.2294617, "finished": 1558193382.2408025}, {"loss": 0.1513796282697607, "info": {"x0": -2.45921941162368, "x1": 4.229480164211742, "x2": 4.285996305606855, "x3": -2.702792227497105, "x4": 2.523758955503287, "x5": 0.16088316980686207}}, null] +[[7, 0, 1], 243.0, {"submitted": 1558193382.3070695, "started": 1558193382.307531, "finished": 1558193382.316007}, {"loss": 0.1512499968028731, "info": {"x0": -2.15307521032908, "x1": 3.5235445143743656, "x2": 4.767093664748013, "x3": -2.7565673796896357, "x4": 2.866524452824085, "x5": 0.16621002109155866}}, null] +[[7, 0, 2], 243.0, {"submitted": 1558193382.3856792, "started": 1558193382.3861012, "finished": 1558193382.3917174}, {"loss": 0.15334259297091654, "info": {"x0": -2.636520949174737, "x1": 7.883462312538595, "x2": 4.560050731535289, "x3": -2.9796832838854685, "x4": 3.97718740494222, "x5": 0.17219585511953603}}, null] +[[7, 0, 3], 243.0, {"submitted": 1558193382.3951306, "started": 1558193382.3957028, "finished": 1558193382.405842}, {"loss": 0.16987963046740603, "info": {"x0": -4.357756761630929, "x1": 4.851197400784852, "x2": 4.657507815322994, "x3": -1.0985204202644496, "x4": 1.8188838407367087, "x5": 0.3346785190892232}}, null] +[[8, 0, 0], 9.0, {"submitted": 1558193382.408468, "started": 1558193382.4087858, "finished": 1558193382.417373}, {"loss": 0.20828703751608182, "info": {"x0": -3.7884125530530692, "x1": 3.347674199974966, "x2": 4.334175989947923, "x3": -3.7622326706204907, "x4": 3.5697155420759152, "x5": 0.3136798963585588}}, null] +[[8, 0, 1], 9.0, {"submitted": 1558193382.42009, "started": 1558193382.420429, "finished": 1558193382.4262385}, {"loss": 0.15592592572439234, "info": {"x0": -3.6354205765165646, "x1": 4.150273708615137, "x2": 6.588790240370595, "x3": -2.8572875634211643, "x4": 1.554584053390176, "x5": 0.47874825121215636}}, null] +[[8, 0, 2], 9.0, {"submitted": 1558193382.4931831, "started": 1558193382.4936569, "finished": 1558193382.5053887}, {"loss": 0.1511481457253297, "info": {"x0": -2.5195483398411596, "x1": 7.314122313684838, "x2": 6.810590016308078, "x3": -2.475801459387389, "x4": 2.0694105532653726, "x5": 0.16346516218876297}}, null] +[[8, 0, 3], 9.0, {"submitted": 1558193382.5697172, "started": 1558193382.570111, "finished": 1558193382.57725}, {"loss": 0.15200926024108022, "info": {"x0": -2.4288432564134323, "x1": 7.610533898870486, "x2": 7.880383129072808, "x3": -2.6026303921110454, "x4": 3.3550151166179774, "x5": 0.17235497830153143}}, null] +[[8, 0, 4], 9.0, {"submitted": 1558193382.6550777, "started": 1558193382.655466, "finished": 1558193382.6632285}, {"loss": 0.15449074305538776, "info": {"x0": -2.481872275842868, "x1": 3.1727448639957934, "x2": 7.127236612390208, "x3": -2.4911746924559655, "x4": 1.772952658726836, "x5": 0.17802669813994507}}, null] +[[8, 0, 5], 9.0, {"submitted": 1558193382.6663191, "started": 1558193382.6710637, "finished": 1558193382.6780534}, {"loss": 0.15270369869470596, "info": {"x0": -2.7335190657086947, "x1": 4.079661308850747, "x2": 7.243730080811618, "x3": -2.623461726167962, "x4": 3.990661424919009, "x5": 0.20099278874098359}}, null] +[[8, 0, 6], 9.0, {"submitted": 1558193382.7552478, "started": 1558193382.75575, "finished": 1558193382.7621155}, {"loss": 0.14916666703036535, "info": {"x0": -2.4765209709118357, "x1": 5.39556388036087, "x2": 7.093288577075617, "x3": -2.5386232233416375, "x4": 1.0070001436702554, "x5": 0.18669912909991138}}, null] +[[8, 0, 7], 9.0, {"submitted": 1558193382.7651231, "started": 1558193382.7660072, "finished": 1558193382.7744012}, {"loss": 0.1520648159461993, "info": {"x0": -2.1569908987316526, "x1": 6.367189012513345, "x2": 7.904523634690481, "x3": -0.8136155190818264, "x4": 1.9478746374688827, "x5": 0.12497903990312331}}, null] +[[8, 0, 8], 9.0, {"submitted": 1558193382.8341284, "started": 1558193382.8345559, "finished": 1558193382.8403485}, {"loss": 0.1511944440343866, "info": {"x0": -2.5250628950043734, "x1": 7.879228487723913, "x2": 7.88010492231448, "x3": -3.6295888456231973, "x4": 4.166570281460274, "x5": 0.18515240695838955}}, null] +[[8, 0, 9], 9.0, {"submitted": 1558193382.9075732, "started": 1558193382.9080002, "finished": 1558193382.9157724}, {"loss": 0.1511111112833023, "info": {"x0": -2.353764361964292, "x1": 7.111900310054281, "x2": 7.438388279312951, "x3": -2.722584351901644, "x4": 3.145092736719562, "x5": 0.14939571487359501}}, null] +[[8, 0, 10], 9.0, {"submitted": 1558193382.920177, "started": 1558193382.9214334, "finished": 1558193382.9295917}, {"loss": 0.1553981476453719, "info": {"x0": -2.1706198669463554, "x1": 4.584686727182276, "x2": 4.47098955378865, "x3": -0.5157049949495396, "x4": 3.4228119964339885, "x5": 0.37825697729502844}}, null] +[[8, 0, 11], 9.0, {"submitted": 1558193383.0141234, "started": 1558193383.0145752, "finished": 1558193383.022178}, {"loss": 0.15074073969683166, "info": {"x0": -2.500997766814863, "x1": 4.609845732902844, "x2": 7.422953183156016, "x3": -2.087060760524445, "x4": 1.4982477834294052, "x5": 0.18293685121904166}}, null] +[[8, 0, 12], 9.0, {"submitted": 1558193383.024637, "started": 1558193383.0250251, "finished": 1558193383.0365334}, {"loss": 0.15962037193995934, "info": {"x0": -3.9675524203923445, "x1": 6.861734644724297, "x2": 5.966371878455732, "x3": -2.3537598281872243, "x4": 3.2774222257965198, "x5": 0.4521294958913686}}, null] +[[8, 0, 13], 9.0, {"submitted": 1558193383.1216712, "started": 1558193383.1221564, "finished": 1558193383.1277318}, {"loss": 0.14956481773516642, "info": {"x0": -2.510982552652958, "x1": 7.663715335748076, "x2": 7.155679768887145, "x3": -2.3073129044098826, "x4": 2.6482884702064187, "x5": 0.18636051457487665}}, null] +[[8, 0, 14], 9.0, {"submitted": 1558193383.207503, "started": 1558193383.2078896, "finished": 1558193383.217122}, {"loss": 0.1504907398450154, "info": {"x0": -2.3573430326260896, "x1": 7.06310062097361, "x2": 7.530469956224274, "x3": -2.5366141453045206, "x4": 1.6174762470580941, "x5": 0.17070047631522992}}, null] +[[8, 0, 15], 9.0, {"submitted": 1558193383.299576, "started": 1558193383.3000853, "finished": 1558193383.3070428}, {"loss": 0.14715740617999323, "info": {"x0": -2.543991235464288, "x1": 7.713820228100786, "x2": 7.671446743232948, "x3": -3.202385207385535, "x4": 1.340887506658587, "x5": 0.17143231246600976}}, null] +[[8, 0, 16], 9.0, {"submitted": 1558193383.3089976, "started": 1558193383.3093047, "finished": 1558193383.3196669}, {"loss": 0.2077407395660325, "info": {"x0": -4.73690596892718, "x1": 4.6818657996491115, "x2": 5.636107266638902, "x3": -3.6660515411740566, "x4": 1.8730171342686144, "x5": 0.3674203370616897}}, null] +[[8, 0, 17], 9.0, {"submitted": 1558193383.3221602, "started": 1558193383.3227837, "finished": 1558193383.335363}, {"loss": 0.15807407128783288, "info": {"x0": -3.081091439424283, "x1": 3.8664443956997014, "x2": 5.886652931897018, "x3": -1.3424824530414994, "x4": 4.698176513607133, "x5": 0.26504297749825206}}, null] +[[8, 0, 18], 9.0, {"submitted": 1558193383.4015498, "started": 1558193383.4019306, "finished": 1558193383.4084275}, {"loss": 0.14818518213541418, "info": {"x0": -2.5226826442684755, "x1": 7.200391221170538, "x2": 7.796874700484517, "x3": -1.9872035186572239, "x4": 1.0899248808656707, "x5": 0.15050842530339162}}, null] +[[8, 0, 19], 9.0, {"submitted": 1558193383.4115841, "started": 1558193383.4128585, "finished": 1558193383.4232333}, {"loss": 0.16338888667082344, "info": {"x0": -4.226379853831052, "x1": 6.232460047180539, "x2": 7.491483985164589, "x3": -0.43143877674814446, "x4": 3.618552872032622, "x5": 0.4256169045472076}}, null] +[[8, 0, 20], 9.0, {"submitted": 1558193383.483502, "started": 1558193383.4839466, "finished": 1558193383.4909647}, {"loss": 0.14969444141233407, "info": {"x0": -2.4920729591879285, "x1": 7.55554386882763, "x2": 6.995678093770117, "x3": -2.0391740532667577, "x4": 2.166877678304898, "x5": 0.15112576465998287}}, null] +[[8, 0, 21], 9.0, {"submitted": 1558193383.4932408, "started": 1558193383.4937053, "finished": 1558193383.5009928}, {"loss": 0.3920277790476878, "info": {"x0": -5.654845525388064, "x1": 6.376126123600574, "x2": 4.094961943581881, "x3": -3.5270163430570793, "x4": 2.9147388933351213, "x5": 0.11138071340721506}}, null] +[[8, 0, 22], 9.0, {"submitted": 1558193383.5031388, "started": 1558193383.5035048, "finished": 1558193383.5101185}, {"loss": 0.1566203686321775, "info": {"x0": -3.5440848887007, "x1": 4.434539101233847, "x2": 5.454531189743035, "x3": -1.8163718420675017, "x4": 2.6206597706782486, "x5": 0.2127432659548309}}, null] +[[8, 0, 23], 9.0, {"submitted": 1558193383.514005, "started": 1558193383.514555, "finished": 1558193383.5219438}, {"loss": 0.2401203639642508, "info": {"x0": -5.358246676795307, "x1": 4.219948735025079, "x2": 7.282020524712619, "x3": -3.7180013324185097, "x4": 4.2712968224455325, "x5": 0.4872595427666512}}, null] +[[8, 0, 24], 9.0, {"submitted": 1558193383.5243382, "started": 1558193383.5246913, "finished": 1558193383.532671}, {"loss": 0.21860184708554983, "info": {"x0": -5.212032975915107, "x1": 3.1063847782737737, "x2": 6.949731809964712, "x3": -0.6547986870577822, "x4": 1.3923709426401838, "x5": 0.10596699092598172}}, null] +[[8, 0, 25], 9.0, {"submitted": 1558193383.589557, "started": 1558193383.5899765, "finished": 1558193383.5955992}, {"loss": 0.1515925885596209, "info": {"x0": -2.5270715172741536, "x1": 3.915051448583604, "x2": 6.216679735586317, "x3": -2.8149806412174954, "x4": 1.3030755251319717, "x5": 0.17985923227753314}}, null] +[[8, 0, 26], 9.0, {"submitted": 1558193383.6668897, "started": 1558193383.667465, "finished": 1558193383.6864064}, {"loss": 0.15013888770341874, "info": {"x0": -2.43819558529585, "x1": 7.91525314351785, "x2": 7.273449825491949, "x3": -2.908645979997339, "x4": 1.7597383020913977, "x5": 0.17257435730821433}}, null] +[[8, 0, 6], 27.0, {"submitted": 1558193383.688806, "started": 1558193383.6892085, "finished": 1558193383.7047184}, {"loss": 0.14846296335922346, "info": {"x0": -2.4765209709118357, "x1": 5.39556388036087, "x2": 7.093288577075617, "x3": -2.5386232233416375, "x4": 1.0070001436702554, "x5": 0.18669912909991138}}, null] +[[8, 0, 9], 27.0, {"submitted": 1558193383.708361, "started": 1558193383.7087905, "finished": 1558193383.7225242}, {"loss": 0.14882407334722852, "info": {"x0": -2.353764361964292, "x1": 7.111900310054281, "x2": 7.438388279312951, "x3": -2.722584351901644, "x4": 3.145092736719562, "x5": 0.14939571487359501}}, null] +[[8, 0, 11], 27.0, {"submitted": 1558193383.7278035, "started": 1558193383.7286582, "finished": 1558193383.7423198}, {"loss": 0.1483055541774741, "info": {"x0": -2.500997766814863, "x1": 4.609845732902844, "x2": 7.422953183156016, "x3": -2.087060760524445, "x4": 1.4982477834294052, "x5": 0.18293685121904166}}, null] +[[8, 0, 13], 27.0, {"submitted": 1558193383.7440455, "started": 1558193383.7455304, "finished": 1558193383.7550075}, {"loss": 0.14929629971666472, "info": {"x0": -2.510982552652958, "x1": 7.663715335748076, "x2": 7.155679768887145, "x3": -2.3073129044098826, "x4": 2.6482884702064187, "x5": 0.18636051457487665}}, null] +[[8, 0, 14], 27.0, {"submitted": 1558193383.7564, "started": 1558193383.7567096, "finished": 1558193383.7640862}, {"loss": 0.15035185061008843, "info": {"x0": -2.3573430326260896, "x1": 7.06310062097361, "x2": 7.530469956224274, "x3": -2.5366141453045206, "x4": 1.6174762470580941, "x5": 0.17070047631522992}}, null] +[[8, 0, 15], 27.0, {"submitted": 1558193383.7669837, "started": 1558193383.7676654, "finished": 1558193383.7758157}, {"loss": 0.1473703694895462, "info": {"x0": -2.543991235464288, "x1": 7.713820228100786, "x2": 7.671446743232948, "x3": -3.202385207385535, "x4": 1.340887506658587, "x5": 0.17143231246600976}}, null] +[[8, 0, 18], 27.0, {"submitted": 1558193383.7774177, "started": 1558193383.7779899, "finished": 1558193383.7854989}, {"loss": 0.14824073818491565, "info": {"x0": -2.5226826442684755, "x1": 7.200391221170538, "x2": 7.796874700484517, "x3": -1.9872035186572239, "x4": 1.0899248808656707, "x5": 0.15050842530339162}}, null] +[[8, 0, 20], 27.0, {"submitted": 1558193383.7868342, "started": 1558193383.787183, "finished": 1558193383.7935061}, {"loss": 0.15008332956389148, "info": {"x0": -2.4920729591879285, "x1": 7.55554386882763, "x2": 6.995678093770117, "x3": -2.0391740532667577, "x4": 2.166877678304898, "x5": 0.15112576465998287}}, null] +[[8, 0, 26], 27.0, {"submitted": 1558193383.795216, "started": 1558193383.7956505, "finished": 1558193383.803957}, {"loss": 0.15055555534914689, "info": {"x0": -2.43819558529585, "x1": 7.91525314351785, "x2": 7.273449825491949, "x3": -2.908645979997339, "x4": 1.7597383020913977, "x5": 0.17257435730821433}}, null] +[[8, 0, 11], 81.0, {"submitted": 1558193383.8054624, "started": 1558193383.8058207, "finished": 1558193383.8128464}, {"loss": 0.14825925801473633, "info": {"x0": -2.500997766814863, "x1": 4.609845732902844, "x2": 7.422953183156016, "x3": -2.087060760524445, "x4": 1.4982477834294052, "x5": 0.18293685121904166}}, null] +[[8, 0, 15], 81.0, {"submitted": 1558193383.817012, "started": 1558193383.8175704, "finished": 1558193383.8279629}, {"loss": 0.1473703694895462, "info": {"x0": -2.543991235464288, "x1": 7.713820228100786, "x2": 7.671446743232948, "x3": -3.202385207385535, "x4": 1.340887506658587, "x5": 0.17143231246600976}}, null] +[[8, 0, 18], 81.0, {"submitted": 1558193383.8295836, "started": 1558193383.829962, "finished": 1558193383.838266}, {"loss": 0.14824073818491565, "info": {"x0": -2.5226826442684755, "x1": 7.200391221170538, "x2": 7.796874700484517, "x3": -1.9872035186572239, "x4": 1.0899248808656707, "x5": 0.15050842530339162}}, null] +[[8, 0, 15], 243.0, {"submitted": 1558193383.8404105, "started": 1558193383.8408933, "finished": 1558193383.8497405}, {"loss": 0.1473703694895462, "info": {"x0": -2.543991235464288, "x1": 7.713820228100786, "x2": 7.671446743232948, "x3": -3.202385207385535, "x4": 1.340887506658587, "x5": 0.17143231246600976}}, null] +[[9, 0, 0], 27.0, {"submitted": 1558193383.8548775, "started": 1558193383.8555472, "finished": 1558193383.8666434}, {"loss": 0.21676851365936017, "info": {"x0": -5.238298188559485, "x1": 4.367095042707257, "x2": 5.102365589054932, "x3": -0.4378254556603345, "x4": 1.126005546196991, "x5": 0.39498154284183795}}, null] +[[9, 0, 1], 27.0, {"submitted": 1558193383.9403987, "started": 1558193383.9408557, "finished": 1558193383.9501283}, {"loss": 0.14857407250144966, "info": {"x0": -2.6756983731768824, "x1": 3.844463750452506, "x2": 7.476642600291793, "x3": -2.605095349044924, "x4": 1.3387321267307963, "x5": 0.19162690447067512}}, null] +[[9, 0, 2], 27.0, {"submitted": 1558193384.0592735, "started": 1558193384.0597973, "finished": 1558193384.066586}, {"loss": 0.14983333172124844, "info": {"x0": -2.443672079856221, "x1": 6.822196280507671, "x2": 6.924183059106763, "x3": -3.449005763259539, "x4": 4.341410734005239, "x5": 0.1922295129713013}}, null] +[[9, 0, 3], 27.0, {"submitted": 1558193384.0687551, "started": 1558193384.0731242, "finished": 1558193384.08235}, {"loss": 0.15254629510309964, "info": {"x0": -2.3678527984482596, "x1": 6.654417401610326, "x2": 5.858091301927765, "x3": -1.6944916681574211, "x4": 4.930691045814662, "x5": 0.2395292008616956}}, null] +[[9, 0, 4], 27.0, {"submitted": 1558193384.0848029, "started": 1558193384.0851445, "finished": 1558193384.0946429}, {"loss": 0.16449073945537762, "info": {"x0": -4.251477908808765, "x1": 6.594587899794971, "x2": 6.304307979848133, "x3": -1.471124609275774, "x4": 1.2683143766382114, "x5": 0.311777686770752}}, null] +[[9, 0, 5], 27.0, {"submitted": 1558193384.1638074, "started": 1558193384.164595, "finished": 1558193384.1723967}, {"loss": 0.14866666471737405, "info": {"x0": -2.4963584052553096, "x1": 6.834822394361216, "x2": 7.236809487275525, "x3": -3.3645995733061014, "x4": 3.9409162516736536, "x5": 0.19099009898395694}}, null] +[[9, 0, 6], 27.0, {"submitted": 1558193384.2524283, "started": 1558193384.252919, "finished": 1558193384.2629347}, {"loss": 0.15004629423220953, "info": {"x0": -2.4616374603053974, "x1": 3.6453470683479874, "x2": 6.967419652350118, "x3": -2.7380411249606933, "x4": 2.362335267495266, "x5": 0.1737865028448347}}, null] +[[9, 0, 7], 27.0, {"submitted": 1558193384.266307, "started": 1558193384.2677221, "finished": 1558193384.2749522}, {"loss": 0.19424999574958174, "info": {"x0": -4.9465424717471755, "x1": 4.834985443369193, "x2": 4.699564848574699, "x3": -3.7446214104227447, "x4": 3.598499118823584, "x5": 0.10785687991698356}}, null] +[[9, 0, 8], 27.0, {"submitted": 1558193384.348511, "started": 1558193384.3492465, "finished": 1558193384.3571026}, {"loss": 0.14960185312065813, "info": {"x0": -2.5738066939282676, "x1": 7.530688622247068, "x2": 7.068326930967579, "x3": -2.8338265811632493, "x4": 4.921186767153196, "x5": 0.19656182427958227}}, null] +[[9, 0, 1], 81.0, {"submitted": 1558193384.35871, "started": 1558193384.3591416, "finished": 1558193384.3708296}, {"loss": 0.1473888871735997, "info": {"x0": -2.6756983731768824, "x1": 3.844463750452506, "x2": 7.476642600291793, "x3": -2.605095349044924, "x4": 1.3387321267307963, "x5": 0.19162690447067512}}, null] +[[9, 0, 5], 81.0, {"submitted": 1558193384.3743227, "started": 1558193384.374917, "finished": 1558193384.3848383}, {"loss": 0.1491851827375315, "info": {"x0": -2.4963584052553096, "x1": 6.834822394361216, "x2": 7.236809487275525, "x3": -3.3645995733061014, "x4": 3.9409162516736536, "x5": 0.19099009898395694}}, null] +[[9, 0, 8], 81.0, {"submitted": 1558193384.3867044, "started": 1558193384.3870573, "finished": 1558193384.3939114}, {"loss": 0.14938889053574317, "info": {"x0": -2.5738066939282676, "x1": 7.530688622247068, "x2": 7.068326930967579, "x3": -2.8338265811632493, "x4": 4.921186767153196, "x5": 0.19656182427958227}}, null] +[[9, 0, 1], 243.0, {"submitted": 1558193384.3960128, "started": 1558193384.3964102, "finished": 1558193384.402899}, {"loss": 0.14722222024892212, "info": {"x0": -2.6756983731768824, "x1": 3.844463750452506, "x2": 7.476642600291793, "x3": -2.605095349044924, "x4": 1.3387321267307963, "x5": 0.19162690447067512}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/hyperband/configs.json new file mode 100644 index 0000000..3ff4ded --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/hyperband/configs.json @@ -0,0 +1,128 @@ +[[0, 0, 0], {"x0": -2.477889208905355, "x1": 4.40136344236321, "x2": 6.7739366315022735, "x3": -0.4446209223198774, "x4": 1.423784744814518, "x5": 0.358077983252336}, {}] +[[0, 0, 1], {"x0": -4.914547970546499, "x1": 4.349055224299732, "x2": 5.5143332745020315, "x3": -3.6938768840808702, "x4": 2.9528600766758495, "x5": 0.21898320854766845}, {}] +[[0, 0, 2], {"x0": -5.1596517887231865, "x1": 7.807914603185514, "x2": 7.586391096886118, "x3": -2.1600452658646527, "x4": 3.12120217033942, "x5": 0.09733753851786736}, {}] +[[0, 0, 3], {"x0": -5.946156893077346, "x1": 6.4045682205750785, "x2": 6.512980911434064, "x3": -0.568803583110753, "x4": 3.985753852403147, "x5": 0.11699397186148908}, {}] +[[0, 0, 4], {"x0": -4.756495528744287, "x1": 6.128528287256257, "x2": 5.340635814906992, "x3": -0.839732525135966, "x4": 3.5480135554812136, "x5": 0.14730835045127139}, {}] +[[0, 0, 5], {"x0": -5.9122421329315, "x1": 3.352749675823696, "x2": 4.910780907938868, "x3": -0.6229930640581984, "x4": 1.129851069111321, "x5": 0.37902878169293386}, {}] +[[0, 0, 6], {"x0": -2.2423659330001615, "x1": 3.41408810193159, "x2": 4.177429954956372, "x3": -1.4982461582505557, "x4": 2.8958065108279083, "x5": 0.4847779559141931}, {}] +[[0, 0, 7], {"x0": -3.189406901393509, "x1": 6.139990211719181, "x2": 5.059175206799725, "x3": -0.9755408568050483, "x4": 1.8049357257949135, "x5": 0.08037522934736152}, {}] +[[0, 0, 8], {"x0": -4.400253552082688, "x1": 7.537200105956647, "x2": 4.326704900998849, "x3": -2.310340526183637, "x4": 4.964559846198466, "x5": 0.4596493536308073}, {}] +[[0, 0, 9], {"x0": -2.549639993011223, "x1": 3.839227698486469, "x2": 4.386308416050603, "x3": -0.15361321490757485, "x4": 2.5402141311885282, "x5": 0.07575635609254483}, {}] +[[0, 0, 10], {"x0": -4.245988366728614, "x1": 7.4330571957189955, "x2": 7.086219215353292, "x3": -1.5615679166659837, "x4": 4.333341253237025, "x5": 0.09239346461579362}, {}] +[[0, 0, 11], {"x0": -5.9914622268363935, "x1": 3.493287160183958, "x2": 5.184543811184437, "x3": -3.9846589733986777, "x4": 2.7174008677626516, "x5": 0.0032572476124840266}, {}] +[[0, 0, 12], {"x0": -4.469105104567538, "x1": 6.988145050458245, "x2": 6.749775805551476, "x3": -2.2643673730603373, "x4": 3.273307877604285, "x5": 0.0434357482214065}, {}] +[[0, 0, 13], {"x0": -2.595679387231612, "x1": 5.21927773023764, "x2": 4.800188530987127, "x3": -0.5191472176216068, "x4": 2.9637594718998637, "x5": 0.0275815014069698}, {}] +[[0, 0, 14], {"x0": -5.849323382032901, "x1": 3.8326391139055422, "x2": 4.405949308501944, "x3": -3.415479623943972, "x4": 2.5491811238573088, "x5": 0.17175178770175525}, {}] +[[0, 0, 15], {"x0": -3.9394803139691477, "x1": 6.543341245828227, "x2": 6.633932427602258, "x3": -3.79421823551904, "x4": 1.28201908375098, "x5": 0.2718508041377372}, {}] +[[0, 0, 16], {"x0": -5.3534420490415435, "x1": 5.1064160992299374, "x2": 4.652534541788808, "x3": -1.6285043025044441, "x4": 4.110997324947473, "x5": 0.05997127675520281}, {}] +[[0, 0, 17], {"x0": -2.127330492724759, "x1": 3.8757168352863616, "x2": 4.0730264448025295, "x3": -1.9074247890329752, "x4": 4.435002614904485, "x5": 0.03664059773644257}, {}] +[[0, 0, 18], {"x0": -2.1236183264675055, "x1": 6.378423375730064, "x2": 4.367337152234798, "x3": -1.1897820671862247, "x4": 2.214161185410534, "x5": 0.034900414370811705}, {}] +[[0, 0, 19], {"x0": -2.1691546166348026, "x1": 3.362451361667399, "x2": 7.0841588904108175, "x3": -2.2865307465090456, "x4": 2.8707250579491705, "x5": 0.21538245872082123}, {}] +[[0, 0, 20], {"x0": -4.210995068867405, "x1": 5.468356077387071, "x2": 7.687259622376194, "x3": -3.6956905593316165, "x4": 1.5169152319389787, "x5": 0.13052010513388357}, {}] +[[0, 0, 21], {"x0": -4.4524537944100295, "x1": 4.520029325171555, "x2": 6.625563395260304, "x3": -1.3251965062261748, "x4": 1.3113337575560733, "x5": 0.4868407085147878}, {}] +[[0, 0, 22], {"x0": -3.682095814142363, "x1": 3.021406040559944, "x2": 4.687085386660051, "x3": -2.1341796750551527, "x4": 4.483698332599451, "x5": 0.21306453136991022}, {}] +[[0, 0, 23], {"x0": -5.682506369510406, "x1": 7.662359601292717, "x2": 4.607259091004829, "x3": -0.47640638702990934, "x4": 3.2987785182334646, "x5": 0.43297802721797723}, {}] +[[0, 0, 24], {"x0": -4.159569900566583, "x1": 7.213576359302007, "x2": 4.279738101784076, "x3": -0.06650938334686618, "x4": 3.0097479811897054, "x5": 0.3934124311746546}, {}] +[[0, 0, 25], {"x0": -3.9667694885907188, "x1": 3.7694097988990367, "x2": 6.9872429421197175, "x3": -1.1066727980356768, "x4": 3.3000819959065244, "x5": 0.3867436364640971}, {}] +[[0, 0, 26], {"x0": -3.080247181475127, "x1": 4.168120786513939, "x2": 5.22472055864249, "x3": -3.7054080276048897, "x4": 1.901175644732064, "x5": 0.046193532930514924}, {}] +[[1, 0, 0], {"x0": -3.184194487872849, "x1": 5.012634424027061, "x2": 7.129138776153246, "x3": -2.929622790908941, "x4": 3.0398272018234596, "x5": 0.2661687186120013}, {}] +[[1, 0, 1], {"x0": -5.547154707526678, "x1": 6.004548028724564, "x2": 5.042737638819229, "x3": -1.214026557977025, "x4": 2.365295912367455, "x5": 0.430790353053423}, {}] +[[1, 0, 2], {"x0": -2.457199962773148, "x1": 7.211282139228668, "x2": 5.217842606224066, "x3": -2.206846158473761, "x4": 2.766890897403396, "x5": 0.2670560109424395}, {}] +[[1, 0, 3], {"x0": -3.9053178166225653, "x1": 3.767820426475834, "x2": 7.5274915202359285, "x3": -0.16096594054449653, "x4": 4.368052230829974, "x5": 0.41756552801172064}, {}] +[[1, 0, 4], {"x0": -3.2196412703747077, "x1": 7.147174209461434, "x2": 4.965131074472193, "x3": -3.9040266970916715, "x4": 1.1699925237279434, "x5": 0.011279431898558123}, {}] +[[1, 0, 5], {"x0": -5.5659666579415825, "x1": 5.467235595297056, "x2": 7.061419881901311, "x3": -2.6998839569005004, "x4": 2.049164834212497, "x5": 0.0038408730525737456}, {}] +[[1, 0, 6], {"x0": -5.996884966625867, "x1": 5.914210357613175, "x2": 7.905233602620633, "x3": -1.444685684885679, "x4": 3.7128507487519227, "x5": 0.3585510426103505}, {}] +[[1, 0, 7], {"x0": -3.5737955497759866, "x1": 4.670702841969127, "x2": 4.4603592466506825, "x3": -1.0221639858056526, "x4": 4.421047277656501, "x5": 0.47228353818830554}, {}] +[[1, 0, 8], {"x0": -3.1903035159257724, "x1": 5.695694075700544, "x2": 6.519085564658739, "x3": -0.18700448355389332, "x4": 2.5774954927693243, "x5": 0.07679163405030165}, {}] +[[2, 0, 0], {"x0": -3.1517504931952662, "x1": 7.068956824948461, "x2": 7.669362063369626, "x3": -3.2649116816309425, "x4": 2.1257190200389804, "x5": 0.07016444741131378}, {}] +[[2, 0, 1], {"x0": -2.1912970730542543, "x1": 3.3994870757669173, "x2": 6.464648160618643, "x3": -2.7876934151149193, "x4": 2.5886714618814937, "x5": 0.4174974297564773}, {}] +[[2, 0, 2], {"x0": -3.307057171307556, "x1": 7.699399030495336, "x2": 5.732853083149226, "x3": -3.9511899233593866, "x4": 4.6565709304600675, "x5": 0.36780430131010294}, {}] +[[2, 0, 3], {"x0": -3.192918727218436, "x1": 3.592103702353883, "x2": 4.21519764483887, "x3": -3.29925360576126, "x4": 4.111544146316659, "x5": 0.010539227497570913}, {}] +[[2, 0, 4], {"x0": -4.749103946675724, "x1": 6.314948437834676, "x2": 6.202639480661087, "x3": -1.512848658723045, "x4": 2.0599875939566337, "x5": 0.396432470351093}, {}] +[[2, 0, 5], {"x0": -2.786055985824105, "x1": 4.661433812712437, "x2": 6.76015857941465, "x3": -0.20690430672585602, "x4": 4.0309884274826775, "x5": 0.24601958573994082}, {}] +[[3, 0, 0], {"x0": -5.603368298086828, "x1": 6.021620382048805, "x2": 4.114056754993632, "x3": -1.7916774823207424, "x4": 1.218750597026924, "x5": 0.1018762330215166}, {}] +[[3, 0, 1], {"x0": -2.7721008802444063, "x1": 5.614471315010974, "x2": 4.926051411014095, "x3": -0.9083975496345893, "x4": 1.9876087994608578, "x5": 0.32218131723613175}, {}] +[[3, 0, 2], {"x0": -4.065278012081521, "x1": 4.63038906140416, "x2": 7.36538033383602, "x3": -3.1279809752723966, "x4": 4.39413638602126, "x5": 0.49332141705865373}, {}] +[[3, 0, 3], {"x0": -4.755041018628226, "x1": 7.758841003070521, "x2": 6.73769238664021, "x3": -0.4681071311426357, "x4": 1.2878646961441422, "x5": 0.017062788672716378}, {}] +[[4, 0, 0], {"x0": -2.3801680567056276, "x1": 7.891623997300837, "x2": 5.84470111366374, "x3": -2.6046436672774633, "x4": 1.1670949597389506, "x5": 0.4509380888734729}, {}] +[[4, 0, 1], {"x0": -3.2110883705178077, "x1": 6.529116688732913, "x2": 7.463313626847451, "x3": -3.5484430548532564, "x4": 1.7672238874115984, "x5": 0.4499375304019854}, {}] +[[4, 0, 2], {"x0": -2.705117461038433, "x1": 4.695742549786076, "x2": 7.303896651267488, "x3": -0.05746404619988388, "x4": 1.827834974991453, "x5": 0.494726415213824}, {}] +[[4, 0, 3], {"x0": -4.687900820466968, "x1": 7.199836550276589, "x2": 4.151685847042174, "x3": -0.3230698541747503, "x4": 1.6443681341853336, "x5": 0.31799890871749215}, {}] +[[4, 0, 4], {"x0": -4.524899993460661, "x1": 5.179218416799608, "x2": 6.238549940352016, "x3": -2.292832947969695, "x4": 4.832298767646131, "x5": 0.326563496277484}, {}] +[[4, 0, 5], {"x0": -3.5440659459622164, "x1": 5.419506152431339, "x2": 4.19958885636308, "x3": -1.5406553440999882, "x4": 1.0429152255217358, "x5": 0.24905706062592348}, {}] +[[4, 0, 6], {"x0": -3.1131964480446537, "x1": 5.247150862314074, "x2": 5.359024845824421, "x3": -0.48328001264608433, "x4": 2.659256636568833, "x5": 0.4171565631235015}, {}] +[[4, 0, 7], {"x0": -3.956794521206005, "x1": 6.976900040032801, "x2": 6.20547392138981, "x3": -2.605745516239521, "x4": 1.4581158729825128, "x5": 0.037229902009883076}, {}] +[[4, 0, 8], {"x0": -5.548634407268176, "x1": 6.632150786402539, "x2": 6.257685435142874, "x3": -2.1134791451391113, "x4": 1.6556411808745293, "x5": 0.3802283826056165}, {}] +[[4, 0, 9], {"x0": -5.347700839386716, "x1": 6.9902544790907415, "x2": 7.905927419223193, "x3": -2.069467896409908, "x4": 1.7571534575967047, "x5": 0.2232048635691612}, {}] +[[4, 0, 10], {"x0": -4.979695041255056, "x1": 5.922642848451411, "x2": 4.461494077416549, "x3": -3.453704281710151, "x4": 2.4367054259091203, "x5": 0.27148338108866893}, {}] +[[4, 0, 11], {"x0": -2.7935023191505373, "x1": 7.096542699511455, "x2": 6.4614729821130945, "x3": -3.7809335295324074, "x4": 4.470589784839232, "x5": 0.46912278659464224}, {}] +[[4, 0, 12], {"x0": -2.163801561465797, "x1": 5.9577116629804205, "x2": 5.46504735864594, "x3": -0.7612824635179414, "x4": 3.517373934850175, "x5": 0.06416234135795212}, {}] +[[4, 0, 13], {"x0": -2.9663047970122656, "x1": 6.512085722196478, "x2": 6.538373733267839, "x3": -1.889310505632098, "x4": 1.073426808115871, "x5": 0.06399994889028171}, {}] +[[4, 0, 14], {"x0": -5.375555686261938, "x1": 5.32270181296767, "x2": 4.707496764728447, "x3": -1.4476264815357083, "x4": 2.389040101556994, "x5": 0.425837340263709}, {}] +[[4, 0, 15], {"x0": -2.112927527528494, "x1": 4.285960142804395, "x2": 7.1828968248411496, "x3": -3.019118213494738, "x4": 3.16160740151791, "x5": 0.19632262433226377}, {}] +[[4, 0, 16], {"x0": -5.942978484109384, "x1": 4.7187035623827995, "x2": 6.586709420551128, "x3": -1.8364231716268762, "x4": 4.936286578620884, "x5": 0.027666825396161776}, {}] +[[4, 0, 17], {"x0": -5.708618628909219, "x1": 6.641941393395589, "x2": 6.59778630195358, "x3": -0.0006254206866151968, "x4": 4.711186243968895, "x5": 0.10849290900498193}, {}] +[[4, 0, 18], {"x0": -3.369651299261372, "x1": 6.321185587748014, "x2": 7.331537558193603, "x3": -3.5271972976364068, "x4": 3.8888564859129793, "x5": 0.2955840101056388}, {}] +[[4, 0, 19], {"x0": -4.539720491148367, "x1": 5.4114475917003, "x2": 4.888735790647021, "x3": -3.858807886668232, "x4": 1.8948023291818172, "x5": 0.06278451989393824}, {}] +[[4, 0, 20], {"x0": -4.650756489317432, "x1": 7.5291928634722565, "x2": 6.876223985599774, "x3": -3.8391366259314834, "x4": 2.29121105432517, "x5": 0.3978232111126117}, {}] +[[4, 0, 21], {"x0": -4.749212649368307, "x1": 7.647079071130171, "x2": 6.655434929404574, "x3": -1.1760169471640007, "x4": 2.722037925439176, "x5": 0.3125794818432257}, {}] +[[4, 0, 22], {"x0": -4.224708179661219, "x1": 3.547595026271053, "x2": 7.866666867663552, "x3": -3.545410262614828, "x4": 1.4440417394293275, "x5": 0.07953921350508947}, {}] +[[4, 0, 23], {"x0": -3.65610286608127, "x1": 5.053069935614425, "x2": 5.374069702489022, "x3": -2.6005628415916817, "x4": 4.552611146570203, "x5": 0.17801879434210677}, {}] +[[4, 0, 24], {"x0": -2.926099461850815, "x1": 3.0932593109377606, "x2": 4.882994091701804, "x3": -2.7682028559962863, "x4": 3.6367000562631464, "x5": 0.39145700221913116}, {}] +[[4, 0, 25], {"x0": -3.416748001535558, "x1": 7.8698717103041, "x2": 6.2556410497874, "x3": -1.3361711133855283, "x4": 3.574975989630394, "x5": 0.15741000824980084}, {}] +[[4, 0, 26], {"x0": -3.922095285004537, "x1": 5.6699580620418715, "x2": 4.8490894817353265, "x3": -0.38613224824982817, "x4": 3.0302704217439294, "x5": 0.4319853957343218}, {}] +[[5, 0, 0], {"x0": -5.042406058131574, "x1": 3.6541884358733534, "x2": 7.656340404977136, "x3": -0.9416819280547246, "x4": 4.174782646944754, "x5": 0.21317769129481517}, {}] +[[5, 0, 1], {"x0": -4.248626191803636, "x1": 5.2774162593197556, "x2": 7.8447562559745805, "x3": -3.601617117504537, "x4": 4.111454489552487, "x5": 0.21581817526997338}, {}] +[[5, 0, 2], {"x0": -2.459739769820297, "x1": 6.182110575959113, "x2": 4.272730617141898, "x3": -2.807594300988865, "x4": 2.691726202989541, "x5": 0.39501149637610383}, {}] +[[5, 0, 3], {"x0": -5.056338996072275, "x1": 7.485862751403414, "x2": 7.537002775489937, "x3": -2.3935889783494697, "x4": 2.1844989362840748, "x5": 0.40677769693158866}, {}] +[[5, 0, 4], {"x0": -5.912250433995842, "x1": 4.112397017393629, "x2": 7.552805163692327, "x3": -2.9259225019988078, "x4": 1.0243517400728686, "x5": 0.09366126553633425}, {}] +[[5, 0, 5], {"x0": -4.165909071876699, "x1": 5.864688075536146, "x2": 7.386433825245993, "x3": -3.6165597117281014, "x4": 1.5073301610400196, "x5": 0.36001117273404276}, {}] +[[5, 0, 6], {"x0": -5.598653168728394, "x1": 5.286209085486778, "x2": 5.059911871096892, "x3": -1.4014371686917708, "x4": 4.188341853486339, "x5": 0.3253848244897172}, {}] +[[5, 0, 7], {"x0": -5.015693578970589, "x1": 3.1853895245493082, "x2": 6.108159616529874, "x3": -2.0842985227801245, "x4": 3.99287333060867, "x5": 0.25356412837372316}, {}] +[[5, 0, 8], {"x0": -2.9366142314334143, "x1": 6.797411321163688, "x2": 4.279041781894884, "x3": -2.2327628422491035, "x4": 1.8224902270833119, "x5": 0.3317438941408973}, {}] +[[6, 0, 0], {"x0": -3.775672313675546, "x1": 5.15675075036741, "x2": 6.845671405827664, "x3": -0.8176799832060331, "x4": 4.359207879983161, "x5": 0.05805005061582136}, {}] +[[6, 0, 1], {"x0": -5.775085705340462, "x1": 3.1624188800222512, "x2": 7.995458962424207, "x3": -3.1998764274797766, "x4": 2.4582233103313382, "x5": 0.4540495149340158}, {}] +[[6, 0, 2], {"x0": -3.854097597545456, "x1": 6.115997045105518, "x2": 6.9665101310271424, "x3": -0.5306939098724635, "x4": 1.4312371860192972, "x5": 0.2792232456314441}, {}] +[[6, 0, 3], {"x0": -5.963822792142949, "x1": 6.567295450813342, "x2": 4.482801019811125, "x3": -2.661305878972577, "x4": 1.1073384448763766, "x5": 0.4120818390032998}, {}] +[[6, 0, 4], {"x0": -5.288930194602752, "x1": 4.0684843441591205, "x2": 6.040444413085702, "x3": -2.322292905658754, "x4": 3.3298608591432006, "x5": 0.2813909135449416}, {}] +[[6, 0, 5], {"x0": -2.165937976373197, "x1": 6.825588841643754, "x2": 5.6330972084093744, "x3": -1.829263801767926, "x4": 3.5238354550697175, "x5": 0.3797801468385166}, {}] +[[7, 0, 0], {"x0": -2.5388221698327635, "x1": 3.242393500219703, "x2": 7.804730362432727, "x3": -2.058572964884029, "x4": 3.9270441454163794, "x5": 0.06545768242303474}, {}] +[[7, 0, 1], {"x0": -4.615180776926039, "x1": 4.281445400944258, "x2": 5.884068573225576, "x3": -1.79209417924212, "x4": 2.4294856422934084, "x5": 0.03104283510799305}, {}] +[[7, 0, 2], {"x0": -4.384709253724986, "x1": 5.5540140059333805, "x2": 5.643645429834632, "x3": -2.6986658833438333, "x4": 4.2764990159289535, "x5": 0.2164024114320039}, {}] +[[7, 0, 3], {"x0": -4.019954026258492, "x1": 3.412396887550715, "x2": 4.2450737757198205, "x3": -1.6255318690802767, "x4": 4.0647286245609475, "x5": 0.054771913545691886}, {}] +[[8, 0, 0], {"x0": -3.7875385624515396, "x1": 3.2669123226364043, "x2": 6.241531328052741, "x3": -2.2688642125839604, "x4": 3.622981109325372, "x5": 0.368142507560793}, {}] +[[8, 0, 1], {"x0": -5.6599808967414, "x1": 5.482099691335559, "x2": 4.380639698263554, "x3": -3.7076002767681033, "x4": 4.212687154633539, "x5": 0.33138730631788055}, {}] +[[8, 0, 2], {"x0": -3.7397329922712244, "x1": 4.549696236969349, "x2": 7.392372654113729, "x3": -2.8075700494756597, "x4": 3.537588487166128, "x5": 0.2339006224132365}, {}] +[[8, 0, 3], {"x0": -4.277238531545226, "x1": 5.036929175243806, "x2": 5.387944088889846, "x3": -0.8272725337698548, "x4": 3.3617972204876954, "x5": 0.4337956306963836}, {}] +[[8, 0, 4], {"x0": -3.820851968585909, "x1": 7.379534179964448, "x2": 5.577495705428797, "x3": -2.374541411224647, "x4": 4.014686755742246, "x5": 0.1755813852774088}, {}] +[[8, 0, 5], {"x0": -2.3152853418229995, "x1": 3.310379334743387, "x2": 6.300956688245664, "x3": -2.6731510248286297, "x4": 3.820469516427069, "x5": 0.13632345945318514}, {}] +[[8, 0, 6], {"x0": -2.944862623864374, "x1": 5.320106471708941, "x2": 5.945603027415887, "x3": -1.3470572961061498, "x4": 2.3974109668981405, "x5": 0.06936723536714473}, {}] +[[8, 0, 7], {"x0": -3.4428188287261947, "x1": 4.571312893916703, "x2": 7.825561800707899, "x3": -3.2670309437290412, "x4": 1.642224828957434, "x5": 0.1890670641525054}, {}] +[[8, 0, 8], {"x0": -4.6753373794087025, "x1": 6.74582354403385, "x2": 4.070841796211171, "x3": -1.3586036534189145, "x4": 1.4329949853045907, "x5": 0.09859589830698462}, {}] +[[8, 0, 9], {"x0": -3.536021491024957, "x1": 6.200316630242771, "x2": 7.994806228664109, "x3": -3.8638105944225134, "x4": 3.6542198670703465, "x5": 0.2033476838568567}, {}] +[[8, 0, 10], {"x0": -2.264355843326226, "x1": 6.006439279209383, "x2": 7.78619539809418, "x3": -2.8693270151653154, "x4": 3.9716084984114626, "x5": 0.1384399331952158}, {}] +[[8, 0, 11], {"x0": -4.1097217170595695, "x1": 7.37788616013515, "x2": 4.637346763870102, "x3": -2.8615250508794796, "x4": 2.9715368877586945, "x5": 0.09912581241306073}, {}] +[[8, 0, 12], {"x0": -4.605935011440536, "x1": 7.2270124924800525, "x2": 4.110080363540461, "x3": -0.00280550450583128, "x4": 2.7502826773171716, "x5": 0.24329175286107657}, {}] +[[8, 0, 13], {"x0": -3.174430354774833, "x1": 6.886643228545346, "x2": 5.6745412588191915, "x3": -3.467429546451268, "x4": 3.9203982703459035, "x5": 0.20354430254141553}, {}] +[[8, 0, 14], {"x0": -5.059438881891351, "x1": 6.597770864801654, "x2": 7.077995825204326, "x3": -0.5796256468458933, "x4": 2.8754446438121066, "x5": 0.4062193158897189}, {}] +[[8, 0, 15], {"x0": -3.931756521856637, "x1": 3.790939208266134, "x2": 4.688935708649057, "x3": -0.6500242880089591, "x4": 4.1770548464466355, "x5": 0.46655620838514783}, {}] +[[8, 0, 16], {"x0": -3.092872333338012, "x1": 3.2738644344984515, "x2": 6.592438305493082, "x3": -0.7407471703388846, "x4": 3.0055598014641505, "x5": 0.4302615735525246}, {}] +[[8, 0, 17], {"x0": -3.9390525426305474, "x1": 6.161688747811641, "x2": 5.778285034869287, "x3": -1.1021942524568602, "x4": 1.5193821755601111, "x5": 0.15896266330603487}, {}] +[[8, 0, 18], {"x0": -3.91571037523084, "x1": 4.72864584403221, "x2": 4.386810806435255, "x3": -2.197815430414577, "x4": 2.9620503892937884, "x5": 0.1633497896920995}, {}] +[[8, 0, 19], {"x0": -5.5379603629268335, "x1": 3.1867247182304093, "x2": 7.971512070517811, "x3": -3.322951285249424, "x4": 2.405402912936921, "x5": 0.4067933862595708}, {}] +[[8, 0, 20], {"x0": -2.5957336383752967, "x1": 3.3530460198032124, "x2": 4.883139001200834, "x3": -1.7785277742215486, "x4": 4.494906270557788, "x5": 0.11134425985872515}, {}] +[[8, 0, 21], {"x0": -3.0577705312195955, "x1": 5.120189274380591, "x2": 6.8990309112879, "x3": -1.9859688037359322, "x4": 1.9538047605318205, "x5": 0.36878948206213785}, {}] +[[8, 0, 22], {"x0": -2.902931085016801, "x1": 4.276402051379749, "x2": 7.017807070833989, "x3": -3.1412604965429347, "x4": 1.182575735064801, "x5": 0.3209696925973121}, {}] +[[8, 0, 23], {"x0": -2.692537536197117, "x1": 5.007152652657542, "x2": 5.810192003472917, "x3": -0.8689890053763203, "x4": 1.9159688698051425, "x5": 0.4280681924010273}, {}] +[[8, 0, 24], {"x0": -3.857737052119822, "x1": 4.08858038946938, "x2": 5.976541170928901, "x3": -2.5251503888884885, "x4": 3.029599262413595, "x5": 0.22778258344558683}, {}] +[[8, 0, 25], {"x0": -3.8514830089061176, "x1": 4.095012723183847, "x2": 5.449104372255796, "x3": -0.28141621875912604, "x4": 4.04646451030762, "x5": 0.31448143917378274}, {}] +[[8, 0, 26], {"x0": -3.4184757564266874, "x1": 5.871498116798324, "x2": 4.06977148118068, "x3": -0.3107862494890328, "x4": 4.556447176829127, "x5": 0.2509991175349394}, {}] +[[9, 0, 0], {"x0": -5.1902579803912605, "x1": 6.266617707067634, "x2": 4.375861928310505, "x3": -3.7417904256355006, "x4": 1.2783151739280592, "x5": 0.24808403381521343}, {}] +[[9, 0, 1], {"x0": -4.582402924976021, "x1": 4.872548248718416, "x2": 5.379073410788043, "x3": -0.9984631721273742, "x4": 3.4179331228451173, "x5": 0.35156970427117423}, {}] +[[9, 0, 2], {"x0": -4.81041721159013, "x1": 5.893777615920614, "x2": 5.55214265462466, "x3": -1.6261649666646854, "x4": 2.3478979491821774, "x5": 0.39799154850022866}, {}] +[[9, 0, 3], {"x0": -4.634752304952444, "x1": 6.485052412197211, "x2": 5.2473058083370026, "x3": -2.8268056626401608, "x4": 2.2081870395280103, "x5": 0.12490176223376703}, {}] +[[9, 0, 4], {"x0": -2.2814659648597875, "x1": 4.865331289365384, "x2": 4.883391706227554, "x3": -1.4471595813956615, "x4": 2.310724527459186, "x5": 0.4357226829254312}, {}] +[[9, 0, 5], {"x0": -4.741722780080083, "x1": 4.092443116853529, "x2": 7.060699796689127, "x3": -3.9060905980605987, "x4": 4.52325980400515, "x5": 0.24879510579967884}, {}] +[[9, 0, 6], {"x0": -5.479376359502975, "x1": 7.637566065837161, "x2": 5.6852599539509745, "x3": -2.9101036178516453, "x4": 3.082032556101354, "x5": 0.3138604424593369}, {}] +[[9, 0, 7], {"x0": -4.633077179494115, "x1": 5.638655122395969, "x2": 7.057055878505517, "x3": -3.5552225226558445, "x4": 3.6370232184181344, "x5": 0.12255930673107779}, {}] +[[9, 0, 8], {"x0": -5.035630039535448, "x1": 5.344366673751816, "x2": 6.046934048446676, "x3": -1.2082444265532537, "x4": 2.472755304017642, "x5": 0.02471168313269473}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/hyperband/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/hyperband/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/hyperband/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/hyperband/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/hyperband/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/hyperband/results.json new file mode 100644 index 0000000..56b7ecf --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/hyperband/results.json @@ -0,0 +1,183 @@ +[[0, 0, 0], 9.0, {"submitted": 1558193389.6550412, "started": 1558193389.6554723, "finished": 1558193389.6615045}, {"loss": 0.15188888412134513, "info": {"x0": -2.477889208905355, "x1": 4.40136344236321, "x2": 6.7739366315022735, "x3": -0.4446209223198774, "x4": 1.423784744814518, "x5": 0.358077983252336}}, null] +[[0, 0, 1], 9.0, {"submitted": 1558193389.663122, "started": 1558193389.6635149, "finished": 1558193389.6724133}, {"loss": 0.20906480956049983, "info": {"x0": -4.914547970546499, "x1": 4.349055224299732, "x2": 5.5143332745020315, "x3": -3.6938768840808702, "x4": 2.9528600766758495, "x5": 0.21898320854766845}}, null] +[[0, 0, 2], 9.0, {"submitted": 1558193389.6747015, "started": 1558193389.6751046, "finished": 1558193389.685345}, {"loss": 0.2191203703008316, "info": {"x0": -5.1596517887231865, "x1": 7.807914603185514, "x2": 7.586391096886118, "x3": -2.1600452658646527, "x4": 3.12120217033942, "x5": 0.09733753851786736}}, null] +[[0, 0, 3], 9.0, {"submitted": 1558193389.68842, "started": 1558193389.6888802, "finished": 1558193389.694828}, {"loss": 0.36923148046985826, "info": {"x0": -5.946156893077346, "x1": 6.4045682205750785, "x2": 6.512980911434064, "x3": -0.568803583110753, "x4": 3.985753852403147, "x5": 0.11699397186148908}}, null] +[[0, 0, 4], 9.0, {"submitted": 1558193389.6967385, "started": 1558193389.6971893, "finished": 1558193389.7064693}, {"loss": 0.19262037012312144, "info": {"x0": -4.756495528744287, "x1": 6.128528287256257, "x2": 5.340635814906992, "x3": -0.839732525135966, "x4": 3.5480135554812136, "x5": 0.14730835045127139}}, null] +[[0, 0, 5], 9.0, {"submitted": 1558193389.7083178, "started": 1558193389.7085736, "finished": 1558193389.7166924}, {"loss": 0.3997870269833063, "info": {"x0": -5.9122421329315, "x1": 3.352749675823696, "x2": 4.910780907938868, "x3": -0.6229930640581984, "x4": 1.129851069111321, "x5": 0.37902878169293386}}, null] +[[0, 0, 6], 9.0, {"submitted": 1558193389.7192192, "started": 1558193389.7197049, "finished": 1558193389.7256987}, {"loss": 0.1756388867817543, "info": {"x0": -2.2423659330001615, "x1": 3.41408810193159, "x2": 4.177429954956372, "x3": -1.4982461582505557, "x4": 2.8958065108279083, "x5": 0.4847779559141931}}, null] +[[0, 0, 7], 9.0, {"submitted": 1558193389.727895, "started": 1558193389.7283864, "finished": 1558193389.7377114}, {"loss": 0.1521296280506584, "info": {"x0": -3.189406901393509, "x1": 6.139990211719181, "x2": 5.059175206799725, "x3": -0.9755408568050483, "x4": 1.8049357257949135, "x5": 0.08037522934736152}}, null] +[[0, 0, 8], 9.0, {"submitted": 1558193389.7396152, "started": 1558193389.7399416, "finished": 1558193389.749123}, {"loss": 0.23167592313664928, "info": {"x0": -4.400253552082688, "x1": 7.537200105956647, "x2": 4.326704900998849, "x3": -2.310340526183637, "x4": 4.964559846198466, "x5": 0.4596493536308073}}, null] +[[0, 0, 9], 9.0, {"submitted": 1558193389.7516754, "started": 1558193389.7520773, "finished": 1558193389.7577653}, {"loss": 0.15195370135428726, "info": {"x0": -2.549639993011223, "x1": 3.839227698486469, "x2": 4.386308416050603, "x3": -0.15361321490757485, "x4": 2.5402141311885282, "x5": 0.07575635609254483}}, null] +[[0, 0, 10], 9.0, {"submitted": 1558193389.7594383, "started": 1558193389.759752, "finished": 1558193389.7680893}, {"loss": 0.16444444365137154, "info": {"x0": -4.245988366728614, "x1": 7.4330571957189955, "x2": 7.086219215353292, "x3": -1.5615679166659837, "x4": 4.333341253237025, "x5": 0.09239346461579362}}, null] +[[0, 0, 11], 9.0, {"submitted": 1558193389.7716658, "started": 1558193389.7720356, "finished": 1558193389.7795136}, {"loss": 0.49769444308678307, "info": {"x0": -5.9914622268363935, "x1": 3.493287160183958, "x2": 5.184543811184437, "x3": -3.9846589733986777, "x4": 2.7174008677626516, "x5": 0.0032572476124840266}}, null] +[[0, 0, 12], 9.0, {"submitted": 1558193389.7830558, "started": 1558193389.7835233, "finished": 1558193389.7901096}, {"loss": 0.1599999969910692, "info": {"x0": -4.469105104567538, "x1": 6.988145050458245, "x2": 6.749775805551476, "x3": -2.2643673730603373, "x4": 3.273307877604285, "x5": 0.0434357482214065}}, null] +[[0, 0, 13], 9.0, {"submitted": 1558193389.7923214, "started": 1558193389.7926857, "finished": 1558193389.8001368}, {"loss": 0.1504444451952974, "info": {"x0": -2.595679387231612, "x1": 5.21927773023764, "x2": 4.800188530987127, "x3": -0.5191472176216068, "x4": 2.9637594718998637, "x5": 0.0275815014069698}}, null] +[[0, 0, 14], 9.0, {"submitted": 1558193389.8019736, "started": 1558193389.8023038, "finished": 1558193389.8092058}, {"loss": 0.32724999153938283, "info": {"x0": -5.849323382032901, "x1": 3.8326391139055422, "x2": 4.405949308501944, "x3": -3.415479623943972, "x4": 2.5491811238573088, "x5": 0.17175178770175525}}, null] +[[0, 0, 15], 9.0, {"submitted": 1558193389.8120832, "started": 1558193389.8124464, "finished": 1558193389.820247}, {"loss": 0.1567592611230082, "info": {"x0": -3.9394803139691477, "x1": 6.543341245828227, "x2": 6.633932427602258, "x3": -3.79421823551904, "x4": 1.28201908375098, "x5": 0.2718508041377372}}, null] +[[0, 0, 16], 9.0, {"submitted": 1558193389.8227937, "started": 1558193389.8231642, "finished": 1558193389.8289688}, {"loss": 0.25478703677488695, "info": {"x0": -5.3534420490415435, "x1": 5.1064160992299374, "x2": 4.652534541788808, "x3": -1.6285043025044441, "x4": 4.110997324947473, "x5": 0.05997127675520281}}, null] +[[0, 0, 17], 9.0, {"submitted": 1558193389.8315825, "started": 1558193389.8320453, "finished": 1558193389.8411987}, {"loss": 0.15480555221466002, "info": {"x0": -2.127330492724759, "x1": 3.8757168352863616, "x2": 4.0730264448025295, "x3": -1.9074247890329752, "x4": 4.435002614904485, "x5": 0.03664059773644257}}, null] +[[0, 0, 18], 9.0, {"submitted": 1558193389.8433452, "started": 1558193389.8438106, "finished": 1558193389.8533425}, {"loss": 0.15094444515142177, "info": {"x0": -2.1236183264675055, "x1": 6.378423375730064, "x2": 4.367337152234798, "x3": -1.1897820671862247, "x4": 2.214161185410534, "x5": 0.034900414370811705}}, null] +[[0, 0, 19], 9.0, {"submitted": 1558193389.855945, "started": 1558193389.8563612, "finished": 1558193389.8624184}, {"loss": 0.1602685181459895, "info": {"x0": -2.1691546166348026, "x1": 3.362451361667399, "x2": 7.0841588904108175, "x3": -2.2865307465090456, "x4": 2.8707250579491705, "x5": 0.21538245872082123}}, null] +[[0, 0, 20], 9.0, {"submitted": 1558193389.8680818, "started": 1558193389.8687015, "finished": 1558193389.8764048}, {"loss": 0.15692592438889874, "info": {"x0": -4.210995068867405, "x1": 5.468356077387071, "x2": 7.687259622376194, "x3": -3.6956905593316165, "x4": 1.5169152319389787, "x5": 0.13052010513388357}}, null] +[[0, 0, 21], 9.0, {"submitted": 1558193389.8782177, "started": 1558193389.87886, "finished": 1558193389.8868864}, {"loss": 0.1623981476666199, "info": {"x0": -4.4524537944100295, "x1": 4.520029325171555, "x2": 6.625563395260304, "x3": -1.3251965062261748, "x4": 1.3113337575560733, "x5": 0.4868407085147878}}, null] +[[0, 0, 22], 9.0, {"submitted": 1558193389.8889127, "started": 1558193389.8892317, "finished": 1558193389.8949115}, {"loss": 0.17493518273422012, "info": {"x0": -3.682095814142363, "x1": 3.021406040559944, "x2": 4.687085386660051, "x3": -2.1341796750551527, "x4": 4.483698332599451, "x5": 0.21306453136991022}}, null] +[[0, 0, 23], 9.0, {"submitted": 1558193389.896867, "started": 1558193389.898893, "finished": 1558193389.9082422}, {"loss": 0.31708333204548667, "info": {"x0": -5.682506369510406, "x1": 7.662359601292717, "x2": 4.607259091004829, "x3": -0.47640638702990934, "x4": 3.2987785182334646, "x5": 0.43297802721797723}}, null] +[[0, 0, 24], 9.0, {"submitted": 1558193389.9103463, "started": 1558193389.9108262, "finished": 1558193389.9195876}, {"loss": 0.2023981461050334, "info": {"x0": -4.159569900566583, "x1": 7.213576359302007, "x2": 4.279738101784076, "x3": -0.06650938334686618, "x4": 3.0097479811897054, "x5": 0.3934124311746546}}, null] +[[0, 0, 25], 9.0, {"submitted": 1558193389.921361, "started": 1558193389.921732, "finished": 1558193389.9278476}, {"loss": 0.16344444172912173, "info": {"x0": -3.9667694885907188, "x1": 3.7694097988990367, "x2": 6.9872429421197175, "x3": -1.1066727980356768, "x4": 3.3000819959065244, "x5": 0.3867436364640971}}, null] +[[0, 0, 26], 9.0, {"submitted": 1558193389.929631, "started": 1558193389.9300888, "finished": 1558193389.9414728}, {"loss": 0.1531388888977192, "info": {"x0": -3.080247181475127, "x1": 4.168120786513939, "x2": 5.22472055864249, "x3": -3.7054080276048897, "x4": 1.901175644732064, "x5": 0.046193532930514924}}, null] +[[0, 0, 0], 27.0, {"submitted": 1558193389.9431016, "started": 1558193389.943418, "finished": 1558193389.9515243}, {"loss": 0.14966666158702635, "info": {"x0": -2.477889208905355, "x1": 4.40136344236321, "x2": 6.7739366315022735, "x3": -0.4446209223198774, "x4": 1.423784744814518, "x5": 0.358077983252336}}, null] +[[0, 0, 7], 27.0, {"submitted": 1558193389.9531486, "started": 1558193389.953482, "finished": 1558193389.9595757}, {"loss": 0.15083333175381025, "info": {"x0": -3.189406901393509, "x1": 6.139990211719181, "x2": 5.059175206799725, "x3": -0.9755408568050483, "x4": 1.8049357257949135, "x5": 0.08037522934736152}}, null] +[[0, 0, 9], 27.0, {"submitted": 1558193389.9612367, "started": 1558193389.961569, "finished": 1558193389.9714885}, {"loss": 0.1516203681652745, "info": {"x0": -2.549639993011223, "x1": 3.839227698486469, "x2": 4.386308416050603, "x3": -0.15361321490757485, "x4": 2.5402141311885282, "x5": 0.07575635609254483}}, null] +[[0, 0, 13], 27.0, {"submitted": 1558193389.9733903, "started": 1558193389.9744377, "finished": 1558193389.980287}, {"loss": 0.15024074074598376, "info": {"x0": -2.595679387231612, "x1": 5.21927773023764, "x2": 4.800188530987127, "x3": -0.5191472176216068, "x4": 2.9637594718998637, "x5": 0.0275815014069698}}, null] +[[0, 0, 15], 27.0, {"submitted": 1558193389.982001, "started": 1558193389.9823613, "finished": 1558193389.9910944}, {"loss": 0.15607407593782302, "info": {"x0": -3.9394803139691477, "x1": 6.543341245828227, "x2": 6.633932427602258, "x3": -3.79421823551904, "x4": 1.28201908375098, "x5": 0.2718508041377372}}, null] +[[0, 0, 17], 27.0, {"submitted": 1558193389.9922698, "started": 1558193389.992575, "finished": 1558193389.999924}, {"loss": 0.15452777408946444, "info": {"x0": -2.127330492724759, "x1": 3.8757168352863616, "x2": 4.0730264448025295, "x3": -1.9074247890329752, "x4": 4.435002614904485, "x5": 0.03664059773644257}}, null] +[[0, 0, 18], 27.0, {"submitted": 1558193390.0018826, "started": 1558193390.002259, "finished": 1558193390.0094516}, {"loss": 0.15098148301547326, "info": {"x0": -2.1236183264675055, "x1": 6.378423375730064, "x2": 4.367337152234798, "x3": -1.1897820671862247, "x4": 2.214161185410534, "x5": 0.034900414370811705}}, null] +[[0, 0, 20], 27.0, {"submitted": 1558193390.0107312, "started": 1558193390.0110755, "finished": 1558193390.019558}, {"loss": 0.1557314806834415, "info": {"x0": -4.210995068867405, "x1": 5.468356077387071, "x2": 7.687259622376194, "x3": -3.6956905593316165, "x4": 1.5169152319389787, "x5": 0.13052010513388357}}, null] +[[0, 0, 26], 27.0, {"submitted": 1558193390.0211322, "started": 1558193390.0216403, "finished": 1558193390.027961}, {"loss": 0.15170370320865398, "info": {"x0": -3.080247181475127, "x1": 4.168120786513939, "x2": 5.22472055864249, "x3": -3.7054080276048897, "x4": 1.901175644732064, "x5": 0.046193532930514924}}, null] +[[0, 0, 0], 81.0, {"submitted": 1558193390.0296044, "started": 1558193390.0300872, "finished": 1558193390.0407505}, {"loss": 0.14957406888736618, "info": {"x0": -2.477889208905355, "x1": 4.40136344236321, "x2": 6.7739366315022735, "x3": -0.4446209223198774, "x4": 1.423784744814518, "x5": 0.358077983252336}}, null] +[[0, 0, 7], 81.0, {"submitted": 1558193390.042041, "started": 1558193390.042494, "finished": 1558193390.0509233}, {"loss": 0.15083333175381025, "info": {"x0": -3.189406901393509, "x1": 6.139990211719181, "x2": 5.059175206799725, "x3": -0.9755408568050483, "x4": 1.8049357257949135, "x5": 0.08037522934736152}}, null] +[[0, 0, 13], 81.0, {"submitted": 1558193390.0527825, "started": 1558193390.0533748, "finished": 1558193390.0598683}, {"loss": 0.1502962965261605, "info": {"x0": -2.595679387231612, "x1": 5.21927773023764, "x2": 4.800188530987127, "x3": -0.5191472176216068, "x4": 2.9637594718998637, "x5": 0.0275815014069698}}, null] +[[0, 0, 0], 243.0, {"submitted": 1558193390.061727, "started": 1558193390.0620513, "finished": 1558193390.0712955}, {"loss": 0.14957406888736618, "info": {"x0": -2.477889208905355, "x1": 4.40136344236321, "x2": 6.7739366315022735, "x3": -0.4446209223198774, "x4": 1.423784744814518, "x5": 0.358077983252336}}, null] +[[1, 0, 0], 27.0, {"submitted": 1558193390.0736034, "started": 1558193390.0740864, "finished": 1558193390.081802}, {"loss": 0.14937036847240398, "info": {"x0": -3.184194487872849, "x1": 5.012634424027061, "x2": 7.129138776153246, "x3": -2.929622790908941, "x4": 3.0398272018234596, "x5": 0.2661687186120013}}, null] +[[1, 0, 1], 27.0, {"submitted": 1558193390.0878189, "started": 1558193390.0885258, "finished": 1558193390.0987847}, {"loss": 0.29556481321873485, "info": {"x0": -5.547154707526678, "x1": 6.004548028724564, "x2": 5.042737638819229, "x3": -1.214026557977025, "x4": 2.365295912367455, "x5": 0.430790353053423}}, null] +[[1, 0, 2], 27.0, {"submitted": 1558193390.1022246, "started": 1558193390.10276, "finished": 1558193390.1095421}, {"loss": 0.15173147829594436, "info": {"x0": -2.457199962773148, "x1": 7.211282139228668, "x2": 5.217842606224066, "x3": -2.206846158473761, "x4": 2.766890897403396, "x5": 0.2670560109424395}}, null] +[[1, 0, 3], 27.0, {"submitted": 1558193390.1115887, "started": 1558193390.1121113, "finished": 1558193390.1199727}, {"loss": 0.15702777894337971, "info": {"x0": -3.9053178166225653, "x1": 3.767820426475834, "x2": 7.5274915202359285, "x3": -0.16096594054449653, "x4": 4.368052230829974, "x5": 0.41756552801172064}}, null] +[[1, 0, 4], 27.0, {"submitted": 1558193390.1221337, "started": 1558193390.1225638, "finished": 1558193390.1294322}, {"loss": 0.15183333372738625, "info": {"x0": -3.2196412703747077, "x1": 7.147174209461434, "x2": 4.965131074472193, "x3": -3.9040266970916715, "x4": 1.1699925237279434, "x5": 0.011279431898558123}}, null] +[[1, 0, 5], 27.0, {"submitted": 1558193390.1342735, "started": 1558193390.1348636, "finished": 1558193390.1440055}, {"loss": 0.2600833293747295, "info": {"x0": -5.5659666579415825, "x1": 5.467235595297056, "x2": 7.061419881901311, "x3": -2.6998839569005004, "x4": 2.049164834212497, "x5": 0.0038408730525737456}}, null] +[[1, 0, 6], 27.0, {"submitted": 1558193390.1459892, "started": 1558193390.146394, "finished": 1558193390.1562343}, {"loss": 0.23462962871238036, "info": {"x0": -5.996884966625867, "x1": 5.914210357613175, "x2": 7.905233602620633, "x3": -1.444685684885679, "x4": 3.7128507487519227, "x5": 0.3585510426103505}}, null] +[[1, 0, 7], 27.0, {"submitted": 1558193390.1582553, "started": 1558193390.158671, "finished": 1558193390.1681948}, {"loss": 0.17482407079416293, "info": {"x0": -3.5737955497759866, "x1": 4.670702841969127, "x2": 4.4603592466506825, "x3": -1.0221639858056526, "x4": 4.421047277656501, "x5": 0.47228353818830554}}, null] +[[1, 0, 8], 27.0, {"submitted": 1558193390.170681, "started": 1558193390.1710932, "finished": 1558193390.1772904}, {"loss": 0.1527129613288023, "info": {"x0": -3.1903035159257724, "x1": 5.695694075700544, "x2": 6.519085564658739, "x3": -0.18700448355389332, "x4": 2.5774954927693243, "x5": 0.07679163405030165}}, null] +[[1, 0, 0], 81.0, {"submitted": 1558193390.179076, "started": 1558193390.179452, "finished": 1558193390.1888838}, {"loss": 0.14919444287126815, "info": {"x0": -3.184194487872849, "x1": 5.012634424027061, "x2": 7.129138776153246, "x3": -2.929622790908941, "x4": 3.0398272018234596, "x5": 0.2661687186120013}}, null] +[[1, 0, 2], 81.0, {"submitted": 1558193390.1929102, "started": 1558193390.193314, "finished": 1558193390.205944}, {"loss": 0.15173147829594436, "info": {"x0": -2.457199962773148, "x1": 7.211282139228668, "x2": 5.217842606224066, "x3": -2.206846158473761, "x4": 2.766890897403396, "x5": 0.2670560109424395}}, null] +[[1, 0, 4], 81.0, {"submitted": 1558193390.207748, "started": 1558193390.2083848, "finished": 1558193390.2160316}, {"loss": 0.15183333372738625, "info": {"x0": -3.2196412703747077, "x1": 7.147174209461434, "x2": 4.965131074472193, "x3": -3.9040266970916715, "x4": 1.1699925237279434, "x5": 0.011279431898558123}}, null] +[[1, 0, 0], 243.0, {"submitted": 1558193390.2183647, "started": 1558193390.218921, "finished": 1558193390.2283542}, {"loss": 0.14922222067332927, "info": {"x0": -3.184194487872849, "x1": 5.012634424027061, "x2": 7.129138776153246, "x3": -2.929622790908941, "x4": 3.0398272018234596, "x5": 0.2661687186120013}}, null] +[[2, 0, 0], 81.0, {"submitted": 1558193390.229961, "started": 1558193390.2302907, "finished": 1558193390.2404191}, {"loss": 0.14944444354430395, "info": {"x0": -3.1517504931952662, "x1": 7.068956824948461, "x2": 7.669362063369626, "x3": -3.2649116816309425, "x4": 2.1257190200389804, "x5": 0.07016444741131378}}, null] +[[2, 0, 1], 81.0, {"submitted": 1558193390.2424064, "started": 1558193390.2428336, "finished": 1558193390.249119}, {"loss": 0.15494444523696543, "info": {"x0": -2.1912970730542543, "x1": 3.3994870757669173, "x2": 6.464648160618643, "x3": -2.7876934151149193, "x4": 2.5886714618814937, "x5": 0.4174974297564773}}, null] +[[2, 0, 2], 81.0, {"submitted": 1558193390.25147, "started": 1558193390.2520127, "finished": 1558193390.259929}, {"loss": 0.1547407423754533, "info": {"x0": -3.307057171307556, "x1": 7.699399030495336, "x2": 5.732853083149226, "x3": -3.9511899233593866, "x4": 4.6565709304600675, "x5": 0.36780430131010294}}, null] +[[2, 0, 3], 81.0, {"submitted": 1558193390.262521, "started": 1558193390.2631118, "finished": 1558193390.2727764}, {"loss": 0.15404629178565962, "info": {"x0": -3.192918727218436, "x1": 3.592103702353883, "x2": 4.21519764483887, "x3": -3.29925360576126, "x4": 4.111544146316659, "x5": 0.010539227497570913}}, null] +[[2, 0, 4], 81.0, {"submitted": 1558193390.275446, "started": 1558193390.2759018, "finished": 1558193390.2836177}, {"loss": 0.17902777477657356, "info": {"x0": -4.749103946675724, "x1": 6.314948437834676, "x2": 6.202639480661087, "x3": -1.512848658723045, "x4": 2.0599875939566337, "x5": 0.396432470351093}}, null] +[[2, 0, 5], 81.0, {"submitted": 1558193390.2880685, "started": 1558193390.2884636, "finished": 1558193390.2961667}, {"loss": 0.14992592688732675, "info": {"x0": -2.786055985824105, "x1": 4.661433812712437, "x2": 6.76015857941465, "x3": -0.20690430672585602, "x4": 4.0309884274826775, "x5": 0.24601958573994082}}, null] +[[2, 0, 0], 243.0, {"submitted": 1558193390.298235, "started": 1558193390.299297, "finished": 1558193390.3069406}, {"loss": 0.14944444354430395, "info": {"x0": -3.1517504931952662, "x1": 7.068956824948461, "x2": 7.669362063369626, "x3": -3.2649116816309425, "x4": 2.1257190200389804, "x5": 0.07016444741131378}}, null] +[[2, 0, 5], 243.0, {"submitted": 1558193390.3082607, "started": 1558193390.3085625, "finished": 1558193390.3191268}, {"loss": 0.1496481490587747, "info": {"x0": -2.786055985824105, "x1": 4.661433812712437, "x2": 6.76015857941465, "x3": -0.20690430672585602, "x4": 4.0309884274826775, "x5": 0.24601958573994082}}, null] +[[3, 0, 0], 243.0, {"submitted": 1558193390.3213673, "started": 1558193390.3229492, "finished": 1558193390.3297923}, {"loss": 0.3872499958817605, "info": {"x0": -5.603368298086828, "x1": 6.021620382048805, "x2": 4.114056754993632, "x3": -1.7916774823207424, "x4": 1.218750597026924, "x5": 0.1018762330215166}}, null] +[[3, 0, 1], 243.0, {"submitted": 1558193390.3356936, "started": 1558193390.3361268, "finished": 1558193390.3427227}, {"loss": 0.15383795860685684, "info": {"x0": -2.7721008802444063, "x1": 5.614471315010974, "x2": 4.926051411014095, "x3": -0.9083975496345893, "x4": 1.9876087994608578, "x5": 0.32218131723613175}}, null] +[[3, 0, 2], 243.0, {"submitted": 1558193390.3446221, "started": 1558193390.345014, "finished": 1558193390.353606}, {"loss": 0.15351851507129127, "info": {"x0": -4.065278012081521, "x1": 4.63038906140416, "x2": 7.36538033383602, "x3": -3.1279809752723966, "x4": 4.39413638602126, "x5": 0.49332141705865373}}, null] +[[3, 0, 3], 243.0, {"submitted": 1558193390.3561325, "started": 1558193390.3565907, "finished": 1558193390.36306}, {"loss": 0.16883333662041916, "info": {"x0": -4.755041018628226, "x1": 7.758841003070521, "x2": 6.73769238664021, "x3": -0.4681071311426357, "x4": 1.2878646961441422, "x5": 0.017062788672716378}}, null] +[[4, 0, 0], 9.0, {"submitted": 1558193390.3665588, "started": 1558193390.3672125, "finished": 1558193390.3747149}, {"loss": 0.15315740672195396, "info": {"x0": -2.3801680567056276, "x1": 7.891623997300837, "x2": 5.84470111366374, "x3": -2.6046436672774633, "x4": 1.1670949597389506, "x5": 0.4509380888734729}}, null] +[[4, 0, 1], 9.0, {"submitted": 1558193390.3768551, "started": 1558193390.3772829, "finished": 1558193390.3857136}, {"loss": 0.15327777732246448, "info": {"x0": -3.2110883705178077, "x1": 6.529116688732913, "x2": 7.463313626847451, "x3": -3.5484430548532564, "x4": 1.7672238874115984, "x5": 0.4499375304019854}}, null] +[[4, 0, 2], 9.0, {"submitted": 1558193390.3883905, "started": 1558193390.3887715, "finished": 1558193390.401819}, {"loss": 0.16476851420104505, "info": {"x0": -2.705117461038433, "x1": 4.695742549786076, "x2": 7.303896651267488, "x3": -0.05746404619988388, "x4": 1.827834974991453, "x5": 0.494726415213824}}, null] +[[4, 0, 3], 9.0, {"submitted": 1558193390.404724, "started": 1558193390.4051518, "finished": 1558193390.4142456}, {"loss": 0.230481482649291, "info": {"x0": -4.687900820466968, "x1": 7.199836550276589, "x2": 4.151685847042174, "x3": -0.3230698541747503, "x4": 1.6443681341853336, "x5": 0.31799890871749215}}, null] +[[4, 0, 4], 9.0, {"submitted": 1558193390.4206464, "started": 1558193390.4212759, "finished": 1558193390.4289668}, {"loss": 0.1863240741662405, "info": {"x0": -4.524899993460661, "x1": 5.179218416799608, "x2": 6.238549940352016, "x3": -2.292832947969695, "x4": 4.832298767646131, "x5": 0.326563496277484}}, null] +[[4, 0, 5], 9.0, {"submitted": 1558193390.4313343, "started": 1558193390.43176, "finished": 1558193390.440167}, {"loss": 0.15627777691185477, "info": {"x0": -3.5440659459622164, "x1": 5.419506152431339, "x2": 4.19958885636308, "x3": -1.5406553440999882, "x4": 1.0429152255217358, "x5": 0.24905706062592348}}, null] +[[4, 0, 6], 9.0, {"submitted": 1558193390.4418614, "started": 1558193390.4421875, "finished": 1558193390.4495132}, {"loss": 0.16082407343442795, "info": {"x0": -3.1131964480446537, "x1": 5.247150862314074, "x2": 5.359024845824421, "x3": -0.48328001264608433, "x4": 2.659256636568833, "x5": 0.4171565631235015}}, null] +[[4, 0, 7], 9.0, {"submitted": 1558193390.4531515, "started": 1558193390.4537165, "finished": 1558193390.4608343}, {"loss": 0.1668518528055262, "info": {"x0": -3.956794521206005, "x1": 6.976900040032801, "x2": 6.20547392138981, "x3": -2.605745516239521, "x4": 1.4581158729825128, "x5": 0.037229902009883076}}, null] +[[4, 0, 8], 9.0, {"submitted": 1558193390.4626813, "started": 1558193390.4630346, "finished": 1558193390.4716015}, {"loss": 0.33870370273623196, "info": {"x0": -5.548634407268176, "x1": 6.632150786402539, "x2": 6.257685435142874, "x3": -2.1134791451391113, "x4": 1.6556411808745293, "x5": 0.3802283826056165}}, null] +[[4, 0, 9], 9.0, {"submitted": 1558193390.4732344, "started": 1558193390.4736197, "finished": 1558193390.480342}, {"loss": 0.224953701209139, "info": {"x0": -5.347700839386716, "x1": 6.9902544790907415, "x2": 7.905927419223193, "x3": -2.069467896409908, "x4": 1.7571534575967047, "x5": 0.2232048635691612}}, null] +[[4, 0, 10], 9.0, {"submitted": 1558193390.4842544, "started": 1558193390.4848187, "finished": 1558193390.4919093}, {"loss": 0.30196295897717834, "info": {"x0": -4.979695041255056, "x1": 5.922642848451411, "x2": 4.461494077416549, "x3": -3.453704281710151, "x4": 2.4367054259091203, "x5": 0.27148338108866893}}, null] +[[4, 0, 11], 9.0, {"submitted": 1558193390.4939609, "started": 1558193390.49445, "finished": 1558193390.5017743}, {"loss": 0.1519925934786046, "info": {"x0": -2.7935023191505373, "x1": 7.096542699511455, "x2": 6.4614729821130945, "x3": -3.7809335295324074, "x4": 4.470589784839232, "x5": 0.46912278659464224}}, null] +[[4, 0, 12], 9.0, {"submitted": 1558193390.5041666, "started": 1558193390.5046604, "finished": 1558193390.512546}, {"loss": 0.15414814929222617, "info": {"x0": -2.163801561465797, "x1": 5.9577116629804205, "x2": 5.46504735864594, "x3": -0.7612824635179414, "x4": 3.517373934850175, "x5": 0.06416234135795212}}, null] +[[4, 0, 13], 9.0, {"submitted": 1558193390.5145621, "started": 1558193390.5150278, "finished": 1558193390.5236251}, {"loss": 0.1502592553857852, "info": {"x0": -2.9663047970122656, "x1": 6.512085722196478, "x2": 6.538373733267839, "x3": -1.889310505632098, "x4": 1.073426808115871, "x5": 0.06399994889028171}}, null] +[[4, 0, 14], 9.0, {"submitted": 1558193390.5256793, "started": 1558193390.5261655, "finished": 1558193390.5346942}, {"loss": 0.25200926022507525, "info": {"x0": -5.375555686261938, "x1": 5.32270181296767, "x2": 4.707496764728447, "x3": -1.4476264815357083, "x4": 2.389040101556994, "x5": 0.425837340263709}}, null] +[[4, 0, 15], 9.0, {"submitted": 1558193390.537419, "started": 1558193390.5381398, "finished": 1558193390.5451236}, {"loss": 0.1576203666657761, "info": {"x0": -2.112927527528494, "x1": 4.285960142804395, "x2": 7.1828968248411496, "x3": -3.019118213494738, "x4": 3.16160740151791, "x5": 0.19632262433226377}}, null] +[[4, 0, 16], 9.0, {"submitted": 1558193390.5467315, "started": 1558193390.5476203, "finished": 1558193390.556499}, {"loss": 0.29710184545663215, "info": {"x0": -5.942978484109384, "x1": 4.7187035623827995, "x2": 6.586709420551128, "x3": -1.8364231716268762, "x4": 4.936286578620884, "x5": 0.027666825396161776}}, null] +[[4, 0, 17], 9.0, {"submitted": 1558193390.558209, "started": 1558193390.5586278, "finished": 1558193390.5656755}, {"loss": 0.28846295987704285, "info": {"x0": -5.708618628909219, "x1": 6.641941393395589, "x2": 6.59778630195358, "x3": -0.0006254206866151968, "x4": 4.711186243968895, "x5": 0.10849290900498193}}, null] +[[4, 0, 18], 9.0, {"submitted": 1558193390.5691462, "started": 1558193390.5697036, "finished": 1558193390.5774982}, {"loss": 0.1535886227551197, "info": {"x0": -3.369651299261372, "x1": 6.321185587748014, "x2": 7.331537558193603, "x3": -3.5271972976364068, "x4": 3.8888564859129793, "x5": 0.2955840101056388}}, null] +[[4, 0, 19], 9.0, {"submitted": 1558193390.5795412, "started": 1558193390.5799022, "finished": 1558193390.5878758}, {"loss": 0.18410185051074737, "info": {"x0": -4.539720491148367, "x1": 5.4114475917003, "x2": 4.888735790647021, "x3": -3.858807886668232, "x4": 1.8948023291818172, "x5": 0.06278451989393824}}, null] +[[4, 0, 20], 9.0, {"submitted": 1558193390.5895061, "started": 1558193390.589917, "finished": 1558193390.5965087}, {"loss": 0.18432407220535807, "info": {"x0": -4.650756489317432, "x1": 7.5291928634722565, "x2": 6.876223985599774, "x3": -3.8391366259314834, "x4": 2.29121105432517, "x5": 0.3978232111126117}}, null] +[[4, 0, 21], 9.0, {"submitted": 1558193390.6017654, "started": 1558193390.6030486, "finished": 1558193390.6107597}, {"loss": 0.18822222117527768, "info": {"x0": -4.749212649368307, "x1": 7.647079071130171, "x2": 6.655434929404574, "x3": -1.1760169471640007, "x4": 2.722037925439176, "x5": 0.3125794818432257}}, null] +[[4, 0, 22], 9.0, {"submitted": 1558193390.612779, "started": 1558193390.6131153, "finished": 1558193390.6220984}, {"loss": 0.1557777755078342, "info": {"x0": -4.224708179661219, "x1": 3.547595026271053, "x2": 7.866666867663552, "x3": -3.545410262614828, "x4": 1.4440417394293275, "x5": 0.07953921350508947}}, null] +[[4, 0, 23], 9.0, {"submitted": 1558193390.6248238, "started": 1558193390.6252356, "finished": 1558193390.6375759}, {"loss": 0.15892592372745273, "info": {"x0": -3.65610286608127, "x1": 5.053069935614425, "x2": 5.374069702489022, "x3": -2.6005628415916817, "x4": 4.552611146570203, "x5": 0.17801879434210677}}, null] +[[4, 0, 24], 9.0, {"submitted": 1558193390.6408212, "started": 1558193390.641306, "finished": 1558193390.6480732}, {"loss": 0.1632407379742298, "info": {"x0": -2.926099461850815, "x1": 3.0932593109377606, "x2": 4.882994091701804, "x3": -2.7682028559962863, "x4": 3.6367000562631464, "x5": 0.39145700221913116}}, null] +[[4, 0, 25], 9.0, {"submitted": 1558193390.6545377, "started": 1558193390.654988, "finished": 1558193390.662029}, {"loss": 0.1529351862842838, "info": {"x0": -3.416748001535558, "x1": 7.8698717103041, "x2": 6.2556410497874, "x3": -1.3361711133855283, "x4": 3.574975989630394, "x5": 0.15741000824980084}}, null] +[[4, 0, 26], 9.0, {"submitted": 1558193390.6669517, "started": 1558193390.6677125, "finished": 1558193390.6773627}, {"loss": 0.16183333576663778, "info": {"x0": -3.922095285004537, "x1": 5.6699580620418715, "x2": 4.8490894817353265, "x3": -0.38613224824982817, "x4": 3.0302704217439294, "x5": 0.4319853957343218}}, null] +[[4, 0, 0], 27.0, {"submitted": 1558193390.679178, "started": 1558193390.6794977, "finished": 1558193390.6906915}, {"loss": 0.15262962742039451, "info": {"x0": -2.3801680567056276, "x1": 7.891623997300837, "x2": 5.84470111366374, "x3": -2.6046436672774633, "x4": 1.1670949597389506, "x5": 0.4509380888734729}}, null] +[[4, 0, 1], 27.0, {"submitted": 1558193390.692488, "started": 1558193390.6930492, "finished": 1558193390.704503}, {"loss": 0.15213888807374018, "info": {"x0": -3.2110883705178077, "x1": 6.529116688732913, "x2": 7.463313626847451, "x3": -3.5484430548532564, "x4": 1.7672238874115984, "x5": 0.4499375304019854}}, null] +[[4, 0, 5], 27.0, {"submitted": 1558193390.7082627, "started": 1558193390.7088985, "finished": 1558193390.7173584}, {"loss": 0.15431481418731036, "info": {"x0": -3.5440659459622164, "x1": 5.419506152431339, "x2": 4.19958885636308, "x3": -1.5406553440999882, "x4": 1.0429152255217358, "x5": 0.24905706062592348}}, null] +[[4, 0, 11], 27.0, {"submitted": 1558193390.7213504, "started": 1558193390.721942, "finished": 1558193390.728994}, {"loss": 0.15152963082106025, "info": {"x0": -2.7935023191505373, "x1": 7.096542699511455, "x2": 6.4614729821130945, "x3": -3.7809335295324074, "x4": 4.470589784839232, "x5": 0.46912278659464224}}, null] +[[4, 0, 12], 27.0, {"submitted": 1558193390.730431, "started": 1558193390.7313914, "finished": 1558193390.7423995}, {"loss": 0.15172222295927779, "info": {"x0": -2.163801561465797, "x1": 5.9577116629804205, "x2": 5.46504735864594, "x3": -0.7612824635179414, "x4": 3.517373934850175, "x5": 0.06416234135795212}}, null] +[[4, 0, 13], 27.0, {"submitted": 1558193390.7437887, "started": 1558193390.7440991, "finished": 1558193390.7524917}, {"loss": 0.1497499967068434, "info": {"x0": -2.9663047970122656, "x1": 6.512085722196478, "x2": 6.538373733267839, "x3": -1.889310505632098, "x4": 1.073426808115871, "x5": 0.06399994889028171}}, null] +[[4, 0, 18], 27.0, {"submitted": 1558193390.7560887, "started": 1558193390.7565775, "finished": 1558193390.7637064}, {"loss": 0.15137301460385477, "info": {"x0": -3.369651299261372, "x1": 6.321185587748014, "x2": 7.331537558193603, "x3": -3.5271972976364068, "x4": 3.8888564859129793, "x5": 0.2955840101056388}}, null] +[[4, 0, 22], 27.0, {"submitted": 1558193390.7655237, "started": 1558193390.766942, "finished": 1558193390.7788355}, {"loss": 0.15261110878873754, "info": {"x0": -4.224708179661219, "x1": 3.547595026271053, "x2": 7.866666867663552, "x3": -3.545410262614828, "x4": 1.4440417394293275, "x5": 0.07953921350508947}}, null] +[[4, 0, 25], 27.0, {"submitted": 1558193390.7803612, "started": 1558193390.7807183, "finished": 1558193390.792888}, {"loss": 0.15225925986082464, "info": {"x0": -3.416748001535558, "x1": 7.8698717103041, "x2": 6.2556410497874, "x3": -1.3361711133855283, "x4": 3.574975989630394, "x5": 0.15741000824980084}}, null] +[[4, 0, 11], 81.0, {"submitted": 1558193390.7947905, "started": 1558193390.7951462, "finished": 1558193390.8081481}, {"loss": 0.15160185308964164, "info": {"x0": -2.7935023191505373, "x1": 7.096542699511455, "x2": 6.4614729821130945, "x3": -3.7809335295324074, "x4": 4.470589784839232, "x5": 0.46912278659464224}}, null] +[[4, 0, 13], 81.0, {"submitted": 1558193390.8097253, "started": 1558193390.8100765, "finished": 1558193390.819615}, {"loss": 0.1497499967068434, "info": {"x0": -2.9663047970122656, "x1": 6.512085722196478, "x2": 6.538373733267839, "x3": -1.889310505632098, "x4": 1.073426808115871, "x5": 0.06399994889028171}}, null] +[[4, 0, 18], 81.0, {"submitted": 1558193390.8224285, "started": 1558193390.822911, "finished": 1558193390.8303864}, {"loss": 0.1509947075441716, "info": {"x0": -3.369651299261372, "x1": 6.321185587748014, "x2": 7.331537558193603, "x3": -3.5271972976364068, "x4": 3.8888564859129793, "x5": 0.2955840101056388}}, null] +[[4, 0, 13], 243.0, {"submitted": 1558193390.8334215, "started": 1558193390.8345149, "finished": 1558193390.8437378}, {"loss": 0.1497499967068434, "info": {"x0": -2.9663047970122656, "x1": 6.512085722196478, "x2": 6.538373733267839, "x3": -1.889310505632098, "x4": 1.073426808115871, "x5": 0.06399994889028171}}, null] +[[5, 0, 0], 27.0, {"submitted": 1558193390.8454459, "started": 1558193390.8458178, "finished": 1558193390.8582191}, {"loss": 0.1669999987801744, "info": {"x0": -5.042406058131574, "x1": 3.6541884358733534, "x2": 7.656340404977136, "x3": -0.9416819280547246, "x4": 4.174782646944754, "x5": 0.21317769129481517}}, null] +[[5, 0, 1], 27.0, {"submitted": 1558193390.8605273, "started": 1558193390.8608837, "finished": 1558193390.871169}, {"loss": 0.1574629631644046, "info": {"x0": -4.248626191803636, "x1": 5.2774162593197556, "x2": 7.8447562559745805, "x3": -3.601617117504537, "x4": 4.111454489552487, "x5": 0.21581817526997338}}, null] +[[5, 0, 2], 27.0, {"submitted": 1558193390.8738878, "started": 1558193390.8743303, "finished": 1558193390.880396}, {"loss": 0.1547407364905984, "info": {"x0": -2.459739769820297, "x1": 6.182110575959113, "x2": 4.272730617141898, "x3": -2.807594300988865, "x4": 2.691726202989541, "x5": 0.39501149637610383}}, null] +[[5, 0, 3], 27.0, {"submitted": 1558193390.88379, "started": 1558193390.8842807, "finished": 1558193390.8944204}, {"loss": 0.20929629772073696, "info": {"x0": -5.056338996072275, "x1": 7.485862751403414, "x2": 7.537002775489937, "x3": -2.3935889783494697, "x4": 2.1844989362840748, "x5": 0.40677769693158866}}, null] +[[5, 0, 4], 27.0, {"submitted": 1558193390.897483, "started": 1558193390.8980234, "finished": 1558193390.9095793}, {"loss": 0.2261111056610114, "info": {"x0": -5.912250433995842, "x1": 4.112397017393629, "x2": 7.552805163692327, "x3": -2.9259225019988078, "x4": 1.0243517400728686, "x5": 0.09366126553633425}}, null] +[[5, 0, 5], 27.0, {"submitted": 1558193390.9113615, "started": 1558193390.9117596, "finished": 1558193390.9223063}, {"loss": 0.15570370515739476, "info": {"x0": -4.165909071876699, "x1": 5.864688075536146, "x2": 7.386433825245993, "x3": -3.6165597117281014, "x4": 1.5073301610400196, "x5": 0.36001117273404276}}, null] +[[5, 0, 6], 27.0, {"submitted": 1558193390.926897, "started": 1558193390.9273062, "finished": 1558193390.936862}, {"loss": 0.25623147886246445, "info": {"x0": -5.598653168728394, "x1": 5.286209085486778, "x2": 5.059911871096892, "x3": -1.4014371686917708, "x4": 4.188341853486339, "x5": 0.3253848244897172}}, null] +[[5, 0, 7], 27.0, {"submitted": 1558193390.9390843, "started": 1558193390.939436, "finished": 1558193390.9451568}, {"loss": 0.19639814004508985, "info": {"x0": -5.015693578970589, "x1": 3.1853895245493082, "x2": 6.108159616529874, "x3": -2.0842985227801245, "x4": 3.99287333060867, "x5": 0.25356412837372316}}, null] +[[5, 0, 8], 27.0, {"submitted": 1558193390.946981, "started": 1558193390.947365, "finished": 1558193390.9628284}, {"loss": 0.15637962994503757, "info": {"x0": -2.9366142314334143, "x1": 6.797411321163688, "x2": 4.279041781894884, "x3": -2.2327628422491035, "x4": 1.8224902270833119, "x5": 0.3317438941408973}}, null] +[[5, 0, 2], 81.0, {"submitted": 1558193390.9646735, "started": 1558193390.9651458, "finished": 1558193390.9754815}, {"loss": 0.1547407364905984, "info": {"x0": -2.459739769820297, "x1": 6.182110575959113, "x2": 4.272730617141898, "x3": -2.807594300988865, "x4": 2.691726202989541, "x5": 0.39501149637610383}}, null] +[[5, 0, 5], 81.0, {"submitted": 1558193390.9769304, "started": 1558193390.9774075, "finished": 1558193390.989677}, {"loss": 0.1552592607559981, "info": {"x0": -4.165909071876699, "x1": 5.864688075536146, "x2": 7.386433825245993, "x3": -3.6165597117281014, "x4": 1.5073301610400196, "x5": 0.36001117273404276}}, null] +[[5, 0, 8], 81.0, {"submitted": 1558193390.9924383, "started": 1558193390.992887, "finished": 1558193391.0056467}, {"loss": 0.15637962994503757, "info": {"x0": -2.9366142314334143, "x1": 6.797411321163688, "x2": 4.279041781894884, "x3": -2.2327628422491035, "x4": 1.8224902270833119, "x5": 0.3317438941408973}}, null] +[[5, 0, 2], 243.0, {"submitted": 1558193391.007283, "started": 1558193391.0075645, "finished": 1558193391.016984}, {"loss": 0.1547407364905984, "info": {"x0": -2.459739769820297, "x1": 6.182110575959113, "x2": 4.272730617141898, "x3": -2.807594300988865, "x4": 2.691726202989541, "x5": 0.39501149637610383}}, null] +[[6, 0, 0], 81.0, {"submitted": 1558193391.0228379, "started": 1558193391.0232596, "finished": 1558193391.0357516}, {"loss": 0.15169444102821528, "info": {"x0": -3.775672313675546, "x1": 5.15675075036741, "x2": 6.845671405827664, "x3": -0.8176799832060331, "x4": 4.359207879983161, "x5": 0.05805005061582136}}, null] +[[6, 0, 1], 81.0, {"submitted": 1558193391.0384405, "started": 1558193391.039023, "finished": 1558193391.0458887}, {"loss": 0.19069444031544303, "info": {"x0": -5.775085705340462, "x1": 3.1624188800222512, "x2": 7.995458962424207, "x3": -3.1998764274797766, "x4": 2.4582233103313382, "x5": 0.4540495149340158}}, null] +[[6, 0, 2], 81.0, {"submitted": 1558193391.047754, "started": 1558193391.0481634, "finished": 1558193391.0604033}, {"loss": 0.15366666708665866, "info": {"x0": -3.854097597545456, "x1": 6.115997045105518, "x2": 6.9665101310271424, "x3": -0.5306939098724635, "x4": 1.4312371860192972, "x5": 0.2792232456314441}}, null] +[[6, 0, 3], 81.0, {"submitted": 1558193391.0623562, "started": 1558193391.0627193, "finished": 1558193391.0746696}, {"loss": 0.4324444450777437, "info": {"x0": -5.963822792142949, "x1": 6.567295450813342, "x2": 4.482801019811125, "x3": -2.661305878972577, "x4": 1.1073384448763766, "x5": 0.4120818390032998}}, null] +[[6, 0, 4], 81.0, {"submitted": 1558193391.0762188, "started": 1558193391.0765474, "finished": 1558193391.0868988}, {"loss": 0.19168518082714744, "info": {"x0": -5.288930194602752, "x1": 4.0684843441591205, "x2": 6.040444413085702, "x3": -2.322292905658754, "x4": 3.3298608591432006, "x5": 0.2813909135449416}}, null] +[[6, 0, 5], 81.0, {"submitted": 1558193391.0913193, "started": 1558193391.0916846, "finished": 1558193391.101151}, {"loss": 0.15731481306530812, "info": {"x0": -2.165937976373197, "x1": 6.825588841643754, "x2": 5.6330972084093744, "x3": -1.829263801767926, "x4": 3.5238354550697175, "x5": 0.3797801468385166}}, null] +[[6, 0, 0], 243.0, {"submitted": 1558193391.1048172, "started": 1558193391.1052067, "finished": 1558193391.1134975}, {"loss": 0.1519074041462607, "info": {"x0": -3.775672313675546, "x1": 5.15675075036741, "x2": 6.845671405827664, "x3": -0.8176799832060331, "x4": 4.359207879983161, "x5": 0.05805005061582136}}, null] +[[6, 0, 2], 243.0, {"submitted": 1558193391.121096, "started": 1558193391.121645, "finished": 1558193391.1306293}, {"loss": 0.15366666708665866, "info": {"x0": -3.854097597545456, "x1": 6.115997045105518, "x2": 6.9665101310271424, "x3": -0.5306939098724635, "x4": 1.4312371860192972, "x5": 0.2792232456314441}}, null] +[[7, 0, 0], 243.0, {"submitted": 1558193391.1373117, "started": 1558193391.13778, "finished": 1558193391.1444445}, {"loss": 0.15239814830930146, "info": {"x0": -2.5388221698327635, "x1": 3.242393500219703, "x2": 7.804730362432727, "x3": -2.058572964884029, "x4": 3.9270441454163794, "x5": 0.06545768242303474}}, null] +[[7, 0, 1], 243.0, {"submitted": 1558193391.1462564, "started": 1558193391.1466656, "finished": 1558193391.1592293}, {"loss": 0.16187962880537468, "info": {"x0": -4.615180776926039, "x1": 4.281445400944258, "x2": 5.884068573225576, "x3": -1.79209417924212, "x4": 2.4294856422934084, "x5": 0.03104283510799305}}, null] +[[7, 0, 2], 243.0, {"submitted": 1558193391.1619143, "started": 1558193391.1624186, "finished": 1558193391.1751025}, {"loss": 0.1642314757163878, "info": {"x0": -4.384709253724986, "x1": 5.5540140059333805, "x2": 5.643645429834632, "x3": -2.6986658833438333, "x4": 4.2764990159289535, "x5": 0.2164024114320039}}, null] +[[7, 0, 3], 243.0, {"submitted": 1558193391.1772163, "started": 1558193391.1776245, "finished": 1558193391.1899667}, {"loss": 0.1603240716468405, "info": {"x0": -4.019954026258492, "x1": 3.412396887550715, "x2": 4.2450737757198205, "x3": -1.6255318690802767, "x4": 4.0647286245609475, "x5": 0.054771913545691886}}, null] +[[8, 0, 0], 9.0, {"submitted": 1558193391.1927323, "started": 1558193391.193178, "finished": 1558193391.2039828}, {"loss": 0.15666666410035554, "info": {"x0": -3.7875385624515396, "x1": 3.2669123226364043, "x2": 6.241531328052741, "x3": -2.2688642125839604, "x4": 3.622981109325372, "x5": 0.368142507560793}}, null] +[[8, 0, 1], 9.0, {"submitted": 1558193391.206937, "started": 1558193391.2073648, "finished": 1558193391.2191033}, {"loss": 0.41831481388073277, "info": {"x0": -5.6599808967414, "x1": 5.482099691335559, "x2": 4.380639698263554, "x3": -3.7076002767681033, "x4": 4.212687154633539, "x5": 0.33138730631788055}}, null] +[[8, 0, 2], 9.0, {"submitted": 1558193391.2230558, "started": 1558193391.2263815, "finished": 1558193391.2357738}, {"loss": 0.1554745324404427, "info": {"x0": -3.7397329922712244, "x1": 4.549696236969349, "x2": 7.392372654113729, "x3": -2.8075700494756597, "x4": 3.537588487166128, "x5": 0.2339006224132365}}, null] +[[8, 0, 3], 9.0, {"submitted": 1558193391.2402263, "started": 1558193391.2405658, "finished": 1558193391.2549384}, {"loss": 0.18161110728399624, "info": {"x0": -4.277238531545226, "x1": 5.036929175243806, "x2": 5.387944088889846, "x3": -0.8272725337698548, "x4": 3.3617972204876954, "x5": 0.4337956306963836}}, null] +[[8, 0, 4], 9.0, {"submitted": 1558193391.257651, "started": 1558193391.2582283, "finished": 1558193391.2718256}, {"loss": 0.16161111043945509, "info": {"x0": -3.820851968585909, "x1": 7.379534179964448, "x2": 5.577495705428797, "x3": -2.374541411224647, "x4": 4.014686755742246, "x5": 0.1755813852774088}}, null] +[[8, 0, 5], 9.0, {"submitted": 1558193391.2741833, "started": 1558193391.2746716, "finished": 1558193391.2898803}, {"loss": 0.15651851603250808, "info": {"x0": -2.3152853418229995, "x1": 3.310379334743387, "x2": 6.300956688245664, "x3": -2.6731510248286297, "x4": 3.820469516427069, "x5": 0.13632345945318514}}, null] +[[8, 0, 6], 9.0, {"submitted": 1558193391.292857, "started": 1558193391.293284, "finished": 1558193391.3034208}, {"loss": 0.15137036841776633, "info": {"x0": -2.944862623864374, "x1": 5.320106471708941, "x2": 5.945603027415887, "x3": -1.3470572961061498, "x4": 2.3974109668981405, "x5": 0.06936723536714473}}, null] +[[8, 0, 7], 9.0, {"submitted": 1558193391.3080494, "started": 1558193391.3090117, "finished": 1558193391.3170972}, {"loss": 0.15089814428709172, "info": {"x0": -3.4428188287261947, "x1": 4.571312893916703, "x2": 7.825561800707899, "x3": -3.2670309437290412, "x4": 1.642224828957434, "x5": 0.1890670641525054}}, null] +[[8, 0, 8], 9.0, {"submitted": 1558193391.3237374, "started": 1558193391.324234, "finished": 1558193391.332274}, {"loss": 0.2622592605280656, "info": {"x0": -4.6753373794087025, "x1": 6.74582354403385, "x2": 4.070841796211171, "x3": -1.3586036534189145, "x4": 1.4329949853045907, "x5": 0.09859589830698462}}, null] +[[8, 0, 9], 9.0, {"submitted": 1558193391.3389015, "started": 1558193391.3394055, "finished": 1558193391.34721}, {"loss": 0.15606481605795802, "info": {"x0": -3.536021491024957, "x1": 6.200316630242771, "x2": 7.994806228664109, "x3": -3.8638105944225134, "x4": 3.6542198670703465, "x5": 0.2033476838568567}}, null] +[[8, 0, 10], 9.0, {"submitted": 1558193391.3561876, "started": 1558193391.3565269, "finished": 1558193391.363284}, {"loss": 0.15760185237946328, "info": {"x0": -2.264355843326226, "x1": 6.006439279209383, "x2": 7.78619539809418, "x3": -2.8693270151653154, "x4": 3.9716084984114626, "x5": 0.1384399331952158}}, null] +[[8, 0, 11], 9.0, {"submitted": 1558193391.366146, "started": 1558193391.3670366, "finished": 1558193391.3786993}, {"loss": 0.18168518505162662, "info": {"x0": -4.1097217170595695, "x1": 7.37788616013515, "x2": 4.637346763870102, "x3": -2.8615250508794796, "x4": 2.9715368877586945, "x5": 0.09912581241306073}}, null] +[[8, 0, 12], 9.0, {"submitted": 1558193391.3808663, "started": 1558193391.3813047, "finished": 1558193391.3949032}, {"loss": 0.22014814820720088, "info": {"x0": -4.605935011440536, "x1": 7.2270124924800525, "x2": 4.110080363540461, "x3": -0.00280550450583128, "x4": 2.7502826773171716, "x5": 0.24329175286107657}}, null] +[[8, 0, 13], 9.0, {"submitted": 1558193391.3969622, "started": 1558193391.3974705, "finished": 1558193391.4090407}, {"loss": 0.15499999891828609, "info": {"x0": -3.174430354774833, "x1": 6.886643228545346, "x2": 5.6745412588191915, "x3": -3.467429546451268, "x4": 3.9203982703459035, "x5": 0.20354430254141553}}, null] +[[8, 0, 14], 9.0, {"submitted": 1558193391.4116476, "started": 1558193391.4122396, "finished": 1558193391.424169}, {"loss": 0.2126388887983781, "info": {"x0": -5.059438881891351, "x1": 6.597770864801654, "x2": 7.077995825204326, "x3": -0.5796256468458933, "x4": 2.8754446438121066, "x5": 0.4062193158897189}}, null] +[[8, 0, 15], 9.0, {"submitted": 1558193391.4259026, "started": 1558193391.4262826, "finished": 1558193391.4350042}, {"loss": 0.22480554982523127, "info": {"x0": -3.931756521856637, "x1": 3.790939208266134, "x2": 4.688935708649057, "x3": -0.6500242880089591, "x4": 4.1770548464466355, "x5": 0.46655620838514783}}, null] +[[8, 0, 16], 9.0, {"submitted": 1558193391.4402692, "started": 1558193391.4411573, "finished": 1558193391.4489677}, {"loss": 0.15515740380505166, "info": {"x0": -3.092872333338012, "x1": 3.2738644344984515, "x2": 6.592438305493082, "x3": -0.7407471703388846, "x4": 3.0055598014641505, "x5": 0.4302615735525246}}, null] +[[8, 0, 17], 9.0, {"submitted": 1558193391.4541519, "started": 1558193391.4555874, "finished": 1558193391.4648206}, {"loss": 0.1568611119295712, "info": {"x0": -3.9390525426305474, "x1": 6.161688747811641, "x2": 5.778285034869287, "x3": -1.1021942524568602, "x4": 1.5193821755601111, "x5": 0.15896266330603487}}, null] +[[8, 0, 18], 9.0, {"submitted": 1558193391.4693706, "started": 1558193391.4707174, "finished": 1558193391.478558}, {"loss": 0.1613703704917872, "info": {"x0": -3.91571037523084, "x1": 4.72864584403221, "x2": 4.386810806435255, "x3": -2.197815430414577, "x4": 2.9620503892937884, "x5": 0.1633497896920995}}, null] +[[8, 0, 19], 9.0, {"submitted": 1558193391.4806502, "started": 1558193391.4813013, "finished": 1558193391.4943614}, {"loss": 0.23789813871226378, "info": {"x0": -5.5379603629268335, "x1": 3.1867247182304093, "x2": 7.971512070517811, "x3": -3.322951285249424, "x4": 2.405402912936921, "x5": 0.4067933862595708}}, null] +[[8, 0, 20], 9.0, {"submitted": 1558193391.496515, "started": 1558193391.49697, "finished": 1558193391.5091221}, {"loss": 0.15733333219146287, "info": {"x0": -2.5957336383752967, "x1": 3.3530460198032124, "x2": 4.883139001200834, "x3": -1.7785277742215486, "x4": 4.494906270557788, "x5": 0.11134425985872515}}, null] +[[8, 0, 21], 9.0, {"submitted": 1558193391.5110402, "started": 1558193391.5114987, "finished": 1558193391.5221436}, {"loss": 0.15131481146260545, "info": {"x0": -3.0577705312195955, "x1": 5.120189274380591, "x2": 6.8990309112879, "x3": -1.9859688037359322, "x4": 1.9538047605318205, "x5": 0.36878948206213785}}, null] +[[8, 0, 22], 9.0, {"submitted": 1558193391.5251298, "started": 1558193391.525523, "finished": 1558193391.5358427}, {"loss": 0.15104629644089276, "info": {"x0": -2.902931085016801, "x1": 4.276402051379749, "x2": 7.017807070833989, "x3": -3.1412604965429347, "x4": 1.182575735064801, "x5": 0.3209696925973121}}, null] +[[8, 0, 23], 9.0, {"submitted": 1558193391.539059, "started": 1558193391.5395935, "finished": 1558193391.5476751}, {"loss": 0.15657407182179117, "info": {"x0": -2.692537536197117, "x1": 5.007152652657542, "x2": 5.810192003472917, "x3": -0.8689890053763203, "x4": 1.9159688698051425, "x5": 0.4280681924010273}}, null] +[[8, 0, 24], 9.0, {"submitted": 1558193391.5508075, "started": 1558193391.5515697, "finished": 1558193391.5699894}, {"loss": 0.157777775015544, "info": {"x0": -3.857737052119822, "x1": 4.08858038946938, "x2": 5.976541170928901, "x3": -2.5251503888884885, "x4": 3.029599262413595, "x5": 0.22778258344558683}}, null] +[[8, 0, 25], 9.0, {"submitted": 1558193391.5746636, "started": 1558193391.5756261, "finished": 1558193391.585263}, {"loss": 0.16004629464226744, "info": {"x0": -3.8514830089061176, "x1": 4.095012723183847, "x2": 5.449104372255796, "x3": -0.28141621875912604, "x4": 4.04646451030762, "x5": 0.31448143917378274}}, null] +[[8, 0, 26], 9.0, {"submitted": 1558193391.58711, "started": 1558193391.587444, "finished": 1558193391.59412}, {"loss": 0.160583329802586, "info": {"x0": -3.4184757564266874, "x1": 5.871498116798324, "x2": 4.06977148118068, "x3": -0.3107862494890328, "x4": 4.556447176829127, "x5": 0.2509991175349394}}, null] +[[8, 0, 2], 27.0, {"submitted": 1558193391.5968406, "started": 1558193391.5977206, "finished": 1558193391.6072276}, {"loss": 0.15137962517252673, "info": {"x0": -3.7397329922712244, "x1": 4.549696236969349, "x2": 7.392372654113729, "x3": -2.8075700494756597, "x4": 3.537588487166128, "x5": 0.2339006224132365}}, null] +[[8, 0, 5], 27.0, {"submitted": 1558193391.6090066, "started": 1558193391.6094358, "finished": 1558193391.6166315}, {"loss": 0.15429629347832113, "info": {"x0": -2.3152853418229995, "x1": 3.310379334743387, "x2": 6.300956688245664, "x3": -2.6731510248286297, "x4": 3.820469516427069, "x5": 0.13632345945318514}}, null] +[[8, 0, 6], 27.0, {"submitted": 1558193391.6186395, "started": 1558193391.6195621, "finished": 1558193391.6313157}, {"loss": 0.15080555339985427, "info": {"x0": -2.944862623864374, "x1": 5.320106471708941, "x2": 5.945603027415887, "x3": -1.3470572961061498, "x4": 2.3974109668981405, "x5": 0.06936723536714473}}, null] +[[8, 0, 7], 27.0, {"submitted": 1558193391.6341305, "started": 1558193391.6352212, "finished": 1558193391.6429484}, {"loss": 0.1494629596794645, "info": {"x0": -3.4428188287261947, "x1": 4.571312893916703, "x2": 7.825561800707899, "x3": -3.2670309437290412, "x4": 1.642224828957434, "x5": 0.1890670641525054}}, null] +[[8, 0, 9], 27.0, {"submitted": 1558193391.6442747, "started": 1558193391.6446183, "finished": 1558193391.6529312}, {"loss": 0.15106481527564702, "info": {"x0": -3.536021491024957, "x1": 6.200316630242771, "x2": 7.994806228664109, "x3": -3.8638105944225134, "x4": 3.6542198670703465, "x5": 0.2033476838568567}}, null] +[[8, 0, 13], 27.0, {"submitted": 1558193391.6593332, "started": 1558193391.659969, "finished": 1558193391.6744125}, {"loss": 0.15282407324319633, "info": {"x0": -3.174430354774833, "x1": 6.886643228545346, "x2": 5.6745412588191915, "x3": -3.467429546451268, "x4": 3.9203982703459035, "x5": 0.20354430254141553}}, null] +[[8, 0, 16], 27.0, {"submitted": 1558193391.675981, "started": 1558193391.6764874, "finished": 1558193391.6884003}, {"loss": 0.1529999956352015, "info": {"x0": -3.092872333338012, "x1": 3.2738644344984515, "x2": 6.592438305493082, "x3": -0.7407471703388846, "x4": 3.0055598014641505, "x5": 0.4302615735525246}}, null] +[[8, 0, 21], 27.0, {"submitted": 1558193391.6911376, "started": 1558193391.6946402, "finished": 1558193391.7052877}, {"loss": 0.14987962621836748, "info": {"x0": -3.0577705312195955, "x1": 5.120189274380591, "x2": 6.8990309112879, "x3": -1.9859688037359322, "x4": 1.9538047605318205, "x5": 0.36878948206213785}}, null] +[[8, 0, 22], 27.0, {"submitted": 1558193391.707069, "started": 1558193391.7074587, "finished": 1558193391.7148902}, {"loss": 0.14866666709659276, "info": {"x0": -2.902931085016801, "x1": 4.276402051379749, "x2": 7.017807070833989, "x3": -3.1412604965429347, "x4": 1.182575735064801, "x5": 0.3209696925973121}}, null] +[[8, 0, 7], 81.0, {"submitted": 1558193391.720256, "started": 1558193391.7226326, "finished": 1558193391.7296762}, {"loss": 0.14856481111408387, "info": {"x0": -3.4428188287261947, "x1": 4.571312893916703, "x2": 7.825561800707899, "x3": -3.2670309437290412, "x4": 1.642224828957434, "x5": 0.1890670641525054}}, null] +[[8, 0, 21], 81.0, {"submitted": 1558193391.7336738, "started": 1558193391.734254, "finished": 1558193391.7422204}, {"loss": 0.15001851518783302, "info": {"x0": -3.0577705312195955, "x1": 5.120189274380591, "x2": 6.8990309112879, "x3": -1.9859688037359322, "x4": 1.9538047605318205, "x5": 0.36878948206213785}}, null] +[[8, 0, 22], 81.0, {"submitted": 1558193391.7442682, "started": 1558193391.744716, "finished": 1558193391.7547865}, {"loss": 0.14841666688438915, "info": {"x0": -2.902931085016801, "x1": 4.276402051379749, "x2": 7.017807070833989, "x3": -3.1412604965429347, "x4": 1.182575735064801, "x5": 0.3209696925973121}}, null] +[[8, 0, 22], 243.0, {"submitted": 1558193391.756857, "started": 1558193391.757425, "finished": 1558193391.7652414}, {"loss": 0.14841666688438915, "info": {"x0": -2.902931085016801, "x1": 4.276402051379749, "x2": 7.017807070833989, "x3": -3.1412604965429347, "x4": 1.182575735064801, "x5": 0.3209696925973121}}, null] +[[9, 0, 0], 27.0, {"submitted": 1558193391.7709868, "started": 1558193391.7715092, "finished": 1558193391.7790735}, {"loss": 0.4686851811483502, "info": {"x0": -5.1902579803912605, "x1": 6.266617707067634, "x2": 4.375861928310505, "x3": -3.7417904256355006, "x4": 1.2783151739280592, "x5": 0.24808403381521343}}, null] +[[9, 0, 1], 27.0, {"submitted": 1558193391.7816157, "started": 1558193391.7821147, "finished": 1558193391.7943}, {"loss": 0.18098147837790077, "info": {"x0": -4.582402924976021, "x1": 4.872548248718416, "x2": 5.379073410788043, "x3": -0.9984631721273742, "x4": 3.4179331228451173, "x5": 0.35156970427117423}}, null] +[[9, 0, 2], 27.0, {"submitted": 1558193391.7960591, "started": 1558193391.7964206, "finished": 1558193391.8067884}, {"loss": 0.19582407420763262, "info": {"x0": -4.81041721159013, "x1": 5.893777615920614, "x2": 5.55214265462466, "x3": -1.6261649666646854, "x4": 2.3478979491821774, "x5": 0.39799154850022866}}, null] +[[9, 0, 3], 27.0, {"submitted": 1558193391.8084357, "started": 1558193391.8088107, "finished": 1558193391.8190856}, {"loss": 0.19602777801067747, "info": {"x0": -4.634752304952444, "x1": 6.485052412197211, "x2": 5.2473058083370026, "x3": -2.8268056626401608, "x4": 2.2081870395280103, "x5": 0.12490176223376703}}, null] +[[9, 0, 4], 27.0, {"submitted": 1558193391.8216007, "started": 1558193391.8220923, "finished": 1558193391.8291996}, {"loss": 0.15638888832319667, "info": {"x0": -2.2814659648597875, "x1": 4.865331289365384, "x2": 4.883391706227554, "x3": -1.4471595813956615, "x4": 2.310724527459186, "x5": 0.4357226829254312}}, null] +[[9, 0, 5], 27.0, {"submitted": 1558193391.830946, "started": 1558193391.8313396, "finished": 1558193391.8381288}, {"loss": 0.1600370323853912, "info": {"x0": -4.741722780080083, "x1": 4.092443116853529, "x2": 7.060699796689127, "x3": -3.9060905980605987, "x4": 4.52325980400515, "x5": 0.24879510579967884}}, null] +[[9, 0, 6], 27.0, {"submitted": 1558193391.8404968, "started": 1558193391.8410738, "finished": 1558193391.8507166}, {"loss": 0.43138888980393053, "info": {"x0": -5.479376359502975, "x1": 7.637566065837161, "x2": 5.6852599539509745, "x3": -2.9101036178516453, "x4": 3.082032556101354, "x5": 0.3138604424593369}}, null] +[[9, 0, 7], 27.0, {"submitted": 1558193391.8535974, "started": 1558193391.8539906, "finished": 1558193391.8601265}, {"loss": 0.1604074007678363, "info": {"x0": -4.633077179494115, "x1": 5.638655122395969, "x2": 7.057055878505517, "x3": -3.5552225226558445, "x4": 3.6370232184181344, "x5": 0.12255930673107779}}, null] +[[9, 0, 8], 27.0, {"submitted": 1558193391.8622994, "started": 1558193391.8627112, "finished": 1558193391.871643}, {"loss": 0.17671296354962718, "info": {"x0": -5.035630039535448, "x1": 5.344366673751816, "x2": 6.046934048446676, "x3": -1.2082444265532537, "x4": 2.472755304017642, "x5": 0.02471168313269473}}, null] +[[9, 0, 4], 81.0, {"submitted": 1558193391.873975, "started": 1558193391.874321, "finished": 1558193391.8823164}, {"loss": 0.15615740738312406, "info": {"x0": -2.2814659648597875, "x1": 4.865331289365384, "x2": 4.883391706227554, "x3": -1.4471595813956615, "x4": 2.310724527459186, "x5": 0.4357226829254312}}, null] +[[9, 0, 5], 81.0, {"submitted": 1558193391.8857484, "started": 1558193391.8862562, "finished": 1558193391.8936963}, {"loss": 0.15790740279356638, "info": {"x0": -4.741722780080083, "x1": 4.092443116853529, "x2": 7.060699796689127, "x3": -3.9060905980605987, "x4": 4.52325980400515, "x5": 0.24879510579967884}}, null] +[[9, 0, 7], 81.0, {"submitted": 1558193391.8950372, "started": 1558193391.8954234, "finished": 1558193391.9038978}, {"loss": 0.15894443789041707, "info": {"x0": -4.633077179494115, "x1": 5.638655122395969, "x2": 7.057055878505517, "x3": -3.5552225226558445, "x4": 3.6370232184181344, "x5": 0.12255930673107779}}, null] +[[9, 0, 4], 243.0, {"submitted": 1558193391.9056613, "started": 1558193391.9060118, "finished": 1558193391.9129705}, {"loss": 0.15615740738312406, "info": {"x0": -2.2814659648597875, "x1": 4.865331289365384, "x2": 4.883391706227554, "x3": -1.4471595813956615, "x4": 2.310724527459186, "x5": 0.4357226829254312}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/randomsearch/configs.json new file mode 100644 index 0000000..423cedb --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/randomsearch/configs.json @@ -0,0 +1,40 @@ +[[0, 0, 0], {"x0": -4.454106160509939, "x1": 3.9309073489646895, "x2": 5.636191399951901, "x3": -1.2794261717660174, "x4": 4.217209648122609, "x5": 0.3193179589177115}, {}] +[[0, 0, 1], {"x0": -2.223391925539674, "x1": 4.45622313157503, "x2": 4.581154115790309, "x3": -2.085940510933902, "x4": 3.869578463720509, "x5": 0.13529761385789202}, {}] +[[0, 0, 2], {"x0": -5.679456990257464, "x1": 7.005190252450431, "x2": 6.496654846530941, "x3": -3.9772299471858372, "x4": 4.845162262254215, "x5": 0.412154018167249}, {}] +[[0, 0, 3], {"x0": -5.463488940012708, "x1": 7.077719507791188, "x2": 5.520058421380201, "x3": -3.525492974093712, "x4": 3.5652354499955696, "x5": 0.10745290781191386}, {}] +[[1, 0, 0], {"x0": -3.9991398386406525, "x1": 3.358889598752403, "x2": 5.79487863819177, "x3": -0.1256984692779759, "x4": 4.8750384179417745, "x5": 0.36262798031392046}, {}] +[[1, 0, 1], {"x0": -5.0555331768929825, "x1": 3.76269979409612, "x2": 5.879588955797313, "x3": -0.2106832797566942, "x4": 4.117129384296846, "x5": 0.2474424278844925}, {}] +[[1, 0, 2], {"x0": -3.708832061993988, "x1": 3.357270475931297, "x2": 4.426886077777798, "x3": -0.25066994782844354, "x4": 1.1220250830496998, "x5": 0.4634404595914764}, {}] +[[1, 0, 3], {"x0": -3.417960252072811, "x1": 6.1569409071360095, "x2": 6.842744911905967, "x3": -3.024654798060102, "x4": 3.126795005636049, "x5": 0.19941374471764}, {}] +[[2, 0, 0], {"x0": -3.387091512764691, "x1": 6.3930451633510454, "x2": 7.734898454409489, "x3": -2.0365247859541387, "x4": 4.200514470187613, "x5": 0.14134727982384615}, {}] +[[2, 0, 1], {"x0": -3.74195718318546, "x1": 7.911650634172792, "x2": 7.637242536701132, "x3": -3.61795018279259, "x4": 1.815508585854586, "x5": 0.1890001160801537}, {}] +[[2, 0, 2], {"x0": -4.589019522562504, "x1": 6.829914327068381, "x2": 4.942062505060561, "x3": -0.9972654344232543, "x4": 4.573780434135488, "x5": 0.31930824459301876}, {}] +[[2, 0, 3], {"x0": -2.411911079535211, "x1": 6.561825477109567, "x2": 6.4046623959053335, "x3": -1.2779991333977248, "x4": 2.747941322172586, "x5": 0.3524441776697113}, {}] +[[3, 0, 0], {"x0": -2.0975157537520897, "x1": 3.418796647069316, "x2": 7.321206372270038, "x3": -1.5400342007070909, "x4": 3.804776762622625, "x5": 0.03455401726526347}, {}] +[[3, 0, 1], {"x0": -4.620556890774688, "x1": 6.014946867852118, "x2": 7.988958830656289, "x3": -2.8683252680961244, "x4": 3.124595752700295, "x5": 0.16732955031799174}, {}] +[[3, 0, 2], {"x0": -4.242631070533042, "x1": 3.6533376623959297, "x2": 4.3401381464434845, "x3": -3.5736856113515936, "x4": 4.371081929361042, "x5": 0.4456846934862113}, {}] +[[3, 0, 3], {"x0": -4.098623539135506, "x1": 4.759642056042786, "x2": 4.605409668438099, "x3": -2.575972349883034, "x4": 3.5546147414234333, "x5": 0.15520174072879667}, {}] +[[4, 0, 0], {"x0": -2.1859062852558937, "x1": 5.621622575611206, "x2": 4.073303978532352, "x3": -1.909563481423275, "x4": 3.3023678619946946, "x5": 0.22156811854076125}, {}] +[[4, 0, 1], {"x0": -2.555139136409078, "x1": 6.674568095657808, "x2": 5.699582014503983, "x3": -1.2583876226668504, "x4": 4.388044701317928, "x5": 0.22358393751330458}, {}] +[[4, 0, 2], {"x0": -2.1331154871064677, "x1": 3.684357458369761, "x2": 5.86147798571513, "x3": -1.1097323969385182, "x4": 1.8793075117422928, "x5": 0.033322280511831115}, {}] +[[4, 0, 3], {"x0": -2.0863281038623027, "x1": 6.3721969906539835, "x2": 4.703634430504176, "x3": -1.1160309879427932, "x4": 1.667766873911646, "x5": 0.1448603242429395}, {}] +[[5, 0, 0], {"x0": -3.792811437302494, "x1": 4.679224390129715, "x2": 6.489226892042483, "x3": -3.5821610701729787, "x4": 3.166991840520569, "x5": 0.38188058274684133}, {}] +[[5, 0, 1], {"x0": -5.9398570219193, "x1": 3.358413371744626, "x2": 4.133683554146981, "x3": -1.7073554661060575, "x4": 1.769408201767086, "x5": 0.3240175915245482}, {}] +[[5, 0, 2], {"x0": -4.693600146860389, "x1": 3.574891486033888, "x2": 4.961090048419952, "x3": -3.665639600305334, "x4": 4.092448026708611, "x5": 0.3507606356072354}, {}] +[[5, 0, 3], {"x0": -5.939662569154917, "x1": 4.049055021910503, "x2": 7.233575327434657, "x3": -0.06182845331779285, "x4": 1.8170846588258, "x5": 0.09685447355947246}, {}] +[[6, 0, 0], {"x0": -4.342890727871849, "x1": 6.39622353097252, "x2": 6.038950079764763, "x3": -1.2710090693925964, "x4": 3.232799906565004, "x5": 0.1857224999904764}, {}] +[[6, 0, 1], {"x0": -2.1036298747837017, "x1": 3.8023334843383485, "x2": 4.01373821972277, "x3": -2.837445253544372, "x4": 4.061448778341742, "x5": 0.3556717841244193}, {}] +[[6, 0, 2], {"x0": -5.054764953350359, "x1": 5.503616228752016, "x2": 6.928253175429777, "x3": -2.9785929905624977, "x4": 3.654978826781441, "x5": 0.11120985148900503}, {}] +[[6, 0, 3], {"x0": -3.2579402120742618, "x1": 5.081026370073329, "x2": 6.090824188230661, "x3": -2.793957825175899, "x4": 4.208425298139877, "x5": 0.39837113967118065}, {}] +[[7, 0, 0], {"x0": -2.3925947741095133, "x1": 3.1716259387433694, "x2": 6.1046637752475785, "x3": -3.279645703470101, "x4": 2.388978443493486, "x5": 0.47232236726458027}, {}] +[[7, 0, 1], {"x0": -5.206063068536535, "x1": 6.844774017565014, "x2": 7.808146716448998, "x3": -2.611159074580202, "x4": 3.3947773656419775, "x5": 0.13930421742332288}, {}] +[[7, 0, 2], {"x0": -5.445513248469513, "x1": 3.929736091889825, "x2": 7.320285193936826, "x3": -0.7472161408757043, "x4": 3.84591370362381, "x5": 0.36975737809959025}, {}] +[[7, 0, 3], {"x0": -4.159898163311436, "x1": 5.2450266845716325, "x2": 7.511065086791852, "x3": -1.816696812327466, "x4": 3.8273483553412206, "x5": 0.3665069746100124}, {}] +[[8, 0, 0], {"x0": -3.1815892206845433, "x1": 6.815307473540081, "x2": 6.235175929554475, "x3": -0.14897735316617, "x4": 4.79587487333014, "x5": 0.3513943999075828}, {}] +[[8, 0, 1], {"x0": -3.7378579159954533, "x1": 7.27721985884496, "x2": 7.721359382520346, "x3": -0.20666718356698643, "x4": 4.6200344618070535, "x5": 0.2218881280013137}, {}] +[[8, 0, 2], {"x0": -3.1100280089206382, "x1": 4.775566966174813, "x2": 5.266973371198979, "x3": -1.944056205454526, "x4": 1.0085292011124154, "x5": 0.03793419757799671}, {}] +[[8, 0, 3], {"x0": -4.025688408185238, "x1": 3.0641386208492376, "x2": 7.486916410500763, "x3": -0.910493615645517, "x4": 3.261607741350435, "x5": 0.28252216114097417}, {}] +[[9, 0, 0], {"x0": -2.0923724264896815, "x1": 6.039841877527472, "x2": 6.96173626233835, "x3": -3.3613340572752475, "x4": 4.060913782752914, "x5": 0.3916207631393926}, {}] +[[9, 0, 1], {"x0": -2.4512003876374964, "x1": 3.63895326094175, "x2": 7.1317544261877135, "x3": -2.666808394790507, "x4": 2.831344540921316, "x5": 0.25462658293929546}, {}] +[[9, 0, 2], {"x0": -4.196936943344127, "x1": 3.3805903093334906, "x2": 6.544675061650061, "x3": -2.4946208716641287, "x4": 4.362125548861813, "x5": 0.31917431442958877}, {}] +[[9, 0, 3], {"x0": -3.6839724513219423, "x1": 4.558460213430362, "x2": 4.140652350537449, "x3": -0.21911964860464073, "x4": 3.1634234467810582, "x5": 0.26974567533927685}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/randomsearch/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/randomsearch/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/randomsearch/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/randomsearch/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/randomsearch/results.json new file mode 100644 index 0000000..40af06f --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/randomsearch/results.json @@ -0,0 +1,40 @@ +[[0, 0, 0], 243, {"submitted": 1558193370.8222334, "started": 1558193370.8227823, "finished": 1558193370.828686}, {"loss": 0.161935184225716, "info": {"x0": -4.454106160509939, "x1": 3.9309073489646895, "x2": 5.636191399951901, "x3": -1.2794261717660174, "x4": 4.217209648122609, "x5": 0.3193179589177115}}, null] +[[0, 0, 1], 243, {"submitted": 1558193370.830557, "started": 1558193370.831088, "finished": 1558193370.836691}, {"loss": 0.1527499997392297, "info": {"x0": -2.223391925539674, "x1": 4.45622313157503, "x2": 4.581154115790309, "x3": -2.085940510933902, "x4": 3.869578463720509, "x5": 0.13529761385789202}}, null] +[[0, 0, 2], 243, {"submitted": 1558193370.83845, "started": 1558193370.8390954, "finished": 1558193370.8465853}, {"loss": 0.2834074064007511, "info": {"x0": -5.679456990257464, "x1": 7.005190252450431, "x2": 6.496654846530941, "x3": -3.9772299471858372, "x4": 4.845162262254215, "x5": 0.412154018167249}}, null] +[[0, 0, 3], 243, {"submitted": 1558193370.848657, "started": 1558193370.8514674, "finished": 1558193370.8590953}, {"loss": 0.24157407511660348, "info": {"x0": -5.463488940012708, "x1": 7.077719507791188, "x2": 5.520058421380201, "x3": -3.525492974093712, "x4": 3.5652354499955696, "x5": 0.10745290781191386}}, null] +[[1, 0, 0], 243, {"submitted": 1558193370.860969, "started": 1558193370.861334, "finished": 1558193370.8702097}, {"loss": 0.152638883644508, "info": {"x0": -3.9991398386406525, "x1": 3.358889598752403, "x2": 5.79487863819177, "x3": -0.1256984692779759, "x4": 4.8750384179417745, "x5": 0.36262798031392046}}, null] +[[1, 0, 1], 243, {"submitted": 1558193370.8721242, "started": 1558193370.8724468, "finished": 1558193370.8803241}, {"loss": 0.16063888472125484, "info": {"x0": -5.0555331768929825, "x1": 3.76269979409612, "x2": 5.879588955797313, "x3": -0.2106832797566942, "x4": 4.117129384296846, "x5": 0.2474424278844925}}, null] +[[1, 0, 2], 243, {"submitted": 1558193370.882403, "started": 1558193370.882789, "finished": 1558193370.8897636}, {"loss": 0.15867592271251812, "info": {"x0": -3.708832061993988, "x1": 3.357270475931297, "x2": 4.426886077777798, "x3": -0.25066994782844354, "x4": 1.1220250830496998, "x5": 0.4634404595914764}}, null] +[[1, 0, 3], 243, {"submitted": 1558193370.89142, "started": 1558193370.891738, "finished": 1558193370.8992696}, {"loss": 0.15063888771445663, "info": {"x0": -3.417960252072811, "x1": 6.1569409071360095, "x2": 6.842744911905967, "x3": -3.024654798060102, "x4": 3.126795005636049, "x5": 0.19941374471764}}, null] +[[2, 0, 0], 243, {"submitted": 1558193370.9011185, "started": 1558193370.9016802, "finished": 1558193370.9090776}, {"loss": 0.15069444453992228, "info": {"x0": -3.387091512764691, "x1": 6.3930451633510454, "x2": 7.734898454409489, "x3": -2.0365247859541387, "x4": 4.200514470187613, "x5": 0.14134727982384615}}, null] +[[2, 0, 1], 243, {"submitted": 1558193370.9113824, "started": 1558193370.9117007, "finished": 1558193370.9193373}, {"loss": 0.15152777712345122, "info": {"x0": -3.74195718318546, "x1": 7.911650634172792, "x2": 7.637242536701132, "x3": -3.61795018279259, "x4": 1.815508585854586, "x5": 0.1890001160801537}}, null] +[[2, 0, 2], 243, {"submitted": 1558193370.9214563, "started": 1558193370.9218338, "finished": 1558193370.9280126}, {"loss": 0.21924074009529973, "info": {"x0": -4.589019522562504, "x1": 6.829914327068381, "x2": 4.942062505060561, "x3": -0.9972654344232543, "x4": 4.573780434135488, "x5": 0.31930824459301876}}, null] +[[2, 0, 3], 243, {"submitted": 1558193370.9298222, "started": 1558193370.9302437, "finished": 1558193370.940356}, {"loss": 0.1481388886874473, "info": {"x0": -2.411911079535211, "x1": 6.561825477109567, "x2": 6.4046623959053335, "x3": -1.2779991333977248, "x4": 2.747941322172586, "x5": 0.3524441776697113}}, null] +[[3, 0, 0], 243, {"submitted": 1558193370.9430954, "started": 1558193370.9435468, "finished": 1558193370.9538639}, {"loss": 0.16581480999842832, "info": {"x0": -2.0975157537520897, "x1": 3.418796647069316, "x2": 7.321206372270038, "x3": -1.5400342007070909, "x4": 3.804776762622625, "x5": 0.03455401726526347}}, null] +[[3, 0, 1], 243, {"submitted": 1558193370.956839, "started": 1558193370.9572828, "finished": 1558193370.9632044}, {"loss": 0.15828703781907208, "info": {"x0": -4.620556890774688, "x1": 6.014946867852118, "x2": 7.988958830656289, "x3": -2.8683252680961244, "x4": 3.124595752700295, "x5": 0.16732955031799174}}, null] +[[3, 0, 2], 243, {"submitted": 1558193370.9677808, "started": 1558193370.968186, "finished": 1558193370.9755347}, {"loss": 0.18749999697258074, "info": {"x0": -4.242631070533042, "x1": 3.6533376623959297, "x2": 4.3401381464434845, "x3": -3.5736856113515936, "x4": 4.371081929361042, "x5": 0.4456846934862113}}, null] +[[3, 0, 3], 243, {"submitted": 1558193370.9772127, "started": 1558193370.9775915, "finished": 1558193370.9852922}, {"loss": 0.16093518269531154, "info": {"x0": -4.098623539135506, "x1": 4.759642056042786, "x2": 4.605409668438099, "x3": -2.575972349883034, "x4": 3.5546147414234333, "x5": 0.15520174072879667}}, null] +[[4, 0, 0], 243, {"submitted": 1558193370.9874234, "started": 1558193370.9878888, "finished": 1558193370.9938512}, {"loss": 0.1530648134389409, "info": {"x0": -2.1859062852558937, "x1": 5.621622575611206, "x2": 4.073303978532352, "x3": -1.909563481423275, "x4": 3.3023678619946946, "x5": 0.22156811854076125}}, null] +[[4, 0, 1], 243, {"submitted": 1558193370.995589, "started": 1558193370.9959774, "finished": 1558193371.0057154}, {"loss": 0.1493518467826976, "info": {"x0": -2.555139136409078, "x1": 6.674568095657808, "x2": 5.699582014503983, "x3": -1.2583876226668504, "x4": 4.388044701317928, "x5": 0.22358393751330458}}, null] +[[4, 0, 2], 243, {"submitted": 1558193371.007843, "started": 1558193371.0081687, "finished": 1558193371.018293}, {"loss": 0.15169444414835284, "info": {"x0": -2.1331154871064677, "x1": 3.684357458369761, "x2": 5.86147798571513, "x3": -1.1097323969385182, "x4": 1.8793075117422928, "x5": 0.033322280511831115}}, null] +[[4, 0, 3], 243, {"submitted": 1558193371.021472, "started": 1558193371.0220585, "finished": 1558193371.0279925}, {"loss": 0.15097222398938953, "info": {"x0": -2.0863281038623027, "x1": 6.3721969906539835, "x2": 4.703634430504176, "x3": -1.1160309879427932, "x4": 1.667766873911646, "x5": 0.1448603242429395}}, null] +[[5, 0, 0], 243, {"submitted": 1558193371.0300825, "started": 1558193371.0306962, "finished": 1558193371.040506}, {"loss": 0.15214351851617297, "info": {"x0": -3.792811437302494, "x1": 4.679224390129715, "x2": 6.489226892042483, "x3": -3.5821610701729787, "x4": 3.166991840520569, "x5": 0.38188058274684133}}, null] +[[5, 0, 1], 243, {"submitted": 1558193371.0427587, "started": 1558193371.043146, "finished": 1558193371.0509648}, {"loss": 0.3182129563597135, "info": {"x0": -5.9398570219193, "x1": 3.358413371744626, "x2": 4.133683554146981, "x3": -1.7073554661060575, "x4": 1.769408201767086, "x5": 0.3240175915245482}}, null] +[[5, 0, 2], 243, {"submitted": 1558193371.053145, "started": 1558193371.0535953, "finished": 1558193371.0604424}, {"loss": 0.19454860759216053, "info": {"x0": -4.693600146860389, "x1": 3.574891486033888, "x2": 4.961090048419952, "x3": -3.665639600305334, "x4": 4.092448026708611, "x5": 0.3507606356072354}}, null] +[[5, 0, 3], 243, {"submitted": 1558193371.0623672, "started": 1558193371.0626988, "finished": 1558193371.0720596}, {"loss": 0.18755555406999255, "info": {"x0": -5.939662569154917, "x1": 4.049055021910503, "x2": 7.233575327434657, "x3": -0.06182845331779285, "x4": 1.8170846588258, "x5": 0.09685447355947246}}, null] +[[6, 0, 0], 243, {"submitted": 1558193371.0807061, "started": 1558193371.0816095, "finished": 1558193371.0919473}, {"loss": 0.15884259095291298, "info": {"x0": -4.342890727871849, "x1": 6.39622353097252, "x2": 6.038950079764763, "x3": -1.2710090693925964, "x4": 3.232799906565004, "x5": 0.1857224999904764}}, null] +[[6, 0, 1], 243, {"submitted": 1558193371.0940185, "started": 1558193371.094489, "finished": 1558193371.1042776}, {"loss": 0.15550925715791958, "info": {"x0": -2.1036298747837017, "x1": 3.8023334843383485, "x2": 4.01373821972277, "x3": -2.837445253544372, "x4": 4.061448778341742, "x5": 0.3556717841244193}}, null] +[[6, 0, 2], 243, {"submitted": 1558193371.106431, "started": 1558193371.106918, "finished": 1558193371.114116}, {"loss": 0.1677037033057875, "info": {"x0": -5.054764953350359, "x1": 5.503616228752016, "x2": 6.928253175429777, "x3": -2.9785929905624977, "x4": 3.654978826781441, "x5": 0.11120985148900503}}, null] +[[6, 0, 3], 243, {"submitted": 1558193371.116099, "started": 1558193371.1164849, "finished": 1558193371.1236873}, {"loss": 0.15336111144224804, "info": {"x0": -3.2579402120742618, "x1": 5.081026370073329, "x2": 6.090824188230661, "x3": -2.793957825175899, "x4": 4.208425298139877, "x5": 0.39837113967118065}}, null] +[[7, 0, 0], 243, {"submitted": 1558193371.1258378, "started": 1558193371.126303, "finished": 1558193371.1386724}, {"loss": 0.15204012024016295, "info": {"x0": -2.3925947741095133, "x1": 3.1716259387433694, "x2": 6.1046637752475785, "x3": -3.279645703470101, "x4": 2.388978443493486, "x5": 0.47232236726458027}}, null] +[[7, 0, 1], 243, {"submitted": 1558193371.143435, "started": 1558193371.1441529, "finished": 1558193371.158256}, {"loss": 0.1908240755647421, "info": {"x0": -5.206063068536535, "x1": 6.844774017565014, "x2": 7.808146716448998, "x3": -2.611159074580202, "x4": 3.3947773656419775, "x5": 0.13930421742332288}}, null] +[[7, 0, 2], 243, {"submitted": 1558193371.167708, "started": 1558193371.1681254, "finished": 1558193371.1790762}, {"loss": 0.1634629619852812, "info": {"x0": -5.445513248469513, "x1": 3.929736091889825, "x2": 7.320285193936826, "x3": -0.7472161408757043, "x4": 3.84591370362381, "x5": 0.36975737809959025}}, null] +[[7, 0, 3], 243, {"submitted": 1558193371.1819656, "started": 1558193371.1826456, "finished": 1558193371.196672}, {"loss": 0.1545740749536105, "info": {"x0": -4.159898163311436, "x1": 5.2450266845716325, "x2": 7.511065086791852, "x3": -1.816696812327466, "x4": 3.8273483553412206, "x5": 0.3665069746100124}}, null] +[[8, 0, 0], 243, {"submitted": 1558193371.2001634, "started": 1558193371.2015915, "finished": 1558193371.2253098}, {"loss": 0.1543333321561416, "info": {"x0": -3.1815892206845433, "x1": 6.815307473540081, "x2": 6.235175929554475, "x3": -0.14897735316617, "x4": 4.79587487333014, "x5": 0.3513943999075828}}, null] +[[8, 0, 1], 243, {"submitted": 1558193371.2288487, "started": 1558193371.2293384, "finished": 1558193371.2367122}, {"loss": 0.15074999927481011, "info": {"x0": -3.7378579159954533, "x1": 7.27721985884496, "x2": 7.721359382520346, "x3": -0.20666718356698643, "x4": 4.6200344618070535, "x5": 0.2218881280013137}}, null] +[[8, 0, 2], 243, {"submitted": 1558193371.2387679, "started": 1558193371.239118, "finished": 1558193371.2454615}, {"loss": 0.15443518363546443, "info": {"x0": -3.1100280089206382, "x1": 4.775566966174813, "x2": 5.266973371198979, "x3": -1.944056205454526, "x4": 1.0085292011124154, "x5": 0.03793419757799671}}, null] +[[8, 0, 3], 243, {"submitted": 1558193371.2500074, "started": 1558193371.2506814, "finished": 1558193371.2599185}, {"loss": 0.1509814820786317, "info": {"x0": -4.025688408185238, "x1": 3.0641386208492376, "x2": 7.486916410500763, "x3": -0.910493615645517, "x4": 3.261607741350435, "x5": 0.28252216114097417}}, null] +[[9, 0, 0], 243, {"submitted": 1558193371.2620907, "started": 1558193371.2625623, "finished": 1558193371.2709851}, {"loss": 0.1562777744708238, "info": {"x0": -2.0923724264896815, "x1": 6.039841877527472, "x2": 6.96173626233835, "x3": -3.3613340572752475, "x4": 4.060913782752914, "x5": 0.3916207631393926}}, null] +[[9, 0, 1], 243, {"submitted": 1558193371.2731922, "started": 1558193371.2734978, "finished": 1558193371.280749}, {"loss": 0.15046296193202335, "info": {"x0": -2.4512003876374964, "x1": 3.63895326094175, "x2": 7.1317544261877135, "x3": -2.666808394790507, "x4": 2.831344540921316, "x5": 0.25462658293929546}}, null] +[[9, 0, 2], 243, {"submitted": 1558193371.2844598, "started": 1558193371.2847936, "finished": 1558193371.291312}, {"loss": 0.15480555571505317, "info": {"x0": -4.196936943344127, "x1": 3.3805903093334906, "x2": 6.544675061650061, "x3": -2.4946208716641287, "x4": 4.362125548861813, "x5": 0.31917431442958877}}, null] +[[9, 0, 3], 243, {"submitted": 1558193371.2933056, "started": 1558193371.2940633, "finished": 1558193371.3003097}, {"loss": 0.15921295981233316, "info": {"x0": -3.6839724513219423, "x1": 4.558460213430362, "x2": 4.140652350537449, "x3": -0.21911964860464073, "x4": 3.1634234467810582, "x5": 0.26974567533927685}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/configspace.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/configspace.json similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/configspace.json rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/adult/smac/run_1712039260/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/runhistory.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/runhistory.json new file mode 100644 index 0000000..c674d6e --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/runhistory.json @@ -0,0 +1,944 @@ +{ + "data": [ + [ + [ + 1, + null, + 0 + ], + [ + 0.16898147900181787, + 0.014215469360351562, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 2, + null, + 0 + ], + [ + 0.14852777666984882, + 0.014423608779907227, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 3, + null, + 0 + ], + [ + 0.15609258768679918, + 0.014187335968017578, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 4, + null, + 0 + ], + [ + 0.1605833304816926, + 0.015946388244628906, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 5, + null, + 0 + ], + [ + 0.2264220668381011, + 0.014568805694580078, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 6, + null, + 0 + ], + [ + 0.2613796311219533, + 0.01623392105102539, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 7, + null, + 0 + ], + [ + 0.23551249489309609, + 0.022443294525146484, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 8, + null, + 0 + ], + [ + 0.4330925860569157, + 0.01576089859008789, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 9, + null, + 0 + ], + [ + 0.15765740232307604, + 0.016002178192138672, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 10, + null, + 0 + ], + [ + 0.15482407664259273, + 0.01838850975036621, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 11, + null, + 0 + ], + [ + 0.15035184870053223, + 0.017163515090942383, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 12, + null, + 0 + ], + [ + 0.15008332845044356, + 0.017560720443725586, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 13, + null, + 0 + ], + [ + 0.1511388858391179, + 0.16254448890686035, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 14, + null, + 0 + ], + [ + 0.1514259244416047, + 0.017827510833740234, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 15, + null, + 0 + ], + [ + 0.15091666571823534, + 0.017873048782348633, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 16, + null, + 0 + ], + [ + 0.14986110726730137, + 0.017976999282836914, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 17, + null, + 0 + ], + [ + 0.1507222229934953, + 0.017705440521240234, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 18, + null, + 0 + ], + [ + 0.19492592613288653, + 0.0196835994720459, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 19, + null, + 0 + ], + [ + 0.23306481249658048, + 0.019440174102783203, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 20, + null, + 0 + ], + [ + 0.15053703803431104, + 0.01917886734008789, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 21, + null, + 0 + ], + [ + 0.1526944423141303, + 0.019181251525878906, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 22, + null, + 0 + ], + [ + 0.2776759237967156, + 0.022165298461914062, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 23, + null, + 0 + ], + [ + 0.15095370352985682, + 0.01970696449279785, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 24, + null, + 0 + ], + [ + 0.22867592491485453, + 0.018492460250854492, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 25, + null, + 0 + ], + [ + 0.15129629545465662, + 0.020518779754638672, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 26, + null, + 0 + ], + [ + 0.15642592060786709, + 0.020116090774536133, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 27, + null, + 0 + ], + [ + 0.16586110871367984, + 0.022783517837524414, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 28, + null, + 0 + ], + [ + 0.16310184934707705, + 0.02432107925415039, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 29, + null, + 0 + ], + [ + 0.15396296188400846, + 0.023031234741210938, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 30, + null, + 0 + ], + [ + 0.1926944443655235, + 0.023920297622680664, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 31, + null, + 0 + ], + [ + 0.15016666786565827, + 0.0218963623046875, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 32, + null, + 0 + ], + [ + 0.22201851725964633, + 0.023034095764160156, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 33, + null, + 0 + ], + [ + 0.14989814814097352, + 0.024469852447509766, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 34, + null, + 0 + ], + [ + 0.150703700437038, + 0.021392345428466797, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 35, + null, + 0 + ], + [ + 0.1520092578894562, + 0.025934696197509766, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 36, + null, + 0 + ], + [ + 0.1507314804643393, + 0.02278900146484375, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 37, + null, + 0 + ], + [ + 0.14937963273900526, + 0.0229032039642334, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 38, + null, + 0 + ], + [ + 0.1513611141283203, + 0.020885229110717773, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 39, + null, + 0 + ], + [ + 0.18160185475481883, + 0.023113012313842773, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ] + ], + "config_origins": { + "1": "Random initial design.", + "2": "Random Search", + "3": "Random Search (sorted)", + "4": "Random Search (sorted)", + "5": "Random Search (sorted)", + "6": "Random Search (sorted)", + "7": "Random Search", + "8": "Random Search", + "9": "Random Search (sorted)", + "10": "Random Search (sorted)", + "11": "Random Search (sorted)", + "12": "Random Search", + "13": "Random Search (sorted)", + "14": "Random Search (sorted)", + "15": "Random Search (sorted)", + "16": "Random Search (sorted)", + "17": "Random Search (sorted)", + "18": "Random Search", + "19": "Random Search", + "20": "Random Search (sorted)", + "21": "Random Search (sorted)", + "22": "Random Search", + "23": "Random Search (sorted)", + "24": "Random Search", + "25": "Random Search (sorted)", + "26": "Random Search", + "27": "Random Search", + "28": "Random Search", + "29": "Random Search", + "30": "Random Search", + "31": "Local Search", + "32": "Random Search", + "33": "Local Search", + "34": "Local Search", + "35": "Random Search (sorted)", + "36": "Local Search", + "37": "Random Search (sorted)", + "38": "Local Search", + "39": "Random Search" + }, + "configs": { + "1": { + "x0": -4.427184146847615, + "x1": 5.468409116159567, + "x2": 5.166697446737537, + "x3": -2.4737392169558943, + "x4": 4.557793026011394, + "x5": 0.26048328742862104 + }, + "2": { + "x0": -3.0208079181949494, + "x1": 4.302339512022793, + "x2": 6.682814513749159, + "x3": -1.5860107594761308, + "x4": 1.7579816943137954, + "x5": 0.29784322077691755 + }, + "3": { + "x0": -4.218757603845533, + "x1": 3.607448210085251, + "x2": 7.79277132359463, + "x3": -3.581151834609784, + "x4": 1.2843641017147656, + "x5": 0.4326505345446935 + }, + "4": { + "x0": -4.551937053840705, + "x1": 3.8246582013526336, + "x2": 6.839070326832799, + "x3": -2.969426406452138, + "x4": 3.216998982389077, + "x5": 0.43876270343981105 + }, + "5": { + "x0": -4.516267108376842, + "x1": 6.522605705800824, + "x2": 4.551122544991472, + "x3": -2.529836305273282, + "x4": 4.174050915563026, + "x5": 0.40421979156328125 + }, + "6": { + "x0": -5.679814934203297, + "x1": 5.068073505611823, + "x2": 5.739259024233815, + "x3": -3.182787931218847, + "x4": 1.7004422624282145, + "x5": 0.3598311258745062 + }, + "7": { + "x0": -4.704323799704956, + "x1": 3.65312051319697, + "x2": 4.634907935532267, + "x3": -2.6894789758024116, + "x4": 4.501637517102249, + "x5": 0.4591933645584901 + }, + "8": { + "x0": -5.5944659789894775, + "x1": 7.3934476528525686, + "x2": 5.94391709732666, + "x3": -2.496754292937094, + "x4": 1.8932696650771912, + "x5": 0.2114447331682529 + }, + "9": { + "x0": -2.8042698928442795, + "x1": 4.040223616810167, + "x2": 6.809216691640856, + "x3": -3.500193882156327, + "x4": 4.840983382967961, + "x5": 0.020503591711652724 + }, + "10": { + "x0": -4.017930184155521, + "x1": 3.7643601961373507, + "x2": 7.446540680371102, + "x3": -2.2739385431663917, + "x4": 4.439799848694969, + "x5": 0.31757180487412096 + }, + "11": { + "x0": -2.7002358110529223, + "x1": 4.411639950614503, + "x2": 6.885429154650723, + "x3": -1.2437686475488285, + "x4": 2.8713802680766967, + "x5": 0.13249649457787815 + }, + "12": { + "x0": -2.177596472597557, + "x1": 5.3385344580962, + "x2": 5.216791960036569, + "x3": -3.914794940802027, + "x4": 2.3205606992483836, + "x5": 0.0644437444442349 + }, + "13": { + "x0": -3.5993842538271656, + "x1": 4.176560015684245, + "x2": 6.428855400085963, + "x3": -2.494664371433288, + "x4": 1.8587938735276643, + "x5": 0.04919990938141405 + }, + "14": { + "x0": -3.47612685318298, + "x1": 4.703044522625148, + "x2": 5.250004997084294, + "x3": -3.6044911600040974, + "x4": 2.400299684963828, + "x5": 0.1158199562664029 + }, + "15": { + "x0": -2.3126236803029365, + "x1": 5.3784352496872625, + "x2": 4.272537810094702, + "x3": -3.936619785481609, + "x4": 2.1329912570360126, + "x5": 0.07823177421605354 + }, + "16": { + "x0": -2.626391227528149, + "x1": 3.702943840361099, + "x2": 6.050719152765581, + "x3": -3.823266440854202, + "x4": 2.181012631399302, + "x5": 0.011830833721235612 + }, + "17": { + "x0": -2.110952366485311, + "x1": 4.9203415544194264, + "x2": 4.018658178257146, + "x3": -3.6462443936609117, + "x4": 2.1571819410993514, + "x5": 0.02349104987500711 + }, + "18": { + "x0": -4.997407703681321, + "x1": 5.621909463820225, + "x2": 5.844711835948454, + "x3": -0.2872819753162119, + "x4": 1.384485919761929, + "x5": 0.29264922307179736 + }, + "19": { + "x0": -5.918081965830922, + "x1": 3.76053946604739, + "x2": 5.898693317332693, + "x3": -3.6474840739586156, + "x4": 4.09118262185506, + "x5": 0.4189100393068211 + }, + "20": { + "x0": -2.004986186104018, + "x1": 5.983700228902556, + "x2": 6.476147571552486, + "x3": -3.6765429599649715, + "x4": 2.1386191598022126, + "x5": 0.029371926583971253 + }, + "21": { + "x0": -2.6874809404246833, + "x1": 6.671840937562694, + "x2": 6.469845881542207, + "x3": -3.905708077803902, + "x4": 1.9405223739245159, + "x5": 0.10199567709880714 + }, + "22": { + "x0": -5.910165245086758, + "x1": 4.898047264906394, + "x2": 4.8026814076459425, + "x3": -2.7995304157708207, + "x4": 2.883704998630409, + "x5": 0.35888227877591555 + }, + "23": { + "x0": -2.7151412551141862, + "x1": 7.55256394312256, + "x2": 6.028773372520872, + "x3": -3.8626678892551523, + "x4": 3.81961520994057, + "x5": 0.14075723493466735 + }, + "24": { + "x0": -4.387468704529476, + "x1": 7.616132754926621, + "x2": 4.107190997938305, + "x3": -2.5097573569675964, + "x4": 4.750965558261486, + "x5": 0.059514175295768634 + }, + "25": { + "x0": -2.2439796864359773, + "x1": 6.211633344081469, + "x2": 5.972815000067651, + "x3": -2.1307586811826082, + "x4": 3.2477866371204795, + "x5": 0.17333496575773577 + }, + "26": { + "x0": -4.521279136925852, + "x1": 3.7270686370009516, + "x2": 7.437620953769907, + "x3": -2.661625791070365, + "x4": 2.8445455072326284, + "x5": 0.1090526644570814 + }, + "27": { + "x0": -4.091041800413775, + "x1": 5.393144880751122, + "x2": 4.606557310375865, + "x3": -0.051503680740955016, + "x4": 2.4877764913238685, + "x5": 0.024817653975332532 + }, + "28": { + "x0": -4.1817536056249605, + "x1": 5.964093742960483, + "x2": 5.14726177047152, + "x3": -2.7404547099597067, + "x4": 3.0894335283251784, + "x5": 0.2480700217740407 + }, + "29": { + "x0": -3.0846877073927246, + "x1": 4.939340568875485, + "x2": 7.531238245771407, + "x3": -0.4541127582753588, + "x4": 4.84988808774084, + "x5": 0.08856833664001978 + }, + "30": { + "x0": -4.685599701994308, + "x1": 7.8236080674549795, + "x2": 6.09923522685267, + "x3": -1.2614955561132302, + "x4": 1.0528594018762694, + "x5": 0.13726437518926898 + }, + "31": { + "x0": -2.2263698855540572, + "x1": 6.681237750849133, + "x2": 6.133861880815694, + "x3": -3.737065637531025, + "x4": 1.9871040988801274, + "x5": 0.038446069376327024 + }, + "32": { + "x0": -5.10352523197632, + "x1": 7.625316039929638, + "x2": 7.085575297418554, + "x3": -2.0077352195644633, + "x4": 1.6088954782765104, + "x5": 0.30073234557218165 + }, + "33": { + "x0": -2.149522402450127, + "x1": 6.901813078731909, + "x2": 6.469845881542207, + "x3": -3.6973975004206157, + "x4": 1.974514153609042, + "x5": 0.11367517756999178 + }, + "34": { + "x0": -2.6183789693616535, + "x1": 4.2587930413665305, + "x2": 6.179404785261262, + "x3": -2.1775674834162526, + "x4": 1.988002686350633, + "x5": 0.37346082016550364 + }, + "35": { + "x0": -2.572258895567519, + "x1": 4.325179598118947, + "x2": 6.328960250193908, + "x3": -2.247938168872241, + "x4": 2.124546598891091, + "x5": 0.47487430792305724 + }, + "36": { + "x0": -2.7151412551141862, + "x1": 7.55256394312256, + "x2": 6.499794362737482, + "x3": -3.5549028507798504, + "x4": 3.0531138240011506, + "x5": 0.052634442250538656 + }, + "37": { + "x0": -2.6190001438330266, + "x1": 7.549498928004467, + "x2": 7.502041955961406, + "x3": -3.691492746848454, + "x4": 1.5740343476143144, + "x5": 0.2561148903385719 + }, + "38": { + "x0": -2.1721556231377903, + "x1": 5.554259996735598, + "x2": 4.16684547139025, + "x3": -3.936619785481609, + "x4": 2.0105924955852412, + "x5": 0.1152057385972932 + }, + "39": { + "x0": -5.3253795125009535, + "x1": 4.730933671423899, + "x2": 7.900137834237075, + "x3": -0.8116617520874763, + "x4": 2.142805556130189, + "x5": 0.48439364258151363 + } + } +} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/scenario.txt b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/scenario.txt similarity index 67% rename from examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/scenario.txt rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/scenario.txt index 2be26d5..b3ab022 100644 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/proteinstructure/smac/run_168048252/scenario.txt +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/scenario.txt @@ -7,6 +7,6 @@ cost_for_crash = 2147483647.0 algo_runs_timelimit = inf wallclock_limit = inf always_race_default = False -ta_run_limit = 2.0 +ta_run_limit = 39.0 initial_incumbent = RANDOM -pcs_fn = opt_results/small_bnn/proteinstructure/smac/run_168048252/configspace.json +pcs_fn = ../opt_results/paramnet_surrogates/adult/smac/run_1569982670/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/stats.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/stats.json new file mode 100644 index 0000000..2115942 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/stats.json @@ -0,0 +1 @@ +{"ta_runs": 39, "n_configs": 39, "wallclock_time_used": 38.68742895126343, "ta_time_used": 0.9097795486450195, "inc_changed": 2, "_n_configs_per_intensify": 38, "_n_calls_of_intensify": 19, "_ema_n_configs_per_intensifiy": 2.0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/traj_aclib2.json new file mode 100644 index 0000000..d8d7dc3 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/traj_aclib2.json @@ -0,0 +1,3 @@ +{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 8.988380432128906e-05, "evaluations": 0, "cost": 2147483648, "incumbent": ["x0='-4.427184146847615'", "x1='5.468409116159567'", "x2='5.166697446737537'", "x3='-2.4737392169558943'", "x4='4.557793026011394'", "x5='0.26048328742862104'"], "origin": "Random initial design."} +{"cpu_time": 0.014215469360351562, "total_cpu_time": null, "wallclock_time": 0.03326892852783203, "evaluations": 1, "cost": 0.16898147900181787, "incumbent": ["x0='-4.427184146847615'", "x1='5.468409116159567'", "x2='5.166697446737537'", "x3='-2.4737392169558943'", "x4='4.557793026011394'", "x5='0.26048328742862104'"], "origin": "Random initial design."} +{"cpu_time": 0.02863907814025879, "total_cpu_time": null, "wallclock_time": 0.3213036060333252, "evaluations": 2, "cost": 0.14852777666984882, "incumbent": ["x0='-3.0208079181949494'", "x1='4.302339512022793'", "x2='6.682814513749159'", "x3='-1.5860107594761308'", "x4='1.7579816943137954'", "x5='0.29784322077691755'"], "origin": "Random Search"} diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/traj_old.csv b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/traj_old.csv new file mode 100644 index 0000000..dcc5eb5 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/adult/smac/run_1569982670/traj_old.csv @@ -0,0 +1,4 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." +0.000000, 2147483648.000000, 0.000090, 1, 0.000090, x0='-4.427184146847615', x1='5.468409116159567', x2='5.166697446737537', x3='-2.4737392169558943', x4='4.557793026011394', x5='0.26048328742862104' +0.014215, 0.168981, 0.033269, 1, 0.019053, x0='-4.427184146847615', x1='5.468409116159567', x2='5.166697446737537', x3='-2.4737392169558943', x4='4.557793026011394', x5='0.26048328742862104' +0.028639, 0.148528, 0.321304, 2, 0.292665, x0='-3.0208079181949494', x1='4.302339512022793', x2='6.682814513749159', x3='-1.5860107594761308', x4='1.7579816943137954', x5='0.29784322077691755' diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/bohb/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/bohb/configs.json new file mode 100644 index 0000000..653f0a1 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/bohb/configs.json @@ -0,0 +1,128 @@ +[[0, 0, 0], {"x0": -2.0263861777237167, "x1": 6.659153761153015, "x2": 5.870370262429812, "x3": -1.4763615274168673, "x4": 1.3997020682824401, "x5": 0.4277356880906134}, {"model_based_pick": false}] +[[0, 0, 1], {"x0": -5.5525347968075405, "x1": 6.012087519759694, "x2": 6.395611697166675, "x3": -0.9900971374104492, "x4": 1.6652418030221745, "x5": 0.4723544544509967}, {"model_based_pick": false}] +[[0, 0, 2], {"x0": -3.996331188886316, "x1": 7.191412926262393, "x2": 7.127215003127724, "x3": -2.6665638735844475, "x4": 4.658792427339749, "x5": 0.26152103445212144}, {"model_based_pick": false}] +[[0, 0, 3], {"x0": -2.4976623575964205, "x1": 5.681876290429942, "x2": 4.377246929616955, "x3": -1.1747165682970375, "x4": 1.5776074748389606, "x5": 0.12703265453319024}, {"model_based_pick": false}] +[[0, 0, 4], {"x0": -3.2640474754091793, "x1": 3.5084968832405696, "x2": 5.348843878198986, "x3": -3.1186266573076424, "x4": 4.085153043415052, "x5": 0.04431832726045454}, {"model_based_pick": false}] +[[0, 0, 5], {"x0": -4.281475941028999, "x1": 6.120362659039079, "x2": 7.070548886978706, "x3": -2.2434544960274803, "x4": 2.4968326296803345, "x5": 0.09485560613638061}, {"model_based_pick": false}] +[[0, 0, 6], {"x0": -5.810318164662814, "x1": 6.17187157718703, "x2": 5.837752284896564, "x3": -2.390347982517369, "x4": 4.623166084099864, "x5": 0.03925175222751093}, {"model_based_pick": false}] +[[0, 0, 7], {"x0": -2.3596415457219546, "x1": 5.025732795742619, "x2": 6.44564487134133, "x3": -0.5228410981020764, "x4": 1.8980698536498393, "x5": 0.03135735426212066}, {"model_based_pick": false}] +[[0, 0, 8], {"x0": -5.141971550374331, "x1": 7.667885883034991, "x2": 6.01989222999693, "x3": -3.191147602905754, "x4": 4.192995681473496, "x5": 0.32624992623264665}, {"model_based_pick": false}] +[[0, 0, 9], {"x0": -3.984262315311916, "x1": 6.55626647294032, "x2": 6.83425364394265, "x3": -0.32081342275960045, "x4": 3.262719362778689, "x5": 0.14371273418501002}, {"model_based_pick": false}] +[[0, 0, 10], {"x0": -4.046801294455974, "x1": 6.564616695093775, "x2": 5.334884596203362, "x3": -2.243681427023218, "x4": 4.676232667765719, "x5": 0.22884218757421387}, {"model_based_pick": false}] +[[0, 0, 11], {"x0": -3.1795363734297486, "x1": 5.644731988973957, "x2": 6.361420398308525, "x3": -1.8084507474432758, "x4": 2.0900513123176667, "x5": 0.4788400539660615}, {"model_based_pick": false}] +[[0, 0, 12], {"x0": -5.890766707845785, "x1": 4.629490287459801, "x2": 4.635308114856985, "x3": -1.8820723048072403, "x4": 3.0087249015618727, "x5": 0.017103074103018034}, {"model_based_pick": false}] +[[0, 0, 13], {"x0": -4.938745406769993, "x1": 6.143890039355782, "x2": 4.001336692937001, "x3": -1.2510112338915214, "x4": 4.684570851718272, "x5": 0.3871599650773793}, {"model_based_pick": false}] +[[0, 0, 14], {"x0": -2.859175946011128, "x1": 6.4377436446295935, "x2": 6.555911175823076, "x3": -1.1845566516907757, "x4": 2.131345852462681, "x5": 0.001678712188158793}, {"model_based_pick": false}] +[[0, 0, 15], {"x0": -2.696258821073748, "x1": 7.956565482711734, "x2": 4.910549509350702, "x3": -1.512370459709714, "x4": 1.8821290822857484, "x5": 0.4798897078384192}, {"model_based_pick": false}] +[[0, 0, 16], {"x0": -3.3517291205694373, "x1": 7.653542007451624, "x2": 5.497609986591757, "x3": -3.4873796125611194, "x4": 4.373015203635039, "x5": 0.4041357251855617}, {"model_based_pick": false}] +[[0, 0, 17], {"x0": -4.630416576605677, "x1": 3.643340213966404, "x2": 4.927712992123336, "x3": -1.2083389169222651, "x4": 3.8373976028603547, "x5": 0.0942700985351137}, {"model_based_pick": false}] +[[0, 0, 18], {"x0": -2.934707236876548, "x1": 7.607539623309612, "x2": 4.674801926360942, "x3": -1.8457023071144416, "x4": 2.1070432519612488, "x5": 0.33444305067581326}, {"model_based_pick": true}] +[[0, 0, 19], {"x0": -2.0606907041803555, "x1": 5.885864862507947, "x2": 5.501375238935658, "x3": -0.981978901214168, "x4": 4.989756949857824, "x5": 0.15466148615506642}, {"model_based_pick": false}] +[[0, 0, 20], {"x0": -2.026260735464363, "x1": 5.087601351914011, "x2": 7.451209692529209, "x3": -2.2583851029992568, "x4": 3.325077422385999, "x5": 0.4758710789298372}, {"model_based_pick": false}] +[[0, 0, 21], {"x0": -2.286357851836223, "x1": 4.625917348805006, "x2": 4.445854685309489, "x3": -1.4581745777823052, "x4": 1.2308731354232962, "x5": 0.09964217949132945}, {"model_based_pick": true}] +[[0, 0, 22], {"x0": -5.100156041290305, "x1": 6.255687759001757, "x2": 4.837157583813237, "x3": -0.4554374227514666, "x4": 2.33568238084909, "x5": 0.3556976181749999}, {"model_based_pick": false}] +[[0, 0, 23], {"x0": -3.2629264840880032, "x1": 4.1753502710366615, "x2": 6.683826116106845, "x3": -0.7701691239217658, "x4": 4.54369781686186, "x5": 0.24571484633467783}, {"model_based_pick": false}] +[[0, 0, 24], {"x0": -2.1195434156088604, "x1": 4.468623174024142, "x2": 4.862073959397191, "x3": -0.5483486022154236, "x4": 1.7713658238619236, "x5": 0.03605464491220332}, {"model_based_pick": true}] +[[0, 0, 25], {"x0": -4.287233129142184, "x1": 7.748870560786641, "x2": 7.114102537186443, "x3": -3.8483278409575203, "x4": 4.149805662103357, "x5": 0.2348604596463914}, {"model_based_pick": false}] +[[0, 0, 26], {"x0": -4.689394416854018, "x1": 4.360024731786476, "x2": 6.909233554329504, "x3": -1.8963348425057394, "x4": 2.1446469890260014, "x5": 0.06681728996947184}, {"model_based_pick": false}] +[[1, 0, 0], {"x0": -2.4614151927141634, "x1": 3.5926398658323246, "x2": 6.879777396222359, "x3": -0.3158857960544079, "x4": 1.9133273218575115, "x5": 0.18288242765208002}, {"model_based_pick": true}] +[[1, 0, 1], {"x0": -2.6599893893758466, "x1": 7.852379499297441, "x2": 4.510045615303402, "x3": -1.5477329003307783, "x4": 1.7393347015640594, "x5": 0.04567392300288607}, {"model_based_pick": true}] +[[1, 0, 2], {"x0": -2.182280414824603, "x1": 6.899535717274354, "x2": 7.248567488336611, "x3": -1.5193861797533557, "x4": 1.1160242775685223, "x5": 0.27899511903326346}, {"model_based_pick": true}] +[[1, 0, 3], {"x0": -2.6631559991172122, "x1": 5.6994726394088, "x2": 4.332723925929634, "x3": -1.2693419782399702, "x4": 1.1283609374272408, "x5": 0.24720722150775196}, {"model_based_pick": true}] +[[1, 0, 4], {"x0": -2.143750387992588, "x1": 4.964074734676856, "x2": 5.662993756447271, "x3": -2.1362532916239436, "x4": 1.198827771388046, "x5": 0.4021019109824979}, {"model_based_pick": true}] +[[1, 0, 5], {"x0": -2.1090485219930577, "x1": 4.577509824149125, "x2": 5.29987756128169, "x3": -2.006560594255964, "x4": 4.755903160669076, "x5": 0.01867770001935551}, {"model_based_pick": true}] +[[1, 0, 6], {"x0": -4.888546908203655, "x1": 7.063901184411666, "x2": 7.683375132338, "x3": -0.23412883376199778, "x4": 3.6670501650744285, "x5": 0.025102854208025382}, {"model_based_pick": true}] +[[1, 0, 7], {"x0": -2.2239609602785917, "x1": 4.137618744560363, "x2": 5.983907711999036, "x3": -1.9457168390793291, "x4": 4.941949446206044, "x5": 0.016898303884356217}, {"model_based_pick": true}] +[[1, 0, 8], {"x0": -3.010321247558685, "x1": 6.6981351080015665, "x2": 6.8062620229147255, "x3": -1.7385342608384087, "x4": 1.9969822832066424, "x5": 0.019143430856598975}, {"model_based_pick": true}] +[[2, 0, 0], {"x0": -2.2288570209604894, "x1": 6.31607424426465, "x2": 7.811222882861118, "x3": -1.7296589934171038, "x4": 1.313674094117125, "x5": 0.2156667232234152}, {"model_based_pick": true}] +[[2, 0, 1], {"x0": -3.503028771662402, "x1": 6.698734081715319, "x2": 6.919656218659281, "x3": -1.0355752207459545, "x4": 1.952895886569028, "x5": 0.030068666927604487}, {"model_based_pick": true}] +[[2, 0, 2], {"x0": -2.3436313008110004, "x1": 6.974431846306089, "x2": 7.899260356951196, "x3": -1.8973584936613452, "x4": 2.3130935810467994, "x5": 0.004113897700982198}, {"model_based_pick": true}] +[[2, 0, 3], {"x0": -3.7346203917753615, "x1": 5.897184767702436, "x2": 7.111658910917614, "x3": -1.7351965142109935, "x4": 2.2824484174698436, "x5": 0.0753579727465743}, {"model_based_pick": true}] +[[2, 0, 4], {"x0": -3.0697038859426407, "x1": 7.654330082886387, "x2": 7.188236056964455, "x3": -2.2234018979833134, "x4": 3.521233493172617, "x5": 0.12825799335467075}, {"model_based_pick": true}] +[[2, 0, 5], {"x0": -2.6269174204263153, "x1": 6.958610463720286, "x2": 5.191387525396603, "x3": -1.166187802921589, "x4": 4.438731767206525, "x5": 0.4219828924282723}, {"model_based_pick": false}] +[[3, 0, 0], {"x0": -2.483656095307655, "x1": 7.145151709347788, "x2": 7.637674310988877, "x3": -1.8490232452299789, "x4": 2.7840149184107963, "x5": 0.1168898904447585}, {"model_based_pick": true}] +[[3, 0, 1], {"x0": -4.063242760424682, "x1": 4.542867323658927, "x2": 4.11804535037119, "x3": -1.1845306666116389, "x4": 1.7766723464187453, "x5": 0.38152605732732064}, {"model_based_pick": false}] +[[3, 0, 2], {"x0": -2.128770067705268, "x1": 4.973952166102219, "x2": 4.2523964778589285, "x3": -2.520683510880405, "x4": 4.465689756935527, "x5": 0.20634748741418307}, {"model_based_pick": false}] +[[3, 0, 3], {"x0": -2.5824577371261737, "x1": 7.519708166705529, "x2": 7.817949338071022, "x3": -1.921370209933265, "x4": 2.508270770677478, "x5": 0.011778177439403514}, {"model_based_pick": true}] +[[4, 0, 0], {"x0": -3.4800183611768136, "x1": 3.5387849720079374, "x2": 4.6286977041463775, "x3": -2.219062024762391, "x4": 4.0719782168120915, "x5": 0.151197881526968}, {"model_based_pick": false}] +[[4, 0, 1], {"x0": -2.406453262261295, "x1": 4.0963372398460045, "x2": 7.222889408430211, "x3": -3.5882012821175424, "x4": 1.1594367130224783, "x5": 0.36737500873688594}, {"model_based_pick": false}] +[[4, 0, 2], {"x0": -2.8943679375440006, "x1": 7.18130054939887, "x2": 6.714085010445078, "x3": -1.0118281911102702, "x4": 3.19294795597477, "x5": 0.1708740129751064}, {"model_based_pick": true}] +[[4, 0, 3], {"x0": -3.1869831331669793, "x1": 4.571669247317451, "x2": 4.681930812284902, "x3": -3.622795316471512, "x4": 4.236425252397224, "x5": 0.3311734449069209}, {"model_based_pick": false}] +[[4, 0, 4], {"x0": -3.00395326484072, "x1": 6.415826885767848, "x2": 7.215970049756196, "x3": -2.7340484061878607, "x4": 1.2340142505203788, "x5": 0.0862311527594567}, {"model_based_pick": true}] +[[4, 0, 5], {"x0": -3.418077080988923, "x1": 6.589799007942117, "x2": 7.632808507306772, "x3": -2.2101334564176582, "x4": 1.9793969143695194, "x5": 0.1134364686246524}, {"model_based_pick": true}] +[[4, 0, 6], {"x0": -2.8566588740804892, "x1": 7.133016288101486, "x2": 7.7006974503785655, "x3": -1.4871032435613185, "x4": 2.2224833156635615, "x5": 0.022837805243833498}, {"model_based_pick": true}] +[[4, 0, 7], {"x0": -4.077239441407158, "x1": 7.0997327401382915, "x2": 7.889630292410468, "x3": -1.7822911995215867, "x4": 2.77209223841005, "x5": 0.0627951081039001}, {"model_based_pick": false}] +[[4, 0, 8], {"x0": -2.191090403989293, "x1": 7.910784371068284, "x2": 7.789816173418196, "x3": -1.335547450485052, "x4": 2.142597100064952, "x5": 0.23864516029108643}, {"model_based_pick": true}] +[[4, 0, 9], {"x0": -5.481049188163645, "x1": 7.070177798350399, "x2": 6.793075327436714, "x3": -0.2640419445327855, "x4": 3.9923777440545534, "x5": 0.2877740548271952}, {"model_based_pick": false}] +[[4, 0, 10], {"x0": -3.4747834041837358, "x1": 7.766149715140323, "x2": 7.708805323847617, "x3": -2.350231446987725, "x4": 1.972706111435524, "x5": 0.16924780319478872}, {"model_based_pick": true}] +[[4, 0, 11], {"x0": -3.3068676082803887, "x1": 6.55394615538199, "x2": 7.755388549767414, "x3": -2.3176738849571343, "x4": 2.953181674746806, "x5": 0.20966619894058153}, {"model_based_pick": true}] +[[4, 0, 12], {"x0": -2.5894195050436557, "x1": 7.40101781685952, "x2": 7.338504266499547, "x3": -2.0788412274241606, "x4": 1.2265611720950678, "x5": 0.013745206345495586}, {"model_based_pick": true}] +[[4, 0, 13], {"x0": -4.665791629512881, "x1": 6.302123875027842, "x2": 4.87928182737377, "x3": -0.49369048178451136, "x4": 3.438831475599939, "x5": 0.4239174168838373}, {"model_based_pick": false}] +[[4, 0, 14], {"x0": -3.589353061370329, "x1": 7.036940826859286, "x2": 7.36300595117782, "x3": -2.2640536177142785, "x4": 2.2512027685443563, "x5": 0.0891053530008778}, {"model_based_pick": true}] +[[4, 0, 15], {"x0": -3.393836513178335, "x1": 5.9229621829608305, "x2": 6.777573622728453, "x3": -1.2471780112885829, "x4": 1.8716772028223911, "x5": 0.07174516386076485}, {"model_based_pick": true}] +[[4, 0, 16], {"x0": -3.0017213615932223, "x1": 6.226136229658622, "x2": 7.714933768718089, "x3": -1.2515980993482514, "x4": 2.9516353802011306, "x5": 0.07643506004059175}, {"model_based_pick": true}] +[[4, 0, 17], {"x0": -2.3632435623812538, "x1": 7.672344068372547, "x2": 7.662207227026313, "x3": -1.046443056157968, "x4": 2.2941701131435037, "x5": 0.02129276261954577}, {"model_based_pick": true}] +[[4, 0, 18], {"x0": -2.7232020902666108, "x1": 6.374986762648916, "x2": 6.342758798632123, "x3": -2.306777281296273, "x4": 2.741667525601763, "x5": 0.3281763812998515}, {"model_based_pick": false}] +[[4, 0, 19], {"x0": -5.026601378943247, "x1": 4.4158663530446365, "x2": 4.74562385731087, "x3": -0.9155555980781509, "x4": 3.624058429635143, "x5": 0.02425401484185613}, {"model_based_pick": false}] +[[4, 0, 20], {"x0": -3.32788116620132, "x1": 5.547978221963962, "x2": 7.439031743538517, "x3": -1.691467147029968, "x4": 2.522599066308917, "x5": 0.38964404099261296}, {"model_based_pick": true}] +[[4, 0, 21], {"x0": -4.216447774560955, "x1": 6.757978054084869, "x2": 6.723536716268709, "x3": -2.302860797899116, "x4": 2.0925877052008786, "x5": 0.08350425383737387}, {"model_based_pick": false}] +[[4, 0, 22], {"x0": -3.129965743552313, "x1": 3.0207451829118037, "x2": 7.5636979179883435, "x3": -2.6567451504669886, "x4": 3.1619921044085397, "x5": 0.3627407026535754}, {"model_based_pick": false}] +[[4, 0, 23], {"x0": -3.345946833978137, "x1": 7.187762415165826, "x2": 7.0885780069108435, "x3": -1.5738806597601034, "x4": 2.4932901136749197, "x5": 0.20819903365056974}, {"model_based_pick": true}] +[[4, 0, 24], {"x0": -2.9264968257780577, "x1": 6.639897671924183, "x2": 7.010842609531215, "x3": -2.0131988062407444, "x4": 1.8697794162051173, "x5": 0.08593186039185194}, {"model_based_pick": true}] +[[4, 0, 25], {"x0": -2.521438077667485, "x1": 7.0361473674701625, "x2": 7.404744146506548, "x3": -1.1368784968105228, "x4": 1.454460175301415, "x5": 0.12296333209766906}, {"model_based_pick": true}] +[[4, 0, 26], {"x0": -4.490020600964556, "x1": 4.824033437860683, "x2": 7.565565257014873, "x3": -3.802148034931578, "x4": 4.9360162635190905, "x5": 0.12464785750447277}, {"model_based_pick": false}] +[[5, 0, 0], {"x0": -2.469963092876212, "x1": 7.626479160956993, "x2": 5.381179685108224, "x3": -3.466707353613124, "x4": 4.539529634153057, "x5": 0.17329992824203616}, {"model_based_pick": true}] +[[5, 0, 1], {"x0": -2.4165285731000954, "x1": 3.6370111820385858, "x2": 5.144208330923048, "x3": -1.6443722210594824, "x4": 4.746144712394956, "x5": 0.03454811055789643}, {"model_based_pick": true}] +[[5, 0, 2], {"x0": -3.898828795901624, "x1": 5.872715212893002, "x2": 6.677570990048551, "x3": -0.8213465168055705, "x4": 1.6064660684730931, "x5": 0.3541788491345903}, {"model_based_pick": false}] +[[5, 0, 3], {"x0": -4.201548855437444, "x1": 4.341933784486374, "x2": 4.151081630046375, "x3": -0.5288511441064259, "x4": 2.9171810608459796, "x5": 0.10519213333856914}, {"model_based_pick": false}] +[[5, 0, 4], {"x0": -2.42525108013901, "x1": 4.467347926055656, "x2": 6.389932323599992, "x3": -2.3942135699145632, "x4": 4.914520081726712, "x5": 0.08359482227342316}, {"model_based_pick": true}] +[[5, 0, 5], {"x0": -2.937672496095567, "x1": 4.426592622903328, "x2": 4.25718656847659, "x3": -3.9247138642087656, "x4": 4.80950657496736, "x5": 0.1679151147388025}, {"model_based_pick": true}] +[[5, 0, 6], {"x0": -5.51937580167089, "x1": 3.5867302390663234, "x2": 6.49052477470535, "x3": -3.186779441245162, "x4": 1.1867997047411536, "x5": 0.39125557540720307}, {"model_based_pick": false}] +[[5, 0, 7], {"x0": -2.5573826359842133, "x1": 7.359597203671404, "x2": 7.464656202198702, "x3": -2.9972067909014695, "x4": 4.83216333866492, "x5": 0.2222650551774204}, {"model_based_pick": false}] +[[5, 0, 8], {"x0": -2.5784550922821334, "x1": 3.8818951233379373, "x2": 5.23012366803211, "x3": -3.6697649488820225, "x4": 4.237544588197272, "x5": 0.13057304086371876}, {"model_based_pick": true}] +[[6, 0, 0], {"x0": -3.86670390127871, "x1": 7.800689975952974, "x2": 4.824875070924852, "x3": -0.005181512449878856, "x4": 4.73935886305021, "x5": 0.13684037007291822}, {"model_based_pick": false}] +[[6, 0, 1], {"x0": -5.743698811370196, "x1": 5.011864611645958, "x2": 7.918492487351417, "x3": -3.691626682026762, "x4": 3.3723956647463993, "x5": 0.16846915524223438}, {"model_based_pick": false}] +[[6, 0, 2], {"x0": -3.9799067400953954, "x1": 7.284520002848888, "x2": 7.185599700384659, "x3": -0.9880738527275748, "x4": 3.307842916792532, "x5": 0.2577202487339603}, {"model_based_pick": false}] +[[6, 0, 3], {"x0": -3.7189047718600783, "x1": 4.156069020847443, "x2": 7.013631474357563, "x3": -1.2199775034324554, "x4": 3.0985400102710194, "x5": 0.3810422640217185}, {"model_based_pick": false}] +[[6, 0, 4], {"x0": -2.4860505677137246, "x1": 4.560007285115364, "x2": 4.040116497231097, "x3": -0.3834154270183192, "x4": 1.2544448221978355, "x5": 0.19516383226281517}, {"model_based_pick": true}] +[[6, 0, 5], {"x0": -2.6176536058202555, "x1": 4.08079144117318, "x2": 6.542205962990533, "x3": -3.618917938192939, "x4": 2.2460675175063183, "x5": 0.061443661093118614}, {"model_based_pick": true}] +[[7, 0, 0], {"x0": -2.6201255622636, "x1": 4.08868662038171, "x2": 6.535682315508199, "x3": -3.476017100916555, "x4": 4.4276481880144924, "x5": 0.20533663628251098}, {"model_based_pick": false}] +[[7, 0, 1], {"x0": -4.279724351981785, "x1": 5.229399711839454, "x2": 7.627347740916792, "x3": -1.2126584076057338, "x4": 1.895411054259439, "x5": 0.00962417963613682}, {"model_based_pick": false}] +[[7, 0, 2], {"x0": -5.97878769103308, "x1": 5.4066380532753175, "x2": 6.8767005697391355, "x3": -0.534446525097632, "x4": 4.498763093617541, "x5": 0.13065501189775697}, {"model_based_pick": false}] +[[7, 0, 3], {"x0": -2.7454787598770807, "x1": 3.311669462727804, "x2": 6.27435832027062, "x3": -3.9578117919125124, "x4": 3.6136430026991153, "x5": 0.06358573390426503}, {"model_based_pick": true}] +[[8, 0, 0], {"x0": -2.5985914071925444, "x1": 6.1537635899111685, "x2": 6.4057768611423445, "x3": -3.4756147880351826, "x4": 3.1117270434875266, "x5": 0.38443028444958494}, {"model_based_pick": true}] +[[8, 0, 1], {"x0": -2.043945801406102, "x1": 6.298024989697497, "x2": 4.742453518442089, "x3": -3.1373723128757085, "x4": 4.956113560764525, "x5": 0.3496683854406715}, {"model_based_pick": true}] +[[8, 0, 2], {"x0": -2.766330822345811, "x1": 5.754458494107381, "x2": 5.8387425249605895, "x3": -2.4695382048017804, "x4": 2.5153031956348935, "x5": 0.3954527739743383}, {"model_based_pick": true}] +[[8, 0, 3], {"x0": -3.411945792257801, "x1": 6.143731789314333, "x2": 6.16959458363373, "x3": -2.39182241803908, "x4": 1.5736623012651267, "x5": 0.43571434210475046}, {"model_based_pick": false}] +[[8, 0, 4], {"x0": -2.737207498829953, "x1": 7.2569694980207275, "x2": 6.808041035444415, "x3": -2.4140866884886933, "x4": 2.692320868351892, "x5": 0.41314114226762144}, {"model_based_pick": true}] +[[8, 0, 5], {"x0": -4.19612385263423, "x1": 4.266024995422152, "x2": 5.725212788672776, "x3": -2.4392994140055215, "x4": 3.940487868575546, "x5": 0.4878874700426723}, {"model_based_pick": false}] +[[8, 0, 6], {"x0": -2.1880003374356334, "x1": 4.07307801497252, "x2": 4.318846148136478, "x3": -1.845871092174188, "x4": 4.944933854321594, "x5": 0.27947774631215605}, {"model_based_pick": true}] +[[8, 0, 7], {"x0": -2.6418895229281296, "x1": 7.246438059175087, "x2": 6.0326455147439395, "x3": -3.070156945772563, "x4": 4.279925628209844, "x5": 0.46285918499151046}, {"model_based_pick": true}] +[[8, 0, 8], {"x0": -2.7037738762801857, "x1": 5.531106674127407, "x2": 6.684497423674748, "x3": -1.453533554878947, "x4": 4.21282390984486, "x5": 0.37658719074412883}, {"model_based_pick": true}] +[[8, 0, 9], {"x0": -2.5913040088038235, "x1": 7.037705049108223, "x2": 4.565268536718326, "x3": -3.1817620156502855, "x4": 2.2396378177871, "x5": 0.3424974286455785}, {"model_based_pick": true}] +[[8, 0, 10], {"x0": -2.3616166867049904, "x1": 6.737534922277132, "x2": 5.249214533938174, "x3": -3.0841473885806003, "x4": 3.0748038565337987, "x5": 0.3925141393386525}, {"model_based_pick": false}] +[[8, 0, 11], {"x0": -2.5320886386079655, "x1": 5.967340240503047, "x2": 4.375603123033872, "x3": -0.28011384318711263, "x4": 3.5712579000904596, "x5": 0.07829819023826257}, {"model_based_pick": false}] +[[8, 0, 12], {"x0": -2.7095335017277304, "x1": 6.520673660252767, "x2": 5.952117288587948, "x3": -2.8794317403799314, "x4": 4.4971463509821135, "x5": 0.3885065995456079}, {"model_based_pick": true}] +[[8, 0, 13], {"x0": -2.706861363836597, "x1": 7.850582520473044, "x2": 6.719810720960989, "x3": -2.8243745701693594, "x4": 1.740253421413798, "x5": 0.45010650357895005}, {"model_based_pick": true}] +[[8, 0, 14], {"x0": -2.1794896659308316, "x1": 6.426335157606653, "x2": 5.760315315885675, "x3": -2.001716121237226, "x4": 1.8481556895506217, "x5": 0.2903974875906918}, {"model_based_pick": false}] +[[8, 0, 15], {"x0": -5.445501428284821, "x1": 3.6814385625430894, "x2": 6.577889994882185, "x3": -2.3446698164851747, "x4": 4.022919158455265, "x5": 0.14767593148693842}, {"model_based_pick": false}] +[[8, 0, 16], {"x0": -2.734239883708705, "x1": 5.9121049040757025, "x2": 6.4814256695921735, "x3": -2.7532775252145525, "x4": 2.9720782213275445, "x5": 0.40387028785732976}, {"model_based_pick": true}] +[[8, 0, 17], {"x0": -5.168322435853217, "x1": 6.161045668381457, "x2": 4.414278726521061, "x3": -0.7387053891093327, "x4": 4.298734631372193, "x5": 0.42713076623261975}, {"model_based_pick": false}] +[[8, 0, 18], {"x0": -5.999228967075146, "x1": 4.931693706825698, "x2": 5.200705881170059, "x3": -2.420989665768083, "x4": 2.119454192065801, "x5": 0.027153069423480725}, {"model_based_pick": false}] +[[8, 0, 19], {"x0": -2.529157107349097, "x1": 4.321524528316494, "x2": 6.135178727855971, "x3": -3.3185113473614916, "x4": 4.585565733011032, "x5": 0.3705762911474454}, {"model_based_pick": true}] +[[8, 0, 20], {"x0": -2.1102593370372, "x1": 5.144832363003079, "x2": 4.622773962358909, "x3": -2.241485819471592, "x4": 4.6213084655316825, "x5": 0.33826513579009154}, {"model_based_pick": true}] +[[8, 0, 21], {"x0": -2.2765468648695513, "x1": 7.276059275319584, "x2": 7.312600878548024, "x3": -3.923780776170379, "x4": 4.736978874694504, "x5": 0.2744344009187195}, {"model_based_pick": false}] +[[8, 0, 22], {"x0": -5.759618359440984, "x1": 6.305833454634513, "x2": 5.455762433040462, "x3": -0.09882216790677356, "x4": 4.83175532443751, "x5": 0.14799809927141472}, {"model_based_pick": false}] +[[8, 0, 23], {"x0": -2.594445931993384, "x1": 5.714806710982373, "x2": 6.756707014104182, "x3": -1.625633634138417, "x4": 3.526799093739178, "x5": 0.3907786358683769}, {"model_based_pick": true}] +[[8, 0, 24], {"x0": -2.079662769642969, "x1": 5.4881740756098045, "x2": 5.055810604075672, "x3": -1.6527739297190314, "x4": 4.703829759019266, "x5": 0.34475658376048046}, {"model_based_pick": true}] +[[8, 0, 25], {"x0": -5.100899628297006, "x1": 3.797742841671653, "x2": 5.263001699767278, "x3": -0.6389903480254246, "x4": 1.614981136762843, "x5": 0.20698736411851937}, {"model_based_pick": false}] +[[8, 0, 26], {"x0": -2.657390132702856, "x1": 5.01010096723459, "x2": 6.0449819156163205, "x3": -3.153332847090573, "x4": 4.225686445751723, "x5": 0.48132296828484195}, {"model_based_pick": true}] +[[9, 0, 0], {"x0": -2.7334372366383537, "x1": 6.701972372155664, "x2": 6.349802742612372, "x3": -1.8098261083873277, "x4": 3.4238475745650403, "x5": 0.4758038669140825}, {"model_based_pick": true}] +[[9, 0, 1], {"x0": -2.3048350964441244, "x1": 6.261431931547244, "x2": 5.348864762701188, "x3": -2.2701395899972354, "x4": 2.239310700242622, "x5": 0.353571610503191}, {"model_based_pick": true}] +[[9, 0, 2], {"x0": -2.2665609335946617, "x1": 7.176908649900856, "x2": 4.379745695006646, "x3": -2.601878319402932, "x4": 2.5821576061081655, "x5": 0.27867489061247663}, {"model_based_pick": true}] +[[9, 0, 3], {"x0": -2.711748442433383, "x1": 6.794282786760353, "x2": 6.562927174301381, "x3": -2.399972481499973, "x4": 3.9221415705761027, "x5": 0.4799730920390751}, {"model_based_pick": true}] +[[9, 0, 4], {"x0": -2.6620562770769496, "x1": 6.780535744134829, "x2": 4.722646823569823, "x3": -2.615774655387754, "x4": 3.7610153902303365, "x5": 0.34247102917989225}, {"model_based_pick": true}] +[[9, 0, 5], {"x0": -2.5248066251443877, "x1": 6.47267131872558, "x2": 5.762394746832557, "x3": -3.7702420308150213, "x4": 3.900156383514596, "x5": 0.3946254469893685}, {"model_based_pick": true}] +[[9, 0, 6], {"x0": -3.8423561040633847, "x1": 4.374687279446188, "x2": 7.734957591493991, "x3": -0.7354107272919737, "x4": 2.8999088488990057, "x5": 0.09100564774855474}, {"model_based_pick": false}] +[[9, 0, 7], {"x0": -2.5642374040721316, "x1": 6.42997237198232, "x2": 6.3900968964807285, "x3": -3.9730507135253497, "x4": 3.399426009376991, "x5": 0.41835130166224865}, {"model_based_pick": true}] +[[9, 0, 8], {"x0": -2.494639852425593, "x1": 6.5502135863438555, "x2": 5.8642054029133135, "x3": -2.799773457976701, "x4": 3.7378715181895705, "x5": 0.45147039710631454}, {"model_based_pick": true}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/bohb/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/bohb/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/bohb/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/bohb/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/bohb/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/bohb/results.json new file mode 100644 index 0000000..bc43ea5 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/bohb/results.json @@ -0,0 +1,183 @@ +[[0, 0, 0], 9.0, {"submitted": 1558193458.822879, "started": 1558193458.8232791, "finished": 1558193458.832317}, {"loss": 0.30478782146674244, "info": {"x0": -2.0263861777237167, "x1": 6.659153761153015, "x2": 5.870370262429812, "x3": -1.4763615274168673, "x4": 1.3997020682824401, "x5": 0.4277356880906134}}, null] +[[0, 0, 1], 9.0, {"submitted": 1558193458.8351803, "started": 1558193458.8355782, "finished": 1558193458.8430886}, {"loss": 0.4813422521529547, "info": {"x0": -5.5525347968075405, "x1": 6.012087519759694, "x2": 6.395611697166675, "x3": -0.9900971374104492, "x4": 1.6652418030221745, "x5": 0.4723544544509967}}, null] +[[0, 0, 2], 9.0, {"submitted": 1558193458.845144, "started": 1558193458.8454494, "finished": 1558193458.8518631}, {"loss": 0.38820571718634383, "info": {"x0": -3.996331188886316, "x1": 7.191412926262393, "x2": 7.127215003127724, "x3": -2.6665638735844475, "x4": 4.658792427339749, "x5": 0.26152103445212144}}, null] +[[0, 0, 3], 9.0, {"submitted": 1558193458.854125, "started": 1558193458.8545127, "finished": 1558193458.863542}, {"loss": 0.30380995610330214, "info": {"x0": -2.4976623575964205, "x1": 5.681876290429942, "x2": 4.377246929616955, "x3": -1.1747165682970375, "x4": 1.5776074748389606, "x5": 0.12703265453319024}}, null] +[[0, 0, 4], 9.0, {"submitted": 1558193458.866506, "started": 1558193458.8669548, "finished": 1558193458.8758297}, {"loss": 0.36256917640233477, "info": {"x0": -3.2640474754091793, "x1": 3.5084968832405696, "x2": 5.348843878198986, "x3": -3.1186266573076424, "x4": 4.085153043415052, "x5": 0.04431832726045454}}, null] +[[0, 0, 5], 9.0, {"submitted": 1558193458.8785303, "started": 1558193458.87893, "finished": 1558193458.8862019}, {"loss": 0.3585424311427447, "info": {"x0": -4.281475941028999, "x1": 6.120362659039079, "x2": 7.070548886978706, "x3": -2.2434544960274803, "x4": 2.4968326296803345, "x5": 0.09485560613638061}}, null] +[[0, 0, 6], 9.0, {"submitted": 1558193458.8908017, "started": 1558193458.8912265, "finished": 1558193458.9023058}, {"loss": 0.4743588532532163, "info": {"x0": -5.810318164662814, "x1": 6.17187157718703, "x2": 5.837752284896564, "x3": -2.390347982517369, "x4": 4.623166084099864, "x5": 0.03925175222751093}}, null] +[[0, 0, 7], 9.0, {"submitted": 1558193458.9055696, "started": 1558193458.905966, "finished": 1558193458.9117095}, {"loss": 0.29895294667441547, "info": {"x0": -2.3596415457219546, "x1": 5.025732795742619, "x2": 6.44564487134133, "x3": -0.5228410981020764, "x4": 1.8980698536498393, "x5": 0.03135735426212066}}, null] +[[0, 0, 8], 9.0, {"submitted": 1558193458.9149363, "started": 1558193458.915478, "finished": 1558193458.9302478}, {"loss": 0.4715267462673771, "info": {"x0": -5.141971550374331, "x1": 7.667885883034991, "x2": 6.01989222999693, "x3": -3.191147602905754, "x4": 4.192995681473496, "x5": 0.32624992623264665}}, null] +[[0, 0, 9], 9.0, {"submitted": 1558193458.9332151, "started": 1558193458.9335833, "finished": 1558193458.942276}, {"loss": 0.35988929856802265, "info": {"x0": -3.984262315311916, "x1": 6.55626647294032, "x2": 6.83425364394265, "x3": -0.32081342275960045, "x4": 3.262719362778689, "x5": 0.14371273418501002}}, null] +[[0, 0, 10], 9.0, {"submitted": 1558193458.9448261, "started": 1558193458.9451349, "finished": 1558193458.9525473}, {"loss": 0.43098246720238026, "info": {"x0": -4.046801294455974, "x1": 6.564616695093775, "x2": 5.334884596203362, "x3": -2.243681427023218, "x4": 4.676232667765719, "x5": 0.22884218757421387}}, null] +[[0, 0, 11], 9.0, {"submitted": 1558193458.9555948, "started": 1558193458.9560235, "finished": 1558193458.963543}, {"loss": 0.31503690000142337, "info": {"x0": -3.1795363734297486, "x1": 5.644731988973957, "x2": 6.361420398308525, "x3": -1.8084507474432758, "x4": 2.0900513123176667, "x5": 0.4788400539660615}}, null] +[[0, 0, 12], 9.0, {"submitted": 1558193458.9669588, "started": 1558193458.9674435, "finished": 1558193458.9743161}, {"loss": 0.4962684483018556, "info": {"x0": -5.890766707845785, "x1": 4.629490287459801, "x2": 4.635308114856985, "x3": -1.8820723048072403, "x4": 3.0087249015618727, "x5": 0.017103074103018034}}, null] +[[0, 0, 13], 9.0, {"submitted": 1558193458.976932, "started": 1558193458.9773815, "finished": 1558193458.9844015}, {"loss": 0.47166973899486325, "info": {"x0": -4.938745406769993, "x1": 6.143890039355782, "x2": 4.001336692937001, "x3": -1.2510112338915214, "x4": 4.684570851718272, "x5": 0.3871599650773793}}, null] +[[0, 0, 14], 9.0, {"submitted": 1558193458.988311, "started": 1558193458.9887178, "finished": 1558193458.9989493}, {"loss": 0.2949584819437297, "info": {"x0": -2.859175946011128, "x1": 6.4377436446295935, "x2": 6.555911175823076, "x3": -1.1845566516907757, "x4": 2.131345852462681, "x5": 0.001678712188158793}}, null] +[[0, 0, 15], 9.0, {"submitted": 1558193459.0022025, "started": 1558193459.0026057, "finished": 1558193459.0094695}, {"loss": 0.3255811803807192, "info": {"x0": -2.696258821073748, "x1": 7.956565482711734, "x2": 4.910549509350702, "x3": -1.512370459709714, "x4": 1.8821290822857484, "x5": 0.4798897078384192}}, null] +[[0, 0, 16], 9.0, {"submitted": 1558193459.0127664, "started": 1558193459.0131073, "finished": 1558193459.0213032}, {"loss": 0.37040590243407173, "info": {"x0": -3.3517291205694373, "x1": 7.653542007451624, "x2": 5.497609986591757, "x3": -3.4873796125611194, "x4": 4.373015203635039, "x5": 0.4041357251855617}}, null] +[[0, 0, 17], 9.0, {"submitted": 1558193459.02493, "started": 1558193459.025575, "finished": 1558193459.034}, {"loss": 0.4700322792963279, "info": {"x0": -4.630416576605677, "x1": 3.643340213966404, "x2": 4.927712992123336, "x3": -1.2083389169222651, "x4": 3.8373976028603547, "x5": 0.0942700985351137}}, null] +[[0, 0, 18], 9.0, {"submitted": 1558193459.098038, "started": 1558193459.098492, "finished": 1558193459.1062613}, {"loss": 0.31500000081049123, "info": {"x0": -2.934707236876548, "x1": 7.607539623309612, "x2": 4.674801926360942, "x3": -1.8457023071144416, "x4": 2.1070432519612488, "x5": 0.33444305067581326}}, null] +[[0, 0, 19], 9.0, {"submitted": 1558193459.1119335, "started": 1558193459.1123037, "finished": 1558193459.1246316}, {"loss": 0.3190405891232221, "info": {"x0": -2.0606907041803555, "x1": 5.885864862507947, "x2": 5.501375238935658, "x3": -0.981978901214168, "x4": 4.989756949857824, "x5": 0.15466148615506642}}, null] +[[0, 0, 20], 9.0, {"submitted": 1558193459.1337612, "started": 1558193459.134445, "finished": 1558193459.1412823}, {"loss": 0.39826567969260906, "info": {"x0": -2.026260735464363, "x1": 5.087601351914011, "x2": 7.451209692529209, "x3": -2.2583851029992568, "x4": 3.325077422385999, "x5": 0.4758710789298372}}, null] +[[0, 0, 21], 9.0, {"submitted": 1558193459.2164297, "started": 1558193459.2169058, "finished": 1558193459.2272384}, {"loss": 0.3117666063997963, "info": {"x0": -2.286357851836223, "x1": 4.625917348805006, "x2": 4.445854685309489, "x3": -1.4581745777823052, "x4": 1.2308731354232962, "x5": 0.09964217949132945}}, null] +[[0, 0, 22], 9.0, {"submitted": 1558193459.2339442, "started": 1558193459.234849, "finished": 1558193459.242406}, {"loss": 0.4699215858534142, "info": {"x0": -5.100156041290305, "x1": 6.255687759001757, "x2": 4.837157583813237, "x3": -0.4554374227514666, "x4": 2.33568238084909, "x5": 0.3556976181749999}}, null] +[[0, 0, 23], 9.0, {"submitted": 1558193459.245755, "started": 1558193459.246108, "finished": 1558193459.2549138}, {"loss": 0.35661899162978755, "info": {"x0": -3.2629264840880032, "x1": 4.1753502710366615, "x2": 6.683826116106845, "x3": -0.7701691239217658, "x4": 4.54369781686186, "x5": 0.24571484633467783}}, null] +[[0, 0, 24], 9.0, {"submitted": 1558193459.333184, "started": 1558193459.3335838, "finished": 1558193459.3397458}, {"loss": 0.32797509043336576, "info": {"x0": -2.1195434156088604, "x1": 4.468623174024142, "x2": 4.862073959397191, "x3": -0.5483486022154236, "x4": 1.7713658238619236, "x5": 0.03605464491220332}}, null] +[[0, 0, 25], 9.0, {"submitted": 1558193459.342903, "started": 1558193459.3432696, "finished": 1558193459.3514853}, {"loss": 0.40145756512962805, "info": {"x0": -4.287233129142184, "x1": 7.748870560786641, "x2": 7.114102537186443, "x3": -3.8483278409575203, "x4": 4.149805662103357, "x5": 0.2348604596463914}}, null] +[[0, 0, 26], 9.0, {"submitted": 1558193459.3562694, "started": 1558193459.3568056, "finished": 1558193459.365052}, {"loss": 0.39862545944396344, "info": {"x0": -4.689394416854018, "x1": 4.360024731786476, "x2": 6.909233554329504, "x3": -1.8963348425057394, "x4": 2.1446469890260014, "x5": 0.06681728996947184}}, null] +[[0, 0, 0], 27.0, {"submitted": 1558193459.3711274, "started": 1558193459.3714802, "finished": 1558193459.378415}, {"loss": 0.3013837632831063, "info": {"x0": -2.0263861777237167, "x1": 6.659153761153015, "x2": 5.870370262429812, "x3": -1.4763615274168673, "x4": 1.3997020682824401, "x5": 0.4277356880906134}}, null] +[[0, 0, 3], 27.0, {"submitted": 1558193459.379759, "started": 1558193459.3804011, "finished": 1558193459.3878808}, {"loss": 0.29054427310336395, "info": {"x0": -2.4976623575964205, "x1": 5.681876290429942, "x2": 4.377246929616955, "x3": -1.1747165682970375, "x4": 1.5776074748389606, "x5": 0.12703265453319024}}, null] +[[0, 0, 7], 27.0, {"submitted": 1558193459.3896458, "started": 1558193459.3900104, "finished": 1558193459.3993845}, {"loss": 0.28787822373032684, "info": {"x0": -2.3596415457219546, "x1": 5.025732795742619, "x2": 6.44564487134133, "x3": -0.5228410981020764, "x4": 1.8980698536498393, "x5": 0.03135735426212066}}, null] +[[0, 0, 11], 27.0, {"submitted": 1558193459.4025273, "started": 1558193459.4029717, "finished": 1558193459.409894}, {"loss": 0.2976337639628686, "info": {"x0": -3.1795363734297486, "x1": 5.644731988973957, "x2": 6.361420398308525, "x3": -1.8084507474432758, "x4": 2.0900513123176667, "x5": 0.4788400539660615}}, null] +[[0, 0, 14], 27.0, {"submitted": 1558193459.4116151, "started": 1558193459.4119182, "finished": 1558193459.4203494}, {"loss": 0.29799815003732666, "info": {"x0": -2.859175946011128, "x1": 6.4377436446295935, "x2": 6.555911175823076, "x3": -1.1845566516907757, "x4": 2.131345852462681, "x5": 0.001678712188158793}}, null] +[[0, 0, 15], 27.0, {"submitted": 1558193459.4246607, "started": 1558193459.4251466, "finished": 1558193459.4373872}, {"loss": 0.32241236051180266, "info": {"x0": -2.696258821073748, "x1": 7.956565482711734, "x2": 4.910549509350702, "x3": -1.512370459709714, "x4": 1.8821290822857484, "x5": 0.4798897078384192}}, null] +[[0, 0, 18], 27.0, {"submitted": 1558193459.441503, "started": 1558193459.441858, "finished": 1558193459.4476793}, {"loss": 0.3078182667191398, "info": {"x0": -2.934707236876548, "x1": 7.607539623309612, "x2": 4.674801926360942, "x3": -1.8457023071144416, "x4": 2.1070432519612488, "x5": 0.33444305067581326}}, null] +[[0, 0, 19], 27.0, {"submitted": 1558193459.4494042, "started": 1558193459.4498024, "finished": 1558193459.4593341}, {"loss": 0.30059501687882684, "info": {"x0": -2.0606907041803555, "x1": 5.885864862507947, "x2": 5.501375238935658, "x3": -0.981978901214168, "x4": 4.989756949857824, "x5": 0.15466148615506642}}, null] +[[0, 0, 21], 27.0, {"submitted": 1558193459.46448, "started": 1558193459.4655263, "finished": 1558193459.4726582}, {"loss": 0.299317343915603, "info": {"x0": -2.286357851836223, "x1": 4.625917348805006, "x2": 4.445854685309489, "x3": -1.4581745777823052, "x4": 1.2308731354232962, "x5": 0.09964217949132945}}, null] +[[0, 0, 3], 81.0, {"submitted": 1558193459.4749308, "started": 1558193459.4752572, "finished": 1558193459.4805937}, {"loss": 0.28847324028226284, "info": {"x0": -2.4976623575964205, "x1": 5.681876290429942, "x2": 4.377246929616955, "x3": -1.1747165682970375, "x4": 1.5776074748389606, "x5": 0.12703265453319024}}, null] +[[0, 0, 7], 81.0, {"submitted": 1558193459.4826927, "started": 1558193459.483037, "finished": 1558193459.491768}, {"loss": 0.2949169692398493, "info": {"x0": -2.3596415457219546, "x1": 5.025732795742619, "x2": 6.44564487134133, "x3": -0.5228410981020764, "x4": 1.8980698536498393, "x5": 0.03135735426212066}}, null] +[[0, 0, 11], 81.0, {"submitted": 1558193459.4946337, "started": 1558193459.4950986, "finished": 1558193459.5039985}, {"loss": 0.2936208487237456, "info": {"x0": -3.1795363734297486, "x1": 5.644731988973957, "x2": 6.361420398308525, "x3": -1.8084507474432758, "x4": 2.0900513123176667, "x5": 0.4788400539660615}}, null] +[[0, 0, 3], 243.0, {"submitted": 1558193459.5082123, "started": 1558193459.5087566, "finished": 1558193459.515538}, {"loss": 0.28847324028226284, "info": {"x0": -2.4976623575964205, "x1": 5.681876290429942, "x2": 4.377246929616955, "x3": -1.1747165682970375, "x4": 1.5776074748389606, "x5": 0.12703265453319024}}, null] +[[1, 0, 0], 27.0, {"submitted": 1558193459.5905464, "started": 1558193459.5909884, "finished": 1558193459.5986245}, {"loss": 0.30503689289148, "info": {"x0": -2.4614151927141634, "x1": 3.5926398658323246, "x2": 6.879777396222359, "x3": -0.3158857960544079, "x4": 1.9133273218575115, "x5": 0.18288242765208002}}, null] +[[1, 0, 1], 27.0, {"submitted": 1558193459.6734166, "started": 1558193459.6737585, "finished": 1558193459.6795542}, {"loss": 0.30154520143277097, "info": {"x0": -2.6599893893758466, "x1": 7.852379499297441, "x2": 4.510045615303402, "x3": -1.5477329003307783, "x4": 1.7393347015640594, "x5": 0.04567392300288607}}, null] +[[1, 0, 2], 27.0, {"submitted": 1558193459.7527964, "started": 1558193459.7532475, "finished": 1558193459.7608578}, {"loss": 0.2922186309794768, "info": {"x0": -2.182280414824603, "x1": 6.899535717274354, "x2": 7.248567488336611, "x3": -1.5193861797533557, "x4": 1.1160242775685223, "x5": 0.27899511903326346}}, null] +[[1, 0, 3], 27.0, {"submitted": 1558193459.8354192, "started": 1558193459.8360543, "finished": 1558193459.8432825}, {"loss": 0.301217712985551, "info": {"x0": -2.6631559991172122, "x1": 5.6994726394088, "x2": 4.332723925929634, "x3": -1.2693419782399702, "x4": 1.1283609374272408, "x5": 0.24720722150775196}}, null] +[[1, 0, 4], 27.0, {"submitted": 1558193459.9164083, "started": 1558193459.9167247, "finished": 1558193459.9268475}, {"loss": 0.33585793182989276, "info": {"x0": -2.143750387992588, "x1": 4.964074734676856, "x2": 5.662993756447271, "x3": -2.1362532916239436, "x4": 1.198827771388046, "x5": 0.4021019109824979}}, null] +[[1, 0, 5], 27.0, {"submitted": 1558193460.0046737, "started": 1558193460.0052874, "finished": 1558193460.011293}, {"loss": 0.2980212173272763, "info": {"x0": -2.1090485219930577, "x1": 4.577509824149125, "x2": 5.29987756128169, "x3": -2.006560594255964, "x4": 4.755903160669076, "x5": 0.01867770001935551}}, null] +[[1, 0, 6], 27.0, {"submitted": 1558193460.0918486, "started": 1558193460.0922556, "finished": 1558193460.1000636}, {"loss": 0.39771679268277, "info": {"x0": -4.888546908203655, "x1": 7.063901184411666, "x2": 7.683375132338, "x3": -0.23412883376199778, "x4": 3.6670501650744285, "x5": 0.025102854208025382}}, null] +[[1, 0, 7], 27.0, {"submitted": 1558193460.1810749, "started": 1558193460.1817188, "finished": 1558193460.189076}, {"loss": 0.34084409060786036, "info": {"x0": -2.2239609602785917, "x1": 4.137618744560363, "x2": 5.983907711999036, "x3": -1.9457168390793291, "x4": 4.941949446206044, "x5": 0.016898303884356217}}, null] +[[1, 0, 8], 27.0, {"submitted": 1558193460.2704785, "started": 1558193460.2712343, "finished": 1558193460.2788227}, {"loss": 0.2934225076450743, "info": {"x0": -3.010321247558685, "x1": 6.6981351080015665, "x2": 6.8062620229147255, "x3": -1.7385342608384087, "x4": 1.9969822832066424, "x5": 0.019143430856598975}}, null] +[[1, 0, 2], 81.0, {"submitted": 1558193460.283063, "started": 1558193460.2838094, "finished": 1558193460.293095}, {"loss": 0.29186807728107894, "info": {"x0": -2.182280414824603, "x1": 6.899535717274354, "x2": 7.248567488336611, "x3": -1.5193861797533557, "x4": 1.1160242775685223, "x5": 0.27899511903326346}}, null] +[[1, 0, 5], 81.0, {"submitted": 1558193460.2990022, "started": 1558193460.3030875, "finished": 1558193460.3094306}, {"loss": 0.29032749021845106, "info": {"x0": -2.1090485219930577, "x1": 4.577509824149125, "x2": 5.29987756128169, "x3": -2.006560594255964, "x4": 4.755903160669076, "x5": 0.01867770001935551}}, null] +[[1, 0, 8], 81.0, {"submitted": 1558193460.3112302, "started": 1558193460.3116896, "finished": 1558193460.318512}, {"loss": 0.297103319466114, "info": {"x0": -3.010321247558685, "x1": 6.6981351080015665, "x2": 6.8062620229147255, "x3": -1.7385342608384087, "x4": 1.9969822832066424, "x5": 0.019143430856598975}}, null] +[[1, 0, 5], 243.0, {"submitted": 1558193460.3209772, "started": 1558193460.3214056, "finished": 1558193460.3282351}, {"loss": 0.2954012913069931, "info": {"x0": -2.1090485219930577, "x1": 4.577509824149125, "x2": 5.29987756128169, "x3": -2.006560594255964, "x4": 4.755903160669076, "x5": 0.01867770001935551}}, null] +[[2, 0, 0], 81.0, {"submitted": 1558193460.410382, "started": 1558193460.4107246, "finished": 1558193460.4165392}, {"loss": 0.2897001829258135, "info": {"x0": -2.2288570209604894, "x1": 6.31607424426465, "x2": 7.811222882861118, "x3": -1.7296589934171038, "x4": 1.313674094117125, "x5": 0.2156667232234152}}, null] +[[2, 0, 1], 81.0, {"submitted": 1558193460.4839723, "started": 1558193460.4845455, "finished": 1558193460.4937336}, {"loss": 0.3009594100526777, "info": {"x0": -3.503028771662402, "x1": 6.698734081715319, "x2": 6.919656218659281, "x3": -1.0355752207459545, "x4": 1.952895886569028, "x5": 0.030068666927604487}}, null] +[[2, 0, 2], 81.0, {"submitted": 1558193460.567505, "started": 1558193460.5681367, "finished": 1558193460.575598}, {"loss": 0.299898519316805, "info": {"x0": -2.3436313008110004, "x1": 6.974431846306089, "x2": 7.899260356951196, "x3": -1.8973584936613452, "x4": 2.3130935810467994, "x5": 0.004113897700982198}}, null] +[[2, 0, 3], 81.0, {"submitted": 1558193460.6525657, "started": 1558193460.6529815, "finished": 1558193460.6596851}, {"loss": 0.30906364673934184, "info": {"x0": -3.7346203917753615, "x1": 5.897184767702436, "x2": 7.111658910917614, "x3": -1.7351965142109935, "x4": 2.2824484174698436, "x5": 0.0753579727465743}}, null] +[[2, 0, 4], 81.0, {"submitted": 1558193460.7278316, "started": 1558193460.7283585, "finished": 1558193460.7358224}, {"loss": 0.2905073796834013, "info": {"x0": -3.0697038859426407, "x1": 7.654330082886387, "x2": 7.188236056964455, "x3": -2.2234018979833134, "x4": 3.521233493172617, "x5": 0.12825799335467075}}, null] +[[2, 0, 5], 81.0, {"submitted": 1558193460.7396035, "started": 1558193460.740087, "finished": 1558193460.7465162}, {"loss": 0.3081365330393574, "info": {"x0": -2.6269174204263153, "x1": 6.958610463720286, "x2": 5.191387525396603, "x3": -1.166187802921589, "x4": 4.438731767206525, "x5": 0.4219828924282723}}, null] +[[2, 0, 0], 243.0, {"submitted": 1558193460.7492867, "started": 1558193460.7496605, "finished": 1558193460.7627819}, {"loss": 0.2897001829258135, "info": {"x0": -2.2288570209604894, "x1": 6.31607424426465, "x2": 7.811222882861118, "x3": -1.7296589934171038, "x4": 1.313674094117125, "x5": 0.2156667232234152}}, null] +[[2, 0, 4], 243.0, {"submitted": 1558193460.765424, "started": 1558193460.76592, "finished": 1558193460.774894}, {"loss": 0.2910793355613177, "info": {"x0": -3.0697038859426407, "x1": 7.654330082886387, "x2": 7.188236056964455, "x3": -2.2234018979833134, "x4": 3.521233493172617, "x5": 0.12825799335467075}}, null] +[[3, 0, 0], 243.0, {"submitted": 1558193460.8472035, "started": 1558193460.8475757, "finished": 1558193460.8559988}, {"loss": 0.28856549731008985, "info": {"x0": -2.483656095307655, "x1": 7.145151709347788, "x2": 7.637674310988877, "x3": -1.8490232452299789, "x4": 2.7840149184107963, "x5": 0.1168898904447585}}, null] +[[3, 0, 1], 243.0, {"submitted": 1558193460.858568, "started": 1558193460.8590562, "finished": 1558193460.869396}, {"loss": 0.3692435378740745, "info": {"x0": -4.063242760424682, "x1": 4.542867323658927, "x2": 4.11804535037119, "x3": -1.1845306666116389, "x4": 1.7766723464187453, "x5": 0.38152605732732064}}, null] +[[3, 0, 2], 243.0, {"submitted": 1558193460.872852, "started": 1558193460.8733923, "finished": 1558193460.882754}, {"loss": 0.2883717668735563, "info": {"x0": -2.128770067705268, "x1": 4.973952166102219, "x2": 4.2523964778589285, "x3": -2.520683510880405, "x4": 4.465689756935527, "x5": 0.20634748741418307}}, null] +[[3, 0, 3], 243.0, {"submitted": 1558193460.9583614, "started": 1558193460.9587274, "finished": 1558193460.971746}, {"loss": 0.30504151155512327, "info": {"x0": -2.5824577371261737, "x1": 7.519708166705529, "x2": 7.817949338071022, "x3": -1.921370209933265, "x4": 2.508270770677478, "x5": 0.011778177439403514}}, null] +[[4, 0, 0], 9.0, {"submitted": 1558193460.9761782, "started": 1558193460.9767342, "finished": 1558193460.98341}, {"loss": 0.393500916824274, "info": {"x0": -3.4800183611768136, "x1": 3.5387849720079374, "x2": 4.6286977041463775, "x3": -2.219062024762391, "x4": 4.0719782168120915, "x5": 0.151197881526968}}, null] +[[4, 0, 1], 9.0, {"submitted": 1558193460.9863954, "started": 1558193460.9868927, "finished": 1558193460.9949236}, {"loss": 0.32235700846474435, "info": {"x0": -2.406453262261295, "x1": 4.0963372398460045, "x2": 7.222889408430211, "x3": -3.5882012821175424, "x4": 1.1594367130224783, "x5": 0.36737500873688594}}, null] +[[4, 0, 2], 9.0, {"submitted": 1558193461.063128, "started": 1558193461.0635085, "finished": 1558193461.0722363}, {"loss": 0.30036438475359517, "info": {"x0": -2.8943679375440006, "x1": 7.18130054939887, "x2": 6.714085010445078, "x3": -1.0118281911102702, "x4": 3.19294795597477, "x5": 0.1708740129751064}}, null] +[[4, 0, 3], 9.0, {"submitted": 1558193461.074855, "started": 1558193461.0752678, "finished": 1558193461.082952}, {"loss": 0.3805488923762502, "info": {"x0": -3.1869831331669793, "x1": 4.571669247317451, "x2": 4.681930812284902, "x3": -3.622795316471512, "x4": 4.236425252397224, "x5": 0.3311734449069209}}, null] +[[4, 0, 4], 9.0, {"submitted": 1558193461.1585672, "started": 1558193461.1589673, "finished": 1558193461.1672683}, {"loss": 0.3121033224158291, "info": {"x0": -3.00395326484072, "x1": 6.415826885767848, "x2": 7.215970049756196, "x3": -2.7340484061878607, "x4": 1.2340142505203788, "x5": 0.0862311527594567}}, null] +[[4, 0, 5], 9.0, {"submitted": 1558193461.2474155, "started": 1558193461.2481053, "finished": 1558193461.2559419}, {"loss": 0.32088099149801524, "info": {"x0": -3.418077080988923, "x1": 6.589799007942117, "x2": 7.632808507306772, "x3": -2.2101334564176582, "x4": 1.9793969143695194, "x5": 0.1134364686246524}}, null] +[[4, 0, 6], 9.0, {"submitted": 1558193461.3310528, "started": 1558193461.331593, "finished": 1558193461.3396714}, {"loss": 0.29993541843914234, "info": {"x0": -2.8566588740804892, "x1": 7.133016288101486, "x2": 7.7006974503785655, "x3": -1.4871032435613185, "x4": 2.2224833156635615, "x5": 0.022837805243833498}}, null] +[[4, 0, 7], 9.0, {"submitted": 1558193461.3422308, "started": 1558193461.342712, "finished": 1558193461.3502076}, {"loss": 0.36895294619964714, "info": {"x0": -4.077239441407158, "x1": 7.0997327401382915, "x2": 7.889630292410468, "x3": -1.7822911995215867, "x4": 2.77209223841005, "x5": 0.0627951081039001}}, null] +[[4, 0, 8], 9.0, {"submitted": 1558193461.4263716, "started": 1558193461.426737, "finished": 1558193461.4350703}, {"loss": 0.30744003329082387, "info": {"x0": -2.191090403989293, "x1": 7.910784371068284, "x2": 7.789816173418196, "x3": -1.335547450485052, "x4": 2.142597100064952, "x5": 0.23864516029108643}}, null] +[[4, 0, 9], 9.0, {"submitted": 1558193461.4411886, "started": 1558193461.4417987, "finished": 1558193461.448734}, {"loss": 0.48109778316629664, "info": {"x0": -5.481049188163645, "x1": 7.070177798350399, "x2": 6.793075327436714, "x3": -0.2640419445327855, "x4": 3.9923777440545534, "x5": 0.2877740548271952}}, null] +[[4, 0, 10], 9.0, {"submitted": 1558193461.5216162, "started": 1558193461.5220416, "finished": 1558193461.5296938}, {"loss": 0.3320756459687029, "info": {"x0": -3.4747834041837358, "x1": 7.766149715140323, "x2": 7.708805323847617, "x3": -2.350231446987725, "x4": 1.972706111435524, "x5": 0.16924780319478872}}, null] +[[4, 0, 11], 9.0, {"submitted": 1558193461.6001492, "started": 1558193461.6006343, "finished": 1558193461.6107168}, {"loss": 0.3340913235205071, "info": {"x0": -3.3068676082803887, "x1": 6.55394615538199, "x2": 7.755388549767414, "x3": -2.3176738849571343, "x4": 2.953181674746806, "x5": 0.20966619894058153}}, null] +[[4, 0, 12], 9.0, {"submitted": 1558193461.6832495, "started": 1558193461.6836765, "finished": 1558193461.6913605}, {"loss": 0.2976937274902894, "info": {"x0": -2.5894195050436557, "x1": 7.40101781685952, "x2": 7.338504266499547, "x3": -2.0788412274241606, "x4": 1.2265611720950678, "x5": 0.013745206345495586}}, null] +[[4, 0, 13], 9.0, {"submitted": 1558193461.6961727, "started": 1558193461.6966026, "finished": 1558193461.7090762}, {"loss": 0.4573708477903612, "info": {"x0": -4.665791629512881, "x1": 6.302123875027842, "x2": 4.87928182737377, "x3": -0.49369048178451136, "x4": 3.438831475599939, "x5": 0.4239174168838373}}, null] +[[4, 0, 14], 9.0, {"submitted": 1558193461.7794676, "started": 1558193461.7799408, "finished": 1558193461.7873812}, {"loss": 0.3273523943373638, "info": {"x0": -3.589353061370329, "x1": 7.036940826859286, "x2": 7.36300595117782, "x3": -2.2640536177142785, "x4": 2.2512027685443563, "x5": 0.0891053530008778}}, null] +[[4, 0, 15], 9.0, {"submitted": 1558193461.8589635, "started": 1558193461.8593583, "finished": 1558193461.8679638}, {"loss": 0.3153182630222359, "info": {"x0": -3.393836513178335, "x1": 5.9229621829608305, "x2": 6.777573622728453, "x3": -1.2471780112885829, "x4": 1.8716772028223911, "x5": 0.07174516386076485}}, null] +[[4, 0, 16], 9.0, {"submitted": 1558193461.9406826, "started": 1558193461.9411294, "finished": 1558193461.9474702}, {"loss": 0.31327490603846814, "info": {"x0": -3.0017213615932223, "x1": 6.226136229658622, "x2": 7.714933768718089, "x3": -1.2515980993482514, "x4": 2.9516353802011306, "x5": 0.07643506004059175}}, null] +[[4, 0, 17], 9.0, {"submitted": 1558193462.0239456, "started": 1558193462.024354, "finished": 1558193462.0321827}, {"loss": 0.29811807822312375, "info": {"x0": -2.3632435623812538, "x1": 7.672344068372547, "x2": 7.662207227026313, "x3": -1.046443056157968, "x4": 2.2941701131435037, "x5": 0.02129276261954577}}, null] +[[4, 0, 18], 9.0, {"submitted": 1558193462.0347471, "started": 1558193462.035262, "finished": 1558193462.0451405}, {"loss": 0.30291512644640084, "info": {"x0": -2.7232020902666108, "x1": 6.374986762648916, "x2": 6.342758798632123, "x3": -2.306777281296273, "x4": 2.741667525601763, "x5": 0.3281763812998515}}, null] +[[4, 0, 19], 9.0, {"submitted": 1558193462.0474548, "started": 1558193462.047816, "finished": 1558193462.054347}, {"loss": 0.4859271198549614, "info": {"x0": -5.026601378943247, "x1": 4.4158663530446365, "x2": 4.74562385731087, "x3": -0.9155555980781509, "x4": 3.624058429635143, "x5": 0.02425401484185613}}, null] +[[4, 0, 20], 9.0, {"submitted": 1558193462.1370368, "started": 1558193462.1375713, "finished": 1558193462.1446464}, {"loss": 0.3469418811904631, "info": {"x0": -3.32788116620132, "x1": 5.547978221963962, "x2": 7.439031743538517, "x3": -1.691467147029968, "x4": 2.522599066308917, "x5": 0.38964404099261296}}, null] +[[4, 0, 21], 9.0, {"submitted": 1558193462.147307, "started": 1558193462.1479013, "finished": 1558193462.159744}, {"loss": 0.36118080730024194, "info": {"x0": -4.216447774560955, "x1": 6.757978054084869, "x2": 6.723536716268709, "x3": -2.302860797899116, "x4": 2.0925877052008786, "x5": 0.08350425383737387}}, null] +[[4, 0, 22], 9.0, {"submitted": 1558193462.1626022, "started": 1558193462.1630132, "finished": 1558193462.1769125}, {"loss": 1, "info": {"x0": -3.129965743552313, "x1": 3.0207451829118037, "x2": 7.5636979179883435, "x3": -2.6567451504669886, "x4": 3.1619921044085397, "x5": 0.3627407026535754}}, null] +[[4, 0, 23], 9.0, {"submitted": 1558193462.2517955, "started": 1558193462.2521157, "finished": 1558193462.2612221}, {"loss": 0.3246309953039973, "info": {"x0": -3.345946833978137, "x1": 7.187762415165826, "x2": 7.0885780069108435, "x3": -1.5738806597601034, "x4": 2.4932901136749197, "x5": 0.20819903365056974}}, null] +[[4, 0, 24], 9.0, {"submitted": 1558193462.354173, "started": 1558193462.3545437, "finished": 1558193462.360741}, {"loss": 0.2980719489184281, "info": {"x0": -2.9264968257780577, "x1": 6.639897671924183, "x2": 7.010842609531215, "x3": -2.0131988062407444, "x4": 1.8697794162051173, "x5": 0.08593186039185194}}, null] +[[4, 0, 25], 9.0, {"submitted": 1558193462.4292538, "started": 1558193462.4296796, "finished": 1558193462.4422235}, {"loss": 0.2966466798839534, "info": {"x0": -2.521438077667485, "x1": 7.0361473674701625, "x2": 7.404744146506548, "x3": -1.1368784968105228, "x4": 1.454460175301415, "x5": 0.12296333209766906}}, null] +[[4, 0, 26], 9.0, {"submitted": 1558193462.444805, "started": 1558193462.44519, "finished": 1558193462.451535}, {"loss": 1, "info": {"x0": -4.490020600964556, "x1": 4.824033437860683, "x2": 7.565565257014873, "x3": -3.802148034931578, "x4": 4.9360162635190905, "x5": 0.12464785750447277}}, null] +[[4, 0, 2], 27.0, {"submitted": 1558193462.4545012, "started": 1558193462.455185, "finished": 1558193462.4682865}, {"loss": 0.2901291461216073, "info": {"x0": -2.8943679375440006, "x1": 7.18130054939887, "x2": 6.714085010445078, "x3": -1.0118281911102702, "x4": 3.19294795597477, "x5": 0.1708740129751064}}, null] +[[4, 0, 4], 27.0, {"submitted": 1558193462.4730306, "started": 1558193462.4735165, "finished": 1558193462.4797165}, {"loss": 0.30416051816126516, "info": {"x0": -3.00395326484072, "x1": 6.415826885767848, "x2": 7.215970049756196, "x3": -2.7340484061878607, "x4": 1.2340142505203788, "x5": 0.0862311527594567}}, null] +[[4, 0, 6], 27.0, {"submitted": 1558193462.4829967, "started": 1558193462.4833255, "finished": 1558193462.4919508}, {"loss": 0.2952905850249903, "info": {"x0": -2.8566588740804892, "x1": 7.133016288101486, "x2": 7.7006974503785655, "x3": -1.4871032435613185, "x4": 2.2224833156635615, "x5": 0.022837805243833498}}, null] +[[4, 0, 8], 27.0, {"submitted": 1558193462.4941185, "started": 1558193462.4945123, "finished": 1558193462.5047383}, {"loss": 0.2921402190783752, "info": {"x0": -2.191090403989293, "x1": 7.910784371068284, "x2": 7.789816173418196, "x3": -1.335547450485052, "x4": 2.142597100064952, "x5": 0.23864516029108643}}, null] +[[4, 0, 12], 27.0, {"submitted": 1558193462.508857, "started": 1558193462.5093112, "finished": 1558193462.515664}, {"loss": 0.29408210421262854, "info": {"x0": -2.5894195050436557, "x1": 7.40101781685952, "x2": 7.338504266499547, "x3": -2.0788412274241606, "x4": 1.2265611720950678, "x5": 0.013745206345495586}}, null] +[[4, 0, 17], 27.0, {"submitted": 1558193462.5195503, "started": 1558193462.5200026, "finished": 1558193462.5279598}, {"loss": 0.29311807797362555, "info": {"x0": -2.3632435623812538, "x1": 7.672344068372547, "x2": 7.662207227026313, "x3": -1.046443056157968, "x4": 2.2941701131435037, "x5": 0.02129276261954577}}, null] +[[4, 0, 18], 27.0, {"submitted": 1558193462.5306828, "started": 1558193462.5311117, "finished": 1558193462.5391226}, {"loss": 0.28935885424007457, "info": {"x0": -2.7232020902666108, "x1": 6.374986762648916, "x2": 6.342758798632123, "x3": -2.306777281296273, "x4": 2.741667525601763, "x5": 0.3281763812998515}}, null] +[[4, 0, 24], 27.0, {"submitted": 1558193462.541545, "started": 1558193462.54188, "finished": 1558193462.55003}, {"loss": 0.2903782230678849, "info": {"x0": -2.9264968257780577, "x1": 6.639897671924183, "x2": 7.010842609531215, "x3": -2.0131988062407444, "x4": 1.8697794162051173, "x5": 0.08593186039185194}}, null] +[[4, 0, 25], 27.0, {"submitted": 1558193462.5533087, "started": 1558193462.553671, "finished": 1558193462.5604272}, {"loss": 0.2927629151096313, "info": {"x0": -2.521438077667485, "x1": 7.0361473674701625, "x2": 7.404744146506548, "x3": -1.1368784968105228, "x4": 1.454460175301415, "x5": 0.12296333209766906}}, null] +[[4, 0, 2], 81.0, {"submitted": 1558193462.5639858, "started": 1558193462.5664065, "finished": 1558193462.57625}, {"loss": 0.2893450134239294, "info": {"x0": -2.8943679375440006, "x1": 7.18130054939887, "x2": 6.714085010445078, "x3": -1.0118281911102702, "x4": 3.19294795597477, "x5": 0.1708740129751064}}, null] +[[4, 0, 18], 81.0, {"submitted": 1558193462.578181, "started": 1558193462.578522, "finished": 1558193462.5938094}, {"loss": 0.28630996090610855, "info": {"x0": -2.7232020902666108, "x1": 6.374986762648916, "x2": 6.342758798632123, "x3": -2.306777281296273, "x4": 2.741667525601763, "x5": 0.3281763812998515}}, null] +[[4, 0, 24], 81.0, {"submitted": 1558193462.5967789, "started": 1558193462.5998414, "finished": 1558193462.6090376}, {"loss": 0.28980165451600104, "info": {"x0": -2.9264968257780577, "x1": 6.639897671924183, "x2": 7.010842609531215, "x3": -2.0131988062407444, "x4": 1.8697794162051173, "x5": 0.08593186039185194}}, null] +[[4, 0, 18], 243.0, {"submitted": 1558193462.6115217, "started": 1558193462.6118605, "finished": 1558193462.624573}, {"loss": 0.28630996090610855, "info": {"x0": -2.7232020902666108, "x1": 6.374986762648916, "x2": 6.342758798632123, "x3": -2.306777281296273, "x4": 2.741667525601763, "x5": 0.3281763812998515}}, null] +[[5, 0, 0], 27.0, {"submitted": 1558193462.7016547, "started": 1558193462.7021556, "finished": 1558193462.7106771}, {"loss": 0.2950230586152125, "info": {"x0": -2.469963092876212, "x1": 7.626479160956993, "x2": 5.381179685108224, "x3": -3.466707353613124, "x4": 4.539529634153057, "x5": 0.17329992824203616}}, null] +[[5, 0, 1], 27.0, {"submitted": 1558193462.7802362, "started": 1558193462.7806723, "finished": 1558193462.7884352}, {"loss": 0.30416974036277333, "info": {"x0": -2.4165285731000954, "x1": 3.6370111820385858, "x2": 5.144208330923048, "x3": -1.6443722210594824, "x4": 4.746144712394956, "x5": 0.03454811055789643}}, null] +[[5, 0, 2], 27.0, {"submitted": 1558193462.7913935, "started": 1558193462.791832, "finished": 1558193462.8002305}, {"loss": 0.35050276173876654, "info": {"x0": -3.898828795901624, "x1": 5.872715212893002, "x2": 6.677570990048551, "x3": -0.8213465168055705, "x4": 1.6064660684730931, "x5": 0.3541788491345903}}, null] +[[5, 0, 3], 27.0, {"submitted": 1558193462.8023481, "started": 1558193462.8027844, "finished": 1558193462.8117352}, {"loss": 0.3989944617864693, "info": {"x0": -4.201548855437444, "x1": 4.341933784486374, "x2": 4.151081630046375, "x3": -0.5288511441064259, "x4": 2.9171810608459796, "x5": 0.10519213333856914}}, null] +[[5, 0, 4], 27.0, {"submitted": 1558193462.8905647, "started": 1558193462.8910408, "finished": 1558193462.8989437}, {"loss": 0.2992066368414604, "info": {"x0": -2.42525108013901, "x1": 4.467347926055656, "x2": 6.389932323599992, "x3": -2.3942135699145632, "x4": 4.914520081726712, "x5": 0.08359482227342316}}, null] +[[5, 0, 5], 27.0, {"submitted": 1558193462.9663491, "started": 1558193462.966879, "finished": 1558193462.9746099}, {"loss": 0.31291973899335107, "info": {"x0": -2.937672496095567, "x1": 4.426592622903328, "x2": 4.25718656847659, "x3": -3.9247138642087656, "x4": 4.80950657496736, "x5": 0.1679151147388025}}, null] +[[5, 0, 6], 27.0, {"submitted": 1558193462.9770286, "started": 1558193462.977357, "finished": 1558193462.9843905}, {"loss": 0.45342250351395413, "info": {"x0": -5.51937580167089, "x1": 3.5867302390663234, "x2": 6.49052477470535, "x3": -3.186779441245162, "x4": 1.1867997047411536, "x5": 0.39125557540720307}}, null] +[[5, 0, 7], 27.0, {"submitted": 1558193462.9868853, "started": 1558193462.9873474, "finished": 1558193462.9946654}, {"loss": 0.3004474171156208, "info": {"x0": -2.5573826359842133, "x1": 7.359597203671404, "x2": 7.464656202198702, "x3": -2.9972067909014695, "x4": 4.83216333866492, "x5": 0.2222650551774204}}, null] +[[5, 0, 8], 27.0, {"submitted": 1558193463.0672224, "started": 1558193463.0678463, "finished": 1558193463.0764935}, {"loss": 0.29941881626053984, "info": {"x0": -2.5784550922821334, "x1": 3.8818951233379373, "x2": 5.23012366803211, "x3": -3.6697649488820225, "x4": 4.237544588197272, "x5": 0.13057304086371876}}, null] +[[5, 0, 0], 81.0, {"submitted": 1558193463.0782597, "started": 1558193463.0785942, "finished": 1558193463.0856683}, {"loss": 0.2945756416798077, "info": {"x0": -2.469963092876212, "x1": 7.626479160956993, "x2": 5.381179685108224, "x3": -3.466707353613124, "x4": 4.539529634153057, "x5": 0.17329992824203616}}, null] +[[5, 0, 4], 81.0, {"submitted": 1558193463.0882773, "started": 1558193463.088679, "finished": 1558193463.0953493}, {"loss": 0.28955719041050415, "info": {"x0": -2.42525108013901, "x1": 4.467347926055656, "x2": 6.389932323599992, "x3": -2.3942135699145632, "x4": 4.914520081726712, "x5": 0.08359482227342316}}, null] +[[5, 0, 8], 81.0, {"submitted": 1558193463.1006472, "started": 1558193463.1012452, "finished": 1558193463.1101975}, {"loss": 0.28943265405676, "info": {"x0": -2.5784550922821334, "x1": 3.8818951233379373, "x2": 5.23012366803211, "x3": -3.6697649488820225, "x4": 4.237544588197272, "x5": 0.13057304086371876}}, null] +[[5, 0, 8], 243.0, {"submitted": 1558193463.1124866, "started": 1558193463.1128166, "finished": 1558193463.118765}, {"loss": 0.2876475986647609, "info": {"x0": -2.5784550922821334, "x1": 3.8818951233379373, "x2": 5.23012366803211, "x3": -3.6697649488820225, "x4": 4.237544588197272, "x5": 0.13057304086371876}}, null] +[[6, 0, 0], 81.0, {"submitted": 1558193463.1219397, "started": 1558193463.1223297, "finished": 1558193463.1315541}, {"loss": 0.34953413238164677, "info": {"x0": -3.86670390127871, "x1": 7.800689975952974, "x2": 4.824875070924852, "x3": -0.005181512449878856, "x4": 4.73935886305021, "x5": 0.13684037007291822}}, null] +[[6, 0, 1], 81.0, {"submitted": 1558193463.137581, "started": 1558193463.138155, "finished": 1558193463.145893}, {"loss": 0.40595017834618075, "info": {"x0": -5.743698811370196, "x1": 5.011864611645958, "x2": 7.918492487351417, "x3": -3.691626682026762, "x4": 3.3723956647463993, "x5": 0.16846915524223438}}, null] +[[6, 0, 2], 81.0, {"submitted": 1558193463.1495962, "started": 1558193463.1499898, "finished": 1558193463.1579375}, {"loss": 0.3172001825413251, "info": {"x0": -3.9799067400953954, "x1": 7.284520002848888, "x2": 7.185599700384659, "x3": -0.9880738527275748, "x4": 3.307842916792532, "x5": 0.2577202487339603}}, null] +[[6, 0, 3], 81.0, {"submitted": 1558193463.1614208, "started": 1558193463.1617837, "finished": 1558193463.1756992}, {"loss": 0.3181411401050447, "info": {"x0": -3.7189047718600783, "x1": 4.156069020847443, "x2": 7.013631474357563, "x3": -1.2199775034324554, "x4": 3.0985400102710194, "x5": 0.3810422640217185}}, null] +[[6, 0, 4], 81.0, {"submitted": 1558193463.247381, "started": 1558193463.247831, "finished": 1558193463.2539005}, {"loss": 0.29603320627648555, "info": {"x0": -2.4860505677137246, "x1": 4.560007285115364, "x2": 4.040116497231097, "x3": -0.3834154270183192, "x4": 1.2544448221978355, "x5": 0.19516383226281517}}, null] +[[6, 0, 5], 81.0, {"submitted": 1558193463.3299112, "started": 1558193463.3303192, "finished": 1558193463.3384054}, {"loss": 0.28631457098440105, "info": {"x0": -2.6176536058202555, "x1": 4.08079144117318, "x2": 6.542205962990533, "x3": -3.618917938192939, "x4": 2.2460675175063183, "x5": 0.061443661093118614}}, null] +[[6, 0, 4], 243.0, {"submitted": 1558193463.3435154, "started": 1558193463.3442314, "finished": 1558193463.3521428}, {"loss": 0.29493080732306104, "info": {"x0": -2.4860505677137246, "x1": 4.560007285115364, "x2": 4.040116497231097, "x3": -0.3834154270183192, "x4": 1.2544448221978355, "x5": 0.19516383226281517}}, null] +[[6, 0, 5], 243.0, {"submitted": 1558193463.3558373, "started": 1558193463.3562446, "finished": 1558193463.3659902}, {"loss": 0.2892343118473392, "info": {"x0": -2.6176536058202555, "x1": 4.08079144117318, "x2": 6.542205962990533, "x3": -3.618917938192939, "x4": 2.2460675175063183, "x5": 0.061443661093118614}}, null] +[[7, 0, 0], 243.0, {"submitted": 1558193463.3688612, "started": 1558193463.3693614, "finished": 1558193463.3752193}, {"loss": 0.28392065743575506, "info": {"x0": -2.6201255622636, "x1": 4.08868662038171, "x2": 6.535682315508199, "x3": -3.476017100916555, "x4": 4.4276481880144924, "x5": 0.20533663628251098}}, null] +[[7, 0, 1], 243.0, {"submitted": 1558193463.3788033, "started": 1558193463.3792372, "finished": 1558193463.3887634}, {"loss": 0.3146402184490623, "info": {"x0": -4.279724351981785, "x1": 5.229399711839454, "x2": 7.627347740916792, "x3": -1.2126584076057338, "x4": 1.895411054259439, "x5": 0.00962417963613682}}, null] +[[7, 0, 2], 243.0, {"submitted": 1558193463.3920803, "started": 1558193463.3924692, "finished": 1558193463.402808}, {"loss": 0.41894833419860317, "info": {"x0": -5.97878769103308, "x1": 5.4066380532753175, "x2": 6.8767005697391355, "x3": -0.534446525097632, "x4": 4.498763093617541, "x5": 0.13065501189775697}}, null] +[[7, 0, 3], 243.0, {"submitted": 1558193463.4729488, "started": 1558193463.4734015, "finished": 1558193463.479657}, {"loss": 0.28959869981389424, "info": {"x0": -2.7454787598770807, "x1": 3.311669462727804, "x2": 6.27435832027062, "x3": -3.9578117919125124, "x4": 3.6136430026991153, "x5": 0.06358573390426503}}, null] +[[8, 0, 0], 9.0, {"submitted": 1558193463.553553, "started": 1558193463.5543377, "finished": 1558193463.5609863}, {"loss": 0.3129520239938064, "info": {"x0": -2.5985914071925444, "x1": 6.1537635899111685, "x2": 6.4057768611423445, "x3": -3.4756147880351826, "x4": 3.1117270434875266, "x5": 0.38443028444958494}}, null] +[[8, 0, 1], 9.0, {"submitted": 1558193463.6279304, "started": 1558193463.628338, "finished": 1558193463.6378212}, {"loss": 0.3111761972715054, "info": {"x0": -2.043945801406102, "x1": 6.298024989697497, "x2": 4.742453518442089, "x3": -3.1373723128757085, "x4": 4.956113560764525, "x5": 0.3496683854406715}}, null] +[[8, 0, 2], 9.0, {"submitted": 1558193463.7265365, "started": 1558193463.726897, "finished": 1558193463.736221}, {"loss": 0.3119142046374203, "info": {"x0": -2.766330822345811, "x1": 5.754458494107381, "x2": 5.8387425249605895, "x3": -2.4695382048017804, "x4": 2.5153031956348935, "x5": 0.3954527739743383}}, null] +[[8, 0, 3], 9.0, {"submitted": 1558193463.7400606, "started": 1558193463.7410383, "finished": 1558193463.7514365}, {"loss": 0.34433578941160026, "info": {"x0": -3.411945792257801, "x1": 6.143731789314333, "x2": 6.16959458363373, "x3": -2.39182241803908, "x4": 1.5736623012651267, "x5": 0.43571434210475046}}, null] +[[8, 0, 4], 9.0, {"submitted": 1558193463.8194435, "started": 1558193463.8198082, "finished": 1558193463.8270662}, {"loss": 0.3070110681932076, "info": {"x0": -2.737207498829953, "x1": 7.2569694980207275, "x2": 6.808041035444415, "x3": -2.4140866884886933, "x4": 2.692320868351892, "x5": 0.41314114226762144}}, null] +[[8, 0, 5], 9.0, {"submitted": 1558193463.8296137, "started": 1558193463.8322113, "finished": 1558193463.8452945}, {"loss": 0.4382933551184077, "info": {"x0": -4.19612385263423, "x1": 4.266024995422152, "x2": 5.725212788672776, "x3": -2.4392994140055215, "x4": 3.940487868575546, "x5": 0.4878874700426723}}, null] +[[8, 0, 6], 9.0, {"submitted": 1558193463.920525, "started": 1558193463.9209716, "finished": 1558193463.927756}, {"loss": 0.375871765822021, "info": {"x0": -2.1880003374356334, "x1": 4.07307801497252, "x2": 4.318846148136478, "x3": -1.845871092174188, "x4": 4.944933854321594, "x5": 0.27947774631215605}}, null] +[[8, 0, 7], 9.0, {"submitted": 1558193464.0024264, "started": 1558193464.0029523, "finished": 1558193464.0088823}, {"loss": 0.3164160477528108, "info": {"x0": -2.6418895229281296, "x1": 7.246438059175087, "x2": 6.0326455147439395, "x3": -3.070156945772563, "x4": 4.279925628209844, "x5": 0.46285918499151046}}, null] +[[8, 0, 8], 9.0, {"submitted": 1558193464.0814695, "started": 1558193464.0818298, "finished": 1558193464.0876675}, {"loss": 0.3190359694480456, "info": {"x0": -2.7037738762801857, "x1": 5.531106674127407, "x2": 6.684497423674748, "x3": -1.453533554878947, "x4": 4.21282390984486, "x5": 0.37658719074412883}}, null] +[[8, 0, 9], 9.0, {"submitted": 1558193464.1581104, "started": 1558193464.1585495, "finished": 1558193464.170231}, {"loss": 0.30672970247382775, "info": {"x0": -2.5913040088038235, "x1": 7.037705049108223, "x2": 4.565268536718326, "x3": -3.1817620156502855, "x4": 2.2396378177871, "x5": 0.3424974286455785}}, null] +[[8, 0, 10], 9.0, {"submitted": 1558193464.1738296, "started": 1558193464.1742756, "finished": 1558193464.1807053}, {"loss": 0.30624999665775476, "info": {"x0": -2.3616166867049904, "x1": 6.737534922277132, "x2": 5.249214533938174, "x3": -3.0841473885806003, "x4": 3.0748038565337987, "x5": 0.3925141393386525}}, null] +[[8, 0, 11], 9.0, {"submitted": 1558193464.185073, "started": 1558193464.185978, "finished": 1558193464.196473}, {"loss": 0.3016051607609235, "info": {"x0": -2.5320886386079655, "x1": 5.967340240503047, "x2": 4.375603123033872, "x3": -0.28011384318711263, "x4": 3.5712579000904596, "x5": 0.07829819023826257}}, null] +[[8, 0, 12], 9.0, {"submitted": 1558193464.2773204, "started": 1558193464.2778862, "finished": 1558193464.2842302}, {"loss": 0.30909132335032596, "info": {"x0": -2.7095335017277304, "x1": 6.520673660252767, "x2": 5.952117288587948, "x3": -2.8794317403799314, "x4": 4.4971463509821135, "x5": 0.3885065995456079}}, null] +[[8, 0, 13], 9.0, {"submitted": 1558193464.3694715, "started": 1558193464.3699584, "finished": 1558193464.3767245}, {"loss": 0.3075691877004461, "info": {"x0": -2.706861363836597, "x1": 7.850582520473044, "x2": 6.719810720960989, "x3": -2.8243745701693594, "x4": 1.740253421413798, "x5": 0.45010650357895005}}, null] +[[8, 0, 14], 9.0, {"submitted": 1558193464.379494, "started": 1558193464.3799496, "finished": 1558193464.3900464}, {"loss": 0.29511069429894, "info": {"x0": -2.1794896659308316, "x1": 6.426335157606653, "x2": 5.760315315885675, "x3": -2.001716121237226, "x4": 1.8481556895506217, "x5": 0.2903974875906918}}, null] +[[8, 0, 15], 9.0, {"submitted": 1558193464.393674, "started": 1558193464.3940837, "finished": 1558193464.4044628}, {"loss": 0.47252766831819226, "info": {"x0": -5.445501428284821, "x1": 3.6814385625430894, "x2": 6.577889994882185, "x3": -2.3446698164851747, "x4": 4.022919158455265, "x5": 0.14767593148693842}}, null] +[[8, 0, 16], 9.0, {"submitted": 1558193464.494515, "started": 1558193464.4951396, "finished": 1558193464.5069115}, {"loss": 0.3147739815773146, "info": {"x0": -2.734239883708705, "x1": 5.9121049040757025, "x2": 6.4814256695921735, "x3": -2.7532775252145525, "x4": 2.9720782213275445, "x5": 0.40387028785732976}}, null] +[[8, 0, 17], 9.0, {"submitted": 1558193464.514255, "started": 1558193464.5188308, "finished": 1558193464.530772}, {"loss": 0.48533671238748327, "info": {"x0": -5.168322435853217, "x1": 6.161045668381457, "x2": 4.414278726521061, "x3": -0.7387053891093327, "x4": 4.298734631372193, "x5": 0.42713076623261975}}, null] +[[8, 0, 18], 9.0, {"submitted": 1558193464.5346637, "started": 1558193464.535682, "finished": 1558193464.5459616}, {"loss": 0.4970571938592843, "info": {"x0": -5.999228967075146, "x1": 4.931693706825698, "x2": 5.200705881170059, "x3": -2.420989665768083, "x4": 2.119454192065801, "x5": 0.027153069423480725}}, null] +[[8, 0, 19], 9.0, {"submitted": 1558193464.6412442, "started": 1558193464.6417706, "finished": 1558193464.6491106}, {"loss": 0.3518219528919794, "info": {"x0": -2.529157107349097, "x1": 4.321524528316494, "x2": 6.135178727855971, "x3": -3.3185113473614916, "x4": 4.585565733011032, "x5": 0.3705762911474454}}, null] +[[8, 0, 20], 9.0, {"submitted": 1558193464.7305167, "started": 1558193464.7348125, "finished": 1558193464.7410054}, {"loss": 0.3397278556895762, "info": {"x0": -2.1102593370372, "x1": 5.144832363003079, "x2": 4.622773962358909, "x3": -2.241485819471592, "x4": 4.6213084655316825, "x5": 0.33826513579009154}}, null] +[[8, 0, 21], 9.0, {"submitted": 1558193464.7454264, "started": 1558193464.746017, "finished": 1558193464.7586987}, {"loss": 0.3376983358599658, "info": {"x0": -2.2765468648695513, "x1": 7.276059275319584, "x2": 7.312600878548024, "x3": -3.923780776170379, "x4": 4.736978874694504, "x5": 0.2744344009187195}}, null] +[[8, 0, 22], 9.0, {"submitted": 1558193464.762098, "started": 1558193464.7626915, "finished": 1558193464.7748764}, {"loss": 0.48091788869522983, "info": {"x0": -5.759618359440984, "x1": 6.305833454634513, "x2": 5.455762433040462, "x3": -0.09882216790677356, "x4": 4.83175532443751, "x5": 0.14799809927141472}}, null] +[[8, 0, 23], 9.0, {"submitted": 1558193464.873201, "started": 1558193464.8736916, "finished": 1558193464.8804348}, {"loss": 0.3228689973567685, "info": {"x0": -2.594445931993384, "x1": 5.714806710982373, "x2": 6.756707014104182, "x3": -1.625633634138417, "x4": 3.526799093739178, "x5": 0.3907786358683769}}, null] +[[8, 0, 24], 9.0, {"submitted": 1558193464.980319, "started": 1558193464.980903, "finished": 1558193464.9932315}, {"loss": 0.3324354204424138, "info": {"x0": -2.079662769642969, "x1": 5.4881740756098045, "x2": 5.055810604075672, "x3": -1.6527739297190314, "x4": 4.703829759019266, "x5": 0.34475658376048046}}, null] +[[8, 0, 25], 9.0, {"submitted": 1558193464.9959512, "started": 1558193464.9965453, "finished": 1558193465.0092638}, {"loss": 0.475857930364211, "info": {"x0": -5.100899628297006, "x1": 3.797742841671653, "x2": 5.263001699767278, "x3": -0.6389903480254246, "x4": 1.614981136762843, "x5": 0.20698736411851937}}, null] +[[8, 0, 26], 9.0, {"submitted": 1558193465.1026592, "started": 1558193465.103162, "finished": 1558193465.1170862}, {"loss": 0.343159589285574, "info": {"x0": -2.657390132702856, "x1": 5.01010096723459, "x2": 6.0449819156163205, "x3": -3.153332847090573, "x4": 4.225686445751723, "x5": 0.48132296828484195}}, null] +[[8, 0, 1], 27.0, {"submitted": 1558193465.1205344, "started": 1558193465.1213996, "finished": 1558193465.133756}, {"loss": 0.3001475990148488, "info": {"x0": -2.043945801406102, "x1": 6.298024989697497, "x2": 4.742453518442089, "x3": -3.1373723128757085, "x4": 4.956113560764525, "x5": 0.3496683854406715}}, null] +[[8, 0, 2], 27.0, {"submitted": 1558193465.1366346, "started": 1558193465.1369712, "finished": 1558193465.1478703}, {"loss": 0.2962868983994111, "info": {"x0": -2.766330822345811, "x1": 5.754458494107381, "x2": 5.8387425249605895, "x3": -2.4695382048017804, "x4": 2.5153031956348935, "x5": 0.3954527739743383}}, null] +[[8, 0, 4], 27.0, {"submitted": 1558193465.152134, "started": 1558193465.1585388, "finished": 1558193465.168643}, {"loss": 0.29323800567049546, "info": {"x0": -2.737207498829953, "x1": 7.2569694980207275, "x2": 6.808041035444415, "x3": -2.4140866884886933, "x4": 2.692320868351892, "x5": 0.41314114226762144}}, null] +[[8, 0, 9], 27.0, {"submitted": 1558193465.1722562, "started": 1558193465.1730998, "finished": 1558193465.1835227}, {"loss": 0.3008487056573763, "info": {"x0": -2.5913040088038235, "x1": 7.037705049108223, "x2": 4.565268536718326, "x3": -3.1817620156502855, "x4": 2.2396378177871, "x5": 0.3424974286455785}}, null] +[[8, 0, 10], 27.0, {"submitted": 1558193465.185331, "started": 1558193465.1857162, "finished": 1558193465.1970499}, {"loss": 0.2979935390885053, "info": {"x0": -2.3616166867049904, "x1": 6.737534922277132, "x2": 5.249214533938174, "x3": -3.0841473885806003, "x4": 3.0748038565337987, "x5": 0.3925141393386525}}, null] +[[8, 0, 11], 27.0, {"submitted": 1558193465.2029228, "started": 1558193465.203977, "finished": 1558193465.214346}, {"loss": 0.29137914590537545, "info": {"x0": -2.5320886386079655, "x1": 5.967340240503047, "x2": 4.375603123033872, "x3": -0.28011384318711263, "x4": 3.5712579000904596, "x5": 0.07829819023826257}}, null] +[[8, 0, 12], 27.0, {"submitted": 1558193465.216037, "started": 1558193465.216406, "finished": 1558193465.2272928}, {"loss": 0.2961162308805599, "info": {"x0": -2.7095335017277304, "x1": 6.520673660252767, "x2": 5.952117288587948, "x3": -2.8794317403799314, "x4": 4.4971463509821135, "x5": 0.3885065995456079}}, null] +[[8, 0, 13], 27.0, {"submitted": 1558193465.2292335, "started": 1558193465.229695, "finished": 1558193465.2426274}, {"loss": 0.29782748992194, "info": {"x0": -2.706861363836597, "x1": 7.850582520473044, "x2": 6.719810720960989, "x3": -2.8243745701693594, "x4": 1.740253421413798, "x5": 0.45010650357895005}}, null] +[[8, 0, 14], 27.0, {"submitted": 1558193465.2440667, "started": 1558193465.2471201, "finished": 1558193465.257063}, {"loss": 0.28727397848099356, "info": {"x0": -2.1794896659308316, "x1": 6.426335157606653, "x2": 5.760315315885675, "x3": -2.001716121237226, "x4": 1.8481556895506217, "x5": 0.2903974875906918}}, null] +[[8, 0, 4], 81.0, {"submitted": 1558193465.263107, "started": 1558193465.2636533, "finished": 1558193465.2742953}, {"loss": 0.29159132623742595, "info": {"x0": -2.737207498829953, "x1": 7.2569694980207275, "x2": 6.808041035444415, "x3": -2.4140866884886933, "x4": 2.692320868351892, "x5": 0.41314114226762144}}, null] +[[8, 0, 11], 81.0, {"submitted": 1558193465.2762456, "started": 1558193465.2767558, "finished": 1558193465.289932}, {"loss": 0.28720479265446486, "info": {"x0": -2.5320886386079655, "x1": 5.967340240503047, "x2": 4.375603123033872, "x3": -0.28011384318711263, "x4": 3.5712579000904596, "x5": 0.07829819023826257}}, null] +[[8, 0, 14], 81.0, {"submitted": 1558193465.2924438, "started": 1558193465.2928274, "finished": 1558193465.3015108}, {"loss": 0.2863468559245782, "info": {"x0": -2.1794896659308316, "x1": 6.426335157606653, "x2": 5.760315315885675, "x3": -2.001716121237226, "x4": 1.8481556895506217, "x5": 0.2903974875906918}}, null] +[[8, 0, 14], 243.0, {"submitted": 1558193465.303564, "started": 1558193465.3040001, "finished": 1558193465.3131506}, {"loss": 0.2863468559245782, "info": {"x0": -2.1794896659308316, "x1": 6.426335157606653, "x2": 5.760315315885675, "x3": -2.001716121237226, "x4": 1.8481556895506217, "x5": 0.2903974875906918}}, null] +[[9, 0, 0], 27.0, {"submitted": 1558193465.4086025, "started": 1558193465.409002, "finished": 1558193465.4164596}, {"loss": 0.29620387374763674, "info": {"x0": -2.7334372366383537, "x1": 6.701972372155664, "x2": 6.349802742612372, "x3": -1.8098261083873277, "x4": 3.4238475745650403, "x5": 0.4758038669140825}}, null] +[[9, 0, 1], 27.0, {"submitted": 1558193465.5142348, "started": 1558193465.515371, "finished": 1558193465.5277903}, {"loss": 0.2957979657345991, "info": {"x0": -2.3048350964441244, "x1": 6.261431931547244, "x2": 5.348864762701188, "x3": -2.2701395899972354, "x4": 2.239310700242622, "x5": 0.353571610503191}}, null] +[[9, 0, 2], 27.0, {"submitted": 1558193465.6277578, "started": 1558193465.628136, "finished": 1558193465.6363177}, {"loss": 0.2988699256694735, "info": {"x0": -2.2665609335946617, "x1": 7.176908649900856, "x2": 4.379745695006646, "x3": -2.601878319402932, "x4": 2.5821576061081655, "x5": 0.27867489061247663}}, null] +[[9, 0, 3], 27.0, {"submitted": 1558193465.7374153, "started": 1558193465.7379305, "finished": 1558193465.7455776}, {"loss": 0.2989760111959658, "info": {"x0": -2.711748442433383, "x1": 6.794282786760353, "x2": 6.562927174301381, "x3": -2.399972481499973, "x4": 3.9221415705761027, "x5": 0.4799730920390751}}, null] +[[9, 0, 4], 27.0, {"submitted": 1558193465.8477044, "started": 1558193465.84848, "finished": 1558193465.8560894}, {"loss": 0.3045940952581728, "info": {"x0": -2.6620562770769496, "x1": 6.780535744134829, "x2": 4.722646823569823, "x3": -2.615774655387754, "x4": 3.7610153902303365, "x5": 0.34247102917989225}}, null] +[[9, 0, 5], 27.0, {"submitted": 1558193465.9534047, "started": 1558193465.9538927, "finished": 1558193465.9622355}, {"loss": 0.29764298235557674, "info": {"x0": -2.5248066251443877, "x1": 6.47267131872558, "x2": 5.762394746832557, "x3": -3.7702420308150213, "x4": 3.900156383514596, "x5": 0.3946254469893685}}, null] +[[9, 0, 6], 27.0, {"submitted": 1558193465.9707062, "started": 1558193465.9715345, "finished": 1558193465.979791}, {"loss": 0.3260839427244674, "info": {"x0": -3.8423561040633847, "x1": 4.374687279446188, "x2": 7.734957591493991, "x3": -0.7354107272919737, "x4": 2.8999088488990057, "x5": 0.09100564774855474}}, null] +[[9, 0, 7], 27.0, {"submitted": 1558193466.0776856, "started": 1558193466.078109, "finished": 1558193466.0891237}, {"loss": 0.3032057150933768, "info": {"x0": -2.5642374040721316, "x1": 6.42997237198232, "x2": 6.3900968964807285, "x3": -3.9730507135253497, "x4": 3.399426009376991, "x5": 0.41835130166224865}}, null] +[[9, 0, 8], 27.0, {"submitted": 1558193466.177433, "started": 1558193466.1783123, "finished": 1558193466.1899498}, {"loss": 0.3084547973272985, "info": {"x0": -2.494639852425593, "x1": 6.5502135863438555, "x2": 5.8642054029133135, "x3": -2.799773457976701, "x4": 3.7378715181895705, "x5": 0.45147039710631454}}, null] +[[9, 0, 0], 81.0, {"submitted": 1558193466.1924262, "started": 1558193466.1927783, "finished": 1558193466.2017658}, {"loss": 0.29276291393114745, "info": {"x0": -2.7334372366383537, "x1": 6.701972372155664, "x2": 6.349802742612372, "x3": -1.8098261083873277, "x4": 3.4238475745650403, "x5": 0.4758038669140825}}, null] +[[9, 0, 1], 81.0, {"submitted": 1558193466.205006, "started": 1558193466.2056544, "finished": 1558193466.2172778}, {"loss": 0.29476014248885873, "info": {"x0": -2.3048350964441244, "x1": 6.261431931547244, "x2": 5.348864762701188, "x3": -2.2701395899972354, "x4": 2.239310700242622, "x5": 0.353571610503191}}, null] +[[9, 0, 5], 81.0, {"submitted": 1558193466.2196465, "started": 1558193466.2201498, "finished": 1558193466.2272434}, {"loss": 0.2960931667921948, "info": {"x0": -2.5248066251443877, "x1": 6.47267131872558, "x2": 5.762394746832557, "x3": -3.7702420308150213, "x4": 3.900156383514596, "x5": 0.3946254469893685}}, null] +[[9, 0, 0], 243.0, {"submitted": 1558193466.2295656, "started": 1558193466.2302382, "finished": 1558193466.2431483}, {"loss": 0.29276291393114745, "info": {"x0": -2.7334372366383537, "x1": 6.701972372155664, "x2": 6.349802742612372, "x3": -1.8098261083873277, "x4": 3.4238475745650403, "x5": 0.4758038669140825}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/hyperband/configs.json new file mode 100644 index 0000000..be1557c --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/hyperband/configs.json @@ -0,0 +1,128 @@ +[[0, 0, 0], {"x0": -5.329252716547041, "x1": 6.34447415302668, "x2": 4.41889778752633, "x3": -3.11423817694827, "x4": 4.951008152338227, "x5": 0.06332606840674437}, {}] +[[0, 0, 1], {"x0": -4.0744160061134975, "x1": 4.538843077704091, "x2": 4.399861753954573, "x3": -1.4709257526357469, "x4": 1.91197065265492, "x5": 0.3509014658528782}, {}] +[[0, 0, 2], {"x0": -5.436484354408785, "x1": 7.893330047481166, "x2": 6.415660525963288, "x3": -3.2486521339910808, "x4": 4.212393222790333, "x5": 0.31938559863289884}, {}] +[[0, 0, 3], {"x0": -2.850489337861681, "x1": 3.9628064524391924, "x2": 7.078101292354109, "x3": -3.5682791739914723, "x4": 2.515217228033851, "x5": 0.17823329680914968}, {}] +[[0, 0, 4], {"x0": -3.2279648624826796, "x1": 5.617866856102696, "x2": 6.4328847934123115, "x3": -2.932664725182105, "x4": 4.507369423497773, "x5": 0.3259753445177353}, {}] +[[0, 0, 5], {"x0": -3.764270197272191, "x1": 3.5905754894367057, "x2": 7.985652498323399, "x3": -3.9875570426671016, "x4": 3.762464061753623, "x5": 0.2533519244658549}, {}] +[[0, 0, 6], {"x0": -2.504416325942685, "x1": 5.102208160686774, "x2": 6.1244516103555595, "x3": -1.3144398481815718, "x4": 4.613463560760737, "x5": 0.21197884574312342}, {}] +[[0, 0, 7], {"x0": -4.7791526582103625, "x1": 4.452728334897923, "x2": 6.599305140421576, "x3": -3.2488967220590173, "x4": 2.593595472918652, "x5": 0.4876091848912076}, {}] +[[0, 0, 8], {"x0": -2.196377035562833, "x1": 4.100953516371031, "x2": 6.159823697123072, "x3": -3.8418029287725726, "x4": 2.6233478555754304, "x5": 0.42669019054006585}, {}] +[[0, 0, 9], {"x0": -4.278157211874701, "x1": 7.070613968420934, "x2": 6.051114032124293, "x3": -3.6319086317162093, "x4": 1.8850324821778721, "x5": 0.4420340518421956}, {}] +[[0, 0, 10], {"x0": -5.077347468202456, "x1": 3.344619172180261, "x2": 7.857720263578231, "x3": -2.6364130521644427, "x4": 1.011557921206811, "x5": 0.2439035164363586}, {}] +[[0, 0, 11], {"x0": -3.103575014239763, "x1": 6.096140869702788, "x2": 4.491144001957462, "x3": -2.9333899271035757, "x4": 1.1509876427440089, "x5": 0.08757584270264446}, {}] +[[0, 0, 12], {"x0": -5.3083758841402515, "x1": 4.710107691917683, "x2": 4.508181439481142, "x3": -0.3024873795261449, "x4": 3.985118174875102, "x5": 0.2752340763724146}, {}] +[[0, 0, 13], {"x0": -5.996653295345288, "x1": 3.097291552658011, "x2": 7.84021880838851, "x3": -1.2174067793272911, "x4": 2.648569068555732, "x5": 0.47079009747591843}, {}] +[[0, 0, 14], {"x0": -2.0407257336054023, "x1": 5.564401053529204, "x2": 4.5135178289310565, "x3": -3.6093997958270174, "x4": 4.74742332901969, "x5": 0.27295539532313207}, {}] +[[0, 0, 15], {"x0": -4.45100508171525, "x1": 5.339363178960476, "x2": 4.078126142565316, "x3": -3.7039424725664967, "x4": 4.663765297840167, "x5": 0.15838095091119136}, {}] +[[0, 0, 16], {"x0": -4.320713644808558, "x1": 3.3865399486455496, "x2": 7.677964304002986, "x3": -0.22866588579911573, "x4": 2.0559524617474314, "x5": 0.3146797770588031}, {}] +[[0, 0, 17], {"x0": -2.2154926492248554, "x1": 4.209372983630905, "x2": 5.917915474302401, "x3": -2.05438412795172, "x4": 3.577640365983012, "x5": 0.4517003311292505}, {}] +[[0, 0, 18], {"x0": -3.2962733318869937, "x1": 3.692323886571384, "x2": 4.5662412149760305, "x3": -1.7415024667632313, "x4": 1.340432602822017, "x5": 0.21427911922806686}, {}] +[[0, 0, 19], {"x0": -3.857596501345665, "x1": 6.839287774246441, "x2": 5.852980080134653, "x3": -2.1909588481195574, "x4": 1.7852248425299542, "x5": 0.06344307310815916}, {}] +[[0, 0, 20], {"x0": -5.228713241373186, "x1": 6.93084102497087, "x2": 4.912836389685429, "x3": -1.3659736914668192, "x4": 3.3005164493560106, "x5": 0.4103674790314348}, {}] +[[0, 0, 21], {"x0": -3.3159509057551886, "x1": 6.636242678787616, "x2": 5.140150985450321, "x3": -1.083956944341541, "x4": 1.1876977515578795, "x5": 0.11763232635343435}, {}] +[[0, 0, 22], {"x0": -4.225443922520251, "x1": 4.8580266084314445, "x2": 4.20810005525321, "x3": -1.1619754123500856, "x4": 1.4667484166258964, "x5": 0.33876837544798183}, {}] +[[0, 0, 23], {"x0": -4.367346612412748, "x1": 4.3267113477054195, "x2": 7.439068483335359, "x3": -0.9522163240723813, "x4": 1.298580482027086, "x5": 0.0809669031059782}, {}] +[[0, 0, 24], {"x0": -4.402139181225355, "x1": 3.886204959013183, "x2": 6.560986591939285, "x3": -2.5161214179271023, "x4": 4.212062548421688, "x5": 0.3614095604319115}, {}] +[[0, 0, 25], {"x0": -4.730489298336446, "x1": 3.6593641869061333, "x2": 5.614664009426693, "x3": -0.4148029308964234, "x4": 2.183652976638317, "x5": 0.02483415719962878}, {}] +[[0, 0, 26], {"x0": -3.336046234676632, "x1": 6.5843374200624645, "x2": 4.607094876060499, "x3": -2.3534690438525265, "x4": 1.0957917506871722, "x5": 0.20823609076876748}, {}] +[[1, 0, 0], {"x0": -3.917536652115259, "x1": 5.593096396344567, "x2": 6.913439116567416, "x3": -2.788709116019932, "x4": 1.5884058834458687, "x5": 0.47414601347584096}, {}] +[[1, 0, 1], {"x0": -3.1395340413095, "x1": 3.887899902759783, "x2": 4.892047718140699, "x3": -0.5005230206404105, "x4": 3.9976267499770084, "x5": 0.2027146594395467}, {}] +[[1, 0, 2], {"x0": -4.843842265427922, "x1": 5.888059194329437, "x2": 7.182130585044893, "x3": -1.0295663796534744, "x4": 1.5543431317489271, "x5": 0.3960504673184582}, {}] +[[1, 0, 3], {"x0": -5.371236327766795, "x1": 4.261145416477191, "x2": 7.592165854435311, "x3": -2.043422105190629, "x4": 1.112839922891395, "x5": 0.3960255179459554}, {}] +[[1, 0, 4], {"x0": -4.1728573247588, "x1": 6.087896862771748, "x2": 4.3302571035193935, "x3": -1.3194728439577759, "x4": 1.7625225126376032, "x5": 0.12299137625850498}, {}] +[[1, 0, 5], {"x0": -5.759828793879896, "x1": 6.68001475153681, "x2": 6.732481248646804, "x3": -3.0747425782286446, "x4": 4.981421862272374, "x5": 0.25700748425481657}, {}] +[[1, 0, 6], {"x0": -4.890960489755791, "x1": 4.47806144404858, "x2": 6.942493780271527, "x3": -2.908706737604908, "x4": 3.014336025648162, "x5": 0.18855501265416513}, {}] +[[1, 0, 7], {"x0": -2.0924354501436615, "x1": 3.324111458336107, "x2": 7.925713194862491, "x3": -3.9500674205819086, "x4": 2.6771645261727675, "x5": 0.21670830804393326}, {}] +[[1, 0, 8], {"x0": -5.117325669930441, "x1": 7.144798294740824, "x2": 7.5220264578315845, "x3": -2.6045324788467936, "x4": 1.0978206013275167, "x5": 0.06542267794162193}, {}] +[[2, 0, 0], {"x0": -4.736506806344852, "x1": 4.896980835616749, "x2": 6.246451724764611, "x3": -0.2674564104243702, "x4": 1.5273045517727892, "x5": 0.0978342004756621}, {}] +[[2, 0, 1], {"x0": -2.3611604419715166, "x1": 7.114221584567495, "x2": 6.517990279432828, "x3": -1.4013487945402843, "x4": 4.548361583219103, "x5": 0.18134403657775933}, {}] +[[2, 0, 2], {"x0": -5.747879032469726, "x1": 4.913514837055823, "x2": 7.269515386579707, "x3": -2.191560127085189, "x4": 1.8693413355518889, "x5": 0.15668383648012496}, {}] +[[2, 0, 3], {"x0": -4.435499023059385, "x1": 7.998009390087484, "x2": 6.2241591255050395, "x3": -0.09727842085570648, "x4": 1.180035525217265, "x5": 0.4693383793673751}, {}] +[[2, 0, 4], {"x0": -2.636964997703245, "x1": 5.330517641302735, "x2": 4.29362700055767, "x3": -1.1814974706887256, "x4": 3.6002843541471408, "x5": 0.38717845636978837}, {}] +[[2, 0, 5], {"x0": -2.3224175452335283, "x1": 4.700488143300995, "x2": 6.763671713855667, "x3": -1.7189312874076683, "x4": 4.937635382219506, "x5": 0.24491090826940232}, {}] +[[3, 0, 0], {"x0": -2.6493381989996623, "x1": 4.556159022379969, "x2": 7.210310220951596, "x3": -1.022026700805291, "x4": 4.690389209238775, "x5": 0.20530498331202934}, {}] +[[3, 0, 1], {"x0": -3.327349746087383, "x1": 5.494741438223202, "x2": 6.41640598817235, "x3": -1.6750821349503653, "x4": 4.403682928728078, "x5": 0.001278351969902669}, {}] +[[3, 0, 2], {"x0": -5.649589846516401, "x1": 5.895454912855243, "x2": 5.392086412746583, "x3": -2.8093329341763345, "x4": 4.088846041511468, "x5": 0.4408084740036607}, {}] +[[3, 0, 3], {"x0": -5.094011386378902, "x1": 6.70612107178329, "x2": 6.393845768646038, "x3": -1.5280701202311313, "x4": 2.323164184022989, "x5": 0.359446057215906}, {}] +[[4, 0, 0], {"x0": -4.183059138182488, "x1": 3.1376634348785495, "x2": 5.762205262190243, "x3": -2.27106776531619, "x4": 2.9725129735432114, "x5": 0.1726069873854562}, {}] +[[4, 0, 1], {"x0": -3.1764876603208445, "x1": 4.5164366510674085, "x2": 6.247125823517181, "x3": -1.4084763874282187, "x4": 2.441277806256432, "x5": 0.1463203629724401}, {}] +[[4, 0, 2], {"x0": -4.247528705639491, "x1": 5.800207830613039, "x2": 4.284524186399418, "x3": -2.2775145251865174, "x4": 2.487833971197196, "x5": 0.4703677482389468}, {}] +[[4, 0, 3], {"x0": -4.807736381092958, "x1": 5.97446529739375, "x2": 7.6222649095998785, "x3": -1.2052336179915089, "x4": 3.413228870998863, "x5": 0.4892753233828046}, {}] +[[4, 0, 4], {"x0": -2.546001550298699, "x1": 6.462697394020067, "x2": 6.715345042954259, "x3": -0.2359326990556796, "x4": 4.166596170089834, "x5": 0.45704908921330895}, {}] +[[4, 0, 5], {"x0": -2.4693798947456864, "x1": 6.776912593769644, "x2": 7.461455661749024, "x3": -0.8065794032765563, "x4": 2.907248119676317, "x5": 0.2767034138197672}, {}] +[[4, 0, 6], {"x0": -3.9726525583628973, "x1": 7.763293346766443, "x2": 6.984133624301444, "x3": -0.8324231430521927, "x4": 2.980321414522872, "x5": 0.037807855287883996}, {}] +[[4, 0, 7], {"x0": -4.6112418432856, "x1": 6.44805981309266, "x2": 7.457055958522716, "x3": -0.48084656114973834, "x4": 3.792686168669415, "x5": 0.49712780856332833}, {}] +[[4, 0, 8], {"x0": -2.164455436445788, "x1": 6.367518323648181, "x2": 6.336298318707939, "x3": -0.6370674116998467, "x4": 2.1811269842603824, "x5": 0.49700984978695567}, {}] +[[4, 0, 9], {"x0": -3.38085200339027, "x1": 3.325922266453984, "x2": 4.643424887796426, "x3": -3.8599475442632065, "x4": 2.881870183053434, "x5": 0.11464941362056463}, {}] +[[4, 0, 10], {"x0": -2.6236058630609875, "x1": 7.031947000549833, "x2": 4.758239780970019, "x3": -0.5784325285391341, "x4": 3.701030139779472, "x5": 0.3647633869333648}, {}] +[[4, 0, 11], {"x0": -5.44740516272622, "x1": 6.696931925971051, "x2": 5.790618329487669, "x3": -3.1876733746282384, "x4": 1.6405852878648024, "x5": 0.08289126079940645}, {}] +[[4, 0, 12], {"x0": -5.305857418039553, "x1": 4.55767577409155, "x2": 5.615671823061927, "x3": -0.8015047039050929, "x4": 3.6293647147504817, "x5": 0.4821544794636877}, {}] +[[4, 0, 13], {"x0": -4.180534868314892, "x1": 3.2399914123337132, "x2": 6.097277209074905, "x3": -2.184593998895535, "x4": 4.822783768336553, "x5": 0.10574198995490453}, {}] +[[4, 0, 14], {"x0": -5.6068181436773745, "x1": 3.746030362654961, "x2": 7.844760782056333, "x3": -2.490985414426204, "x4": 2.9536117300492952, "x5": 0.34526513568078526}, {}] +[[4, 0, 15], {"x0": -2.8102824711639487, "x1": 5.2237932064113295, "x2": 5.1048336181687475, "x3": -2.0479892252000518, "x4": 3.600759634659932, "x5": 0.4806222542720966}, {}] +[[4, 0, 16], {"x0": -2.762671795378197, "x1": 5.649231344207257, "x2": 7.740027589677213, "x3": -2.6906245839727503, "x4": 1.8065136765781653, "x5": 0.059435439301840365}, {}] +[[4, 0, 17], {"x0": -2.88220805549094, "x1": 6.810807793982748, "x2": 4.382419517055478, "x3": -0.19559001507936458, "x4": 4.726063527694816, "x5": 0.22201070055736533}, {}] +[[4, 0, 18], {"x0": -4.9992111998061315, "x1": 4.041245743470194, "x2": 5.157077714600362, "x3": -1.5119054411123276, "x4": 4.765616179258444, "x5": 0.20321157020105313}, {}] +[[4, 0, 19], {"x0": -2.2507409612068288, "x1": 4.212645887779355, "x2": 5.967178916405985, "x3": -0.4247643708326754, "x4": 2.3053339584251877, "x5": 0.43615920358302773}, {}] +[[4, 0, 20], {"x0": -3.3222659019647875, "x1": 6.87856325382974, "x2": 4.988889276253692, "x3": -1.3906498762105812, "x4": 2.9043955413296794, "x5": 0.33425688891074246}, {}] +[[4, 0, 21], {"x0": -2.9893886467925523, "x1": 7.550794415204674, "x2": 5.677947057795709, "x3": -0.47443930759150144, "x4": 2.893696557374669, "x5": 0.34299696889638503}, {}] +[[4, 0, 22], {"x0": -4.55249165380938, "x1": 5.122724268480816, "x2": 7.949412409089323, "x3": -2.7000065480780857, "x4": 3.0310739803189626, "x5": 0.48241331574062957}, {}] +[[4, 0, 23], {"x0": -3.7992481447302744, "x1": 6.264391008093755, "x2": 4.3792465630825, "x3": -0.5903200744326575, "x4": 1.771566400343266, "x5": 0.21813973575106077}, {}] +[[4, 0, 24], {"x0": -5.410287437176919, "x1": 5.943655531035496, "x2": 5.014209541545445, "x3": -2.7813549124523087, "x4": 2.7703607762280287, "x5": 0.24171263907077772}, {}] +[[4, 0, 25], {"x0": -2.4644303418221614, "x1": 4.216649729463638, "x2": 7.842970132569529, "x3": -3.247685047416038, "x4": 1.5916544092259235, "x5": 0.25240393948772444}, {}] +[[4, 0, 26], {"x0": -2.0447298567733565, "x1": 4.792446979082951, "x2": 5.291091762172814, "x3": -3.198375576731372, "x4": 2.5141241859764136, "x5": 0.31725550638369904}, {}] +[[5, 0, 0], {"x0": -4.302169113145943, "x1": 4.116074172076258, "x2": 4.909143465081311, "x3": -0.4808397453112834, "x4": 4.744286844748767, "x5": 0.3076072346739528}, {}] +[[5, 0, 1], {"x0": -3.3741253714753587, "x1": 5.330536496457766, "x2": 7.940781451104742, "x3": -1.286168080360195, "x4": 4.221186781516549, "x5": 0.167041804871624}, {}] +[[5, 0, 2], {"x0": -2.672448520635579, "x1": 3.1845289797418355, "x2": 4.919533472640078, "x3": -3.943788917584269, "x4": 2.0823297913231613, "x5": 0.19096512498529045}, {}] +[[5, 0, 3], {"x0": -3.2328309393069583, "x1": 6.506615426744636, "x2": 6.510009372629568, "x3": -1.6617722634583725, "x4": 2.238463351933212, "x5": 0.13325003905881394}, {}] +[[5, 0, 4], {"x0": -5.81927663112509, "x1": 6.937604232550183, "x2": 7.6255886751966235, "x3": -0.0015092395543416792, "x4": 4.061632754635438, "x5": 0.18613377809398657}, {}] +[[5, 0, 5], {"x0": -2.173081420974237, "x1": 6.8255723460859805, "x2": 7.457258346772205, "x3": -1.2785582195624565, "x4": 2.0279660749509483, "x5": 0.19444610784303173}, {}] +[[5, 0, 6], {"x0": -2.8334698111050862, "x1": 4.957135745568012, "x2": 7.175884970199073, "x3": -0.6171722114555322, "x4": 3.6100535819855066, "x5": 0.012164084067902203}, {}] +[[5, 0, 7], {"x0": -5.46721355762595, "x1": 3.0770430148840306, "x2": 5.938516679586748, "x3": -3.727409404350696, "x4": 2.0086338457322395, "x5": 0.1724269956884404}, {}] +[[5, 0, 8], {"x0": -4.508692415302091, "x1": 5.127899396278949, "x2": 4.006558820773545, "x3": -2.023311341014835, "x4": 1.7709725512482257, "x5": 0.46698030507231686}, {}] +[[6, 0, 0], {"x0": -4.794312496092301, "x1": 7.128609517315695, "x2": 4.130644006376993, "x3": -1.7320951116422205, "x4": 1.5144495253439358, "x5": 0.36846685104888427}, {}] +[[6, 0, 1], {"x0": -3.459710609461869, "x1": 3.4746336534466304, "x2": 6.687992467175867, "x3": -3.422412184937875, "x4": 4.812482390382603, "x5": 0.4280813606433554}, {}] +[[6, 0, 2], {"x0": -4.950761820502746, "x1": 6.822684260682063, "x2": 6.700456011466025, "x3": -0.8936452553791696, "x4": 1.9096358025811733, "x5": 0.446883827281844}, {}] +[[6, 0, 3], {"x0": -5.491810520704867, "x1": 3.854828017703463, "x2": 7.55734743143948, "x3": -0.745648837260573, "x4": 2.7321318842821376, "x5": 0.04946896218465435}, {}] +[[6, 0, 4], {"x0": -5.156000781875116, "x1": 7.902696012262003, "x2": 4.235970599751809, "x3": -0.9418323474607551, "x4": 1.1885976091240043, "x5": 0.4250875587921904}, {}] +[[6, 0, 5], {"x0": -4.464249470637512, "x1": 6.006026808457736, "x2": 4.485259498389899, "x3": -1.3810037891320146, "x4": 4.200682621674016, "x5": 0.07399364698002597}, {}] +[[7, 0, 0], {"x0": -2.9950053782725767, "x1": 5.571232636216957, "x2": 6.970476740667765, "x3": -3.6102209406051644, "x4": 3.9917818512581276, "x5": 0.426034996620231}, {}] +[[7, 0, 1], {"x0": -5.190777559298556, "x1": 7.418302424011081, "x2": 7.5691050889428455, "x3": -3.192623275684592, "x4": 3.1764687130854434, "x5": 0.34536587034029254}, {}] +[[7, 0, 2], {"x0": -5.511404811317002, "x1": 7.039926929228565, "x2": 7.121438700086588, "x3": -3.981660490468682, "x4": 1.8002774687247278, "x5": 0.4142651713247116}, {}] +[[7, 0, 3], {"x0": -4.075889266056833, "x1": 4.1365759638151065, "x2": 4.078505911049829, "x3": -1.509016469754858, "x4": 1.8267744656704465, "x5": 0.22332881835122553}, {}] +[[8, 0, 0], {"x0": -4.888913619450703, "x1": 4.181242995767844, "x2": 7.746716576808785, "x3": -2.831875360114199, "x4": 2.4143406387390316, "x5": 0.11462886247735632}, {}] +[[8, 0, 1], {"x0": -4.143078528884653, "x1": 3.016805620753362, "x2": 5.322531536615099, "x3": -1.1074571807030043, "x4": 4.4628913325166035, "x5": 0.33443508523721766}, {}] +[[8, 0, 2], {"x0": -5.917762612781185, "x1": 6.473220309283693, "x2": 5.761523983088714, "x3": -1.6492182598662288, "x4": 4.924604413406199, "x5": 0.1920126007449494}, {}] +[[8, 0, 3], {"x0": -4.482216102660757, "x1": 5.747828587529506, "x2": 5.9157022254687615, "x3": -0.8974466335621072, "x4": 1.375055784222023, "x5": 0.2607994571975041}, {}] +[[8, 0, 4], {"x0": -4.73381811999716, "x1": 7.300263844320917, "x2": 4.346472551890351, "x3": -3.332627911201657, "x4": 4.63770811545621, "x5": 0.4250722855478398}, {}] +[[8, 0, 5], {"x0": -3.0090942779213052, "x1": 4.603568061583543, "x2": 6.755589970569399, "x3": -2.6697182990025086, "x4": 4.9635225852576195, "x5": 0.236163057001117}, {}] +[[8, 0, 6], {"x0": -5.497298345006296, "x1": 6.474774819502355, "x2": 7.069386396569911, "x3": -3.534349381978243, "x4": 1.8999503493509486, "x5": 0.13872858762727852}, {}] +[[8, 0, 7], {"x0": -5.979267169023792, "x1": 4.326038823761039, "x2": 7.877871198881239, "x3": -3.579747177640327, "x4": 1.9486513639021865, "x5": 0.12142491782942194}, {}] +[[8, 0, 8], {"x0": -2.026901561756292, "x1": 7.527643684104644, "x2": 5.770792737697125, "x3": -0.4534661342372459, "x4": 3.186462472459462, "x5": 0.180287612228216}, {}] +[[8, 0, 9], {"x0": -2.9708395687677354, "x1": 7.4102450207127095, "x2": 5.700218956405674, "x3": -0.2192735977468372, "x4": 2.3259127365587124, "x5": 0.2234465090728079}, {}] +[[8, 0, 10], {"x0": -3.9528750196673523, "x1": 6.787213151123092, "x2": 7.975851954474008, "x3": -0.7827482867858353, "x4": 2.0841452096244493, "x5": 0.3037359428151211}, {}] +[[8, 0, 11], {"x0": -5.9968499677162725, "x1": 6.144556719139882, "x2": 6.273673773135382, "x3": -1.4328614309168022, "x4": 4.046541459450449, "x5": 0.11483335359131852}, {}] +[[8, 0, 12], {"x0": -3.456772439175065, "x1": 6.662990569687592, "x2": 4.020232717575855, "x3": -1.0413251634029752, "x4": 3.8189683111794346, "x5": 0.10887548580665479}, {}] +[[8, 0, 13], {"x0": -3.1013468856438746, "x1": 5.9886436550590485, "x2": 6.629047581613847, "x3": -0.025127060933514578, "x4": 1.738718114901189, "x5": 0.28208699107797935}, {}] +[[8, 0, 14], {"x0": -4.743361627692462, "x1": 3.9906985508020982, "x2": 6.136367294329162, "x3": -1.439628593713393, "x4": 2.7028580803251834, "x5": 0.26679561290110837}, {}] +[[8, 0, 15], {"x0": -3.6995244432195302, "x1": 4.236412591508687, "x2": 5.076538097757994, "x3": -3.755638797582509, "x4": 3.344631179551783, "x5": 0.3102887824745535}, {}] +[[8, 0, 16], {"x0": -3.120780630643656, "x1": 5.379919140795193, "x2": 5.190768429353435, "x3": -1.1666844516647532, "x4": 2.6619174103274785, "x5": 0.11586139206387769}, {}] +[[8, 0, 17], {"x0": -3.412687522333668, "x1": 7.480634722289959, "x2": 7.065108790182502, "x3": -0.24925154336714428, "x4": 1.274870495161149, "x5": 0.06853775559835534}, {}] +[[8, 0, 18], {"x0": -4.097656907287977, "x1": 5.939837116706547, "x2": 7.684384753156012, "x3": -0.6566968521742291, "x4": 1.0168383405032588, "x5": 0.27257853017538386}, {}] +[[8, 0, 19], {"x0": -3.0660146550416583, "x1": 3.047560342367447, "x2": 7.564720831325667, "x3": -1.9098969471781873, "x4": 1.1490611275570797, "x5": 0.22814245208014738}, {}] +[[8, 0, 20], {"x0": -4.425154608139575, "x1": 6.3557829770211125, "x2": 7.054077900771933, "x3": -0.8903169864121283, "x4": 3.785397443437508, "x5": 0.13599428997093543}, {}] +[[8, 0, 21], {"x0": -2.6264474499040795, "x1": 5.426160046810949, "x2": 7.742883010984897, "x3": -3.7693553865831895, "x4": 1.4616169271539445, "x5": 0.4562109457349847}, {}] +[[8, 0, 22], {"x0": -3.853876953559229, "x1": 3.3483881241123465, "x2": 5.166014503514184, "x3": -0.7920632427314875, "x4": 4.529297248556364, "x5": 0.24295973960863193}, {}] +[[8, 0, 23], {"x0": -4.987686300294884, "x1": 3.7194686782696453, "x2": 7.591651246996044, "x3": -0.4244131448271049, "x4": 2.2936161108457234, "x5": 0.2803918047250904}, {}] +[[8, 0, 24], {"x0": -3.0073460646223107, "x1": 5.1771315501092285, "x2": 6.71672627103378, "x3": -2.0368072442128127, "x4": 1.905512794861278, "x5": 0.14064201018599953}, {}] +[[8, 0, 25], {"x0": -5.670328257690487, "x1": 5.276484515288798, "x2": 4.9621421691956105, "x3": -2.672533180003577, "x4": 2.5177836586381175, "x5": 0.2937826790962139}, {}] +[[8, 0, 26], {"x0": -3.6049829062013807, "x1": 6.576325525878883, "x2": 7.022664641606438, "x3": -2.0832934793025957, "x4": 1.2233100293063655, "x5": 0.20276986663073243}, {}] +[[9, 0, 0], {"x0": -5.419990208079714, "x1": 4.9289002171376435, "x2": 7.292026849589805, "x3": -1.6116361904453473, "x4": 1.6674486294747912, "x5": 0.00024575861445358393}, {}] +[[9, 0, 1], {"x0": -3.171443379858261, "x1": 7.218959712762043, "x2": 7.841042107161925, "x3": -2.5493306387188435, "x4": 4.369327631392713, "x5": 0.2825626431501723}, {}] +[[9, 0, 2], {"x0": -3.002276645633157, "x1": 4.235042933459884, "x2": 4.340624554647702, "x3": -2.5160309396028873, "x4": 1.8680127396418715, "x5": 0.10465304112155349}, {}] +[[9, 0, 3], {"x0": -3.0359225589375116, "x1": 6.320374053549672, "x2": 5.879890540973877, "x3": -1.0119665923730103, "x4": 1.846767033268725, "x5": 0.014690008790764153}, {}] +[[9, 0, 4], {"x0": -2.9477644100969775, "x1": 3.181750334670849, "x2": 7.2632808995101446, "x3": -2.4928156322000365, "x4": 2.722999063996296, "x5": 0.479202674600794}, {}] +[[9, 0, 5], {"x0": -4.601000439822207, "x1": 6.667480049246979, "x2": 5.41749840730002, "x3": -0.9428441758818953, "x4": 1.6724891792290784, "x5": 0.2404802532778889}, {}] +[[9, 0, 6], {"x0": -3.1442932918401394, "x1": 7.661565184849533, "x2": 7.987682013343864, "x3": -3.741528306529035, "x4": 4.930059022919291, "x5": 0.48071728247243095}, {}] +[[9, 0, 7], {"x0": -5.260655890449119, "x1": 6.128233577530741, "x2": 5.202143240827944, "x3": -1.9719813839200886, "x4": 4.318595514353155, "x5": 0.09329264479448207}, {}] +[[9, 0, 8], {"x0": -2.8433623247691333, "x1": 6.173907296763503, "x2": 6.6637740275783965, "x3": -0.005009052535935865, "x4": 4.2504767277482705, "x5": 0.3312172848278663}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/hyperband/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/hyperband/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/hyperband/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/hyperband/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/hyperband/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/hyperband/results.json new file mode 100644 index 0000000..c280c56 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/hyperband/results.json @@ -0,0 +1,183 @@ +[[0, 0, 0], 9.0, {"submitted": 1558193472.00212, "started": 1558193472.0026546, "finished": 1558193472.0187845}, {"loss": 0.4844603321925698, "info": {"x0": -5.329252716547041, "x1": 6.34447415302668, "x2": 4.41889778752633, "x3": -3.11423817694827, "x4": 4.951008152338227, "x5": 0.06332606840674437}}, null] +[[0, 0, 1], 9.0, {"submitted": 1558193472.0211375, "started": 1558193472.0215344, "finished": 1558193472.0334425}, {"loss": 0.4364667822903784, "info": {"x0": -4.0744160061134975, "x1": 4.538843077704091, "x2": 4.399861753954573, "x3": -1.4709257526357469, "x4": 1.91197065265492, "x5": 0.3509014658528782}}, null] +[[0, 0, 2], 9.0, {"submitted": 1558193472.0360255, "started": 1558193472.0364368, "finished": 1558193472.0503552}, {"loss": 0.49833948260509986, "info": {"x0": -5.436484354408785, "x1": 7.893330047481166, "x2": 6.415660525963288, "x3": -3.2486521339910808, "x4": 4.212393222790333, "x5": 0.31938559863289884}}, null] +[[0, 0, 3], 9.0, {"submitted": 1558193472.0531704, "started": 1558193472.0537572, "finished": 1558193472.0617442}, {"loss": 0.3345018384648948, "info": {"x0": -2.850489337861681, "x1": 3.9628064524391924, "x2": 7.078101292354109, "x3": -3.5682791739914723, "x4": 2.515217228033851, "x5": 0.17823329680914968}}, null] +[[0, 0, 4], 9.0, {"submitted": 1558193472.0703373, "started": 1558193472.0710964, "finished": 1558193472.085119}, {"loss": 0.3241974141706482, "info": {"x0": -3.2279648624826796, "x1": 5.617866856102696, "x2": 6.4328847934123115, "x3": -2.932664725182105, "x4": 4.507369423497773, "x5": 0.3259753445177353}}, null] +[[0, 0, 5], 9.0, {"submitted": 1558193472.0876112, "started": 1558193472.0880284, "finished": 1558193472.1024847}, {"loss": 1, "info": {"x0": -3.764270197272191, "x1": 3.5905754894367057, "x2": 7.985652498323399, "x3": -3.9875570426671016, "x4": 3.762464061753623, "x5": 0.2533519244658549}}, null] +[[0, 0, 6], 9.0, {"submitted": 1558193472.1057062, "started": 1558193472.1061707, "finished": 1558193472.1191814}, {"loss": 0.316282287234736, "info": {"x0": -2.504416325942685, "x1": 5.102208160686774, "x2": 6.1244516103555595, "x3": -1.3144398481815718, "x4": 4.613463560760737, "x5": 0.21197884574312342}}, null] +[[0, 0, 7], 9.0, {"submitted": 1558193472.1213646, "started": 1558193472.1218314, "finished": 1558193472.1351635}, {"loss": 0.42309962621398567, "info": {"x0": -4.7791526582103625, "x1": 4.452728334897923, "x2": 6.599305140421576, "x3": -3.2488967220590173, "x4": 2.593595472918652, "x5": 0.4876091848912076}}, null] +[[0, 0, 8], 9.0, {"submitted": 1558193472.1376874, "started": 1558193472.1380785, "finished": 1558193472.1495602}, {"loss": 0.41343172468423733, "info": {"x0": -2.196377035562833, "x1": 4.100953516371031, "x2": 6.159823697123072, "x3": -3.8418029287725726, "x4": 2.6233478555754304, "x5": 0.42669019054006585}}, null] +[[0, 0, 9], 9.0, {"submitted": 1558193472.1528404, "started": 1558193472.1534238, "finished": 1558193472.160647}, {"loss": 0.44075645695849425, "info": {"x0": -4.278157211874701, "x1": 7.070613968420934, "x2": 6.051114032124293, "x3": -3.6319086317162093, "x4": 1.8850324821778721, "x5": 0.4420340518421956}}, null] +[[0, 0, 10], 9.0, {"submitted": 1558193472.1636832, "started": 1558193472.1643174, "finished": 1558193472.1798887}, {"loss": 0.433883754571185, "info": {"x0": -5.077347468202456, "x1": 3.344619172180261, "x2": 7.857720263578231, "x3": -2.6364130521644427, "x4": 1.011557921206811, "x5": 0.2439035164363586}}, null] +[[0, 0, 11], 9.0, {"submitted": 1558193472.1862607, "started": 1558193472.1867948, "finished": 1558193472.1956718}, {"loss": 0.33387915177030203, "info": {"x0": -3.103575014239763, "x1": 6.096140869702788, "x2": 4.491144001957462, "x3": -2.9333899271035757, "x4": 1.1509876427440089, "x5": 0.08757584270264446}}, null] +[[0, 0, 12], 9.0, {"submitted": 1558193472.1990943, "started": 1558193472.19971, "finished": 1558193472.208153}, {"loss": 0.4977582983449927, "info": {"x0": -5.3083758841402515, "x1": 4.710107691917683, "x2": 4.508181439481142, "x3": -0.3024873795261449, "x4": 3.985118174875102, "x5": 0.2752340763724146}}, null] +[[0, 0, 13], 9.0, {"submitted": 1558193472.210342, "started": 1558193472.2107933, "finished": 1558193472.2219396}, {"loss": 1, "info": {"x0": -5.996653295345288, "x1": 3.097291552658011, "x2": 7.84021880838851, "x3": -1.2174067793272911, "x4": 2.648569068555732, "x5": 0.47079009747591843}}, null] +[[0, 0, 14], 9.0, {"submitted": 1558193472.2237685, "started": 1558193472.2242014, "finished": 1558193472.2325802}, {"loss": 0.33886992351884004, "info": {"x0": -2.0407257336054023, "x1": 5.564401053529204, "x2": 4.5135178289310565, "x3": -3.6093997958270174, "x4": 4.74742332901969, "x5": 0.27295539532313207}}, null] +[[0, 0, 15], 9.0, {"submitted": 1558193472.2355824, "started": 1558193472.2359815, "finished": 1558193472.2452755}, {"loss": 0.471000917233781, "info": {"x0": -4.45100508171525, "x1": 5.339363178960476, "x2": 4.078126142565316, "x3": -3.7039424725664967, "x4": 4.663765297840167, "x5": 0.15838095091119136}}, null] +[[0, 0, 16], 9.0, {"submitted": 1558193472.2479506, "started": 1558193472.248472, "finished": 1558193472.2581317}, {"loss": 0.3948846790040551, "info": {"x0": -4.320713644808558, "x1": 3.3865399486455496, "x2": 7.677964304002986, "x3": -0.22866588579911573, "x4": 2.0559524617474314, "x5": 0.3146797770588031}}, null] +[[0, 0, 17], 9.0, {"submitted": 1558193472.2609699, "started": 1558193472.2614634, "finished": 1558193472.2719586}, {"loss": 0.3692788998489836, "info": {"x0": -2.2154926492248554, "x1": 4.209372983630905, "x2": 5.917915474302401, "x3": -2.05438412795172, "x4": 3.577640365983012, "x5": 0.4517003311292505}}, null] +[[0, 0, 18], 9.0, {"submitted": 1558193472.2744093, "started": 1558193472.2749343, "finished": 1558193472.2852015}, {"loss": 0.36223707519117676, "info": {"x0": -3.2962733318869937, "x1": 3.692323886571384, "x2": 4.5662412149760305, "x3": -1.7415024667632313, "x4": 1.340432602822017, "x5": 0.21427911922806686}}, null] +[[0, 0, 19], 9.0, {"submitted": 1558193472.289858, "started": 1558193472.2901952, "finished": 1558193472.3006625}, {"loss": 0.36251383652422586, "info": {"x0": -3.857596501345665, "x1": 6.839287774246441, "x2": 5.852980080134653, "x3": -2.1909588481195574, "x4": 1.7852248425299542, "x5": 0.06344307310815916}}, null] +[[0, 0, 20], 9.0, {"submitted": 1558193472.3031673, "started": 1558193472.303625, "finished": 1558193472.3119287}, {"loss": 0.48531826691585167, "info": {"x0": -5.228713241373186, "x1": 6.93084102497087, "x2": 4.912836389685429, "x3": -1.3659736914668192, "x4": 3.3005164493560106, "x5": 0.4103674790314348}}, null] +[[0, 0, 21], 9.0, {"submitted": 1558193472.313853, "started": 1558193472.3147697, "finished": 1558193472.3256025}, {"loss": 0.3271863455394097, "info": {"x0": -3.3159509057551886, "x1": 6.636242678787616, "x2": 5.140150985450321, "x3": -1.083956944341541, "x4": 1.1876977515578795, "x5": 0.11763232635343435}}, null] +[[0, 0, 22], 9.0, {"submitted": 1558193472.3287468, "started": 1558193472.3291528, "finished": 1558193472.3383582}, {"loss": 0.4235931729391987, "info": {"x0": -4.225443922520251, "x1": 4.8580266084314445, "x2": 4.20810005525321, "x3": -1.1619754123500856, "x4": 1.4667484166258964, "x5": 0.33876837544798183}}, null] +[[0, 0, 23], 9.0, {"submitted": 1558193472.3417683, "started": 1558193472.3422809, "finished": 1558193472.3516755}, {"loss": 0.3739068242909586, "info": {"x0": -4.367346612412748, "x1": 4.3267113477054195, "x2": 7.439068483335359, "x3": -0.9522163240723813, "x4": 1.298580482027086, "x5": 0.0809669031059782}}, null] +[[0, 0, 24], 9.0, {"submitted": 1558193472.3569477, "started": 1558193472.3576066, "finished": 1558193472.3682644}, {"loss": 0.44409593515696066, "info": {"x0": -4.402139181225355, "x1": 3.886204959013183, "x2": 6.560986591939285, "x3": -2.5161214179271023, "x4": 4.212062548421688, "x5": 0.3614095604319115}}, null] +[[0, 0, 25], 9.0, {"submitted": 1558193472.3704295, "started": 1558193472.3709826, "finished": 1558193472.3785539}, {"loss": 0.45973246671159745, "info": {"x0": -4.730489298336446, "x1": 3.6593641869061333, "x2": 5.614664009426693, "x3": -0.4148029308964234, "x4": 2.183652976638317, "x5": 0.02483415719962878}}, null] +[[0, 0, 26], 9.0, {"submitted": 1558193472.3813002, "started": 1558193472.381903, "finished": 1558193472.3912902}, {"loss": 0.3460931741149333, "info": {"x0": -3.336046234676632, "x1": 6.5843374200624645, "x2": 4.607094876060499, "x3": -2.3534690438525265, "x4": 1.0957917506871722, "x5": 0.20823609076876748}}, null] +[[0, 0, 3], 27.0, {"submitted": 1558193472.3936644, "started": 1558193472.394061, "finished": 1558193472.404385}, {"loss": 0.30170663577940904, "info": {"x0": -2.850489337861681, "x1": 3.9628064524391924, "x2": 7.078101292354109, "x3": -3.5682791739914723, "x4": 2.515217228033851, "x5": 0.17823329680914968}}, null] +[[0, 0, 4], 27.0, {"submitted": 1558193472.4056935, "started": 1558193472.406121, "finished": 1558193472.4133737}, {"loss": 0.30148523711300423, "info": {"x0": -3.2279648624826796, "x1": 5.617866856102696, "x2": 6.4328847934123115, "x3": -2.932664725182105, "x4": 4.507369423497773, "x5": 0.3259753445177353}}, null] +[[0, 0, 6], 27.0, {"submitted": 1558193472.4161172, "started": 1558193472.4165726, "finished": 1558193472.4261508}, {"loss": 0.2939575636354567, "info": {"x0": -2.504416325942685, "x1": 5.102208160686774, "x2": 6.1244516103555595, "x3": -1.3144398481815718, "x4": 4.613463560760737, "x5": 0.21197884574312342}}, null] +[[0, 0, 11], 27.0, {"submitted": 1558193472.4282181, "started": 1558193472.4286256, "finished": 1558193472.4390647}, {"loss": 0.3221725094018717, "info": {"x0": -3.103575014239763, "x1": 6.096140869702788, "x2": 4.491144001957462, "x3": -2.9333899271035757, "x4": 1.1509876427440089, "x5": 0.08757584270264446}}, null] +[[0, 0, 14], 27.0, {"submitted": 1558193472.441066, "started": 1558193472.4414647, "finished": 1558193472.4527855}, {"loss": 0.3224215844009636, "info": {"x0": -2.0407257336054023, "x1": 5.564401053529204, "x2": 4.5135178289310565, "x3": -3.6093997958270174, "x4": 4.74742332901969, "x5": 0.27295539532313207}}, null] +[[0, 0, 18], 27.0, {"submitted": 1558193472.4544911, "started": 1558193472.4551883, "finished": 1558193472.4628155}, {"loss": 0.32929427136543354, "info": {"x0": -3.2962733318869937, "x1": 3.692323886571384, "x2": 4.5662412149760305, "x3": -1.7415024667632313, "x4": 1.340432602822017, "x5": 0.21427911922806686}}, null] +[[0, 0, 19], 27.0, {"submitted": 1558193472.4680169, "started": 1558193472.4684823, "finished": 1558193472.476967}, {"loss": 0.3553090398595067, "info": {"x0": -3.857596501345665, "x1": 6.839287774246441, "x2": 5.852980080134653, "x3": -2.1909588481195574, "x4": 1.7852248425299542, "x5": 0.06344307310815916}}, null] +[[0, 0, 21], 27.0, {"submitted": 1558193472.4799898, "started": 1558193472.4827933, "finished": 1558193472.4905262}, {"loss": 0.31099630842267145, "info": {"x0": -3.3159509057551886, "x1": 6.636242678787616, "x2": 5.140150985450321, "x3": -1.083956944341541, "x4": 1.1876977515578795, "x5": 0.11763232635343435}}, null] +[[0, 0, 26], 27.0, {"submitted": 1558193472.4917738, "started": 1558193472.492178, "finished": 1558193472.5012765}, {"loss": 0.3376107028550107, "info": {"x0": -3.336046234676632, "x1": 6.5843374200624645, "x2": 4.607094876060499, "x3": -2.3534690438525265, "x4": 1.0957917506871722, "x5": 0.20823609076876748}}, null] +[[0, 0, 3], 81.0, {"submitted": 1558193472.5034852, "started": 1558193472.5040097, "finished": 1558193472.5126643}, {"loss": 0.2858856034138656, "info": {"x0": -2.850489337861681, "x1": 3.9628064524391924, "x2": 7.078101292354109, "x3": -3.5682791739914723, "x4": 2.515217228033851, "x5": 0.17823329680914968}}, null] +[[0, 0, 4], 81.0, {"submitted": 1558193472.5161347, "started": 1558193472.5170932, "finished": 1558193472.5278268}, {"loss": 0.29148985015400225, "info": {"x0": -3.2279648624826796, "x1": 5.617866856102696, "x2": 6.4328847934123115, "x3": -2.932664725182105, "x4": 4.507369423497773, "x5": 0.3259753445177353}}, null] +[[0, 0, 6], 81.0, {"submitted": 1558193472.5294976, "started": 1558193472.5298452, "finished": 1558193472.5391428}, {"loss": 0.28454796965876633, "info": {"x0": -2.504416325942685, "x1": 5.102208160686774, "x2": 6.1244516103555595, "x3": -1.3144398481815718, "x4": 4.613463560760737, "x5": 0.21197884574312342}}, null] +[[0, 0, 6], 243.0, {"submitted": 1558193472.5412102, "started": 1558193472.5416913, "finished": 1558193472.5519636}, {"loss": 0.2827306265746865, "info": {"x0": -2.504416325942685, "x1": 5.102208160686774, "x2": 6.1244516103555595, "x3": -1.3144398481815718, "x4": 4.613463560760737, "x5": 0.21197884574312342}}, null] +[[1, 0, 0], 27.0, {"submitted": 1558193472.554767, "started": 1558193472.5552092, "finished": 1558193472.5622551}, {"loss": 0.3607702914382094, "info": {"x0": -3.917536652115259, "x1": 5.593096396344567, "x2": 6.913439116567416, "x3": -2.788709116019932, "x4": 1.5884058834458687, "x5": 0.47414601347584096}}, null] +[[1, 0, 1], 27.0, {"submitted": 1558193472.5668585, "started": 1558193472.567219, "finished": 1558193472.5752}, {"loss": 0.31829335316740714, "info": {"x0": -3.1395340413095, "x1": 3.887899902759783, "x2": 4.892047718140699, "x3": -0.5005230206404105, "x4": 3.9976267499770084, "x5": 0.2027146594395467}}, null] +[[1, 0, 2], 27.0, {"submitted": 1558193472.57905, "started": 1558193472.579605, "finished": 1558193472.5908895}, {"loss": 0.39393450051188694, "info": {"x0": -4.843842265427922, "x1": 5.888059194329437, "x2": 7.182130585044893, "x3": -1.0295663796534744, "x4": 1.5543431317489271, "x5": 0.3960504673184582}}, null] +[[1, 0, 3], 27.0, {"submitted": 1558193472.594766, "started": 1558193472.5951774, "finished": 1558193472.6039007}, {"loss": 0.42014759547657904, "info": {"x0": -5.371236327766795, "x1": 4.261145416477191, "x2": 7.592165854435311, "x3": -2.043422105190629, "x4": 1.112839922891395, "x5": 0.3960255179459554}}, null] +[[1, 0, 4], 27.0, {"submitted": 1558193472.6055527, "started": 1558193472.6070356, "finished": 1558193472.6212628}, {"loss": 0.38060424309100166, "info": {"x0": -4.1728573247588, "x1": 6.087896862771748, "x2": 4.3302571035193935, "x3": -1.3194728439577759, "x4": 1.7625225126376032, "x5": 0.12299137625850498}}, null] +[[1, 0, 5], 27.0, {"submitted": 1558193472.6234028, "started": 1558193472.6237345, "finished": 1558193472.6345546}, {"loss": 0.4838284121705323, "info": {"x0": -5.759828793879896, "x1": 6.68001475153681, "x2": 6.732481248646804, "x3": -3.0747425782286446, "x4": 4.981421862272374, "x5": 0.25700748425481657}}, null] +[[1, 0, 6], 27.0, {"submitted": 1558193472.6371017, "started": 1558193472.6374404, "finished": 1558193472.6520271}, {"loss": 0.3987499984190198, "info": {"x0": -4.890960489755791, "x1": 4.47806144404858, "x2": 6.942493780271527, "x3": -2.908706737604908, "x4": 3.014336025648162, "x5": 0.18855501265416513}}, null] +[[1, 0, 7], 27.0, {"submitted": 1558193472.6545634, "started": 1558193472.654991, "finished": 1558193472.6625826}, {"loss": 0.46198569579250004, "info": {"x0": -2.0924354501436615, "x1": 3.324111458336107, "x2": 7.925713194862491, "x3": -3.9500674205819086, "x4": 2.6771645261727675, "x5": 0.21670830804393326}}, null] +[[1, 0, 8], 27.0, {"submitted": 1558193472.66765, "started": 1558193472.6690433, "finished": 1558193472.6820047}, {"loss": 0.400876381730049, "info": {"x0": -5.117325669930441, "x1": 7.144798294740824, "x2": 7.5220264578315845, "x3": -2.6045324788467936, "x4": 1.0978206013275167, "x5": 0.06542267794162193}}, null] +[[1, 0, 0], 81.0, {"submitted": 1558193472.6850767, "started": 1558193472.6855702, "finished": 1558193472.692336}, {"loss": 0.35342711793691794, "info": {"x0": -3.917536652115259, "x1": 5.593096396344567, "x2": 6.913439116567416, "x3": -2.788709116019932, "x4": 1.5884058834458687, "x5": 0.47414601347584096}}, null] +[[1, 0, 1], 81.0, {"submitted": 1558193472.6940496, "started": 1558193472.694873, "finished": 1558193472.7062922}, {"loss": 0.29891604714109343, "info": {"x0": -3.1395340413095, "x1": 3.887899902759783, "x2": 4.892047718140699, "x3": -0.5005230206404105, "x4": 3.9976267499770084, "x5": 0.2027146594395467}}, null] +[[1, 0, 4], 81.0, {"submitted": 1558193472.7088232, "started": 1558193472.7094817, "finished": 1558193472.7240276}, {"loss": 0.37339483358117154, "info": {"x0": -4.1728573247588, "x1": 6.087896862771748, "x2": 4.3302571035193935, "x3": -1.3194728439577759, "x4": 1.7625225126376032, "x5": 0.12299137625850498}}, null] +[[1, 0, 1], 243.0, {"submitted": 1558193472.7257183, "started": 1558193472.7262976, "finished": 1558193472.7374408}, {"loss": 0.2948385565431026, "info": {"x0": -3.1395340413095, "x1": 3.887899902759783, "x2": 4.892047718140699, "x3": -0.5005230206404105, "x4": 3.9976267499770084, "x5": 0.2027146594395467}}, null] +[[2, 0, 0], 81.0, {"submitted": 1558193472.7413125, "started": 1558193472.7416773, "finished": 1558193472.751797}, {"loss": 0.3664852371440712, "info": {"x0": -4.736506806344852, "x1": 4.896980835616749, "x2": 6.246451724764611, "x3": -0.2674564104243702, "x4": 1.5273045517727892, "x5": 0.0978342004756621}}, null] +[[2, 0, 1], 81.0, {"submitted": 1558193472.7543468, "started": 1558193472.75472, "finished": 1558193472.7614934}, {"loss": 0.2850645744066507, "info": {"x0": -2.3611604419715166, "x1": 7.114221584567495, "x2": 6.517990279432828, "x3": -1.4013487945402843, "x4": 4.548361583219103, "x5": 0.18134403657775933}}, null] +[[2, 0, 2], 81.0, {"submitted": 1558193472.7641158, "started": 1558193472.7647054, "finished": 1558193472.7749128}, {"loss": 0.42659593494547143, "info": {"x0": -5.747879032469726, "x1": 4.913514837055823, "x2": 7.269515386579707, "x3": -2.191560127085189, "x4": 1.8693413355518889, "x5": 0.15668383648012496}}, null] +[[2, 0, 3], 81.0, {"submitted": 1558193472.7791505, "started": 1558193472.7795367, "finished": 1558193472.7910573}, {"loss": 0.40152675345512556, "info": {"x0": -4.435499023059385, "x1": 7.998009390087484, "x2": 6.2241591255050395, "x3": -0.09727842085570648, "x4": 1.180035525217265, "x5": 0.4693383793673751}}, null] +[[2, 0, 4], 81.0, {"submitted": 1558193472.7931533, "started": 1558193472.7936392, "finished": 1558193472.8044996}, {"loss": 0.3012084847334016, "info": {"x0": -2.636964997703245, "x1": 5.330517641302735, "x2": 4.29362700055767, "x3": -1.1814974706887256, "x4": 3.6002843541471408, "x5": 0.38717845636978837}}, null] +[[2, 0, 5], 81.0, {"submitted": 1558193472.8074713, "started": 1558193472.8078167, "finished": 1558193472.818887}, {"loss": 0.29100552858963497, "info": {"x0": -2.3224175452335283, "x1": 4.700488143300995, "x2": 6.763671713855667, "x3": -1.7189312874076683, "x4": 4.937635382219506, "x5": 0.24491090826940232}}, null] +[[2, 0, 1], 243.0, {"submitted": 1558193472.8207817, "started": 1558193472.8213394, "finished": 1558193472.8277502}, {"loss": 0.2854566412443824, "info": {"x0": -2.3611604419715166, "x1": 7.114221584567495, "x2": 6.517990279432828, "x3": -1.4013487945402843, "x4": 4.548361583219103, "x5": 0.18134403657775933}}, null] +[[2, 0, 5], 243.0, {"submitted": 1558193472.829149, "started": 1558193472.829537, "finished": 1558193472.8408825}, {"loss": 0.28714482698465843, "info": {"x0": -2.3224175452335283, "x1": 4.700488143300995, "x2": 6.763671713855667, "x3": -1.7189312874076683, "x4": 4.937635382219506, "x5": 0.24491090826940232}}, null] +[[3, 0, 0], 243.0, {"submitted": 1558193472.8443396, "started": 1558193472.8453212, "finished": 1558193472.8557343}, {"loss": 0.285627302532995, "info": {"x0": -2.6493381989996623, "x1": 4.556159022379969, "x2": 7.210310220951596, "x3": -1.022026700805291, "x4": 4.690389209238775, "x5": 0.20530498331202934}}, null] +[[3, 0, 1], 243.0, {"submitted": 1558193472.8576005, "started": 1558193472.857922, "finished": 1558193472.8728812}, {"loss": 0.29966328218895455, "info": {"x0": -3.327349746087383, "x1": 5.494741438223202, "x2": 6.41640598817235, "x3": -1.6750821349503653, "x4": 4.403682928728078, "x5": 0.001278351969902669}}, null] +[[3, 0, 2], 243.0, {"submitted": 1558193472.8753002, "started": 1558193472.875683, "finished": 1558193472.8857684}, {"loss": 0.4880212121441052, "info": {"x0": -5.649589846516401, "x1": 5.895454912855243, "x2": 5.392086412746583, "x3": -2.8093329341763345, "x4": 4.088846041511468, "x5": 0.4408084740036607}}, null] +[[3, 0, 3], 243.0, {"submitted": 1558193472.888131, "started": 1558193472.8885648, "finished": 1558193472.8946772}, {"loss": 0.43693726480240863, "info": {"x0": -5.094011386378902, "x1": 6.70612107178329, "x2": 6.393845768646038, "x3": -1.5280701202311313, "x4": 2.323164184022989, "x5": 0.359446057215906}}, null] +[[4, 0, 0], 9.0, {"submitted": 1558193472.8968182, "started": 1558193472.8976033, "finished": 1558193472.9124866}, {"loss": 0.41244003323779693, "info": {"x0": -4.183059138182488, "x1": 3.1376634348785495, "x2": 5.762205262190243, "x3": -2.27106776531619, "x4": 2.9725129735432114, "x5": 0.1726069873854562}}, null] +[[4, 0, 1], 9.0, {"submitted": 1558193472.9197044, "started": 1558193472.9201791, "finished": 1558193472.9326773}, {"loss": 0.31289667638726676, "info": {"x0": -3.1764876603208445, "x1": 4.5164366510674085, "x2": 6.247125823517181, "x3": -1.4084763874282187, "x4": 2.441277806256432, "x5": 0.1463203629724401}}, null] +[[4, 0, 2], 9.0, {"submitted": 1558193472.935616, "started": 1558193472.936076, "finished": 1558193472.9493623}, {"loss": 0.43375460862453574, "info": {"x0": -4.247528705639491, "x1": 5.800207830613039, "x2": 4.284524186399418, "x3": -2.2775145251865174, "x4": 2.487833971197196, "x5": 0.4703677482389468}}, null] +[[4, 0, 3], 9.0, {"submitted": 1558193472.9535902, "started": 1558193472.9542127, "finished": 1558193472.963097}, {"loss": 0.4431042407684, "info": {"x0": -4.807736381092958, "x1": 5.97446529739375, "x2": 7.6222649095998785, "x3": -1.2052336179915089, "x4": 3.413228870998863, "x5": 0.4892753233828046}}, null] +[[4, 0, 4], 9.0, {"submitted": 1558193472.9725895, "started": 1558193472.973268, "finished": 1558193472.9818435}, {"loss": 0.32754611988108595, "info": {"x0": -2.546001550298699, "x1": 6.462697394020067, "x2": 6.715345042954259, "x3": -0.2359326990556796, "x4": 4.166596170089834, "x5": 0.45704908921330895}}, null] +[[4, 0, 5], 9.0, {"submitted": 1558193472.985019, "started": 1558193472.9853392, "finished": 1558193472.9921088}, {"loss": 0.31084408911652994, "info": {"x0": -2.4693798947456864, "x1": 6.776912593769644, "x2": 7.461455661749024, "x3": -0.8065794032765563, "x4": 2.907248119676317, "x5": 0.2767034138197672}}, null] +[[4, 0, 6], 9.0, {"submitted": 1558193472.9939084, "started": 1558193472.9944239, "finished": 1558193473.004229}, {"loss": 0.34999999892461453, "info": {"x0": -3.9726525583628973, "x1": 7.763293346766443, "x2": 6.984133624301444, "x3": -0.8324231430521927, "x4": 2.980321414522872, "x5": 0.037807855287883996}}, null] +[[4, 0, 7], 9.0, {"submitted": 1558193473.0063114, "started": 1558193473.006701, "finished": 1558193473.014642}, {"loss": 0.42279059007475184, "info": {"x0": -4.6112418432856, "x1": 6.44805981309266, "x2": 7.457055958522716, "x3": -0.48084656114973834, "x4": 3.792686168669415, "x5": 0.49712780856332833}}, null] +[[4, 0, 8], 9.0, {"submitted": 1558193473.0178638, "started": 1558193473.0182395, "finished": 1558193473.0369418}, {"loss": 0.3438514715488107, "info": {"x0": -2.164455436445788, "x1": 6.367518323648181, "x2": 6.336298318707939, "x3": -0.6370674116998467, "x4": 2.1811269842603824, "x5": 0.49700984978695567}}, null] +[[4, 0, 9], 9.0, {"submitted": 1558193473.0392427, "started": 1558193473.039577, "finished": 1558193473.051964}, {"loss": 0.39595940183995915, "info": {"x0": -3.38085200339027, "x1": 3.325922266453984, "x2": 4.643424887796426, "x3": -3.8599475442632065, "x4": 2.881870183053434, "x5": 0.11464941362056463}}, null] +[[4, 0, 10], 9.0, {"submitted": 1558193473.0547304, "started": 1558193473.055393, "finished": 1558193473.0674188}, {"loss": 0.3073339440450897, "info": {"x0": -2.6236058630609875, "x1": 7.031947000549833, "x2": 4.758239780970019, "x3": -0.5784325285391341, "x4": 3.701030139779472, "x5": 0.3647633869333648}}, null] +[[4, 0, 11], 9.0, {"submitted": 1558193473.0694444, "started": 1558193473.0698903, "finished": 1558193473.076854}, {"loss": 0.48019833826078484, "info": {"x0": -5.44740516272622, "x1": 6.696931925971051, "x2": 5.790618329487669, "x3": -3.1876733746282384, "x4": 1.6405852878648024, "x5": 0.08289126079940645}}, null] +[[4, 0, 12], 9.0, {"submitted": 1558193473.0812168, "started": 1558193473.0818355, "finished": 1558193473.0913947}, {"loss": 0.48231088036533815, "info": {"x0": -5.305857418039553, "x1": 4.55767577409155, "x2": 5.615671823061927, "x3": -0.8015047039050929, "x4": 3.6293647147504817, "x5": 0.4821544794636877}}, null] +[[4, 0, 13], 9.0, {"submitted": 1558193473.0936897, "started": 1558193473.0945308, "finished": 1558193473.1039486}, {"loss": 1, "info": {"x0": -4.180534868314892, "x1": 3.2399914123337132, "x2": 6.097277209074905, "x3": -2.184593998895535, "x4": 4.822783768336553, "x5": 0.10574198995490453}}, null] +[[4, 0, 14], 9.0, {"submitted": 1558193473.1078985, "started": 1558193473.1083615, "finished": 1558193473.120836}, {"loss": 1, "info": {"x0": -5.6068181436773745, "x1": 3.746030362654961, "x2": 7.844760782056333, "x3": -2.490985414426204, "x4": 2.9536117300492952, "x5": 0.34526513568078526}}, null] +[[4, 0, 15], 9.0, {"submitted": 1558193473.1241145, "started": 1558193473.1245112, "finished": 1558193473.1344655}, {"loss": 0.3454520252734643, "info": {"x0": -2.8102824711639487, "x1": 5.2237932064113295, "x2": 5.1048336181687475, "x3": -2.0479892252000518, "x4": 3.600759634659932, "x5": 0.4806222542720966}}, null] +[[4, 0, 16], 9.0, {"submitted": 1558193473.136124, "started": 1558193473.136465, "finished": 1558193473.1419377}, {"loss": 0.302975084327395, "info": {"x0": -2.762671795378197, "x1": 5.649231344207257, "x2": 7.740027589677213, "x3": -2.6906245839727503, "x4": 1.8065136765781653, "x5": 0.059435439301840365}}, null] +[[4, 0, 17], 9.0, {"submitted": 1558193473.143699, "started": 1558193473.1441872, "finished": 1558193473.1549444}, {"loss": 0.31522600921083976, "info": {"x0": -2.88220805549094, "x1": 6.810807793982748, "x2": 4.382419517055478, "x3": -0.19559001507936458, "x4": 4.726063527694816, "x5": 0.22201070055736533}}, null] +[[4, 0, 18], 9.0, {"submitted": 1558193473.1576376, "started": 1558193473.1581461, "finished": 1558193473.1674347}, {"loss": 0.48583947905466446, "info": {"x0": -4.9992111998061315, "x1": 4.041245743470194, "x2": 5.157077714600362, "x3": -1.5119054411123276, "x4": 4.765616179258444, "x5": 0.20321157020105313}}, null] +[[4, 0, 19], 9.0, {"submitted": 1558193473.169157, "started": 1558193473.1695173, "finished": 1558193473.1747534}, {"loss": 0.368683879824967, "info": {"x0": -2.2507409612068288, "x1": 4.212645887779355, "x2": 5.967178916405985, "x3": -0.4247643708326754, "x4": 2.3053339584251877, "x5": 0.43615920358302773}}, null] +[[4, 0, 20], 9.0, {"submitted": 1558193473.1765878, "started": 1558193473.1770604, "finished": 1558193473.1867278}, {"loss": 0.3489437267764357, "info": {"x0": -3.3222659019647875, "x1": 6.87856325382974, "x2": 4.988889276253692, "x3": -1.3906498762105812, "x4": 2.9043955413296794, "x5": 0.33425688891074246}}, null] +[[4, 0, 21], 9.0, {"submitted": 1558193473.1890645, "started": 1558193473.189436, "finished": 1558193473.1966248}, {"loss": 0.30574261960590676, "info": {"x0": -2.9893886467925523, "x1": 7.550794415204674, "x2": 5.677947057795709, "x3": -0.47443930759150144, "x4": 2.893696557374669, "x5": 0.34299696889638503}}, null] +[[4, 0, 22], 9.0, {"submitted": 1558193473.199717, "started": 1558193473.2001584, "finished": 1558193473.2062688}, {"loss": 0.4234317285376446, "info": {"x0": -4.55249165380938, "x1": 5.122724268480816, "x2": 7.949412409089323, "x3": -2.7000065480780857, "x4": 3.0310739803189626, "x5": 0.48241331574062957}}, null] +[[4, 0, 23], 9.0, {"submitted": 1558193473.2084916, "started": 1558193473.2088866, "finished": 1558193473.2178624}, {"loss": 0.3747601420755372, "info": {"x0": -3.7992481447302744, "x1": 6.264391008093755, "x2": 4.3792465630825, "x3": -0.5903200744326575, "x4": 1.771566400343266, "x5": 0.21813973575106077}}, null] +[[4, 0, 24], 9.0, {"submitted": 1558193473.2236493, "started": 1558193473.2241201, "finished": 1558193473.2320685}, {"loss": 0.48476475632814797, "info": {"x0": -5.410287437176919, "x1": 5.943655531035496, "x2": 5.014209541545445, "x3": -2.7813549124523087, "x4": 2.7703607762280287, "x5": 0.24171263907077772}}, null] +[[4, 0, 25], 9.0, {"submitted": 1558193473.2338438, "started": 1558193473.2341776, "finished": 1558193473.239385}, {"loss": 0.34576106540075197, "info": {"x0": -2.4644303418221614, "x1": 4.216649729463638, "x2": 7.842970132569529, "x3": -3.247685047416038, "x4": 1.5916544092259235, "x5": 0.25240393948772444}}, null] +[[4, 0, 26], 9.0, {"submitted": 1558193473.2410874, "started": 1558193473.241549, "finished": 1558193473.2502942}, {"loss": 0.32903597552824176, "info": {"x0": -2.0447298567733565, "x1": 4.792446979082951, "x2": 5.291091762172814, "x3": -3.198375576731372, "x4": 2.5141241859764136, "x5": 0.31725550638369904}}, null] +[[4, 0, 1], 27.0, {"submitted": 1558193473.252412, "started": 1558193473.2528622, "finished": 1558193473.259157}, {"loss": 0.2945940937885389, "info": {"x0": -3.1764876603208445, "x1": 4.5164366510674085, "x2": 6.247125823517181, "x3": -1.4084763874282187, "x4": 2.441277806256432, "x5": 0.1463203629724401}}, null] +[[4, 0, 4], 27.0, {"submitted": 1558193473.2612612, "started": 1558193473.261617, "finished": 1558193473.268853}, {"loss": 0.3105166002044736, "info": {"x0": -2.546001550298699, "x1": 6.462697394020067, "x2": 6.715345042954259, "x3": -0.2359326990556796, "x4": 4.166596170089834, "x5": 0.45704908921330895}}, null] +[[4, 0, 5], 27.0, {"submitted": 1558193473.2701242, "started": 1558193473.2705433, "finished": 1558193473.2767127}, {"loss": 0.29336253970479975, "info": {"x0": -2.4693798947456864, "x1": 6.776912593769644, "x2": 7.461455661749024, "x3": -0.8065794032765563, "x4": 2.907248119676317, "x5": 0.2767034138197672}}, null] +[[4, 0, 8], 27.0, {"submitted": 1558193473.2795975, "started": 1558193473.2833173, "finished": 1558193473.2913473}, {"loss": 0.3421033165471223, "info": {"x0": -2.164455436445788, "x1": 6.367518323648181, "x2": 6.336298318707939, "x3": -0.6370674116998467, "x4": 2.1811269842603824, "x5": 0.49700984978695567}}, null] +[[4, 0, 10], 27.0, {"submitted": 1558193473.2925885, "started": 1558193473.2929575, "finished": 1558193473.3027027}, {"loss": 0.29798431295915284, "info": {"x0": -2.6236058630609875, "x1": 7.031947000549833, "x2": 4.758239780970019, "x3": -0.5784325285391341, "x4": 3.701030139779472, "x5": 0.3647633869333648}}, null] +[[4, 0, 16], 27.0, {"submitted": 1558193473.3042078, "started": 1558193473.3045826, "finished": 1558193473.3125837}, {"loss": 0.2888883689519128, "info": {"x0": -2.762671795378197, "x1": 5.649231344207257, "x2": 7.740027589677213, "x3": -2.6906245839727503, "x4": 1.8065136765781653, "x5": 0.059435439301840365}}, null] +[[4, 0, 17], 27.0, {"submitted": 1558193473.3163843, "started": 1558193473.3172536, "finished": 1558193473.3236873}, {"loss": 0.2981134634673582, "info": {"x0": -2.88220805549094, "x1": 6.810807793982748, "x2": 4.382419517055478, "x3": -0.19559001507936458, "x4": 4.726063527694816, "x5": 0.22201070055736533}}, null] +[[4, 0, 21], 27.0, {"submitted": 1558193473.3248308, "started": 1558193473.3251483, "finished": 1558193473.3338754}, {"loss": 0.29359317300751864, "info": {"x0": -2.9893886467925523, "x1": 7.550794415204674, "x2": 5.677947057795709, "x3": -0.47443930759150144, "x4": 2.893696557374669, "x5": 0.34299696889638503}}, null] +[[4, 0, 26], 27.0, {"submitted": 1558193473.3354719, "started": 1558193473.3357913, "finished": 1558193473.3423662}, {"loss": 0.30113468506981744, "info": {"x0": -2.0447298567733565, "x1": 4.792446979082951, "x2": 5.291091762172814, "x3": -3.198375576731372, "x4": 2.5141241859764136, "x5": 0.31725550638369904}}, null] +[[4, 0, 5], 81.0, {"submitted": 1558193473.3446708, "started": 1558193473.3451424, "finished": 1558193473.3555517}, {"loss": 0.28489851781813175, "info": {"x0": -2.4693798947456864, "x1": 6.776912593769644, "x2": 7.461455661749024, "x3": -0.8065794032765563, "x4": 2.907248119676317, "x5": 0.2767034138197672}}, null] +[[4, 0, 16], 81.0, {"submitted": 1558193473.357311, "started": 1558193473.357765, "finished": 1558193473.3697028}, {"loss": 0.29148984441791426, "info": {"x0": -2.762671795378197, "x1": 5.649231344207257, "x2": 7.740027589677213, "x3": -2.6906245839727503, "x4": 1.8065136765781653, "x5": 0.059435439301840365}}, null] +[[4, 0, 21], 81.0, {"submitted": 1558193473.3713913, "started": 1558193473.371698, "finished": 1558193473.378893}, {"loss": 0.2925369008369332, "info": {"x0": -2.9893886467925523, "x1": 7.550794415204674, "x2": 5.677947057795709, "x3": -0.47443930759150144, "x4": 2.893696557374669, "x5": 0.34299696889638503}}, null] +[[4, 0, 5], 243.0, {"submitted": 1558193473.384376, "started": 1558193473.3848538, "finished": 1558193473.391239}, {"loss": 0.28541973533954235, "info": {"x0": -2.4693798947456864, "x1": 6.776912593769644, "x2": 7.461455661749024, "x3": -0.8065794032765563, "x4": 2.907248119676317, "x5": 0.2767034138197672}}, null] +[[5, 0, 0], 27.0, {"submitted": 1558193473.3931913, "started": 1558193473.3936088, "finished": 1558193473.4023926}, {"loss": 0.44115774054159296, "info": {"x0": -4.302169113145943, "x1": 4.116074172076258, "x2": 4.909143465081311, "x3": -0.4808397453112834, "x4": 4.744286844748767, "x5": 0.3076072346739528}}, null] +[[5, 0, 1], 27.0, {"submitted": 1558193473.4045656, "started": 1558193473.4049754, "finished": 1558193473.412069}, {"loss": 0.32667896140229324, "info": {"x0": -3.3741253714753587, "x1": 5.330536496457766, "x2": 7.940781451104742, "x3": -1.286168080360195, "x4": 4.221186781516549, "x5": 0.167041804871624}}, null] +[[5, 0, 2], 27.0, {"submitted": 1558193473.4151988, "started": 1558193473.415632, "finished": 1558193473.421963}, {"loss": 0.31429427280822747, "info": {"x0": -2.672448520635579, "x1": 3.1845289797418355, "x2": 4.919533472640078, "x3": -3.943788917584269, "x4": 2.0823297913231613, "x5": 0.19096512498529045}}, null] +[[5, 0, 3], 27.0, {"submitted": 1558193473.4240468, "started": 1558193473.4244905, "finished": 1558193473.4319167}, {"loss": 0.2970064554140796, "info": {"x0": -3.2328309393069583, "x1": 6.506615426744636, "x2": 6.510009372629568, "x3": -1.6617722634583725, "x4": 2.238463351933212, "x5": 0.13325003905881394}}, null] +[[5, 0, 4], 27.0, {"submitted": 1558193473.4347374, "started": 1558193473.435202, "finished": 1558193473.4414048}, {"loss": 0.4739345001606649, "info": {"x0": -5.81927663112509, "x1": 6.937604232550183, "x2": 7.6255886751966235, "x3": -0.0015092395543416792, "x4": 4.061632754635438, "x5": 0.18613377809398657}}, null] +[[5, 0, 5], 27.0, {"submitted": 1558193473.443565, "started": 1558193473.4438987, "finished": 1558193473.4522288}, {"loss": 0.2871632802043784, "info": {"x0": -2.173081420974237, "x1": 6.8255723460859805, "x2": 7.457258346772205, "x3": -1.2785582195624565, "x4": 2.0279660749509483, "x5": 0.19444610784303173}}, null] +[[5, 0, 6], 27.0, {"submitted": 1558193473.4542956, "started": 1558193473.4548132, "finished": 1558193473.4612358}, {"loss": 0.2974215842012275, "info": {"x0": -2.8334698111050862, "x1": 4.957135745568012, "x2": 7.175884970199073, "x3": -0.6171722114555322, "x4": 3.6100535819855066, "x5": 0.012164084067902203}}, null] +[[5, 0, 7], 27.0, {"submitted": 1558193473.4637058, "started": 1558193473.464371, "finished": 1558193473.47112}, {"loss": 0.4685839387940799, "info": {"x0": -5.46721355762595, "x1": 3.0770430148840306, "x2": 5.938516679586748, "x3": -3.727409404350696, "x4": 2.0086338457322395, "x5": 0.1724269956884404}}, null] +[[5, 0, 8], 27.0, {"submitted": 1558193473.473232, "started": 1558193473.4737334, "finished": 1558193473.4823797}, {"loss": 0.4465913251393244, "info": {"x0": -4.508692415302091, "x1": 5.127899396278949, "x2": 4.006558820773545, "x3": -2.023311341014835, "x4": 1.7709725512482257, "x5": 0.46698030507231686}}, null] +[[5, 0, 3], 81.0, {"submitted": 1558193473.4840212, "started": 1558193473.4843225, "finished": 1558193473.489848}, {"loss": 0.29598247079158074, "info": {"x0": -3.2328309393069583, "x1": 6.506615426744636, "x2": 6.510009372629568, "x3": -1.6617722634583725, "x4": 2.238463351933212, "x5": 0.13325003905881394}}, null] +[[5, 0, 5], 81.0, {"submitted": 1558193473.4914083, "started": 1558193473.4918482, "finished": 1558193473.4996586}, {"loss": 0.28797970112042015, "info": {"x0": -2.173081420974237, "x1": 6.8255723460859805, "x2": 7.457258346772205, "x3": -1.2785582195624565, "x4": 2.0279660749509483, "x5": 0.19444610784303173}}, null] +[[5, 0, 6], 81.0, {"submitted": 1558193473.501347, "started": 1558193473.5018616, "finished": 1558193473.510967}, {"loss": 0.29285055060558207, "info": {"x0": -2.8334698111050862, "x1": 4.957135745568012, "x2": 7.175884970199073, "x3": -0.6171722114555322, "x4": 3.6100535819855066, "x5": 0.012164084067902203}}, null] +[[5, 0, 5], 243.0, {"submitted": 1558193473.5132854, "started": 1558193473.5149236, "finished": 1558193473.521847}, {"loss": 0.28797970112042015, "info": {"x0": -2.173081420974237, "x1": 6.8255723460859805, "x2": 7.457258346772205, "x3": -1.2785582195624565, "x4": 2.0279660749509483, "x5": 0.19444610784303173}}, null] +[[6, 0, 0], 81.0, {"submitted": 1558193473.5240188, "started": 1558193473.5243435, "finished": 1558193473.531138}, {"loss": 0.47309962909709924, "info": {"x0": -4.794312496092301, "x1": 7.128609517315695, "x2": 4.130644006376993, "x3": -1.7320951116422205, "x4": 1.5144495253439358, "x5": 0.36846685104888427}}, null] +[[6, 0, 1], 81.0, {"submitted": 1558193473.5360494, "started": 1558193473.5363853, "finished": 1558193473.5432608}, {"loss": 0.3112961198119756, "info": {"x0": -3.459710609461869, "x1": 3.4746336534466304, "x2": 6.687992467175867, "x3": -3.422412184937875, "x4": 4.812482390382603, "x5": 0.4280813606433554}}, null] +[[6, 0, 2], 81.0, {"submitted": 1558193473.5451643, "started": 1558193473.5456085, "finished": 1558193473.5526004}, {"loss": 0.4307103317919638, "info": {"x0": -4.950761820502746, "x1": 6.822684260682063, "x2": 6.700456011466025, "x3": -0.8936452553791696, "x4": 1.9096358025811733, "x5": 0.446883827281844}}, null] +[[6, 0, 3], 81.0, {"submitted": 1558193473.5544758, "started": 1558193473.5548258, "finished": 1558193473.5607762}, {"loss": 0.40739851445839415, "info": {"x0": -5.491810520704867, "x1": 3.854828017703463, "x2": 7.55734743143948, "x3": -0.745648837260573, "x4": 2.7321318842821376, "x5": 0.04946896218465435}}, null] +[[6, 0, 4], 81.0, {"submitted": 1558193473.5631416, "started": 1558193473.5637388, "finished": 1558193473.5719879}, {"loss": 0.4699769385109528, "info": {"x0": -5.156000781875116, "x1": 7.902696012262003, "x2": 4.235970599751809, "x3": -0.9418323474607551, "x4": 1.1885976091240043, "x5": 0.4250875587921904}}, null] +[[6, 0, 5], 81.0, {"submitted": 1558193473.5752819, "started": 1558193473.5756664, "finished": 1558193473.584082}, {"loss": 0.40163284176802494, "info": {"x0": -4.464249470637512, "x1": 6.006026808457736, "x2": 4.485259498389899, "x3": -1.3810037891320146, "x4": 4.200682621674016, "x5": 0.07399364698002597}}, null] +[[6, 0, 1], 243.0, {"submitted": 1558193473.5858555, "started": 1558193473.5862765, "finished": 1558193473.5924256}, {"loss": 0.30124076927252574, "info": {"x0": -3.459710609461869, "x1": 3.4746336534466304, "x2": 6.687992467175867, "x3": -3.422412184937875, "x4": 4.812482390382603, "x5": 0.4280813606433554}}, null] +[[6, 0, 5], 243.0, {"submitted": 1558193473.5939777, "started": 1558193473.5944095, "finished": 1558193473.603009}, {"loss": 0.40163284176802494, "info": {"x0": -4.464249470637512, "x1": 6.006026808457736, "x2": 4.485259498389899, "x3": -1.3810037891320146, "x4": 4.200682621674016, "x5": 0.07399364698002597}}, null] +[[7, 0, 0], 243.0, {"submitted": 1558193473.6067152, "started": 1558193473.607159, "finished": 1558193473.614083}, {"loss": 0.30227859372513655, "info": {"x0": -2.9950053782725767, "x1": 5.571232636216957, "x2": 6.970476740667765, "x3": -3.6102209406051644, "x4": 3.9917818512581276, "x5": 0.426034996620231}}, null] +[[7, 0, 1], 243.0, {"submitted": 1558193473.6168344, "started": 1558193473.6171472, "finished": 1558193473.6227715}, {"loss": 0.42395756445632643, "info": {"x0": -5.190777559298556, "x1": 7.418302424011081, "x2": 7.5691050889428455, "x3": -3.192623275684592, "x4": 3.1764687130854434, "x5": 0.34536587034029254}}, null] +[[7, 0, 2], 243.0, {"submitted": 1558193473.624629, "started": 1558193473.6249673, "finished": 1558193473.632047}, {"loss": 0.4598893003743073, "info": {"x0": -5.511404811317002, "x1": 7.039926929228565, "x2": 7.121438700086588, "x3": -3.981660490468682, "x4": 1.8002774687247278, "x5": 0.4142651713247116}}, null] +[[7, 0, 3], 243.0, {"submitted": 1558193473.6338923, "started": 1558193473.6344063, "finished": 1558193473.642439}, {"loss": 0.3533025765483958, "info": {"x0": -4.075889266056833, "x1": 4.1365759638151065, "x2": 4.078505911049829, "x3": -1.509016469754858, "x4": 1.8267744656704465, "x5": 0.22332881835122553}}, null] +[[8, 0, 0], 9.0, {"submitted": 1558193473.644417, "started": 1558193473.6447806, "finished": 1558193473.6525092}, {"loss": 0.40815497242690946, "info": {"x0": -4.888913619450703, "x1": 4.181242995767844, "x2": 7.746716576808785, "x3": -2.831875360114199, "x4": 2.4143406387390316, "x5": 0.11462886247735632}}, null] +[[8, 0, 1], 9.0, {"submitted": 1558193473.6541953, "started": 1558193473.6545408, "finished": 1558193473.660104}, {"loss": 0.4398662265414558, "info": {"x0": -4.143078528884653, "x1": 3.016805620753362, "x2": 5.322531536615099, "x3": -1.1074571807030043, "x4": 4.4628913325166035, "x5": 0.33443508523721766}}, null] +[[8, 0, 2], 9.0, {"submitted": 1558193473.662681, "started": 1558193473.6630635, "finished": 1558193473.6733952}, {"loss": 0.47899446173107113, "info": {"x0": -5.917762612781185, "x1": 6.473220309283693, "x2": 5.761523983088714, "x3": -1.6492182598662288, "x4": 4.924604413406199, "x5": 0.1920126007449494}}, null] +[[8, 0, 3], 9.0, {"submitted": 1558193473.6752346, "started": 1558193473.6755757, "finished": 1558193473.683529}, {"loss": 0.4078136493203083, "info": {"x0": -4.482216102660757, "x1": 5.747828587529506, "x2": 5.9157022254687615, "x3": -0.8974466335621072, "x4": 1.375055784222023, "x5": 0.2607994571975041}}, null] +[[8, 0, 4], 9.0, {"submitted": 1558193473.685553, "started": 1558193473.6858668, "finished": 1558193473.6927526}, {"loss": 0.47931734265134124, "info": {"x0": -4.73381811999716, "x1": 7.300263844320917, "x2": 4.346472551890351, "x3": -3.332627911201657, "x4": 4.63770811545621, "x5": 0.4250722855478398}}, null] +[[8, 0, 5], 9.0, {"submitted": 1558193473.69526, "started": 1558193473.6956272, "finished": 1558193473.7075596}, {"loss": 0.34198338957249125, "info": {"x0": -3.0090942779213052, "x1": 4.603568061583543, "x2": 6.755589970569399, "x3": -2.6697182990025086, "x4": 4.9635225852576195, "x5": 0.236163057001117}}, null] +[[8, 0, 6], 9.0, {"submitted": 1558193473.710324, "started": 1558193473.7119167, "finished": 1558193473.723004}, {"loss": 0.4683671569164389, "info": {"x0": -5.497298345006296, "x1": 6.474774819502355, "x2": 7.069386396569911, "x3": -3.534349381978243, "x4": 1.8999503493509486, "x5": 0.13872858762727852}}, null] +[[8, 0, 7], 9.0, {"submitted": 1558193473.7255514, "started": 1558193473.7260723, "finished": 1558193473.7406032}, {"loss": 0.4675276671868587, "info": {"x0": -5.979267169023792, "x1": 4.326038823761039, "x2": 7.877871198881239, "x3": -3.579747177640327, "x4": 1.9486513639021865, "x5": 0.12142491782942194}}, null] +[[8, 0, 8], 9.0, {"submitted": 1558193473.7431023, "started": 1558193473.743538, "finished": 1558193473.7554512}, {"loss": 0.32185885440214534, "info": {"x0": -2.026901561756292, "x1": 7.527643684104644, "x2": 5.770792737697125, "x3": -0.4534661342372459, "x4": 3.186462472459462, "x5": 0.180287612228216}}, null] +[[8, 0, 9], 9.0, {"submitted": 1558193473.7574835, "started": 1558193473.7610307, "finished": 1558193473.7713704}, {"loss": 0.2960562708282438, "info": {"x0": -2.9708395687677354, "x1": 7.4102450207127095, "x2": 5.700218956405674, "x3": -0.2192735977468372, "x4": 2.3259127365587124, "x5": 0.2234465090728079}}, null] +[[8, 0, 10], 9.0, {"submitted": 1558193473.773563, "started": 1558193473.774055, "finished": 1558193473.7837503}, {"loss": 0.35846862896465836, "info": {"x0": -3.9528750196673523, "x1": 6.787213151123092, "x2": 7.975851954474008, "x3": -0.7827482867858353, "x4": 2.0841452096244493, "x5": 0.3037359428151211}}, null] +[[8, 0, 11], 9.0, {"submitted": 1558193473.7857697, "started": 1558193473.7861454, "finished": 1558193473.796191}, {"loss": 0.482892061074529, "info": {"x0": -5.9968499677162725, "x1": 6.144556719139882, "x2": 6.273673773135382, "x3": -1.4328614309168022, "x4": 4.046541459450449, "x5": 0.11483335359131852}}, null] +[[8, 0, 12], 9.0, {"submitted": 1558193473.8009892, "started": 1558193473.8013728, "finished": 1558193473.8094687}, {"loss": 0.34490313468631567, "info": {"x0": -3.456772439175065, "x1": 6.662990569687592, "x2": 4.020232717575855, "x3": -1.0413251634029752, "x4": 3.8189683111794346, "x5": 0.10887548580665479}}, null] +[[8, 0, 13], 9.0, {"submitted": 1558193473.811744, "started": 1558193473.812414, "finished": 1558193473.824609}, {"loss": 0.3039713993884376, "info": {"x0": -3.1013468856438746, "x1": 5.9886436550590485, "x2": 6.629047581613847, "x3": -0.025127060933514578, "x4": 1.738718114901189, "x5": 0.28208699107797935}}, null] +[[8, 0, 14], 9.0, {"submitted": 1558193473.8272924, "started": 1558193473.827733, "finished": 1558193473.836486}, {"loss": 0.4488053420474719, "info": {"x0": -4.743361627692462, "x1": 3.9906985508020982, "x2": 6.136367294329162, "x3": -1.439628593713393, "x4": 2.7028580803251834, "x5": 0.26679561290110837}}, null] +[[8, 0, 15], 9.0, {"submitted": 1558193473.838308, "started": 1558193473.8387778, "finished": 1558193473.8454735}, {"loss": 0.4082287778600541, "info": {"x0": -3.6995244432195302, "x1": 4.236412591508687, "x2": 5.076538097757994, "x3": -3.755638797582509, "x4": 3.344631179551783, "x5": 0.3102887824745535}}, null] +[[8, 0, 16], 9.0, {"submitted": 1558193473.851164, "started": 1558193473.851727, "finished": 1558193473.858894}, {"loss": 0.32090866598407175, "info": {"x0": -3.120780630643656, "x1": 5.379919140795193, "x2": 5.190768429353435, "x3": -1.1666844516647532, "x4": 2.6619174103274785, "x5": 0.11586139206387769}}, null] +[[8, 0, 17], 9.0, {"submitted": 1558193473.8614056, "started": 1558193473.8617473, "finished": 1558193473.8719614}, {"loss": 0.3154012901709858, "info": {"x0": -3.412687522333668, "x1": 7.480634722289959, "x2": 7.065108790182502, "x3": -0.24925154336714428, "x4": 1.274870495161149, "x5": 0.06853775559835534}}, null] +[[8, 0, 18], 9.0, {"submitted": 1558193473.8740044, "started": 1558193473.8743234, "finished": 1558193473.8843355}, {"loss": 0.34728781824635957, "info": {"x0": -4.097656907287977, "x1": 5.939837116706547, "x2": 7.684384753156012, "x3": -0.6566968521742291, "x4": 1.0168383405032588, "x5": 0.27257853017538386}}, null] +[[8, 0, 19], 9.0, {"submitted": 1558193473.8862133, "started": 1558193473.8867397, "finished": 1558193473.8957305}, {"loss": 0.3328828321853, "info": {"x0": -3.0660146550416583, "x1": 3.047560342367447, "x2": 7.564720831325667, "x3": -1.9098969471781873, "x4": 1.1490611275570797, "x5": 0.22814245208014738}}, null] +[[8, 0, 20], 9.0, {"submitted": 1558193473.8985236, "started": 1558193473.8992732, "finished": 1558193473.9077232}, {"loss": 0.3986577453264946, "info": {"x0": -4.425154608139575, "x1": 6.3557829770211125, "x2": 7.054077900771933, "x3": -0.8903169864121283, "x4": 3.785397443437508, "x5": 0.13599428997093543}}, null] +[[8, 0, 21], 9.0, {"submitted": 1558193473.9096322, "started": 1558193473.9099844, "finished": 1558193473.9190817}, {"loss": 0.319474164842597, "info": {"x0": -2.6264474499040795, "x1": 5.426160046810949, "x2": 7.742883010984897, "x3": -3.7693553865831895, "x4": 1.4616169271539445, "x5": 0.4562109457349847}}, null] +[[8, 0, 22], 9.0, {"submitted": 1558193473.921977, "started": 1558193473.9225886, "finished": 1558193473.9324446}, {"loss": 0.43319187158447214, "info": {"x0": -3.853876953559229, "x1": 3.3483881241123465, "x2": 5.166014503514184, "x3": -0.7920632427314875, "x4": 4.529297248556364, "x5": 0.24295973960863193}}, null] +[[8, 0, 23], 9.0, {"submitted": 1558193473.934575, "started": 1558193473.9350808, "finished": 1558193473.9415793}, {"loss": 0.42484316504646324, "info": {"x0": -4.987686300294884, "x1": 3.7194686782696453, "x2": 7.591651246996044, "x3": -0.4244131448271049, "x4": 2.2936161108457234, "x5": 0.2803918047250904}}, null] +[[8, 0, 24], 9.0, {"submitted": 1558193473.9434843, "started": 1558193473.9438915, "finished": 1558193473.95231}, {"loss": 0.30308579343161457, "info": {"x0": -3.0073460646223107, "x1": 5.1771315501092285, "x2": 6.71672627103378, "x3": -2.0368072442128127, "x4": 1.905512794861278, "x5": 0.14064201018599953}}, null] +[[8, 0, 25], 9.0, {"submitted": 1558193473.9541872, "started": 1558193473.9545474, "finished": 1558193473.9617152}, {"loss": 0.5014621710200619, "info": {"x0": -5.670328257690487, "x1": 5.276484515288798, "x2": 4.9621421691956105, "x3": -2.672533180003577, "x4": 2.5177836586381175, "x5": 0.2937826790962139}}, null] +[[8, 0, 26], 9.0, {"submitted": 1558193473.965239, "started": 1558193473.9659958, "finished": 1558193473.9722373}, {"loss": 0.3319557179591698, "info": {"x0": -3.6049829062013807, "x1": 6.576325525878883, "x2": 7.022664641606438, "x3": -2.0832934793025957, "x4": 1.2233100293063655, "x5": 0.20276986663073243}}, null] +[[8, 0, 8], 27.0, {"submitted": 1558193473.9746761, "started": 1558193473.9751387, "finished": 1558193473.98652}, {"loss": 0.3182887434973158, "info": {"x0": -2.026901561756292, "x1": 7.527643684104644, "x2": 5.770792737697125, "x3": -0.4534661342372459, "x4": 3.186462472459462, "x5": 0.180287612228216}}, null] +[[8, 0, 9], 27.0, {"submitted": 1558193473.9887366, "started": 1558193473.989345, "finished": 1558193473.9960644}, {"loss": 0.28756918557799277, "info": {"x0": -2.9708395687677354, "x1": 7.4102450207127095, "x2": 5.700218956405674, "x3": -0.2192735977468372, "x4": 2.3259127365587124, "x5": 0.2234465090728079}}, null] +[[8, 0, 13], 27.0, {"submitted": 1558193473.9981084, "started": 1558193473.9990802, "finished": 1558193474.0048223}, {"loss": 0.2885101455379607, "info": {"x0": -3.1013468856438746, "x1": 5.9886436550590485, "x2": 6.629047581613847, "x3": -0.025127060933514578, "x4": 1.738718114901189, "x5": 0.28208699107797935}}, null] +[[8, 0, 16], 27.0, {"submitted": 1558193474.006439, "started": 1558193474.00689, "finished": 1558193474.0138493}, {"loss": 0.29904058498354474, "info": {"x0": -3.120780630643656, "x1": 5.379919140795193, "x2": 5.190768429353435, "x3": -1.1666844516647532, "x4": 2.6619174103274785, "x5": 0.11586139206387769}}, null] +[[8, 0, 17], 27.0, {"submitted": 1558193474.0158775, "started": 1558193474.0165973, "finished": 1558193474.0252807}, {"loss": 0.304750920572899, "info": {"x0": -3.412687522333668, "x1": 7.480634722289959, "x2": 7.065108790182502, "x3": -0.24925154336714428, "x4": 1.274870495161149, "x5": 0.06853775559835534}}, null] +[[8, 0, 19], 27.0, {"submitted": 1558193474.0267904, "started": 1558193474.0273597, "finished": 1558193474.0360875}, {"loss": 0.311462168346032, "info": {"x0": -3.0660146550416583, "x1": 3.047560342367447, "x2": 7.564720831325667, "x3": -1.9098969471781873, "x4": 1.1490611275570797, "x5": 0.22814245208014738}}, null] +[[8, 0, 21], 27.0, {"submitted": 1558193474.0375524, "started": 1558193474.0380135, "finished": 1558193474.049026}, {"loss": 0.3001291459550002, "info": {"x0": -2.6264474499040795, "x1": 5.426160046810949, "x2": 7.742883010984897, "x3": -3.7693553865831895, "x4": 1.4616169271539445, "x5": 0.4562109457349847}}, null] +[[8, 0, 24], 27.0, {"submitted": 1558193474.0508716, "started": 1558193474.0513217, "finished": 1558193474.0581338}, {"loss": 0.2879289664571411, "info": {"x0": -3.0073460646223107, "x1": 5.1771315501092285, "x2": 6.71672627103378, "x3": -2.0368072442128127, "x4": 1.905512794861278, "x5": 0.14064201018599953}}, null] +[[8, 0, 26], 27.0, {"submitted": 1558193474.0597117, "started": 1558193474.0601017, "finished": 1558193474.0682783}, {"loss": 0.32292896563647744, "info": {"x0": -3.6049829062013807, "x1": 6.576325525878883, "x2": 7.022664641606438, "x3": -2.0832934793025957, "x4": 1.2233100293063655, "x5": 0.20276986663073243}}, null] +[[8, 0, 9], 81.0, {"submitted": 1558193474.0701675, "started": 1558193474.070618, "finished": 1558193474.076486}, {"loss": 0.28624077364788614, "info": {"x0": -2.9708395687677354, "x1": 7.4102450207127095, "x2": 5.700218956405674, "x3": -0.2192735977468372, "x4": 2.3259127365587124, "x5": 0.2234465090728079}}, null] +[[8, 0, 13], 81.0, {"submitted": 1558193474.0777786, "started": 1558193474.07816, "finished": 1558193474.088385}, {"loss": 0.283879148719413, "info": {"x0": -3.1013468856438746, "x1": 5.9886436550590485, "x2": 6.629047581613847, "x3": -0.025127060933514578, "x4": 1.738718114901189, "x5": 0.28208699107797935}}, null] +[[8, 0, 24], 81.0, {"submitted": 1558193474.0900054, "started": 1558193474.0904393, "finished": 1558193474.0983596}, {"loss": 0.28505534943193195, "info": {"x0": -3.0073460646223107, "x1": 5.1771315501092285, "x2": 6.71672627103378, "x3": -2.0368072442128127, "x4": 1.905512794861278, "x5": 0.14064201018599953}}, null] +[[8, 0, 13], 243.0, {"submitted": 1558193474.1007726, "started": 1558193474.1011949, "finished": 1558193474.107608}, {"loss": 0.283879148719413, "info": {"x0": -3.1013468856438746, "x1": 5.9886436550590485, "x2": 6.629047581613847, "x3": -0.025127060933514578, "x4": 1.738718114901189, "x5": 0.28208699107797935}}, null] +[[9, 0, 0], 27.0, {"submitted": 1558193474.1096108, "started": 1558193474.109862, "finished": 1558193474.1197054}, {"loss": 0.42605626708893213, "info": {"x0": -5.419990208079714, "x1": 4.9289002171376435, "x2": 7.292026849589805, "x3": -1.6116361904453473, "x4": 1.6674486294747912, "x5": 0.00024575861445358393}}, null] +[[9, 0, 1], 27.0, {"submitted": 1558193474.1217895, "started": 1558193474.1222074, "finished": 1558193474.1280525}, {"loss": 0.3097785971613388, "info": {"x0": -3.171443379858261, "x1": 7.218959712762043, "x2": 7.841042107161925, "x3": -2.5493306387188435, "x4": 4.369327631392713, "x5": 0.2825626431501723}}, null] +[[9, 0, 2], 27.0, {"submitted": 1558193474.130699, "started": 1558193474.1312287, "finished": 1558193474.1384172}, {"loss": 0.30505996026387405, "info": {"x0": -3.002276645633157, "x1": 4.235042933459884, "x2": 4.340624554647702, "x3": -2.5160309396028873, "x4": 1.8680127396418715, "x5": 0.10465304112155349}}, null] +[[9, 0, 3], 27.0, {"submitted": 1558193474.1402166, "started": 1558193474.1406012, "finished": 1558193474.1484118}, {"loss": 0.2930073804991162, "info": {"x0": -3.0359225589375116, "x1": 6.320374053549672, "x2": 5.879890540973877, "x3": -1.0119665923730103, "x4": 1.846767033268725, "x5": 0.014690008790764153}}, null] +[[9, 0, 4], 27.0, {"submitted": 1558193474.1511903, "started": 1558193474.1515326, "finished": 1558193474.1581945}, {"loss": 0.34025829780668126, "info": {"x0": -2.9477644100969775, "x1": 3.181750334670849, "x2": 7.2632808995101446, "x3": -2.4928156322000365, "x4": 2.722999063996296, "x5": 0.479202674600794}}, null] +[[9, 0, 5], 27.0, {"submitted": 1558193474.1599693, "started": 1558193474.1603587, "finished": 1558193474.1687353}, {"loss": 0.4137223238690423, "info": {"x0": -4.601000439822207, "x1": 6.667480049246979, "x2": 5.41749840730002, "x3": -0.9428441758818953, "x4": 1.6724891792290784, "x5": 0.2404802532778889}}, null] +[[9, 0, 6], 27.0, {"submitted": 1558193474.1711082, "started": 1558193474.1716104, "finished": 1558193474.181352}, {"loss": 0.36232933457095406, "info": {"x0": -3.1442932918401394, "x1": 7.661565184849533, "x2": 7.987682013343864, "x3": -3.741528306529035, "x4": 4.930059022919291, "x5": 0.48071728247243095}}, null] +[[9, 0, 7], 27.0, {"submitted": 1558193474.184503, "started": 1558193474.1849337, "finished": 1558193474.191016}, {"loss": 0.4717527637834148, "info": {"x0": -5.260655890449119, "x1": 6.128233577530741, "x2": 5.202143240827944, "x3": -1.9719813839200886, "x4": 4.318595514353155, "x5": 0.09329264479448207}}, null] +[[9, 0, 8], 27.0, {"submitted": 1558193474.1929564, "started": 1558193474.1933265, "finished": 1558193474.2037563}, {"loss": 0.292735237688431, "info": {"x0": -2.8433623247691333, "x1": 6.173907296763503, "x2": 6.6637740275783965, "x3": -0.005009052535935865, "x4": 4.2504767277482705, "x5": 0.3312172848278663}}, null] +[[9, 0, 2], 81.0, {"submitted": 1558193474.208321, "started": 1558193474.208709, "finished": 1558193474.2184045}, {"loss": 0.29743542157704655, "info": {"x0": -3.002276645633157, "x1": 4.235042933459884, "x2": 4.340624554647702, "x3": -2.5160309396028873, "x4": 1.8680127396418715, "x5": 0.10465304112155349}}, null] +[[9, 0, 3], 81.0, {"submitted": 1558193474.220245, "started": 1558193474.2206864, "finished": 1558193474.226835}, {"loss": 0.293916052120748, "info": {"x0": -3.0359225589375116, "x1": 6.320374053549672, "x2": 5.879890540973877, "x3": -1.0119665923730103, "x4": 1.846767033268725, "x5": 0.014690008790764153}}, null] +[[9, 0, 8], 81.0, {"submitted": 1558193474.2284236, "started": 1558193474.229135, "finished": 1558193474.2407386}, {"loss": 0.28412361376303696, "info": {"x0": -2.8433623247691333, "x1": 6.173907296763503, "x2": 6.6637740275783965, "x3": -0.005009052535935865, "x4": 4.2504767277482705, "x5": 0.3312172848278663}}, null] +[[9, 0, 8], 243.0, {"submitted": 1558193474.2431612, "started": 1558193474.2435546, "finished": 1558193474.25728}, {"loss": 0.283311805679047, "info": {"x0": -2.8433623247691333, "x1": 6.173907296763503, "x2": 6.6637740275783965, "x3": -0.005009052535935865, "x4": 4.2504767277482705, "x5": 0.3312172848278663}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/randomsearch/configs.json new file mode 100644 index 0000000..1c55c53 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/randomsearch/configs.json @@ -0,0 +1,40 @@ +[[0, 0, 0], {"x0": -3.7754363408716682, "x1": 6.206577468392259, "x2": 7.880904773126628, "x3": -0.7746465939847518, "x4": 2.3313554349538728, "x5": 0.17795848091370342}, {}] +[[0, 0, 1], {"x0": -4.863563761393081, "x1": 3.1296773303230863, "x2": 5.8489662232450135, "x3": -2.558403980372922, "x4": 4.617796298502929, "x5": 0.4618007372680263}, {}] +[[0, 0, 2], {"x0": -5.834988571488272, "x1": 7.002015644430584, "x2": 5.24310641461371, "x3": -0.22578530361872629, "x4": 3.4003230015617527, "x5": 0.46364211012136863}, {}] +[[0, 0, 3], {"x0": -3.8434182231703056, "x1": 3.023866213484043, "x2": 7.672343919920017, "x3": -0.3897358912646247, "x4": 2.9744851707752162, "x5": 0.07208389986702984}, {}] +[[1, 0, 0], {"x0": -5.9316423589756955, "x1": 4.73497144344181, "x2": 6.545898942186893, "x3": -0.043571677114954355, "x4": 3.9322910610164876, "x5": 0.06578870520716451}, {}] +[[1, 0, 1], {"x0": -4.243666298373482, "x1": 3.828294715092825, "x2": 5.9431264665773735, "x3": -1.544459879932734, "x4": 2.66098683175531, "x5": 0.37174853791410717}, {}] +[[1, 0, 2], {"x0": -3.820421159975571, "x1": 7.796569513155636, "x2": 5.752811939758759, "x3": -1.365159532652899, "x4": 3.642182280660544, "x5": 0.0840712682734086}, {}] +[[1, 0, 3], {"x0": -5.744640701193441, "x1": 5.443781536760818, "x2": 6.724741243508622, "x3": -1.539461759110381, "x4": 3.0103854720407344, "x5": 0.3304805581254796}, {}] +[[2, 0, 0], {"x0": -3.3019199470381855, "x1": 3.8120112273032225, "x2": 7.749249220104297, "x3": -3.954305515443834, "x4": 4.480980243776848, "x5": 0.14852351566731803}, {}] +[[2, 0, 1], {"x0": -3.7852338344234764, "x1": 4.134113837607321, "x2": 4.302808198391382, "x3": -3.149820761616295, "x4": 1.6310103890395777, "x5": 0.10565918942064506}, {}] +[[2, 0, 2], {"x0": -5.7848028592961, "x1": 6.835294322703388, "x2": 4.031476860035345, "x3": -0.8856236987006012, "x4": 1.3813081710247004, "x5": 0.2521509802043836}, {}] +[[2, 0, 3], {"x0": -2.5599735360381306, "x1": 6.311328517413725, "x2": 7.174626416397253, "x3": -1.396541879839337, "x4": 2.8600550830399003, "x5": 0.329626875656003}, {}] +[[3, 0, 0], {"x0": -2.451825250345037, "x1": 4.710941852083031, "x2": 6.484812847191112, "x3": -0.8738094284242806, "x4": 2.6296292242489607, "x5": 0.4712101207181915}, {}] +[[3, 0, 1], {"x0": -2.2138334002967794, "x1": 7.450715671778194, "x2": 7.670543819788902, "x3": -1.5980112279993697, "x4": 1.7481414375692204, "x5": 0.12566432481749523}, {}] +[[3, 0, 2], {"x0": -5.07428365450272, "x1": 7.776181729376049, "x2": 4.969498970411164, "x3": -0.8225978672040561, "x4": 1.8651097864522428, "x5": 0.11792693057975878}, {}] +[[3, 0, 3], {"x0": -3.2268192778454097, "x1": 7.463961100447586, "x2": 5.176775224003363, "x3": -3.6359329445425477, "x4": 4.480711212564103, "x5": 0.40925623784851844}, {}] +[[4, 0, 0], {"x0": -4.67139247262418, "x1": 7.355112888838537, "x2": 7.284650383671611, "x3": -3.6441217045436445, "x4": 1.6485213096697144, "x5": 0.3041081802861969}, {}] +[[4, 0, 1], {"x0": -3.1838037664122614, "x1": 5.275406443842563, "x2": 6.698440758329673, "x3": -2.982420374813817, "x4": 1.845394267996408, "x5": 0.2548077975054085}, {}] +[[4, 0, 2], {"x0": -5.041876170162466, "x1": 5.9609506275847846, "x2": 5.5886799036102754, "x3": -0.9296154343402114, "x4": 2.8599624955904708, "x5": 0.45651771713188066}, {}] +[[4, 0, 3], {"x0": -4.4913033731969785, "x1": 6.551157699663948, "x2": 5.435958369919955, "x3": -2.6334657249690894, "x4": 2.0732511245007754, "x5": 0.23853171221113445}, {}] +[[5, 0, 0], {"x0": -3.4691629775429997, "x1": 5.240993463268367, "x2": 7.590959988325231, "x3": -3.9610991642945748, "x4": 1.4894988914888403, "x5": 0.04735702098667327}, {}] +[[5, 0, 1], {"x0": -2.1613641183717873, "x1": 7.864687366657258, "x2": 6.108087128028108, "x3": -3.1641410498551124, "x4": 2.9111816395144907, "x5": 0.4526743606877385}, {}] +[[5, 0, 2], {"x0": -4.835298174953381, "x1": 5.497997870969321, "x2": 4.3797235460754145, "x3": -1.9689763951267514, "x4": 2.302771134553461, "x5": 0.2549449655187842}, {}] +[[5, 0, 3], {"x0": -4.787192062859848, "x1": 7.42871956832694, "x2": 4.688750208740718, "x3": -2.532299473610305, "x4": 2.0496752197752772, "x5": 0.05635312841829093}, {}] +[[6, 0, 0], {"x0": -4.105505415166686, "x1": 4.484490672601973, "x2": 4.634444889996447, "x3": -2.179512844143799, "x4": 2.09218795360048, "x5": 0.3332869571008535}, {}] +[[6, 0, 1], {"x0": -3.1717488989527425, "x1": 7.15042617946289, "x2": 5.5223745771842285, "x3": -1.9299460842477592, "x4": 4.118340605017028, "x5": 0.3036949414437815}, {}] +[[6, 0, 2], {"x0": -5.518466258415021, "x1": 5.8947610372158845, "x2": 5.481972630920513, "x3": -0.6348581370004602, "x4": 3.843120624430545, "x5": 0.2039978978899309}, {}] +[[6, 0, 3], {"x0": -5.809988198123484, "x1": 4.218756097819908, "x2": 6.2332985033454404, "x3": -3.267502100774666, "x4": 3.5450932888625624, "x5": 0.12743228669698925}, {}] +[[7, 0, 0], {"x0": -2.466614263978063, "x1": 7.802100583671934, "x2": 7.323735681494355, "x3": -0.8001062737427249, "x4": 4.188220784112797, "x5": 0.4331469722838785}, {}] +[[7, 0, 1], {"x0": -3.3177699357478265, "x1": 7.627329986092403, "x2": 6.198792333683498, "x3": -0.9836527167909446, "x4": 1.8058283866732432, "x5": 0.016583117900076383}, {}] +[[7, 0, 2], {"x0": -3.5549661325376887, "x1": 5.582089798884862, "x2": 6.872885607123943, "x3": -2.8528771916251565, "x4": 1.0011081577639116, "x5": 0.0683846410887507}, {}] +[[7, 0, 3], {"x0": -2.053381623457452, "x1": 7.928504620426119, "x2": 6.165366687804205, "x3": -2.4300662821094456, "x4": 1.5371013031720575, "x5": 0.058370255991067876}, {}] +[[8, 0, 0], {"x0": -2.5065752634283283, "x1": 6.026636822152061, "x2": 6.062090602383077, "x3": -0.6141965539099536, "x4": 2.5913874747036556, "x5": 0.1859659707951387}, {}] +[[8, 0, 1], {"x0": -2.094240783441188, "x1": 6.9545257102248925, "x2": 6.359402949572127, "x3": -0.4409342079964156, "x4": 4.105982111613083, "x5": 0.04345554062796514}, {}] +[[8, 0, 2], {"x0": -3.357189961164834, "x1": 4.950556417432141, "x2": 4.3178064309707445, "x3": -1.5232022871452253, "x4": 1.9603516895918918, "x5": 0.4809566331545248}, {}] +[[8, 0, 3], {"x0": -4.0806447388494504, "x1": 7.866912725538038, "x2": 5.288790092642818, "x3": -0.6872008375615546, "x4": 1.5202093380002561, "x5": 0.10125698815210188}, {}] +[[9, 0, 0], {"x0": -3.4158953402077348, "x1": 7.615159476917158, "x2": 4.950341188927641, "x3": -1.4796791680112706, "x4": 2.0570688162257795, "x5": 0.2954386659852525}, {}] +[[9, 0, 1], {"x0": -4.667280468454351, "x1": 3.2849153284924846, "x2": 5.812097236113615, "x3": -0.7595591934743653, "x4": 4.516875040635906, "x5": 0.2341122161571496}, {}] +[[9, 0, 2], {"x0": -5.729055945203583, "x1": 7.177080366800082, "x2": 4.668502747893982, "x3": -0.18054765517200577, "x4": 2.034917753910902, "x5": 0.09683905811408433}, {}] +[[9, 0, 3], {"x0": -3.4678602216480834, "x1": 6.026465790086084, "x2": 7.9832717987612085, "x3": -1.1212535913726143, "x4": 3.8302780733029085, "x5": 0.3476186006841133}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/randomsearch/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/randomsearch/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/randomsearch/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/randomsearch/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/randomsearch/results.json new file mode 100644 index 0000000..a6c8a0a --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/randomsearch/results.json @@ -0,0 +1,40 @@ +[[0, 0, 0], 243, {"submitted": 1558193452.8044884, "started": 1558193452.8049796, "finished": 1558193452.8124278}, {"loss": 0.30884686495352714, "info": {"x0": -3.7754363408716682, "x1": 6.206577468392259, "x2": 7.880904773126628, "x3": -0.7746465939847518, "x4": 2.3313554349538728, "x5": 0.17795848091370342}}, null] +[[0, 0, 1], 243, {"submitted": 1558193452.8154645, "started": 1558193452.8162332, "finished": 1558193452.8295803}, {"loss": 0.4463191783375956, "info": {"x0": -4.863563761393081, "x1": 3.1296773303230863, "x2": 5.8489662232450135, "x3": -2.558403980372922, "x4": 4.617796298502929, "x5": 0.4618007372680263}}, null] +[[0, 0, 2], 243, {"submitted": 1558193452.8356023, "started": 1558193452.836069, "finished": 1558193452.8437374}, {"loss": 0.5008902216999623, "info": {"x0": -5.834988571488272, "x1": 7.002015644430584, "x2": 5.24310641461371, "x3": -0.22578530361872629, "x4": 3.4003230015617527, "x5": 0.46364211012136863}}, null] +[[0, 0, 3], 243, {"submitted": 1558193452.8461692, "started": 1558193452.8466852, "finished": 1558193452.8660488}, {"loss": 0.29319187511164163, "info": {"x0": -3.8434182231703056, "x1": 3.023866213484043, "x2": 7.672343919920017, "x3": -0.3897358912646247, "x4": 2.9744851707752162, "x5": 0.07208389986702984}}, null] +[[1, 0, 0], 243, {"submitted": 1558193452.8714097, "started": 1558193452.8725657, "finished": 1558193452.8802364}, {"loss": 0.4008625443022685, "info": {"x0": -5.9316423589756955, "x1": 4.73497144344181, "x2": 6.545898942186893, "x3": -0.043571677114954355, "x4": 3.9322910610164876, "x5": 0.06578870520716451}}, null] +[[1, 0, 1], 243, {"submitted": 1558193452.8853595, "started": 1558193452.8879414, "finished": 1558193452.900593}, {"loss": 0.35731549351902275, "info": {"x0": -4.243666298373482, "x1": 3.828294715092825, "x2": 5.9431264665773735, "x3": -1.544459879932734, "x4": 2.66098683175531, "x5": 0.37174853791410717}}, null] +[[1, 0, 2], 243, {"submitted": 1558193452.905539, "started": 1558193452.9059894, "finished": 1558193452.915312}, {"loss": 0.3384686315054163, "info": {"x0": -3.820421159975571, "x1": 7.796569513155636, "x2": 5.752811939758759, "x3": -1.365159532652899, "x4": 3.642182280660544, "x5": 0.0840712682734086}}, null] +[[1, 0, 3], 243, {"submitted": 1558193452.9202142, "started": 1558193452.9262602, "finished": 1558193452.9394329}, {"loss": 0.45307656490075576, "info": {"x0": -5.744640701193441, "x1": 5.443781536760818, "x2": 6.724741243508622, "x3": -1.539461759110381, "x4": 3.0103854720407344, "x5": 0.3304805581254796}}, null] +[[2, 0, 0], 243, {"submitted": 1558193452.9429138, "started": 1558193452.9434183, "finished": 1558193452.95787}, {"loss": 0.287135606183021, "info": {"x0": -3.3019199470381855, "x1": 3.8120112273032225, "x2": 7.749249220104297, "x3": -3.954305515443834, "x4": 4.480980243776848, "x5": 0.14852351566731803}}, null] +[[2, 0, 1], 243, {"submitted": 1558193452.9615803, "started": 1558193452.9621909, "finished": 1558193452.9758759}, {"loss": 0.3557702851890006, "info": {"x0": -3.7852338344234764, "x1": 4.134113837607321, "x2": 4.302808198391382, "x3": -3.149820761616295, "x4": 1.6310103890395777, "x5": 0.10565918942064506}}, null] +[[2, 0, 2], 243, {"submitted": 1558193452.978659, "started": 1558193452.9791353, "finished": 1558193453.0038488}, {"loss": 0.4913330264564094, "info": {"x0": -5.7848028592961, "x1": 6.835294322703388, "x2": 4.031476860035345, "x3": -0.8856236987006012, "x4": 1.3813081710247004, "x5": 0.2521509802043836}}, null] +[[2, 0, 3], 243, {"submitted": 1558193453.0105164, "started": 1558193453.0109687, "finished": 1558193453.0274096}, {"loss": 0.28371309451401455, "info": {"x0": -2.5599735360381306, "x1": 6.311328517413725, "x2": 7.174626416397253, "x3": -1.396541879839337, "x4": 2.8600550830399003, "x5": 0.329626875656003}}, null] +[[3, 0, 0], 243, {"submitted": 1558193453.038249, "started": 1558193453.0388558, "finished": 1558193453.0518723}, {"loss": 0.29058117763266467, "info": {"x0": -2.451825250345037, "x1": 4.710941852083031, "x2": 6.484812847191112, "x3": -0.8738094284242806, "x4": 2.6296292242489607, "x5": 0.4712101207181915}}, null] +[[3, 0, 1], 243, {"submitted": 1558193453.0564966, "started": 1558193453.0570502, "finished": 1558193453.07034}, {"loss": 0.2902629126114874, "info": {"x0": -2.2138334002967794, "x1": 7.450715671778194, "x2": 7.670543819788902, "x3": -1.5980112279993697, "x4": 1.7481414375692204, "x5": 0.12566432481749523}}, null] +[[3, 0, 2], 243, {"submitted": 1558193453.072475, "started": 1558193453.0752294, "finished": 1558193453.0899272}, {"loss": 0.47181734372782635, "info": {"x0": -5.07428365450272, "x1": 7.776181729376049, "x2": 4.969498970411164, "x3": -0.8225978672040561, "x4": 1.8651097864522428, "x5": 0.11792693057975878}}, null] +[[3, 0, 3], 243, {"submitted": 1558193453.09347, "started": 1558193453.09386, "finished": 1558193453.1039693}, {"loss": 0.3306226943463527, "info": {"x0": -3.2268192778454097, "x1": 7.463961100447586, "x2": 5.176775224003363, "x3": -3.6359329445425477, "x4": 4.480711212564103, "x5": 0.40925623784851844}}, null] +[[4, 0, 0], 243, {"submitted": 1558193453.1072264, "started": 1558193453.1076741, "finished": 1558193453.1185353}, {"loss": 0.37106088636161216, "info": {"x0": -4.67139247262418, "x1": 7.355112888838537, "x2": 7.284650383671611, "x3": -3.6441217045436445, "x4": 1.6485213096697144, "x5": 0.3041081802861969}}, null] +[[4, 0, 1], 243, {"submitted": 1558193453.1244662, "started": 1558193453.1248236, "finished": 1558193453.1337447}, {"loss": 0.2854243465748743, "info": {"x0": -3.1838037664122614, "x1": 5.275406443842563, "x2": 6.698440758329673, "x3": -2.982420374813817, "x4": 1.845394267996408, "x5": 0.2548077975054085}}, null] +[[4, 0, 2], 243, {"submitted": 1558193453.1381457, "started": 1558193453.1386325, "finished": 1558193453.1539373}, {"loss": 0.41712638297214466, "info": {"x0": -5.041876170162466, "x1": 5.9609506275847846, "x2": 5.5886799036102754, "x3": -0.9296154343402114, "x4": 2.8599624955904708, "x5": 0.45651771713188066}}, null] +[[4, 0, 3], 243, {"submitted": 1558193453.157104, "started": 1558193453.1574414, "finished": 1558193453.1673877}, {"loss": 0.42041512806449644, "info": {"x0": -4.4913033731969785, "x1": 6.551157699663948, "x2": 5.435958369919955, "x3": -2.6334657249690894, "x4": 2.0732511245007754, "x5": 0.23853171221113445}}, null] +[[5, 0, 0], 243, {"submitted": 1558193453.1712165, "started": 1558193453.171732, "finished": 1558193453.1784902}, {"loss": 0.3086346751470737, "info": {"x0": -3.4691629775429997, "x1": 5.240993463268367, "x2": 7.590959988325231, "x3": -3.9610991642945748, "x4": 1.4894988914888403, "x5": 0.04735702098667327}}, null] +[[5, 0, 1], 243, {"submitted": 1558193453.1811152, "started": 1558193453.182087, "finished": 1558193453.1926162}, {"loss": 0.30990313281707216, "info": {"x0": -2.1613641183717873, "x1": 7.864687366657258, "x2": 6.108087128028108, "x3": -3.1641410498551124, "x4": 2.9111816395144907, "x5": 0.4526743606877385}}, null] +[[5, 0, 2], 243, {"submitted": 1558193453.1941795, "started": 1558193453.1945214, "finished": 1558193453.2060547}, {"loss": 0.4400092228475917, "info": {"x0": -4.835298174953381, "x1": 5.497997870969321, "x2": 4.3797235460754145, "x3": -1.9689763951267514, "x4": 2.302771134553461, "x5": 0.2549449655187842}}, null] +[[5, 0, 3], 243, {"submitted": 1558193453.2097301, "started": 1558193453.210072, "finished": 1558193453.2216067}, {"loss": 0.47535977663286727, "info": {"x0": -4.787192062859848, "x1": 7.42871956832694, "x2": 4.688750208740718, "x3": -2.532299473610305, "x4": 2.0496752197752772, "x5": 0.05635312841829093}}, null] +[[6, 0, 0], 243, {"submitted": 1558193453.2253606, "started": 1558193453.2258158, "finished": 1558193453.2429414}, {"loss": 0.3813514704706416, "info": {"x0": -4.105505415166686, "x1": 4.484490672601973, "x2": 4.634444889996447, "x3": -2.179512844143799, "x4": 2.09218795360048, "x5": 0.3332869571008535}}, null] +[[6, 0, 1], 243, {"submitted": 1558193453.245116, "started": 1558193453.2455132, "finished": 1558193453.2569816}, {"loss": 0.3176291514311769, "info": {"x0": -3.1717488989527425, "x1": 7.15042617946289, "x2": 5.5223745771842285, "x3": -1.9299460842477592, "x4": 4.118340605017028, "x5": 0.3036949414437815}}, null] +[[6, 0, 2], 243, {"submitted": 1558193453.2592041, "started": 1558193453.2597404, "finished": 1558193453.2689211}, {"loss": 0.46992158221032787, "info": {"x0": -5.518466258415021, "x1": 5.8947610372158845, "x2": 5.481972630920513, "x3": -0.6348581370004602, "x4": 3.843120624430545, "x5": 0.2039978978899309}}, null] +[[6, 0, 3], 243, {"submitted": 1558193453.2750764, "started": 1558193453.275916, "finished": 1558193453.292215}, {"loss": 0.44277674613822926, "info": {"x0": -5.809988198123484, "x1": 4.218756097819908, "x2": 6.2332985033454404, "x3": -3.267502100774666, "x4": 3.5450932888625624, "x5": 0.12743228669698925}}, null] +[[7, 0, 0], 243, {"submitted": 1558193453.2938983, "started": 1558193453.2943501, "finished": 1558193453.308252}, {"loss": 0.29217250501633896, "info": {"x0": -2.466614263978063, "x1": 7.802100583671934, "x2": 7.323735681494355, "x3": -0.8001062737427249, "x4": 4.188220784112797, "x5": 0.4331469722838785}}, null] +[[7, 0, 1], 243, {"submitted": 1558193453.3100128, "started": 1558193453.310427, "finished": 1558193453.3206332}, {"loss": 0.2999123600174801, "info": {"x0": -3.3177699357478265, "x1": 7.627329986092403, "x2": 6.198792333683498, "x3": -0.9836527167909446, "x4": 1.8058283866732432, "x5": 0.016583117900076383}}, null] +[[7, 0, 2], 243, {"submitted": 1558193453.323933, "started": 1558193453.3243606, "finished": 1558193453.3369503}, {"loss": 0.3185378200551186, "info": {"x0": -3.5549661325376887, "x1": 5.582089798884862, "x2": 6.872885607123943, "x3": -2.8528771916251565, "x4": 1.0011081577639116, "x5": 0.0683846410887507}}, null] +[[7, 0, 3], 243, {"submitted": 1558193453.3427987, "started": 1558193453.3438761, "finished": 1558193453.3558445}, {"loss": 0.29282748735410147, "info": {"x0": -2.053381623457452, "x1": 7.928504620426119, "x2": 6.165366687804205, "x3": -2.4300662821094456, "x4": 1.5371013031720575, "x5": 0.058370255991067876}}, null] +[[8, 0, 0], 243, {"submitted": 1558193453.3587658, "started": 1558193453.3592947, "finished": 1558193453.3699589}, {"loss": 0.2840913243723751, "info": {"x0": -2.5065752634283283, "x1": 6.026636822152061, "x2": 6.062090602383077, "x3": -0.6141965539099536, "x4": 2.5913874747036556, "x5": 0.1859659707951387}}, null] +[[8, 0, 1], 243, {"submitted": 1558193453.3736703, "started": 1558193453.3748705, "finished": 1558193453.3849723}, {"loss": 0.3423939089746493, "info": {"x0": -2.094240783441188, "x1": 6.9545257102248925, "x2": 6.359402949572127, "x3": -0.4409342079964156, "x4": 4.105982111613083, "x5": 0.04345554062796514}}, null] +[[8, 0, 2], 243, {"submitted": 1558193453.388897, "started": 1558193453.3898342, "finished": 1558193453.4000995}, {"loss": 0.32442803779720053, "info": {"x0": -3.357189961164834, "x1": 4.950556417432141, "x2": 4.3178064309707445, "x3": -1.5232022871452253, "x4": 1.9603516895918918, "x5": 0.4809566331545248}}, null] +[[8, 0, 3], 243, {"submitted": 1558193453.4058301, "started": 1558193453.4063516, "finished": 1558193453.41939}, {"loss": 0.3713053508853451, "info": {"x0": -4.0806447388494504, "x1": 7.866912725538038, "x2": 5.288790092642818, "x3": -0.6872008375615546, "x4": 1.5202093380002561, "x5": 0.10125698815210188}}, null] +[[9, 0, 0], 243, {"submitted": 1558193453.426911, "started": 1558193453.4274292, "finished": 1558193453.4411085}, {"loss": 0.34312269229345654, "info": {"x0": -3.4158953402077348, "x1": 7.615159476917158, "x2": 4.950341188927641, "x3": -1.4796791680112706, "x4": 2.0570688162257795, "x5": 0.2954386659852525}}, null] +[[9, 0, 1], 243, {"submitted": 1558193453.4431834, "started": 1558193453.4434974, "finished": 1558193453.4540055}, {"loss": 0.3725691816186003, "info": {"x0": -4.667280468454351, "x1": 3.2849153284924846, "x2": 5.812097236113615, "x3": -0.7595591934743653, "x4": 4.516875040635906, "x5": 0.2341122161571496}}, null] +[[9, 0, 2], 243, {"submitted": 1558193453.4578297, "started": 1558193453.4596093, "finished": 1558193453.4706178}, {"loss": 0.4713007375716175, "info": {"x0": -5.729055945203583, "x1": 7.177080366800082, "x2": 4.668502747893982, "x3": -0.18054765517200577, "x4": 2.034917753910902, "x5": 0.09683905811408433}}, null] +[[9, 0, 3], 243, {"submitted": 1558193453.4726899, "started": 1558193453.4730177, "finished": 1558193453.4792535}, {"loss": 0.2949123584352627, "info": {"x0": -3.4678602216480834, "x1": 6.026465790086084, "x2": 7.9832717987612085, "x3": -1.1212535913726143, "x4": 3.8302780733029085, "x5": 0.3476186006841133}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/configspace.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/configspace.json similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/configspace.json rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/higgs/smac/run_1153890554/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/runhistory.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/runhistory.json new file mode 100644 index 0000000..f9a449b --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/runhistory.json @@ -0,0 +1,944 @@ +{ + "data": [ + [ + [ + 1, + null, + 0 + ], + [ + 0.31500461093510923, + 0.014195919036865234, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 2, + null, + 0 + ], + [ + 0.29713560265822275, + 0.014525890350341797, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 3, + null, + 0 + ], + [ + 0.3617481520024173, + 0.015019655227661133, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 4, + null, + 0 + ], + [ + 0.3688007328015618, + 0.016686201095581055, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 5, + null, + 0 + ], + [ + 0.31104704558430063, + 0.013655900955200195, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 6, + null, + 0 + ], + [ + 0.28339482690108, + 0.014870166778564453, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 7, + null, + 0 + ], + [ + 0.3025876370827389, + 0.01634383201599121, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 8, + null, + 0 + ], + [ + 0.47692342941927623, + 0.01699376106262207, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 9, + null, + 0 + ], + [ + 0.389944642080592, + 0.016859769821166992, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 10, + null, + 0 + ], + [ + 0.3687130994039048, + 0.016451597213745117, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 11, + null, + 0 + ], + [ + 0.3691512803189676, + 0.015416622161865234, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 12, + null, + 0 + ], + [ + 0.2847001815341908, + 0.01860833168029785, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 13, + null, + 0 + ], + [ + 0.29698339251285877, + 0.15733933448791504, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 14, + null, + 0 + ], + [ + 0.2959594075628505, + 0.01951432228088379, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 15, + null, + 0 + ], + [ + 0.3755442798379603, + 0.018215179443359375, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 16, + null, + 0 + ], + [ + 0.3762084793420062, + 0.018697261810302734, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 17, + null, + 0 + ], + [ + 0.3225645733545654, + 0.017043113708496094, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 18, + null, + 0 + ], + [ + 0.2936208474836776, + 0.017785310745239258, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 19, + null, + 0 + ], + [ + 0.3965544205072346, + 0.01784372329711914, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 20, + null, + 0 + ], + [ + 0.29894833805623755, + 0.01967597007751465, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 21, + null, + 0 + ], + [ + 0.2907564559661375, + 0.0201418399810791, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 22, + null, + 0 + ], + [ + 0.314829332400457, + 0.019762754440307617, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 23, + null, + 0 + ], + [ + 0.2965451983653861, + 0.020261049270629883, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 24, + null, + 0 + ], + [ + 0.3464575612742962, + 0.01814413070678711, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 25, + null, + 0 + ], + [ + 0.3120387443119309, + 0.02065134048461914, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 26, + null, + 0 + ], + [ + 0.30453413223985215, + 0.02562236785888672, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 27, + null, + 0 + ], + [ + 0.3874538754502731, + 0.021796464920043945, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 28, + null, + 0 + ], + [ + 0.30376383730928613, + 0.02182149887084961, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 29, + null, + 0 + ], + [ + 0.29397601325628503, + 0.02159285545349121, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 30, + null, + 0 + ], + [ + 0.286236158957588, + 0.019967317581176758, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 31, + null, + 0 + ], + [ + 0.2866743497333294, + 0.019315481185913086, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 32, + null, + 0 + ], + [ + 0.4855258299058434, + 0.02394890785217285, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 33, + null, + 0 + ], + [ + 0.28882841157957195, + 0.021283626556396484, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 34, + null, + 0 + ], + [ + 0.28565497945732954, + 0.021921157836914062, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 35, + null, + 0 + ], + [ + 0.2856595870040742, + 0.022889137268066406, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 36, + null, + 0 + ], + [ + 0.4102213982175142, + 0.020199298858642578, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 37, + null, + 0 + ], + [ + 0.42244464927095216, + 0.022212505340576172, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 38, + null, + 0 + ], + [ + 0.41031365196272124, + 0.023617982864379883, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 39, + null, + 0 + ], + [ + 0.30181734406715777, + 0.02321767807006836, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ] + ], + "config_origins": { + "1": "Random initial design.", + "2": "Random Search (sorted)", + "3": "Random Search (sorted)", + "4": "Random Search", + "5": "Random Search (sorted)", + "6": "Random Search", + "7": "Random Search", + "8": "Random Search", + "9": "Random Search (sorted)", + "10": "Random Search", + "11": "Random Search", + "12": "Random Search (sorted)", + "13": "Random Search (sorted)", + "14": "Random Search (sorted)", + "15": "Random Search", + "16": "Random Search", + "17": "Random Search (sorted)", + "18": "Random Search (sorted)", + "19": "Random Search", + "20": "Random Search (sorted)", + "21": "Random Search", + "22": "Random Search (sorted)", + "23": "Random Search (sorted)", + "24": "Local Search", + "25": "Local Search", + "26": "Random Search", + "27": "Random Search", + "28": "Random Search", + "29": "Local Search", + "30": "Local Search", + "31": "Local Search", + "32": "Random Search", + "33": "Local Search", + "34": "Local Search", + "35": "Local Search", + "36": "Random Search", + "37": "Random Search", + "38": "Random Search", + "39": "Random Search" + }, + "configs": { + "1": { + "x0": -2.0657575240907544, + "x1": 4.407157054680956, + "x2": 4.151022090088189, + "x3": -2.5879077570296203, + "x4": 4.435772852524021, + "x5": 0.14278005896896523 + }, + "2": { + "x0": -2.5823484951818534, + "x1": 5.983734051213035, + "x2": 5.470197296257254, + "x3": -1.6326409112077305, + "x4": 3.4835446228531746, + "x5": 0.4066325828279558 + }, + "3": { + "x0": -3.915460304570822, + "x1": 7.3591390217865476, + "x2": 4.6257429277804505, + "x3": -0.8743471361874979, + "x4": 1.7206982123101433, + "x5": 0.01742161677784454 + }, + "4": { + "x0": -4.2809976442053586, + "x1": 3.8107300075110158, + "x2": 4.517755545685683, + "x3": -2.751965114198082, + "x4": 1.3879367958830242, + "x5": 0.15685782160600742 + }, + "5": { + "x0": -2.0661148097135396, + "x1": 5.883741648041211, + "x2": 4.138937847206951, + "x3": -1.7557251342015268, + "x4": 3.901279454294129, + "x5": 0.41995786289978854 + }, + "6": { + "x0": -2.6499931824483633, + "x1": 5.576224879379426, + "x2": 7.0041297512080956, + "x3": -0.22078033585292012, + "x4": 3.507694880874969, + "x5": 0.2633239134302519 + }, + "7": { + "x0": -3.008667119382126, + "x1": 7.01830917391658, + "x2": 6.075572363284889, + "x3": -1.9765879660144452, + "x4": 1.1451972248236637, + "x5": 0.3599946642692496 + }, + "8": { + "x0": -5.674443280524375, + "x1": 7.550872961369301, + "x2": 5.594345080147697, + "x3": -1.3572344139869283, + "x4": 2.0654120016111404, + "x5": 0.3010615410074108 + }, + "9": { + "x0": -4.421520420170243, + "x1": 7.161956540741988, + "x2": 7.008258621127332, + "x3": -3.317201881062791, + "x4": 3.0067864138579043, + "x5": 0.47465899964483277 + }, + "10": { + "x0": -4.237080162266874, + "x1": 7.9954428748774635, + "x2": 6.247717994758652, + "x3": -3.3377751792154946, + "x4": 2.735820309311585, + "x5": 0.2048400163759203 + }, + "11": { + "x0": -4.753689176177197, + "x1": 3.9611090795286255, + "x2": 6.505935662457485, + "x3": -1.9929098707617654, + "x4": 2.163924296569369, + "x5": 0.18873148160545228 + }, + "12": { + "x0": -2.565448481789682, + "x1": 6.126075519628561, + "x2": 7.448114512521092, + "x3": -0.8752555761222389, + "x4": 3.477731827793911, + "x5": 0.22519375679385129 + }, + "13": { + "x0": -2.4115311040439606, + "x1": 5.406740897868614, + "x2": 5.9842341551237865, + "x3": -3.00712141965463, + "x4": 4.276142062257218, + "x5": 0.4765759560002292 + }, + "14": { + "x0": -2.432400500125679, + "x1": 7.924062728516608, + "x2": 4.777664761031653, + "x3": -1.4377117499829817, + "x4": 3.201903422180158, + "x5": 0.21478865369319977 + }, + "15": { + "x0": -2.665001878093435, + "x1": 6.660037887163456, + "x2": 4.728017755999849, + "x3": -2.0393071677237464, + "x4": 4.8899457288376595, + "x5": 0.48138509984405226 + }, + "16": { + "x0": -4.603189049591933, + "x1": 4.893831897164791, + "x2": 5.115643074997679, + "x3": -1.7689114008976774, + "x4": 3.492654895557246, + "x5": 0.04160583187917655 + }, + "17": { + "x0": -2.1327557674844924, + "x1": 4.894021907773208, + "x2": 7.728736003251928, + "x3": -0.2160175757996443, + "x4": 2.309208200779685, + "x5": 0.09535774330664049 + }, + "18": { + "x0": -2.4912288163345044, + "x1": 7.303130823154094, + "x2": 6.715994639547745, + "x3": -1.05546819061433, + "x4": 3.1498550710840916, + "x5": 0.44934476654515393 + }, + "19": { + "x0": -4.784605286482103, + "x1": 5.191772870810306, + "x2": 5.593488464064482, + "x3": -2.1171275675315875, + "x4": 2.141192376125617, + "x5": 0.3284375837228159 + }, + "20": { + "x0": -3.2776922767889114, + "x1": 7.6453843014612, + "x2": 6.617377470874196, + "x3": -1.1944137089470717, + "x4": 3.396604998862317, + "x5": 0.14871043243694754 + }, + "21": { + "x0": -2.5641185318168294, + "x1": 7.264837508425192, + "x2": 5.2232518804147965, + "x3": -1.5019685930522986, + "x4": 3.633082437342825, + "x5": 0.06798688666221986 + }, + "22": { + "x0": -3.7384341566762544, + "x1": 5.922318765278359, + "x2": 7.9410698664407136, + "x3": -1.5879356576921917, + "x4": 3.638685049431947, + "x5": 0.4131743533943421 + }, + "23": { + "x0": -3.5331741473336926, + "x1": 6.603518430351539, + "x2": 7.605036609205364, + "x3": -1.6233154440314705, + "x4": 3.7270679109145792, + "x5": 0.23646436852286407 + }, + "24": { + "x0": -3.6807660635772343, + "x1": 7.241725896419183, + "x2": 5.37550548902929, + "x3": -1.332208554521535, + "x4": 3.51118796715401, + "x5": 0.04549513967319177 + }, + "25": { + "x0": -3.6500208594039742, + "x1": 6.175232517656038, + "x2": 7.092514572822547, + "x3": -0.5545309058524732, + "x4": 3.5154904576086436, + "x5": 0.37369960132271185 + }, + "26": { + "x0": -3.028066503722427, + "x1": 5.468963787078826, + "x2": 7.996978096450821, + "x3": -3.4234499630652486, + "x4": 2.5005919316953498, + "x5": 0.23763767046211298 + }, + "27": { + "x0": -4.809649905035779, + "x1": 5.457480361874047, + "x2": 6.278543862381652, + "x3": -0.9338640188411023, + "x4": 3.3632987443493594, + "x5": 0.4168203000025285 + }, + "28": { + "x0": -2.9787794656658915, + "x1": 6.658327381351263, + "x2": 4.464413852861364, + "x3": -1.750561884056189, + "x4": 2.730391623436157, + "x5": 0.22098138797811884 + }, + "29": { + "x0": -2.5521553839158826, + "x1": 6.681951209091548, + "x2": 5.211633443394318, + "x3": -0.9452881184086044, + "x4": 3.4835446228531746, + "x5": 0.3490040593243859 + }, + "30": { + "x0": -2.5609838233172204, + "x1": 5.112169799645746, + "x2": 6.887459611687627, + "x3": -1.0671027877383659, + "x4": 3.058273382013318, + "x5": 0.2792060015528342 + }, + "31": { + "x0": -2.2129179357769937, + "x1": 6.435896837114399, + "x2": 6.739930421244445, + "x3": -1.0426814959328596, + "x4": 3.1376451677202617, + "x5": 0.22519375679385129 + }, + "32": { + "x0": -5.51602997538323, + "x1": 6.691091692151205, + "x2": 4.429625667939266, + "x3": -3.9649743887408775, + "x4": 3.7553738282197693, + "x5": 0.02868001517682911 + }, + "33": { + "x0": -2.5286389559888467, + "x1": 7.53858185329136, + "x2": 6.864119332151824, + "x3": -1.0698920660666067, + "x4": 2.9576616408959495, + "x5": 0.3663672702966671 + }, + "34": { + "x0": -2.5094765262982732, + "x1": 6.405785434224786, + "x2": 6.925365186406614, + "x3": -1.769924057407624, + "x4": 3.3092768990832693, + "x5": 0.181454278040514 + }, + "35": { + "x0": -2.499686166638325, + "x1": 5.526055104801861, + "x2": 7.344050885182302, + "x3": -2.5514824922481347, + "x4": 1.9652584584238673, + "x5": 0.2418679593832705 + }, + "36": { + "x0": -5.455014177429028, + "x1": 3.186121388272977, + "x2": 7.9138068574900675, + "x3": -1.0206223408824817, + "x4": 4.989189703714203, + "x5": 0.38341948502845835 + }, + "37": { + "x0": -5.92051095251195, + "x1": 6.655235643352329, + "x2": 7.778838369788808, + "x3": -0.29076161626453256, + "x4": 3.111196970863922, + "x5": 0.26519888252736384 + }, + "38": { + "x0": -4.562597718747538, + "x1": 6.875307116266925, + "x2": 5.330280840139923, + "x3": -2.154795756344255, + "x4": 3.655122218358468, + "x5": 0.1410608032543461 + }, + "39": { + "x0": -2.6298676704736033, + "x1": 4.958978584759732, + "x2": 5.2990493250816915, + "x3": -2.6985655111419984, + "x4": 1.3702457981191745, + "x5": 0.463420457548726 + } + } +} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/scenario.txt b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/scenario.txt similarity index 67% rename from examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/scenario.txt rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/scenario.txt index 090b2cb..5f9b881 100644 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_1731960763/scenario.txt +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/scenario.txt @@ -7,6 +7,6 @@ cost_for_crash = 2147483647.0 algo_runs_timelimit = inf wallclock_limit = inf always_race_default = False -ta_run_limit = 2.0 +ta_run_limit = 39.0 initial_incumbent = RANDOM -pcs_fn = opt_results/small_bnn/toyfunction/smac/run_1731960763/configspace.json +pcs_fn = ../opt_results/paramnet_surrogates/higgs/smac/run_2040386885/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/stats.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/stats.json new file mode 100644 index 0000000..56f33ae --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/stats.json @@ -0,0 +1 @@ +{"ta_runs": 39, "n_configs": 39, "wallclock_time_used": 39.5362651348114, "ta_time_used": 0.8841092586517334, "inc_changed": 3, "_n_configs_per_intensify": 38, "_n_calls_of_intensify": 19, "_ema_n_configs_per_intensifiy": 2.0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/traj_aclib2.json new file mode 100644 index 0000000..a5a89cb --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/traj_aclib2.json @@ -0,0 +1,4 @@ +{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 9.298324584960938e-05, "evaluations": 0, "cost": 2147483648, "incumbent": ["x0='-2.0657575240907544'", "x1='4.407157054680956'", "x2='4.151022090088189'", "x3='-2.5879077570296203'", "x4='4.435772852524021'", "x5='0.14278005896896523'"], "origin": "Random initial design."} +{"cpu_time": 0.014195919036865234, "total_cpu_time": null, "wallclock_time": 0.033194541931152344, "evaluations": 1, "cost": 0.31500461093510923, "incumbent": ["x0='-2.0657575240907544'", "x1='4.407157054680956'", "x2='4.151022090088189'", "x3='-2.5879077570296203'", "x4='4.435772852524021'", "x5='0.14278005896896523'"], "origin": "Random initial design."} +{"cpu_time": 0.02872180938720703, "total_cpu_time": null, "wallclock_time": 0.31720399856567383, "evaluations": 2, "cost": 0.29713560265822275, "incumbent": ["x0='-2.5823484951818534'", "x1='5.983734051213035'", "x2='5.470197296257254'", "x3='-1.6326409112077305'", "x4='3.4835446228531746'", "x5='0.4066325828279558'"], "origin": "Random Search (sorted)"} +{"cpu_time": 0.08895373344421387, "total_cpu_time": null, "wallclock_time": 2.2272708415985107, "evaluations": 6, "cost": 0.28339482690108, "incumbent": ["x0='-2.6499931824483633'", "x1='5.576224879379426'", "x2='7.0041297512080956'", "x3='-0.22078033585292012'", "x4='3.507694880874969'", "x5='0.2633239134302519'"], "origin": "Random Search"} diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/traj_old.csv b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/traj_old.csv new file mode 100644 index 0000000..334d201 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/higgs/smac/run_2040386885/traj_old.csv @@ -0,0 +1,5 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." +0.000000, 2147483648.000000, 0.000093, 1, 0.000093, x0='-2.0657575240907544', x1='4.407157054680956', x2='4.151022090088189', x3='-2.5879077570296203', x4='4.435772852524021', x5='0.14278005896896523' +0.014196, 0.315005, 0.033195, 1, 0.018999, x0='-2.0657575240907544', x1='4.407157054680956', x2='4.151022090088189', x3='-2.5879077570296203', x4='4.435772852524021', x5='0.14278005896896523' +0.028722, 0.297136, 0.317204, 2, 0.288482, x0='-2.5823484951818534', x1='5.983734051213035', x2='5.470197296257254', x3='-1.6326409112077305', x4='3.4835446228531746', x5='0.4066325828279558' +0.088954, 0.283395, 2.227271, 3, 2.138317, x0='-2.6499931824483633', x1='5.576224879379426', x2='7.0041297512080956', x3='-0.22078033585292012', x4='3.507694880874969', x5='0.2633239134302519' diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/bohb/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/bohb/configs.json new file mode 100644 index 0000000..9ad8d5b --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/bohb/configs.json @@ -0,0 +1,128 @@ +[[0, 0, 0], {"x0": -5.333803348998303, "x1": 6.096137647505706, "x2": 5.210656454238055, "x3": -2.103367690238159, "x4": 1.8357989741000846, "x5": 0.16003609358033022}, {"model_based_pick": false}] +[[0, 0, 1], {"x0": -2.545448579694614, "x1": 5.4462846448923425, "x2": 6.092506790980261, "x3": -1.0719664015480022, "x4": 2.98916007195244, "x5": 0.2443245776214235}, {"model_based_pick": false}] +[[0, 0, 2], {"x0": -2.735843091008589, "x1": 7.437326139388258, "x2": 5.40648606696468, "x3": -2.4567099932895378, "x4": 3.2380071285568195, "x5": 0.4478512968898061}, {"model_based_pick": false}] +[[0, 0, 3], {"x0": -5.320440043178533, "x1": 6.705793240211369, "x2": 6.4116834771875535, "x3": -0.053865118321258176, "x4": 2.1364236362604716, "x5": 0.2701196830379608}, {"model_based_pick": false}] +[[0, 0, 4], {"x0": -4.717096192082702, "x1": 5.195195619776275, "x2": 4.38220393830191, "x3": -3.1266374694533416, "x4": 1.3149424314740648, "x5": 0.06943124370947962}, {"model_based_pick": false}] +[[0, 0, 5], {"x0": -3.3847526266443544, "x1": 6.63379879437351, "x2": 7.011942924231656, "x3": -3.437998821901643, "x4": 2.333122870696882, "x5": 0.05463788918057949}, {"model_based_pick": false}] +[[0, 0, 6], {"x0": -2.684136008901104, "x1": 3.0842372898825867, "x2": 7.7937484207945005, "x3": -2.6586168243099695, "x4": 3.2949787538271447, "x5": 0.17162594437050704}, {"model_based_pick": false}] +[[0, 0, 7], {"x0": -2.1890297465819515, "x1": 6.074390119095211, "x2": 6.384954996273242, "x3": -0.0922928619761949, "x4": 2.3609310619151023, "x5": 0.3278003091438125}, {"model_based_pick": false}] +[[0, 0, 8], {"x0": -5.157503946087049, "x1": 6.360131657415162, "x2": 6.514432009498831, "x3": -2.3793529654436036, "x4": 2.7218246621071125, "x5": 0.11498987264157207}, {"model_based_pick": false}] +[[0, 0, 9], {"x0": -3.1080038901468456, "x1": 7.884388593579237, "x2": 4.746534894982535, "x3": -0.36210956083980994, "x4": 4.476924920347621, "x5": 0.1697658071770714}, {"model_based_pick": false}] +[[0, 0, 10], {"x0": -3.4634302613564008, "x1": 7.304628308503596, "x2": 5.363159791627039, "x3": -0.16156454547643895, "x4": 4.024518013272653, "x5": 0.2745232541097136}, {"model_based_pick": false}] +[[0, 0, 11], {"x0": -3.643105121332487, "x1": 6.1818736857659875, "x2": 4.000232429268316, "x3": -0.13366317142933415, "x4": 1.8689221517029608, "x5": 0.21207654006670196}, {"model_based_pick": false}] +[[0, 0, 12], {"x0": -2.3142004116424655, "x1": 7.107702568781417, "x2": 4.240793690831293, "x3": -1.833220993399848, "x4": 3.5749372605721375, "x5": 0.391553512696179}, {"model_based_pick": false}] +[[0, 0, 13], {"x0": -4.358642897823281, "x1": 3.864643171340011, "x2": 5.8112719648231925, "x3": -2.995138463703696, "x4": 2.172515939338606, "x5": 0.3231576534819243}, {"model_based_pick": false}] +[[0, 0, 14], {"x0": -2.4586425245777543, "x1": 6.5726281500391135, "x2": 4.505032858955592, "x3": -3.7902819882853476, "x4": 4.938021852219678, "x5": 0.29009168604513225}, {"model_based_pick": true}] +[[0, 0, 15], {"x0": -2.1080581701243686, "x1": 5.852442918633948, "x2": 6.47230745047556, "x3": -1.368563438803379, "x4": 1.380584466893795, "x5": 0.4526799235746412}, {"model_based_pick": true}] +[[0, 0, 16], {"x0": -2.1411437530317827, "x1": 5.614233281821928, "x2": 6.817025395272921, "x3": -2.318985309455004, "x4": 1.573017825168662, "x5": 0.4708505708258075}, {"model_based_pick": true}] +[[0, 0, 17], {"x0": -2.446898006621396, "x1": 7.603327361258296, "x2": 7.35943542800546, "x3": -3.494318934605851, "x4": 1.4662951009894922, "x5": 0.3240886887588561}, {"model_based_pick": true}] +[[0, 0, 18], {"x0": -2.11462136634033, "x1": 5.686661923217205, "x2": 7.693648170814261, "x3": -2.548543970067878, "x4": 1.7053698359071952, "x5": 0.49055049456552513}, {"model_based_pick": true}] +[[0, 0, 19], {"x0": -3.241010906794032, "x1": 7.115015875518962, "x2": 7.974284878484427, "x3": -0.38874392436064076, "x4": 4.237222255011831, "x5": 0.455172228799011}, {"model_based_pick": false}] +[[0, 0, 20], {"x0": -3.086873873615161, "x1": 6.151316674177451, "x2": 5.802016144451644, "x3": -3.9310489234490245, "x4": 1.9750557469128678, "x5": 0.20509493496402942}, {"model_based_pick": false}] +[[0, 0, 21], {"x0": -2.7755788204438887, "x1": 3.5043309420949837, "x2": 4.383998953650053, "x3": -3.0252885076263234, "x4": 4.790972377886172, "x5": 0.1073890465118742}, {"model_based_pick": false}] +[[0, 0, 22], {"x0": -2.454261228822966, "x1": 4.542466551782056, "x2": 7.812083546262249, "x3": -1.2239096573635901, "x4": 1.4194959477651783, "x5": 0.466977366431883}, {"model_based_pick": true}] +[[0, 0, 23], {"x0": -2.069458693638837, "x1": 5.165887542982554, "x2": 6.21238267430017, "x3": -2.046994070445256, "x4": 1.6447899094677112, "x5": 0.42710164072277124}, {"model_based_pick": true}] +[[0, 0, 24], {"x0": -4.028415997709054, "x1": 6.823121025760973, "x2": 5.579602966515674, "x3": -2.020058459346186, "x4": 2.4846451983305946, "x5": 0.04884178194707273}, {"model_based_pick": false}] +[[0, 0, 25], {"x0": -2.11927753854623, "x1": 6.545740163779242, "x2": 7.976859733341438, "x3": -3.6978859464951244, "x4": 1.4020612702641368, "x5": 0.4938457759493706}, {"model_based_pick": true}] +[[0, 0, 26], {"x0": -2.5091607860904843, "x1": 6.013338900067713, "x2": 6.614087474937523, "x3": -1.0932383660012466, "x4": 2.785490376500967, "x5": 0.22688055436748375}, {"model_based_pick": true}] +[[1, 0, 0], {"x0": -2.6410188081146626, "x1": 5.11178855658937, "x2": 5.423375775168283, "x3": -2.1837177579248275, "x4": 2.9106134281978226, "x5": 0.2176358977809502}, {"model_based_pick": true}] +[[1, 0, 1], {"x0": -2.672708074790431, "x1": 7.448097703736479, "x2": 7.603455106559474, "x3": -3.2703908293554544, "x4": 1.3241436504768866, "x5": 0.382913426545964}, {"model_based_pick": true}] +[[1, 0, 2], {"x0": -2.0176078483984337, "x1": 5.2381055555508045, "x2": 4.5610695885117165, "x3": -1.779718424483629, "x4": 4.819381644955922, "x5": 0.22373039502457476}, {"model_based_pick": false}] +[[1, 0, 3], {"x0": -2.25587335016789, "x1": 6.692802561654654, "x2": 6.479412927565871, "x3": -0.32478668535202804, "x4": 2.179979785129669, "x5": 0.2699226848488486}, {"model_based_pick": true}] +[[1, 0, 4], {"x0": -2.165397656016298, "x1": 5.603769977271984, "x2": 6.519015631308338, "x3": -0.8731364544933147, "x4": 2.2336740278213423, "x5": 0.38318808222026407}, {"model_based_pick": true}] +[[1, 0, 5], {"x0": -5.298123758420862, "x1": 3.2773901585011345, "x2": 6.122724295980191, "x3": -2.929184162286467, "x4": 2.8050455233628724, "x5": 0.07884753676624084}, {"model_based_pick": false}] +[[1, 0, 6], {"x0": -2.8150603868549093, "x1": 7.688639325075094, "x2": 7.816270417754671, "x3": -2.9576853323903975, "x4": 2.1429847130598625, "x5": 0.37413583687648067}, {"model_based_pick": true}] +[[1, 0, 7], {"x0": -3.7312906263756456, "x1": 4.220819673298704, "x2": 4.139887956418031, "x3": -3.2293296629218435, "x4": 2.2668001994533147, "x5": 0.19169882103945868}, {"model_based_pick": false}] +[[1, 0, 8], {"x0": -2.4872825784200145, "x1": 6.811746161636679, "x2": 6.526389146648354, "x3": -0.6451261061465035, "x4": 1.9166630576941848, "x5": 0.21117714551961275}, {"model_based_pick": true}] +[[2, 0, 0], {"x0": -2.532906348876123, "x1": 7.593784192100571, "x2": 6.443337125198631, "x3": -0.018101273358640757, "x4": 1.725288925560021, "x5": 0.13634901854933745}, {"model_based_pick": true}] +[[2, 0, 1], {"x0": -2.364988191462787, "x1": 7.884985811429645, "x2": 7.196817209048562, "x3": -1.0001695388041232, "x4": 2.103603266344442, "x5": 0.03493061842693368}, {"model_based_pick": true}] +[[2, 0, 2], {"x0": -2.5057319957472997, "x1": 4.8587510659259445, "x2": 7.423672293181657, "x3": -3.8877709950741544, "x4": 3.590883609672381, "x5": 0.007304356211659646}, {"model_based_pick": false}] +[[2, 0, 3], {"x0": -2.086748307676416, "x1": 7.591497297106006, "x2": 6.686356178117963, "x3": -3.183296892882914, "x4": 3.9612292609003297, "x5": 0.41848191827145736}, {"model_based_pick": false}] +[[2, 0, 4], {"x0": -2.416677026545108, "x1": 6.911563154989995, "x2": 6.345370279825833, "x3": -1.0868253694852958, "x4": 1.9491300012833714, "x5": 0.24896047735298618}, {"model_based_pick": true}] +[[2, 0, 5], {"x0": -3.1515871307861434, "x1": 3.041170944409756, "x2": 5.986158255236724, "x3": -1.194302960379757, "x4": 3.4238216940240127, "x5": 0.03935553606935038}, {"model_based_pick": false}] +[[3, 0, 0], {"x0": -2.0810786104702497, "x1": 6.538103798745244, "x2": 7.967498507836611, "x3": -3.3240648742794123, "x4": 2.3000117820927812, "x5": 0.49553719755631515}, {"model_based_pick": true}] +[[3, 0, 1], {"x0": -2.437755822959429, "x1": 7.589043830249347, "x2": 6.5186219047644895, "x3": -0.9243216333194453, "x4": 1.4378006308546691, "x5": 0.20070131667632882}, {"model_based_pick": true}] +[[3, 0, 2], {"x0": -2.8213869744165883, "x1": 6.0360025930824275, "x2": 6.84670701172495, "x3": -2.9289337079477105, "x4": 4.990039809054227, "x5": 0.15867679243680866}, {"model_based_pick": false}] +[[3, 0, 3], {"x0": -2.737040235134473, "x1": 7.011794878026401, "x2": 6.489081454628595, "x3": -1.2990863481020782, "x4": 1.263959872533714, "x5": 0.10721472500927592}, {"model_based_pick": true}] +[[4, 0, 0], {"x0": -2.5795600397949174, "x1": 7.286466748396279, "x2": 6.116641674103496, "x3": -2.03178844432112, "x4": 1.1597779114971667, "x5": 0.09256971685741221}, {"model_based_pick": true}] +[[4, 0, 1], {"x0": -2.645316827220757, "x1": 6.740180198379218, "x2": 6.1760802273446345, "x3": -0.26212357027100763, "x4": 1.2925096195913914, "x5": 0.004904863781413804}, {"model_based_pick": true}] +[[4, 0, 2], {"x0": -2.4354806319440763, "x1": 6.527391374877176, "x2": 6.547484496920198, "x3": -1.2135544992622296, "x4": 2.371784382914675, "x5": 0.13481021530717613}, {"model_based_pick": true}] +[[4, 0, 3], {"x0": -3.21259953427107, "x1": 7.970945747163682, "x2": 5.476323965209341, "x3": -0.24846603342851736, "x4": 4.065517883820626, "x5": 0.21393905241725103}, {"model_based_pick": false}] +[[4, 0, 4], {"x0": -2.6714070195560575, "x1": 6.437521632986443, "x2": 7.053127952724281, "x3": -1.2497902999648445, "x4": 1.814044701401543, "x5": 0.0490882854106387}, {"model_based_pick": true}] +[[4, 0, 5], {"x0": -2.2564091006327147, "x1": 5.991149840134733, "x2": 7.959492256104027, "x3": -2.8738830249027076, "x4": 1.6299287357744359, "x5": 0.45719227001923407}, {"model_based_pick": true}] +[[4, 0, 6], {"x0": -5.117593649310667, "x1": 7.085885999898949, "x2": 5.820047630582284, "x3": -2.3151704942152356, "x4": 4.547301020476696, "x5": 0.39337738556600504}, {"model_based_pick": false}] +[[4, 0, 7], {"x0": -2.1485092431646122, "x1": 5.169941199994852, "x2": 7.888824246105825, "x3": -3.810447362259188, "x4": 1.2788969154692877, "x5": 0.4326373534996132}, {"model_based_pick": true}] +[[4, 0, 8], {"x0": -2.1406013232042382, "x1": 5.220811900401584, "x2": 6.574462148192957, "x3": -3.815606615853274, "x4": 2.030881363130909, "x5": 0.45891327141114335}, {"model_based_pick": true}] +[[4, 0, 9], {"x0": -2.1971073006279513, "x1": 7.257786550005374, "x2": 6.663828200737591, "x3": -1.0966522270120347, "x4": 1.3563943786279127, "x5": 0.024526189420240152}, {"model_based_pick": true}] +[[4, 0, 10], {"x0": -2.5672614896697197, "x1": 7.346406987117391, "x2": 6.563131759152655, "x3": -0.022973353380139727, "x4": 2.104207912203669, "x5": 0.09685210068835276}, {"model_based_pick": true}] +[[4, 0, 11], {"x0": -2.373826337425564, "x1": 7.078473403686863, "x2": 6.541525027820761, "x3": -0.22280503686837738, "x4": 1.5002276022890286, "x5": 0.24470381631736934}, {"model_based_pick": true}] +[[4, 0, 12], {"x0": -2.1251506631936015, "x1": 6.457088810834556, "x2": 7.592428608354815, "x3": -2.9714420708067424, "x4": 1.7519941491585034, "x5": 0.43250132690571325}, {"model_based_pick": true}] +[[4, 0, 13], {"x0": -2.4009559644902665, "x1": 7.847273848883696, "x2": 7.628674379227162, "x3": -3.6908890429530468, "x4": 1.3680618372985336, "x5": 0.2160026271527625}, {"model_based_pick": true}] +[[4, 0, 14], {"x0": -2.126123184617083, "x1": 5.453907235920942, "x2": 7.764724575620023, "x3": -3.9804845003020604, "x4": 2.3677418864717827, "x5": 0.42945482239525273}, {"model_based_pick": true}] +[[4, 0, 15], {"x0": -5.184453967317451, "x1": 7.368239172902332, "x2": 5.151231906009534, "x3": -3.583977179548821, "x4": 4.952448494021722, "x5": 0.20327251483753594}, {"model_based_pick": false}] +[[4, 0, 16], {"x0": -2.7519136418207464, "x1": 6.294471597201973, "x2": 7.6922101319988725, "x3": -1.7835563627707791, "x4": 1.3217528685904094, "x5": 0.4347585331906955}, {"model_based_pick": false}] +[[4, 0, 17], {"x0": -2.2037943127802433, "x1": 4.988172699238344, "x2": 4.327300590912446, "x3": -0.9499801604320677, "x4": 1.6108273325170592, "x5": 0.47237598989475477}, {"model_based_pick": false}] +[[4, 0, 18], {"x0": -2.365719622047609, "x1": 6.861455982914215, "x2": 6.719670569161032, "x3": -1.3432111757868292, "x4": 1.1850041119490262, "x5": 0.09051380960968108}, {"model_based_pick": true}] +[[4, 0, 19], {"x0": -2.2663052838473723, "x1": 5.328260447935636, "x2": 6.471800209831581, "x3": -3.3298708448801535, "x4": 1.726113155603826, "x5": 0.42697457237790165}, {"model_based_pick": true}] +[[4, 0, 20], {"x0": -2.2951341788102813, "x1": 7.862660792790161, "x2": 6.673061439008918, "x3": -1.44995582193777, "x4": 1.2125703030799997, "x5": 0.050836135628219925}, {"model_based_pick": true}] +[[4, 0, 21], {"x0": -2.1891969562892144, "x1": 5.276118451487104, "x2": 7.738172268565535, "x3": -2.833730500724055, "x4": 2.3327276956088587, "x5": 0.44797543838213716}, {"model_based_pick": true}] +[[4, 0, 22], {"x0": -2.568962077068825, "x1": 5.864046769970122, "x2": 6.3135783634355676, "x3": -0.2777329093512866, "x4": 1.9555548082746945, "x5": 0.06838167581715768}, {"model_based_pick": true}] +[[4, 0, 23], {"x0": -2.5177863164568124, "x1": 7.391911710571222, "x2": 6.804248058829883, "x3": -0.15044184051962795, "x4": 1.4850066338603536, "x5": 0.09691180688207096}, {"model_based_pick": true}] +[[4, 0, 24], {"x0": -4.098732375176283, "x1": 7.167976639617333, "x2": 7.091626715555961, "x3": -1.6393441025800293, "x4": 4.346234228887261, "x5": 0.3188585767670572}, {"model_based_pick": false}] +[[4, 0, 25], {"x0": -5.773815573641301, "x1": 7.9489228982109355, "x2": 5.188585556579204, "x3": -2.821973627314133, "x4": 3.5764087243815754, "x5": 0.36767952120672664}, {"model_based_pick": false}] +[[4, 0, 26], {"x0": -4.26123586529682, "x1": 7.944678901263657, "x2": 4.968699208190429, "x3": -1.6799886191174704, "x4": 1.9155397507675107, "x5": 0.13326655207576749}, {"model_based_pick": false}] +[[5, 0, 0], {"x0": -2.395565340209664, "x1": 6.871757429986505, "x2": 6.863215494509349, "x3": -2.0491147433983854, "x4": 1.051305240463868, "x5": 0.07320071689150842}, {"model_based_pick": true}] +[[5, 0, 1], {"x0": -2.490285714548392, "x1": 4.021174051148674, "x2": 7.587942518332073, "x3": -2.471808040826971, "x4": 4.227295540416825, "x5": 0.008931704860474288}, {"model_based_pick": true}] +[[5, 0, 2], {"x0": -2.6096689495383445, "x1": 6.135343808001529, "x2": 7.877416359697613, "x3": -3.790466583169354, "x4": 3.465870118990361, "x5": 0.02421674712483801}, {"model_based_pick": true}] +[[5, 0, 3], {"x0": -2.5000106235361277, "x1": 7.504524138786538, "x2": 4.914630542357965, "x3": -1.7235594605951934, "x4": 4.724878227810211, "x5": 0.33922966444261976}, {"model_based_pick": false}] +[[5, 0, 4], {"x0": -2.740245534372073, "x1": 4.919656979549255, "x2": 7.052391262338661, "x3": -3.6071127920749744, "x4": 2.9554026268170723, "x5": 0.08241548764530007}, {"model_based_pick": true}] +[[5, 0, 5], {"x0": -4.651335376158578, "x1": 3.109734092896552, "x2": 4.281898117503596, "x3": -0.841044906616033, "x4": 3.653762850286033, "x5": 0.139449037114187}, {"model_based_pick": false}] +[[5, 0, 6], {"x0": -2.1843748679026502, "x1": 4.276042939038024, "x2": 7.245119638450193, "x3": -3.4750988334082615, "x4": 4.018811065866321, "x5": 0.04983033757630783}, {"model_based_pick": true}] +[[5, 0, 7], {"x0": -2.4041186475471994, "x1": 4.252167354885371, "x2": 6.867125268377935, "x3": -3.5239192781585946, "x4": 3.96230770404125, "x5": 0.008583493303605545}, {"model_based_pick": true}] +[[5, 0, 8], {"x0": -2.5682804530227332, "x1": 4.596376278267823, "x2": 7.8012169521018055, "x3": -3.4609194924371884, "x4": 3.936412527651909, "x5": 0.11925593360004051}, {"model_based_pick": true}] +[[6, 0, 0], {"x0": -3.9005155019158035, "x1": 6.5126445760907785, "x2": 7.5972688231907455, "x3": -1.801387172328024, "x4": 4.4629300629318145, "x5": 0.14488783225243207}, {"model_based_pick": false}] +[[6, 0, 1], {"x0": -2.401527788922417, "x1": 4.884108176856971, "x2": 7.415316763834341, "x3": -1.1153768138274103, "x4": 3.7271465585993444, "x5": 0.04705493011289761}, {"model_based_pick": true}] +[[6, 0, 2], {"x0": -3.7248909487506925, "x1": 4.028720724997445, "x2": 7.593193681663966, "x3": -3.765630005539393, "x4": 2.2009505521369395, "x5": 0.4170847427446472}, {"model_based_pick": false}] +[[6, 0, 3], {"x0": -2.340845598540982, "x1": 5.070147426426125, "x2": 7.968803105782062, "x3": -0.9656313199385176, "x4": 4.519326670422936, "x5": 0.07283201666388235}, {"model_based_pick": true}] +[[6, 0, 4], {"x0": -2.4447784093043445, "x1": 4.917064903713245, "x2": 7.118400048448676, "x3": -2.0201573712649212, "x4": 4.320123197535736, "x5": 0.005287218013879049}, {"model_based_pick": true}] +[[6, 0, 5], {"x0": -5.055226314567497, "x1": 6.144845187846249, "x2": 6.68155858719041, "x3": -3.676648118747663, "x4": 2.7261898564797384, "x5": 0.2538631459073249}, {"model_based_pick": false}] +[[7, 0, 0], {"x0": -2.4058596051768224, "x1": 5.662053673740855, "x2": 7.135932189051639, "x3": -3.3598639167344686, "x4": 4.356017712090723, "x5": 0.01481155565857625}, {"model_based_pick": true}] +[[7, 0, 1], {"x0": -5.949347881036797, "x1": 4.1171383674749435, "x2": 6.3710556590605885, "x3": -3.9621080745691213, "x4": 3.084374964464831, "x5": 0.4714256865292416}, {"model_based_pick": false}] +[[7, 0, 2], {"x0": -2.5185144928079137, "x1": 4.041937309531772, "x2": 7.636822055500483, "x3": -3.1748351373895125, "x4": 1.836965963076222, "x5": 0.0036943854193098825}, {"model_based_pick": true}] +[[7, 0, 3], {"x0": -4.677951627258007, "x1": 7.506304435530347, "x2": 5.074187160512892, "x3": -2.6867995274331298, "x4": 1.811560438296115, "x5": 0.1600730352608727}, {"model_based_pick": false}] +[[8, 0, 0], {"x0": -3.1662389939582387, "x1": 6.821239087439153, "x2": 7.7760381221028885, "x3": -2.3997519562423024, "x4": 4.666439015777042, "x5": 0.16918509600053916}, {"model_based_pick": false}] +[[8, 0, 1], {"x0": -5.236325410628646, "x1": 7.896756762196517, "x2": 6.0826728655097275, "x3": -3.3008341645096566, "x4": 4.537700912224549, "x5": 0.015158008538872114}, {"model_based_pick": false}] +[[8, 0, 2], {"x0": -2.3288669779178908, "x1": 3.243500795081884, "x2": 7.339610582419237, "x3": -3.7771611428718113, "x4": 1.7360659909736966, "x5": 0.012337053272808735}, {"model_based_pick": true}] +[[8, 0, 3], {"x0": -3.891154561194558, "x1": 3.4875675762261307, "x2": 5.307860546985107, "x3": -3.77373809271603, "x4": 2.6594025825879672, "x5": 0.11682539214472121}, {"model_based_pick": false}] +[[8, 0, 4], {"x0": -2.359050694996796, "x1": 4.074925234129026, "x2": 7.6876819943487105, "x3": -3.3764598941526502, "x4": 3.655657566241525, "x5": 0.015368799648785016}, {"model_based_pick": true}] +[[8, 0, 5], {"x0": -2.322961773827378, "x1": 4.5781057495395245, "x2": 7.336118063210371, "x3": -3.666903644979972, "x4": 2.685470368226753, "x5": 0.009897128398418371}, {"model_based_pick": true}] +[[8, 0, 6], {"x0": -2.4493912405623055, "x1": 3.1035027349939592, "x2": 7.220052002130068, "x3": -2.231454669120491, "x4": 3.3189711997250564, "x5": 0.006808744859143645}, {"model_based_pick": true}] +[[8, 0, 7], {"x0": -2.534373154180576, "x1": 3.1325208170200036, "x2": 7.571712846692443, "x3": -1.1057228891075983, "x4": 4.283289518492052, "x5": 0.017446262089223487}, {"model_based_pick": true}] +[[8, 0, 8], {"x0": -2.3933845644760066, "x1": 4.143822725698624, "x2": 7.539455775689269, "x3": -3.771123178883136, "x4": 2.3210124913832466, "x5": 0.009850391755361756}, {"model_based_pick": true}] +[[8, 0, 9], {"x0": -2.435545408143039, "x1": 3.4820844747239743, "x2": 7.2045041177873745, "x3": -3.7737158560343707, "x4": 1.1133283318004144, "x5": 0.008475386250825858}, {"model_based_pick": true}] +[[8, 0, 10], {"x0": -2.4054063307238853, "x1": 3.396130851332463, "x2": 7.400444679333113, "x3": -3.503767455911208, "x4": 1.9134009882219591, "x5": 0.0015712294005288184}, {"model_based_pick": true}] +[[8, 0, 11], {"x0": -2.626411033397163, "x1": 3.0475485315966497, "x2": 7.389017029990159, "x3": -3.7263898073277875, "x4": 3.4946462210743854, "x5": 0.0023319290875680543}, {"model_based_pick": true}] +[[8, 0, 12], {"x0": -2.531422728535683, "x1": 3.303353440534489, "x2": 7.772014266001871, "x3": -3.753406365377419, "x4": 3.3203075477682473, "x5": 0.009632979139607943}, {"model_based_pick": true}] +[[8, 0, 13], {"x0": -2.512164803985411, "x1": 4.127780562672976, "x2": 7.683048850126957, "x3": -2.973450140768759, "x4": 3.3044171774569, "x5": 0.008180918426283728}, {"model_based_pick": true}] +[[8, 0, 14], {"x0": -2.4078801304098763, "x1": 3.8492988861149415, "x2": 7.595543440998202, "x3": -3.3617715401902832, "x4": 2.1818611100168956, "x5": 0.0189390434654544}, {"model_based_pick": true}] +[[8, 0, 15], {"x0": -3.5206359302481998, "x1": 7.009885396157066, "x2": 6.182637027224651, "x3": -1.9445381340121055, "x4": 3.2787820822394966, "x5": 0.09896242900428781}, {"model_based_pick": false}] +[[8, 0, 16], {"x0": -2.4892202876247453, "x1": 3.631924649753423, "x2": 7.7928368551586455, "x3": -3.6129320884635354, "x4": 2.5263035299423287, "x5": 0.030635080133676648}, {"model_based_pick": true}] +[[8, 0, 17], {"x0": -2.5804608247129703, "x1": 4.576953608883878, "x2": 7.999987405715128, "x3": -3.8652166087056945, "x4": 2.318641005476097, "x5": 0.008756378475257606}, {"model_based_pick": true}] +[[8, 0, 18], {"x0": -2.7928831109791945, "x1": 3.436185387479842, "x2": 7.426756578602726, "x3": -3.789062123804789, "x4": 1.4465997770060037, "x5": 0.0020664084949536922}, {"model_based_pick": true}] +[[8, 0, 19], {"x0": -2.4631565789660677, "x1": 3.1064972767536703, "x2": 7.104427133947643, "x3": -3.78782919403809, "x4": 2.87989694720211, "x5": 0.026475650345192184}, {"model_based_pick": true}] +[[8, 0, 20], {"x0": -2.821842940619904, "x1": 5.176438801845827, "x2": 5.829985195062127, "x3": -3.264725825102606, "x4": 1.7197395498797738, "x5": 0.06927585861778734}, {"model_based_pick": false}] +[[8, 0, 21], {"x0": -2.437664352372635, "x1": 3.125430066564059, "x2": 7.6729872862154345, "x3": -3.185644244025536, "x4": 1.0892909241349678, "x5": 0.004226590672384426}, {"model_based_pick": true}] +[[8, 0, 22], {"x0": -3.820477241086078, "x1": 6.884802357808106, "x2": 6.718593992359317, "x3": -0.14265128742972388, "x4": 4.122037941810293, "x5": 0.3301519922744443}, {"model_based_pick": false}] +[[8, 0, 23], {"x0": -2.5254284697770033, "x1": 4.531569379703811, "x2": 7.719853250965604, "x3": -3.8547710172870393, "x4": 3.637785064287214, "x5": 0.01053908633557888}, {"model_based_pick": true}] +[[8, 0, 24], {"x0": -2.5025198006977796, "x1": 3.26895786945481, "x2": 6.838893941401043, "x3": -1.0624192038906277, "x4": 4.376363753211732, "x5": 0.00905699765397958}, {"model_based_pick": true}] +[[8, 0, 25], {"x0": -2.613456247581571, "x1": 5.078663549103716, "x2": 5.463507651077011, "x3": -0.22325453445912968, "x4": 1.6228140613922126, "x5": 0.3912409066139558}, {"model_based_pick": false}] +[[8, 0, 26], {"x0": -2.638634068486544, "x1": 4.78664640851845, "x2": 7.815590048387078, "x3": -3.2113510783940473, "x4": 1.443559816515119, "x5": 0.02072081394097225}, {"model_based_pick": true}] +[[9, 0, 0], {"x0": -2.470185101796509, "x1": 3.842488609402108, "x2": 7.523476316061204, "x3": -1.6463964434554033, "x4": 3.964442715705276, "x5": 0.01238947891122269}, {"model_based_pick": true}] +[[9, 0, 1], {"x0": -2.5041069875331754, "x1": 4.263860559595687, "x2": 7.669574622607929, "x3": -2.608729239651483, "x4": 4.2247019030542665, "x5": 0.007476791474459562}, {"model_based_pick": true}] +[[9, 0, 2], {"x0": -2.375996234733913, "x1": 4.612857351175745, "x2": 7.474203798384714, "x3": -3.611337625022963, "x4": 1.568886149975623, "x5": 0.012423704714514441}, {"model_based_pick": true}] +[[9, 0, 3], {"x0": -2.529428228619023, "x1": 3.8862969768458235, "x2": 7.718386150896098, "x3": -2.3714450801875033, "x4": 2.7396442697139136, "x5": 0.0005850685649943319}, {"model_based_pick": true}] +[[9, 0, 4], {"x0": -2.4986556297185825, "x1": 3.44172572588361, "x2": 7.542408478235712, "x3": -1.854299623518334, "x4": 3.1934895896927937, "x5": 0.013497944986326796}, {"model_based_pick": true}] +[[9, 0, 5], {"x0": -2.372841074763344, "x1": 3.2366990588912428, "x2": 7.7718167433071805, "x3": -3.0078793007955706, "x4": 1.094752061099448, "x5": 0.032245480228565465}, {"model_based_pick": true}] +[[9, 0, 6], {"x0": -2.54484295198001, "x1": 4.085340261706338, "x2": 7.302132208623712, "x3": -3.8572605275333167, "x4": 1.7979691151302464, "x5": 0.005804618294181267}, {"model_based_pick": true}] +[[9, 0, 7], {"x0": -2.3732583000090104, "x1": 4.469595014406897, "x2": 7.7343632946102945, "x3": -3.082058351349912, "x4": 2.2181371367857388, "x5": 0.021079952472764285}, {"model_based_pick": true}] +[[9, 0, 8], {"x0": -2.4300097578482394, "x1": 3.865002125821823, "x2": 7.3447403251115, "x3": -3.860239942587502, "x4": 1.9851352054208773, "x5": 0.015296262494997404}, {"model_based_pick": true}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/bohb/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/bohb/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/bohb/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/bohb/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/bohb/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/bohb/results.json new file mode 100644 index 0000000..4955b2d --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/bohb/results.json @@ -0,0 +1,183 @@ +[[0, 0, 0], 3.0, {"submitted": 1558193546.5023692, "started": 1558193546.5029962, "finished": 1558193546.5188043}, {"loss": 0.952476254400034, "info": {"x0": -5.333803348998303, "x1": 6.096137647505706, "x2": 5.210656454238055, "x3": -2.103367690238159, "x4": 1.8357989741000846, "x5": 0.16003609358033022}}, null] +[[0, 0, 1], 3.0, {"submitted": 1558193546.5255253, "started": 1558193546.5260687, "finished": 1558193546.5361383}, {"loss": 0.1937132507171743, "info": {"x0": -2.545448579694614, "x1": 5.4462846448923425, "x2": 6.092506790980261, "x3": -1.0719664015480022, "x4": 2.98916007195244, "x5": 0.2443245776214235}}, null] +[[0, 0, 2], 3.0, {"submitted": 1558193546.5421965, "started": 1558193546.542904, "finished": 1558193546.5564837}, {"loss": 0.3648122974457864, "info": {"x0": -2.735843091008589, "x1": 7.437326139388258, "x2": 5.40648606696468, "x3": -2.4567099932895378, "x4": 3.2380071285568195, "x5": 0.4478512968898061}}, null] +[[0, 0, 3], 3.0, {"submitted": 1558193546.5615664, "started": 1558193546.562079, "finished": 1558193546.569684}, {"loss": 0.9470827675010034, "info": {"x0": -5.320440043178533, "x1": 6.705793240211369, "x2": 6.4116834771875535, "x3": -0.053865118321258176, "x4": 2.1364236362604716, "x5": 0.2701196830379608}}, null] +[[0, 0, 4], 3.0, {"submitted": 1558193546.5780017, "started": 1558193546.5786786, "finished": 1558193546.5901005}, {"loss": 0.9400045222752741, "info": {"x0": -4.717096192082702, "x1": 5.195195619776275, "x2": 4.38220393830191, "x3": -3.1266374694533416, "x4": 1.3149424314740648, "x5": 0.06943124370947962}}, null] +[[0, 0, 5], 3.0, {"submitted": 1558193546.5927348, "started": 1558193546.5940835, "finished": 1558193546.605653}, {"loss": 0.2362053326126786, "info": {"x0": -3.3847526266443544, "x1": 6.63379879437351, "x2": 7.011942924231656, "x3": -3.437998821901643, "x4": 2.333122870696882, "x5": 0.05463788918057949}}, null] +[[0, 0, 6], 3.0, {"submitted": 1558193546.6087499, "started": 1558193546.609107, "finished": 1558193546.6221895}, {"loss": 1, "info": {"x0": -2.684136008901104, "x1": 3.0842372898825867, "x2": 7.7937484207945005, "x3": -2.6586168243099695, "x4": 3.2949787538271447, "x5": 0.17162594437050704}}, null] +[[0, 0, 7], 3.0, {"submitted": 1558193546.6297953, "started": 1558193546.6302924, "finished": 1558193546.6450546}, {"loss": 0.18575304937155096, "info": {"x0": -2.1890297465819515, "x1": 6.074390119095211, "x2": 6.384954996273242, "x3": -0.0922928619761949, "x4": 2.3609310619151023, "x5": 0.3278003091438125}}, null] +[[0, 0, 8], 3.0, {"submitted": 1558193546.6484797, "started": 1558193546.648809, "finished": 1558193546.6594818}, {"loss": 0.9439393934006295, "info": {"x0": -5.157503946087049, "x1": 6.360131657415162, "x2": 6.514432009498831, "x3": -2.3793529654436036, "x4": 2.7218246621071125, "x5": 0.11498987264157207}}, null] +[[0, 0, 9], 3.0, {"submitted": 1558193546.664433, "started": 1558193546.666992, "finished": 1558193546.6782813}, {"loss": 0.40976933566040447, "info": {"x0": -3.1080038901468456, "x1": 7.884388593579237, "x2": 4.746534894982535, "x3": -0.36210956083980994, "x4": 4.476924920347621, "x5": 0.1697658071770714}}, null] +[[0, 0, 10], 3.0, {"submitted": 1558193546.682421, "started": 1558193546.683008, "finished": 1558193546.6981258}, {"loss": 0.6447987337998139, "info": {"x0": -3.4634302613564008, "x1": 7.304628308503596, "x2": 5.363159791627039, "x3": -0.16156454547643895, "x4": 4.024518013272653, "x5": 0.2745232541097136}}, null] +[[0, 0, 11], 3.0, {"submitted": 1558193546.7058547, "started": 1558193546.7067637, "finished": 1558193546.7163353}, {"loss": 0.7811397543213655, "info": {"x0": -3.643105121332487, "x1": 6.1818736857659875, "x2": 4.000232429268316, "x3": -0.13366317142933415, "x4": 1.8689221517029608, "x5": 0.21207654006670196}}, null] +[[0, 0, 12], 3.0, {"submitted": 1558193546.7296484, "started": 1558193546.7330072, "finished": 1558193546.7438648}, {"loss": 0.6225011285330405, "info": {"x0": -2.3142004116424655, "x1": 7.107702568781417, "x2": 4.240793690831293, "x3": -1.833220993399848, "x4": 3.5749372605721375, "x5": 0.391553512696179}}, null] +[[0, 0, 13], 3.0, {"submitted": 1558193546.7479074, "started": 1558193546.7487109, "finished": 1558193546.7603168}, {"loss": 0.7990728145383537, "info": {"x0": -4.358642897823281, "x1": 3.864643171340011, "x2": 5.8112719648231925, "x3": -2.995138463703696, "x4": 2.172515939338606, "x5": 0.3231576534819243}}, null] +[[0, 0, 14], 3.0, {"submitted": 1558193546.8707807, "started": 1558193546.8713748, "finished": 1558193546.8777995}, {"loss": 0.6170284900785652, "info": {"x0": -2.4586425245777543, "x1": 6.5726281500391135, "x2": 4.505032858955592, "x3": -3.7902819882853476, "x4": 4.938021852219678, "x5": 0.29009168604513225}}, null] +[[0, 0, 15], 3.0, {"submitted": 1558193546.9654975, "started": 1558193546.9664083, "finished": 1558193546.9765766}, {"loss": 0.1720714596130901, "info": {"x0": -2.1080581701243686, "x1": 5.852442918633948, "x2": 6.47230745047556, "x3": -1.368563438803379, "x4": 1.380584466893795, "x5": 0.4526799235746412}}, null] +[[0, 0, 16], 3.0, {"submitted": 1558193547.06209, "started": 1558193547.0625238, "finished": 1558193547.0728886}, {"loss": 0.15909090916369634, "info": {"x0": -2.1411437530317827, "x1": 5.614233281821928, "x2": 6.817025395272921, "x3": -2.318985309455004, "x4": 1.573017825168662, "x5": 0.4708505708258075}}, null] +[[0, 0, 17], 3.0, {"submitted": 1558193547.1797247, "started": 1558193547.1801546, "finished": 1558193547.1941261}, {"loss": 0.13663500758896366, "info": {"x0": -2.446898006621396, "x1": 7.603327361258296, "x2": 7.35943542800546, "x3": -3.494318934605851, "x4": 1.4662951009894922, "x5": 0.3240886887588561}}, null] +[[0, 0, 18], 3.0, {"submitted": 1558193547.2887015, "started": 1558193547.2891264, "finished": 1558193547.2954345}, {"loss": 0.201786521717414, "info": {"x0": -2.11462136634033, "x1": 5.686661923217205, "x2": 7.693648170814261, "x3": -2.548543970067878, "x4": 1.7053698359071952, "x5": 0.49055049456552513}}, null] +[[0, 0, 19], 3.0, {"submitted": 1558193547.3003657, "started": 1558193547.3008513, "finished": 1558193547.3133404}, {"loss": 0.45483943315341646, "info": {"x0": -3.241010906794032, "x1": 7.115015875518962, "x2": 7.974284878484427, "x3": -0.38874392436064076, "x4": 4.237222255011831, "x5": 0.455172228799011}}, null] +[[0, 0, 20], 3.0, {"submitted": 1558193547.3200924, "started": 1558193547.320661, "finished": 1558193547.3294036}, {"loss": 0.35628674208160865, "info": {"x0": -3.086873873615161, "x1": 6.151316674177451, "x2": 5.802016144451644, "x3": -3.9310489234490245, "x4": 1.9750557469128678, "x5": 0.20509493496402942}}, null] +[[0, 0, 21], 3.0, {"submitted": 1558193547.3336225, "started": 1558193547.3340788, "finished": 1558193547.3458784}, {"loss": 0.524310258333329, "info": {"x0": -2.7755788204438887, "x1": 3.5043309420949837, "x2": 4.383998953650053, "x3": -3.0252885076263234, "x4": 4.790972377886172, "x5": 0.1073890465118742}}, null] +[[0, 0, 22], 3.0, {"submitted": 1558193547.4405236, "started": 1558193547.440924, "finished": 1558193547.447062}, {"loss": 0.20522387831904448, "info": {"x0": -2.454261228822966, "x1": 4.542466551782056, "x2": 7.812083546262249, "x3": -1.2239096573635901, "x4": 1.4194959477651783, "x5": 0.466977366431883}}, null] +[[0, 0, 23], 3.0, {"submitted": 1558193547.5407417, "started": 1558193547.54114, "finished": 1558193547.5473185}, {"loss": 0.21386251053298988, "info": {"x0": -2.069458693638837, "x1": 5.165887542982554, "x2": 6.21238267430017, "x3": -2.046994070445256, "x4": 1.6447899094677112, "x5": 0.42710164072277124}}, null] +[[0, 0, 24], 3.0, {"submitted": 1558193547.557559, "started": 1558193547.559471, "finished": 1558193547.5682404}, {"loss": 0.6586612398004515, "info": {"x0": -4.028415997709054, "x1": 6.823121025760973, "x2": 5.579602966515674, "x3": -2.020058459346186, "x4": 2.4846451983305946, "x5": 0.04884178194707273}}, null] +[[0, 0, 25], 3.0, {"submitted": 1558193547.6546662, "started": 1558193547.6555636, "finished": 1558193547.6629548}, {"loss": 0.1405020379955442, "info": {"x0": -2.11927753854623, "x1": 6.545740163779242, "x2": 7.976859733341438, "x3": -3.6978859464951244, "x4": 1.4020612702641368, "x5": 0.4938457759493706}}, null] +[[0, 0, 26], 3.0, {"submitted": 1558193547.7520304, "started": 1558193547.7526243, "finished": 1558193547.7598612}, {"loss": 0.13980099640109325, "info": {"x0": -2.5091607860904843, "x1": 6.013338900067713, "x2": 6.614087474937523, "x3": -1.0932383660012466, "x4": 2.785490376500967, "x5": 0.22688055436748375}}, null] +[[0, 0, 1], 9.0, {"submitted": 1558193547.7670972, "started": 1558193547.767668, "finished": 1558193547.7761962}, {"loss": 0.13141112499569185, "info": {"x0": -2.545448579694614, "x1": 5.4462846448923425, "x2": 6.092506790980261, "x3": -1.0719664015480022, "x4": 2.98916007195244, "x5": 0.2443245776214235}}, null] +[[0, 0, 7], 9.0, {"submitted": 1558193547.777695, "started": 1558193547.7780223, "finished": 1558193547.790963}, {"loss": 0.13787878785789526, "info": {"x0": -2.1890297465819515, "x1": 6.074390119095211, "x2": 6.384954996273242, "x3": -0.0922928619761949, "x4": 2.3609310619151023, "x5": 0.3278003091438125}}, null] +[[0, 0, 15], 9.0, {"submitted": 1558193547.7932897, "started": 1558193547.794729, "finished": 1558193547.804192}, {"loss": 0.1318860237736445, "info": {"x0": -2.1080581701243686, "x1": 5.852442918633948, "x2": 6.47230745047556, "x3": -1.368563438803379, "x4": 1.380584466893795, "x5": 0.4526799235746412}}, null] +[[0, 0, 16], 9.0, {"submitted": 1558193547.8069394, "started": 1558193547.8072622, "finished": 1558193547.827724}, {"loss": 0.11630484008751321, "info": {"x0": -2.1411437530317827, "x1": 5.614233281821928, "x2": 6.817025395272921, "x3": -2.318985309455004, "x4": 1.573017825168662, "x5": 0.4708505708258075}}, null] +[[0, 0, 17], 9.0, {"submitted": 1558193547.8298874, "started": 1558193547.8329701, "finished": 1558193547.852064}, {"loss": 0.12094075092224447, "info": {"x0": -2.446898006621396, "x1": 7.603327361258296, "x2": 7.35943542800546, "x3": -3.494318934605851, "x4": 1.4662951009894922, "x5": 0.3240886887588561}}, null] +[[0, 0, 18], 9.0, {"submitted": 1558193547.854285, "started": 1558193547.854782, "finished": 1558193547.8729866}, {"loss": 0.11818181875333264, "info": {"x0": -2.11462136634033, "x1": 5.686661923217205, "x2": 7.693648170814261, "x3": -2.548543970067878, "x4": 1.7053698359071952, "x5": 0.49055049456552513}}, null] +[[0, 0, 22], 9.0, {"submitted": 1558193547.8756537, "started": 1558193547.876095, "finished": 1558193547.8915207}, {"loss": 0.1322930791066923, "info": {"x0": -2.454261228822966, "x1": 4.542466551782056, "x2": 7.812083546262249, "x3": -1.2239096573635901, "x4": 1.4194959477651783, "x5": 0.466977366431883}}, null] +[[0, 0, 25], 9.0, {"submitted": 1558193547.8935971, "started": 1558193547.894027, "finished": 1558193547.9022913}, {"loss": 0.10447761381928708, "info": {"x0": -2.11927753854623, "x1": 6.545740163779242, "x2": 7.976859733341438, "x3": -3.6978859464951244, "x4": 1.4020612702641368, "x5": 0.4938457759493706}}, null] +[[0, 0, 26], 9.0, {"submitted": 1558193547.9076102, "started": 1558193547.9086766, "finished": 1558193547.922834}, {"loss": 0.09479873524241617, "info": {"x0": -2.5091607860904843, "x1": 6.013338900067713, "x2": 6.614087474937523, "x3": -1.0932383660012466, "x4": 2.785490376500967, "x5": 0.22688055436748375}}, null] +[[0, 0, 16], 27.0, {"submitted": 1558193547.9258256, "started": 1558193547.9261706, "finished": 1558193547.934831}, {"loss": 0.1058570795202622, "info": {"x0": -2.1411437530317827, "x1": 5.614233281821928, "x2": 6.817025395272921, "x3": -2.318985309455004, "x4": 1.573017825168662, "x5": 0.4708505708258075}}, null] +[[0, 0, 25], 27.0, {"submitted": 1558193547.9389825, "started": 1558193547.9396062, "finished": 1558193547.946135}, {"loss": 0.10180913791538955, "info": {"x0": -2.11927753854623, "x1": 6.545740163779242, "x2": 7.976859733341438, "x3": -3.6978859464951244, "x4": 1.4020612702641368, "x5": 0.4938457759493706}}, null] +[[0, 0, 26], 27.0, {"submitted": 1558193547.9480736, "started": 1558193547.948551, "finished": 1558193547.9600444}, {"loss": 0.07921755147406227, "info": {"x0": -2.5091607860904843, "x1": 6.013338900067713, "x2": 6.614087474937523, "x3": -1.0932383660012466, "x4": 2.785490376500967, "x5": 0.22688055436748375}}, null] +[[0, 0, 26], 81.0, {"submitted": 1558193547.9619336, "started": 1558193547.9622595, "finished": 1558193547.9717221}, {"loss": 0.07921755147406227, "info": {"x0": -2.5091607860904843, "x1": 6.013338900067713, "x2": 6.614087474937523, "x3": -1.0932383660012466, "x4": 2.785490376500967, "x5": 0.22688055436748375}}, null] +[[1, 0, 0], 9.0, {"submitted": 1558193548.0545554, "started": 1558193548.0552487, "finished": 1558193548.0629487}, {"loss": 0.19536408371835853, "info": {"x0": -2.6410188081146626, "x1": 5.11178855658937, "x2": 5.423375775168283, "x3": -2.1837177579248275, "x4": 2.9106134281978226, "x5": 0.2176358977809502}}, null] +[[1, 0, 1], 9.0, {"submitted": 1558193548.1483552, "started": 1558193548.1494899, "finished": 1558193548.1630774}, {"loss": 0.1253957467575733, "info": {"x0": -2.672708074790431, "x1": 7.448097703736479, "x2": 7.603455106559474, "x3": -3.2703908293554544, "x4": 1.3241436504768866, "x5": 0.382913426545964}}, null] +[[1, 0, 2], 9.0, {"submitted": 1558193548.1675756, "started": 1558193548.1683917, "finished": 1558193548.1825948}, {"loss": 0.4148575281312378, "info": {"x0": -2.0176078483984337, "x1": 5.2381055555508045, "x2": 4.5610695885117165, "x3": -1.779718424483629, "x4": 4.819381644955922, "x5": 0.22373039502457476}}, null] +[[1, 0, 3], 9.0, {"submitted": 1558193548.2745626, "started": 1558193548.274916, "finished": 1558193548.2810252}, {"loss": 0.09124830040806076, "info": {"x0": -2.25587335016789, "x1": 6.692802561654654, "x2": 6.479412927565871, "x3": -0.32478668535202804, "x4": 2.179979785129669, "x5": 0.2699226848488486}}, null] +[[1, 0, 4], 9.0, {"submitted": 1558193548.3798254, "started": 1558193548.3801773, "finished": 1558193548.3911152}, {"loss": 0.13061962989540135, "info": {"x0": -2.165397656016298, "x1": 5.603769977271984, "x2": 6.519015631308338, "x3": -0.8731364544933147, "x4": 2.2336740278213423, "x5": 0.38318808222026407}}, null] +[[1, 0, 5], 9.0, {"submitted": 1558193548.396932, "started": 1558193548.3976455, "finished": 1558193548.4071133}, {"loss": 0.9424016267211188, "info": {"x0": -5.298123758420862, "x1": 3.2773901585011345, "x2": 6.122724295980191, "x3": -2.929184162286467, "x4": 2.8050455233628724, "x5": 0.07884753676624084}}, null] +[[1, 0, 6], 9.0, {"submitted": 1558193548.504801, "started": 1558193548.5051365, "finished": 1558193548.5113385}, {"loss": 0.12358661138973641, "info": {"x0": -2.8150603868549093, "x1": 7.688639325075094, "x2": 7.816270417754671, "x3": -2.9576853323903975, "x4": 2.1429847130598625, "x5": 0.37413583687648067}}, null] +[[1, 0, 7], 9.0, {"submitted": 1558193548.5142403, "started": 1558193548.514709, "finished": 1558193548.5343764}, {"loss": 0.6482587000168102, "info": {"x0": -3.7312906263756456, "x1": 4.220819673298704, "x2": 4.139887956418031, "x3": -3.2293296629218435, "x4": 2.2668001994533147, "x5": 0.19169882103945868}}, null] +[[1, 0, 8], 9.0, {"submitted": 1558193548.635804, "started": 1558193548.6362062, "finished": 1558193548.642594}, {"loss": 0.09269561309962182, "info": {"x0": -2.4872825784200145, "x1": 6.811746161636679, "x2": 6.526389146648354, "x3": -0.6451261061465035, "x4": 1.9166630576941848, "x5": 0.21117714551961275}}, null] +[[1, 0, 3], 27.0, {"submitted": 1558193548.6455843, "started": 1558193548.6459618, "finished": 1558193548.6621644}, {"loss": 0.07973766897070847, "info": {"x0": -2.25587335016789, "x1": 6.692802561654654, "x2": 6.479412927565871, "x3": -0.32478668535202804, "x4": 2.179979785129669, "x5": 0.2699226848488486}}, null] +[[1, 0, 6], 27.0, {"submitted": 1558193548.6641176, "started": 1558193548.6646283, "finished": 1558193548.6757944}, {"loss": 0.10992763262698686, "info": {"x0": -2.8150603868549093, "x1": 7.688639325075094, "x2": 7.816270417754671, "x3": -2.9576853323903975, "x4": 2.1429847130598625, "x5": 0.37413583687648067}}, null] +[[1, 0, 8], 27.0, {"submitted": 1558193548.677193, "started": 1558193548.6774917, "finished": 1558193548.6843898}, {"loss": 0.08290366384843958, "info": {"x0": -2.4872825784200145, "x1": 6.811746161636679, "x2": 6.526389146648354, "x3": -0.6451261061465035, "x4": 1.9166630576941848, "x5": 0.21117714551961275}}, null] +[[1, 0, 3], 81.0, {"submitted": 1558193548.6877737, "started": 1558193548.6884463, "finished": 1558193548.7022288}, {"loss": 0.07973766897070847, "info": {"x0": -2.25587335016789, "x1": 6.692802561654654, "x2": 6.479412927565871, "x3": -0.32478668535202804, "x4": 2.179979785129669, "x5": 0.2699226848488486}}, null] +[[2, 0, 0], 27.0, {"submitted": 1558193548.7921226, "started": 1558193548.7925875, "finished": 1558193548.8009694}, {"loss": 0.07105382353620042, "info": {"x0": -2.532906348876123, "x1": 7.593784192100571, "x2": 6.443337125198631, "x3": -0.018101273358640757, "x4": 1.725288925560021, "x5": 0.13634901854933745}}, null] +[[2, 0, 1], 27.0, {"submitted": 1558193548.8892388, "started": 1558193548.889944, "finished": 1558193548.8979769}, {"loss": 0.06793306251690431, "info": {"x0": -2.364988191462787, "x1": 7.884985811429645, "x2": 7.196817209048562, "x3": -1.0001695388041232, "x4": 2.103603266344442, "x5": 0.03493061842693368}}, null] +[[2, 0, 2], 27.0, {"submitted": 1558193548.9055877, "started": 1558193548.9061797, "finished": 1558193548.9121034}, {"loss": 0.05617367665404273, "info": {"x0": -2.5057319957472997, "x1": 4.8587510659259445, "x2": 7.423672293181657, "x3": -3.8877709950741544, "x4": 3.590883609672381, "x5": 0.007304356211659646}}, null] +[[2, 0, 3], 27.0, {"submitted": 1558193548.914998, "started": 1558193548.9154894, "finished": 1558193548.9293022}, {"loss": 0.16162370020369504, "info": {"x0": -2.086748307676416, "x1": 7.591497297106006, "x2": 6.686356178117963, "x3": -3.183296892882914, "x4": 3.9612292609003297, "x5": 0.41848191827145736}}, null] +[[2, 0, 4], 27.0, {"submitted": 1558193549.0278118, "started": 1558193549.028325, "finished": 1558193549.0356421}, {"loss": 0.10368611712711315, "info": {"x0": -2.416677026545108, "x1": 6.911563154989995, "x2": 6.345370279825833, "x3": -1.0868253694852958, "x4": 1.9491300012833714, "x5": 0.24896047735298618}}, null] +[[2, 0, 5], 27.0, {"submitted": 1558193549.039681, "started": 1558193549.0404758, "finished": 1558193549.0494049}, {"loss": 0.1574626849321476, "info": {"x0": -3.1515871307861434, "x1": 3.041170944409756, "x2": 5.986158255236724, "x3": -1.194302960379757, "x4": 3.4238216940240127, "x5": 0.03935553606935038}}, null] +[[2, 0, 1], 81.0, {"submitted": 1558193549.0605662, "started": 1558193549.0609562, "finished": 1558193549.0689456}, {"loss": 0.06793306251690431, "info": {"x0": -2.364988191462787, "x1": 7.884985811429645, "x2": 7.196817209048562, "x3": -1.0001695388041232, "x4": 2.103603266344442, "x5": 0.03493061842693368}}, null] +[[2, 0, 2], 81.0, {"submitted": 1558193549.0714462, "started": 1558193549.0722275, "finished": 1558193549.0800083}, {"loss": 0.05024875572287405, "info": {"x0": -2.5057319957472997, "x1": 4.8587510659259445, "x2": 7.423672293181657, "x3": -3.8877709950741544, "x4": 3.590883609672381, "x5": 0.007304356211659646}}, null] +[[3, 0, 0], 81.0, {"submitted": 1558193549.1676047, "started": 1558193549.1680994, "finished": 1558193549.1749456}, {"loss": 0.10807326997178328, "info": {"x0": -2.0810786104702497, "x1": 6.538103798745244, "x2": 7.967498507836611, "x3": -3.3240648742794123, "x4": 2.3000117820927812, "x5": 0.49553719755631515}}, null] +[[3, 0, 1], 81.0, {"submitted": 1558193549.2662587, "started": 1558193549.2668543, "finished": 1558193549.2736037}, {"loss": 0.08165988576784225, "info": {"x0": -2.437755822959429, "x1": 7.589043830249347, "x2": 6.5186219047644895, "x3": -0.9243216333194453, "x4": 1.4378006308546691, "x5": 0.20070131667632882}}, null] +[[3, 0, 2], 81.0, {"submitted": 1558193549.2761698, "started": 1558193549.276573, "finished": 1558193549.2912166}, {"loss": 0.08394391599255738, "info": {"x0": -2.8213869744165883, "x1": 6.0360025930824275, "x2": 6.84670701172495, "x3": -2.9289337079477105, "x4": 4.990039809054227, "x5": 0.15867679243680866}}, null] +[[3, 0, 3], 81.0, {"submitted": 1558193549.393901, "started": 1558193549.3946044, "finished": 1558193549.4074447}, {"loss": 0.125983720203699, "info": {"x0": -2.737040235134473, "x1": 7.011794878026401, "x2": 6.489081454628595, "x3": -1.2990863481020782, "x4": 1.263959872533714, "x5": 0.10721472500927592}}, null] +[[4, 0, 0], 3.0, {"submitted": 1558193549.5009172, "started": 1558193549.5014834, "finished": 1558193549.5104227}, {"loss": 0.13177295289984228, "info": {"x0": -2.5795600397949174, "x1": 7.286466748396279, "x2": 6.116641674103496, "x3": -2.03178844432112, "x4": 1.1597779114971667, "x5": 0.09256971685741221}}, null] +[[4, 0, 1], 3.0, {"submitted": 1558193549.6135714, "started": 1558193549.6162956, "finished": 1558193549.627375}, {"loss": 0.14170058828061224, "info": {"x0": -2.645316827220757, "x1": 6.740180198379218, "x2": 6.1760802273446345, "x3": -0.26212357027100763, "x4": 1.2925096195913914, "x5": 0.004904863781413804}}, null] +[[4, 0, 2], 3.0, {"submitted": 1558193549.726446, "started": 1558193549.726867, "finished": 1558193549.7326252}, {"loss": 0.13057440089214337, "info": {"x0": -2.4354806319440763, "x1": 6.527391374877176, "x2": 6.547484496920198, "x3": -1.2135544992622296, "x4": 2.371784382914675, "x5": 0.13481021530717613}}, null] +[[4, 0, 3], 3.0, {"submitted": 1558193549.7367697, "started": 1558193549.7372932, "finished": 1558193549.745323}, {"loss": 0.4417458140643837, "info": {"x0": -3.21259953427107, "x1": 7.970945747163682, "x2": 5.476323965209341, "x3": -0.24846603342851736, "x4": 4.065517883820626, "x5": 0.21393905241725103}}, null] +[[4, 0, 4], 3.0, {"submitted": 1558193549.8409605, "started": 1558193549.841353, "finished": 1558193549.8470924}, {"loss": 0.11822704609596366, "info": {"x0": -2.6714070195560575, "x1": 6.437521632986443, "x2": 7.053127952724281, "x3": -1.2497902999648445, "x4": 1.814044701401543, "x5": 0.0490882854106387}}, null] +[[4, 0, 5], 3.0, {"submitted": 1558193549.9429185, "started": 1558193549.9433043, "finished": 1558193549.951388}, {"loss": 0.1538896433250875, "info": {"x0": -2.2564091006327147, "x1": 5.991149840134733, "x2": 7.959492256104027, "x3": -2.8738830249027076, "x4": 1.6299287357744359, "x5": 0.45719227001923407}}, null] +[[4, 0, 6], 3.0, {"submitted": 1558193549.9591646, "started": 1558193549.9596112, "finished": 1558193549.9665272}, {"loss": 0.9595658071384097, "info": {"x0": -5.117593649310667, "x1": 7.085885999898949, "x2": 5.820047630582284, "x3": -2.3151704942152356, "x4": 4.547301020476696, "x5": 0.39337738556600504}}, null] +[[4, 0, 7], 3.0, {"submitted": 1558193550.059349, "started": 1558193550.059726, "finished": 1558193550.0664485}, {"loss": 0.13095884225666118, "info": {"x0": -2.1485092431646122, "x1": 5.169941199994852, "x2": 7.888824246105825, "x3": -3.810447362259188, "x4": 1.2788969154692877, "x5": 0.4326373534996132}}, null] +[[4, 0, 8], 3.0, {"submitted": 1558193550.1598797, "started": 1558193550.1602938, "finished": 1558193550.1679823}, {"loss": 0.17887833759640198, "info": {"x0": -2.1406013232042382, "x1": 5.220811900401584, "x2": 6.574462148192957, "x3": -3.815606615853274, "x4": 2.030881363130909, "x5": 0.45891327141114335}}, null] +[[4, 0, 9], 3.0, {"submitted": 1558193550.2515788, "started": 1558193550.252023, "finished": 1558193550.2668514}, {"loss": 0.08270013537249485, "info": {"x0": -2.1971073006279513, "x1": 7.257786550005374, "x2": 6.663828200737591, "x3": -1.0966522270120347, "x4": 1.3563943786279127, "x5": 0.024526189420240152}}, null] +[[4, 0, 10], 3.0, {"submitted": 1558193550.3466053, "started": 1558193550.3469632, "finished": 1558193550.359026}, {"loss": 0.1267978299532148, "info": {"x0": -2.5672614896697197, "x1": 7.346406987117391, "x2": 6.563131759152655, "x3": -0.022973353380139727, "x4": 2.104207912203669, "x5": 0.09685210068835276}}, null] +[[4, 0, 11], 3.0, {"submitted": 1558193550.4642026, "started": 1558193550.4647915, "finished": 1558193550.472866}, {"loss": 0.12336046994406409, "info": {"x0": -2.373826337425564, "x1": 7.078473403686863, "x2": 6.541525027820761, "x3": -0.22280503686837738, "x4": 1.5002276022890286, "x5": 0.24470381631736934}}, null] +[[4, 0, 12], 3.0, {"submitted": 1558193550.5877092, "started": 1558193550.588211, "finished": 1558193550.5954826}, {"loss": 0.16449570200498262, "info": {"x0": -2.1251506631936015, "x1": 6.457088810834556, "x2": 7.592428608354815, "x3": -2.9714420708067424, "x4": 1.7519941491585034, "x5": 0.43250132690571325}}, null] +[[4, 0, 13], 3.0, {"submitted": 1558193550.6815293, "started": 1558193550.6821685, "finished": 1558193550.693675}, {"loss": 0.11938036977705617, "info": {"x0": -2.4009559644902665, "x1": 7.847273848883696, "x2": 7.628674379227162, "x3": -3.6908890429530468, "x4": 1.3680618372985336, "x5": 0.2160026271527625}}, null] +[[4, 0, 14], 3.0, {"submitted": 1558193550.7828841, "started": 1558193550.7834046, "finished": 1558193550.7944028}, {"loss": 0.1605608315643872, "info": {"x0": -2.126123184617083, "x1": 5.453907235920942, "x2": 7.764724575620023, "x3": -3.9804845003020604, "x4": 2.3677418864717827, "x5": 0.42945482239525273}}, null] +[[4, 0, 15], 3.0, {"submitted": 1558193550.7978709, "started": 1558193550.7986996, "finished": 1558193550.8067126}, {"loss": 0.9518543639739665, "info": {"x0": -5.184453967317451, "x1": 7.368239172902332, "x2": 5.151231906009534, "x3": -3.583977179548821, "x4": 4.952448494021722, "x5": 0.20327251483753594}}, null] +[[4, 0, 16], 3.0, {"submitted": 1558193550.8085692, "started": 1558193550.8089142, "finished": 1558193550.8206694}, {"loss": 0.14346449647969867, "info": {"x0": -2.7519136418207464, "x1": 6.294471597201973, "x2": 7.6922101319988725, "x3": -1.7835563627707791, "x4": 1.3217528685904094, "x5": 0.4347585331906955}}, null] +[[4, 0, 17], 3.0, {"submitted": 1558193550.824693, "started": 1558193550.825623, "finished": 1558193550.8363786}, {"loss": 0.423337856098194, "info": {"x0": -2.2037943127802433, "x1": 4.988172699238344, "x2": 4.327300590912446, "x3": -0.9499801604320677, "x4": 1.6108273325170592, "x5": 0.47237598989475477}}, null] +[[4, 0, 18], 3.0, {"submitted": 1558193550.9212112, "started": 1558193550.9216354, "finished": 1558193550.9363704}, {"loss": 0.1064224353194075, "info": {"x0": -2.365719622047609, "x1": 6.861455982914215, "x2": 6.719670569161032, "x3": -1.3432111757868292, "x4": 1.1850041119490262, "x5": 0.09051380960968108}}, null] +[[4, 0, 19], 3.0, {"submitted": 1558193551.0168276, "started": 1558193551.0173092, "finished": 1558193551.0254056}, {"loss": 0.1837856201039672, "info": {"x0": -2.2663052838473723, "x1": 5.328260447935636, "x2": 6.471800209831581, "x3": -3.3298708448801535, "x4": 1.726113155603826, "x5": 0.42697457237790165}}, null] +[[4, 0, 20], 3.0, {"submitted": 1558193551.1122384, "started": 1558193551.1126475, "finished": 1558193551.1269794}, {"loss": 0.08396653089114628, "info": {"x0": -2.2951341788102813, "x1": 7.862660792790161, "x2": 6.673061439008918, "x3": -1.44995582193777, "x4": 1.2125703030799997, "x5": 0.050836135628219925}}, null] +[[4, 0, 21], 3.0, {"submitted": 1558193551.2127573, "started": 1558193551.2132068, "finished": 1558193551.225445}, {"loss": 0.19276345386892246, "info": {"x0": -2.1891969562892144, "x1": 5.276118451487104, "x2": 7.738172268565535, "x3": -2.833730500724055, "x4": 2.3327276956088587, "x5": 0.44797543838213716}}, null] +[[4, 0, 22], 3.0, {"submitted": 1558193551.3150215, "started": 1558193551.3162096, "finished": 1558193551.3257344}, {"loss": 0.13046132716211672, "info": {"x0": -2.568962077068825, "x1": 5.864046769970122, "x2": 6.3135783634355676, "x3": -0.2777329093512866, "x4": 1.9555548082746945, "x5": 0.06838167581715768}}, null] +[[4, 0, 23], 3.0, {"submitted": 1558193551.431722, "started": 1558193551.4322226, "finished": 1558193551.4391158}, {"loss": 0.12288557009182602, "info": {"x0": -2.5177863164568124, "x1": 7.391911710571222, "x2": 6.804248058829883, "x3": -0.15044184051962795, "x4": 1.4850066338603536, "x5": 0.09691180688207096}}, null] +[[4, 0, 24], 3.0, {"submitted": 1558193551.4411745, "started": 1558193551.4425137, "finished": 1558193551.4575021}, {"loss": 0.7104251475217035, "info": {"x0": -4.098732375176283, "x1": 7.167976639617333, "x2": 7.091626715555961, "x3": -1.6393441025800293, "x4": 4.346234228887261, "x5": 0.3188585767670572}}, null] +[[4, 0, 25], 3.0, {"submitted": 1558193551.4602408, "started": 1558193551.4606256, "finished": 1558193551.4724174}, {"loss": 0.9559746719337412, "info": {"x0": -5.773815573641301, "x1": 7.9489228982109355, "x2": 5.188585556579204, "x3": -2.821973627314133, "x4": 3.5764087243815754, "x5": 0.36767952120672664}}, null] +[[4, 0, 26], 3.0, {"submitted": 1558193551.4754007, "started": 1558193551.4757967, "finished": 1558193551.4825854}, {"loss": 0.9208276796938151, "info": {"x0": -4.26123586529682, "x1": 7.944678901263657, "x2": 4.968699208190429, "x3": -1.6799886191174704, "x4": 1.9155397507675107, "x5": 0.13326655207576749}}, null] +[[4, 0, 4], 9.0, {"submitted": 1558193551.4849842, "started": 1558193551.4853625, "finished": 1558193551.5005102}, {"loss": 0.07772500819207748, "info": {"x0": -2.6714070195560575, "x1": 6.437521632986443, "x2": 7.053127952724281, "x3": -1.2497902999648445, "x4": 1.814044701401543, "x5": 0.0490882854106387}}, null] +[[4, 0, 9], 9.0, {"submitted": 1558193551.5047956, "started": 1558193551.5052423, "finished": 1558193551.5200183}, {"loss": 0.06074175080229719, "info": {"x0": -2.1971073006279513, "x1": 7.257786550005374, "x2": 6.663828200737591, "x3": -1.0966522270120347, "x4": 1.3563943786279127, "x5": 0.024526189420240152}}, null] +[[4, 0, 10], 9.0, {"submitted": 1558193551.5273504, "started": 1558193551.5281465, "finished": 1558193551.537826}, {"loss": 0.07596110319562864, "info": {"x0": -2.5672614896697197, "x1": 7.346406987117391, "x2": 6.563131759152655, "x3": -0.022973353380139727, "x4": 2.104207912203669, "x5": 0.09685210068835276}}, null] +[[4, 0, 11], 9.0, {"submitted": 1558193551.5409539, "started": 1558193551.5413427, "finished": 1558193551.5479143}, {"loss": 0.08903211102880325, "info": {"x0": -2.373826337425564, "x1": 7.078473403686863, "x2": 6.541525027820761, "x3": -0.22280503686837738, "x4": 1.5002276022890286, "x5": 0.24470381631736934}}, null] +[[4, 0, 13], 9.0, {"submitted": 1558193551.552833, "started": 1558193551.5534117, "finished": 1558193551.5680354}, {"loss": 0.10153776601071489, "info": {"x0": -2.4009559644902665, "x1": 7.847273848883696, "x2": 7.628674379227162, "x3": -3.6908890429530468, "x4": 1.3680618372985336, "x5": 0.2160026271527625}}, null] +[[4, 0, 18], 9.0, {"submitted": 1558193551.5725303, "started": 1558193551.5730045, "finished": 1558193551.5814075}, {"loss": 0.08387607818596614, "info": {"x0": -2.365719622047609, "x1": 6.861455982914215, "x2": 6.719670569161032, "x3": -1.3432111757868292, "x4": 1.1850041119490262, "x5": 0.09051380960968108}}, null] +[[4, 0, 20], 9.0, {"submitted": 1558193551.5857072, "started": 1558193551.5859842, "finished": 1558193551.598601}, {"loss": 0.06813659494627335, "info": {"x0": -2.2951341788102813, "x1": 7.862660792790161, "x2": 6.673061439008918, "x3": -1.44995582193777, "x4": 1.2125703030799997, "x5": 0.050836135628219925}}, null] +[[4, 0, 22], 9.0, {"submitted": 1558193551.604005, "started": 1558193551.6044521, "finished": 1558193551.6106067}, {"loss": 0.08480325511061512, "info": {"x0": -2.568962077068825, "x1": 5.864046769970122, "x2": 6.3135783634355676, "x3": -0.2777329093512866, "x4": 1.9555548082746945, "x5": 0.06838167581715768}}, null] +[[4, 0, 23], 9.0, {"submitted": 1558193551.6135545, "started": 1558193551.6140137, "finished": 1558193551.628251}, {"loss": 0.08550429789257612, "info": {"x0": -2.5177863164568124, "x1": 7.391911710571222, "x2": 6.804248058829883, "x3": -0.15044184051962795, "x4": 1.4850066338603536, "x5": 0.09691180688207096}}, null] +[[4, 0, 9], 27.0, {"submitted": 1558193551.6324742, "started": 1558193551.6330087, "finished": 1558193551.6410367}, {"loss": 0.05983718260819425, "info": {"x0": -2.1971073006279513, "x1": 7.257786550005374, "x2": 6.663828200737591, "x3": -1.0966522270120347, "x4": 1.3563943786279127, "x5": 0.024526189420240152}}, null] +[[4, 0, 10], 27.0, {"submitted": 1558193551.6436834, "started": 1558193551.6444519, "finished": 1558193551.656628}, {"loss": 0.0684531921973222, "info": {"x0": -2.5672614896697197, "x1": 7.346406987117391, "x2": 6.563131759152655, "x3": -0.022973353380139727, "x4": 2.104207912203669, "x5": 0.09685210068835276}}, null] +[[4, 0, 20], 27.0, {"submitted": 1558193551.66234, "started": 1558193551.6630201, "finished": 1558193551.6738276}, {"loss": 0.06777476753141481, "info": {"x0": -2.2951341788102813, "x1": 7.862660792790161, "x2": 6.673061439008918, "x3": -1.44995582193777, "x4": 1.2125703030799997, "x5": 0.050836135628219925}}, null] +[[4, 0, 9], 81.0, {"submitted": 1558193551.676558, "started": 1558193551.6772816, "finished": 1558193551.6935716}, {"loss": 0.05983718260819425, "info": {"x0": -2.1971073006279513, "x1": 7.257786550005374, "x2": 6.663828200737591, "x3": -1.0966522270120347, "x4": 1.3563943786279127, "x5": 0.024526189420240152}}, null] +[[5, 0, 0], 9.0, {"submitted": 1558193551.7809012, "started": 1558193551.7816174, "finished": 1558193551.7917385}, {"loss": 0.0831976514591021, "info": {"x0": -2.395565340209664, "x1": 6.871757429986505, "x2": 6.863215494509349, "x3": -2.0491147433983854, "x4": 1.051305240463868, "x5": 0.07320071689150842}}, null] +[[5, 0, 1], 9.0, {"submitted": 1558193551.8783896, "started": 1558193551.8787985, "finished": 1558193551.894633}, {"loss": 0.09495703167960631, "info": {"x0": -2.490285714548392, "x1": 4.021174051148674, "x2": 7.587942518332073, "x3": -2.471808040826971, "x4": 4.227295540416825, "x5": 0.008931704860474288}}, null] +[[5, 0, 2], 9.0, {"submitted": 1558193552.0250185, "started": 1558193552.0256953, "finished": 1558193552.0374272}, {"loss": 0.09810040651781426, "info": {"x0": -2.6096689495383445, "x1": 6.135343808001529, "x2": 7.877416359697613, "x3": -3.790466583169354, "x4": 3.465870118990361, "x5": 0.02421674712483801}}, null] +[[5, 0, 3], 9.0, {"submitted": 1558193552.043327, "started": 1558193552.0443587, "finished": 1558193552.0601678}, {"loss": 0.42218452967140585, "info": {"x0": -2.5000106235361277, "x1": 7.504524138786538, "x2": 4.914630542357965, "x3": -1.7235594605951934, "x4": 4.724878227810211, "x5": 0.33922966444261976}}, null] +[[5, 0, 4], 9.0, {"submitted": 1558193552.186388, "started": 1558193552.1870499, "finished": 1558193552.196484}, {"loss": 0.09027589839516263, "info": {"x0": -2.740245534372073, "x1": 4.919656979549255, "x2": 7.052391262338661, "x3": -3.6071127920749744, "x4": 2.9554026268170723, "x5": 0.08241548764530007}}, null] +[[5, 0, 5], 9.0, {"submitted": 1558193552.199844, "started": 1558193552.2003524, "finished": 1558193552.213905}, {"loss": 0.9391677961862099, "info": {"x0": -4.651335376158578, "x1": 3.109734092896552, "x2": 4.281898117503596, "x3": -0.841044906616033, "x4": 3.653762850286033, "x5": 0.139449037114187}}, null] +[[5, 0, 6], 9.0, {"submitted": 1558193552.2970283, "started": 1558193552.2974458, "finished": 1558193552.3066444}, {"loss": 0.09954771373213711, "info": {"x0": -2.1843748679026502, "x1": 4.276042939038024, "x2": 7.245119638450193, "x3": -3.4750988334082615, "x4": 4.018811065866321, "x5": 0.04983033757630783}}, null] +[[5, 0, 7], 9.0, {"submitted": 1558193552.391926, "started": 1558193552.3924665, "finished": 1558193552.4013958}, {"loss": 0.1370194442155727, "info": {"x0": -2.4041186475471994, "x1": 4.252167354885371, "x2": 6.867125268377935, "x3": -3.5239192781585946, "x4": 3.96230770404125, "x5": 0.008583493303605545}}, null] +[[5, 0, 8], 9.0, {"submitted": 1558193552.4962015, "started": 1558193552.4965878, "finished": 1558193552.5056787}, {"loss": 0.10900044993866839, "info": {"x0": -2.5682804530227332, "x1": 4.596376278267823, "x2": 7.8012169521018055, "x3": -3.4609194924371884, "x4": 3.936412527651909, "x5": 0.11925593360004051}}, null] +[[5, 0, 0], 27.0, {"submitted": 1558193552.5073051, "started": 1558193552.5077074, "finished": 1558193552.5179756}, {"loss": 0.08195387050340965, "info": {"x0": -2.395565340209664, "x1": 6.871757429986505, "x2": 6.863215494509349, "x3": -2.0491147433983854, "x4": 1.051305240463868, "x5": 0.07320071689150842}}, null] +[[5, 0, 1], 27.0, {"submitted": 1558193552.5209293, "started": 1558193552.5214546, "finished": 1558193552.5319812}, {"loss": 0.0511080968371887, "info": {"x0": -2.490285714548392, "x1": 4.021174051148674, "x2": 7.587942518332073, "x3": -2.471808040826971, "x4": 4.227295540416825, "x5": 0.008931704860474288}}, null] +[[5, 0, 4], 27.0, {"submitted": 1558193552.5379326, "started": 1558193552.5384068, "finished": 1558193552.5460377}, {"loss": 0.07268204976670185, "info": {"x0": -2.740245534372073, "x1": 4.919656979549255, "x2": 7.052391262338661, "x3": -3.6071127920749744, "x4": 2.9554026268170723, "x5": 0.08241548764530007}}, null] +[[5, 0, 1], 81.0, {"submitted": 1558193552.5496273, "started": 1558193552.5500832, "finished": 1558193552.561728}, {"loss": 0.03882858674351526, "info": {"x0": -2.490285714548392, "x1": 4.021174051148674, "x2": 7.587942518332073, "x3": -2.471808040826971, "x4": 4.227295540416825, "x5": 0.008931704860474288}}, null] +[[6, 0, 0], 27.0, {"submitted": 1558193552.5653446, "started": 1558193552.5657642, "finished": 1558193552.5744486}, {"loss": 0.24882406050643463, "info": {"x0": -3.9005155019158035, "x1": 6.5126445760907785, "x2": 7.5972688231907455, "x3": -1.801387172328024, "x4": 4.4629300629318145, "x5": 0.14488783225243207}}, null] +[[6, 0, 1], 27.0, {"submitted": 1558193552.6629095, "started": 1558193552.663216, "finished": 1558193552.6706927}, {"loss": 0.045748530171242086, "info": {"x0": -2.401527788922417, "x1": 4.884108176856971, "x2": 7.415316763834341, "x3": -1.1153768138274103, "x4": 3.7271465585993444, "x5": 0.04705493011289761}}, null] +[[6, 0, 2], 27.0, {"submitted": 1558193552.6743271, "started": 1558193552.6747394, "finished": 1558193552.6849976}, {"loss": 0.24260515122561097, "info": {"x0": -3.7248909487506925, "x1": 4.028720724997445, "x2": 7.593193681663966, "x3": -3.765630005539393, "x4": 2.2009505521369395, "x5": 0.4170847427446472}}, null] +[[6, 0, 3], 27.0, {"submitted": 1558193552.7681584, "started": 1558193552.768564, "finished": 1558193552.7746289}, {"loss": 0.08030302947271682, "info": {"x0": -2.340845598540982, "x1": 5.070147426426125, "x2": 7.968803105782062, "x3": -0.9656313199385176, "x4": 4.519326670422936, "x5": 0.07283201666388235}}, null] +[[6, 0, 4], 27.0, {"submitted": 1558193552.858061, "started": 1558193552.8584387, "finished": 1558193552.8714995}, {"loss": 0.046019900031135076, "info": {"x0": -2.4447784093043445, "x1": 4.917064903713245, "x2": 7.118400048448676, "x3": -2.0201573712649212, "x4": 4.320123197535736, "x5": 0.005287218013879049}}, null] +[[6, 0, 5], 27.0, {"submitted": 1558193552.8768454, "started": 1558193552.877309, "finished": 1558193552.8878124}, {"loss": 0.9247173209976463, "info": {"x0": -5.055226314567497, "x1": 6.144845187846249, "x2": 6.68155858719041, "x3": -3.676648118747663, "x4": 2.7261898564797384, "x5": 0.2538631459073249}}, null] +[[6, 0, 1], 81.0, {"submitted": 1558193552.8951054, "started": 1558193552.8958037, "finished": 1558193552.90536}, {"loss": 0.0385572133938795, "info": {"x0": -2.401527788922417, "x1": 4.884108176856971, "x2": 7.415316763834341, "x3": -1.1153768138274103, "x4": 3.7271465585993444, "x5": 0.04705493011289761}}, null] +[[6, 0, 4], 81.0, {"submitted": 1558193552.90785, "started": 1558193552.9081826, "finished": 1558193552.9157062}, {"loss": 0.04357756553516838, "info": {"x0": -2.4447784093043445, "x1": 4.917064903713245, "x2": 7.118400048448676, "x3": -2.0201573712649212, "x4": 4.320123197535736, "x5": 0.005287218013879049}}, null] +[[7, 0, 0], 81.0, {"submitted": 1558193553.0085564, "started": 1558193553.008993, "finished": 1558193553.0174494}, {"loss": 0.05615106051537529, "info": {"x0": -2.4058596051768224, "x1": 5.662053673740855, "x2": 7.135932189051639, "x3": -3.3598639167344686, "x4": 4.356017712090723, "x5": 0.01481155565857625}}, null] +[[7, 0, 1], 81.0, {"submitted": 1558193553.0214581, "started": 1558193553.0219831, "finished": 1558193553.0395288}, {"loss": 0.9503165982110146, "info": {"x0": -5.949347881036797, "x1": 4.1171383674749435, "x2": 6.3710556590605885, "x3": -3.9621080745691213, "x4": 3.084374964464831, "x5": 0.4714256865292416}}, null] +[[7, 0, 2], 81.0, {"submitted": 1558193553.1221561, "started": 1558193553.122791, "finished": 1558193553.1312335}, {"loss": 0.04457259354872813, "info": {"x0": -2.5185144928079137, "x1": 4.041937309531772, "x2": 7.636822055500483, "x3": -3.1748351373895125, "x4": 1.836965963076222, "x5": 0.0036943854193098825}}, null] +[[7, 0, 3], 81.0, {"submitted": 1558193553.1346762, "started": 1558193553.1350381, "finished": 1558193553.1425316}, {"loss": 0.9536861147792199, "info": {"x0": -4.677951627258007, "x1": 7.506304435530347, "x2": 5.074187160512892, "x3": -2.6867995274331298, "x4": 1.811560438296115, "x5": 0.1600730352608727}}, null] +[[8, 0, 0], 3.0, {"submitted": 1558193553.1485891, "started": 1558193553.149485, "finished": 1558193553.1638944}, {"loss": 0.3550881928782396, "info": {"x0": -3.1662389939582387, "x1": 6.821239087439153, "x2": 7.7760381221028885, "x3": -2.3997519562423024, "x4": 4.666439015777042, "x5": 0.16918509600053916}}, null] +[[8, 0, 1], 3.0, {"submitted": 1558193553.1681802, "started": 1558193553.1686664, "finished": 1558193553.1768022}, {"loss": 0.9511759385770698, "info": {"x0": -5.236325410628646, "x1": 7.896756762196517, "x2": 6.0826728655097275, "x3": -3.3008341645096566, "x4": 4.537700912224549, "x5": 0.015158008538872114}}, null] +[[8, 0, 2], 3.0, {"submitted": 1558193553.2645466, "started": 1558193553.2649372, "finished": 1558193553.271915}, {"loss": 0.23493893781179004, "info": {"x0": -2.3288669779178908, "x1": 3.243500795081884, "x2": 7.339610582419237, "x3": -3.7771611428718113, "x4": 1.7360659909736966, "x5": 0.012337053272808735}}, null] +[[8, 0, 3], 3.0, {"submitted": 1558193553.27393, "started": 1558193553.2743623, "finished": 1558193553.2838368}, {"loss": 0.7651062821978657, "info": {"x0": -3.891154561194558, "x1": 3.4875675762261307, "x2": 5.307860546985107, "x3": -3.77373809271603, "x4": 2.6594025825879672, "x5": 0.11682539214472121}}, null] +[[8, 0, 4], 3.0, {"submitted": 1558193553.3823924, "started": 1558193553.3828487, "finished": 1558193553.3901467}, {"loss": 0.2123473523086091, "info": {"x0": -2.359050694996796, "x1": 4.074925234129026, "x2": 7.6876819943487105, "x3": -3.3764598941526502, "x4": 3.655657566241525, "x5": 0.015368799648785016}}, null] +[[8, 0, 5], 3.0, {"submitted": 1558193553.4732096, "started": 1558193553.4736006, "finished": 1558193553.4803855}, {"loss": 0.17340569467983435, "info": {"x0": -2.322961773827378, "x1": 4.5781057495395245, "x2": 7.336118063210371, "x3": -3.666903644979972, "x4": 2.685470368226753, "x5": 0.009897128398418371}}, null] +[[8, 0, 6], 3.0, {"submitted": 1558193553.573036, "started": 1558193553.5734391, "finished": 1558193553.5834222}, {"loss": 0.2225689679286508, "info": {"x0": -2.4493912405623055, "x1": 3.1035027349939592, "x2": 7.220052002130068, "x3": -2.231454669120491, "x4": 3.3189711997250564, "x5": 0.006808744859143645}}, null] +[[8, 0, 7], 3.0, {"submitted": 1558193553.6701581, "started": 1558193553.6707454, "finished": 1558193553.6774068}, {"loss": 1, "info": {"x0": -2.534373154180576, "x1": 3.1325208170200036, "x2": 7.571712846692443, "x3": -1.1057228891075983, "x4": 4.283289518492052, "x5": 0.017446262089223487}}, null] +[[8, 0, 8], 3.0, {"submitted": 1558193553.7748582, "started": 1558193553.7752967, "finished": 1558193553.7823405}, {"loss": 0.14855269217642117, "info": {"x0": -2.3933845644760066, "x1": 4.143822725698624, "x2": 7.539455775689269, "x3": -3.771123178883136, "x4": 2.3210124913832466, "x5": 0.009850391755361756}}, null] +[[8, 0, 9], 3.0, {"submitted": 1558193553.8704457, "started": 1558193553.8709538, "finished": 1558193553.8774266}, {"loss": 0.1766847559852818, "info": {"x0": -2.435545408143039, "x1": 3.4820844747239743, "x2": 7.2045041177873745, "x3": -3.7737158560343707, "x4": 1.1133283318004144, "x5": 0.008475386250825858}}, null] +[[8, 0, 10], 3.0, {"submitted": 1558193553.9605184, "started": 1558193553.9610186, "finished": 1558193553.9703186}, {"loss": 0.22012663896417575, "info": {"x0": -2.4054063307238853, "x1": 3.396130851332463, "x2": 7.400444679333113, "x3": -3.503767455911208, "x4": 1.9134009882219591, "x5": 0.0015712294005288184}}, null] +[[8, 0, 11], 3.0, {"submitted": 1558193554.0578654, "started": 1558193554.0583258, "finished": 1558193554.067144}, {"loss": 0.22804160777636104, "info": {"x0": -2.626411033397163, "x1": 3.0475485315966497, "x2": 7.389017029990159, "x3": -3.7263898073277875, "x4": 3.4946462210743854, "x5": 0.0023319290875680543}}, null] +[[8, 0, 12], 3.0, {"submitted": 1558193554.17179, "started": 1558193554.1723537, "finished": 1558193554.179303}, {"loss": 0.21635006432388232, "info": {"x0": -2.531422728535683, "x1": 3.303353440534489, "x2": 7.772014266001871, "x3": -3.753406365377419, "x4": 3.3203075477682473, "x5": 0.009632979139607943}}, null] +[[8, 0, 13], 3.0, {"submitted": 1558193554.2703822, "started": 1558193554.27091, "finished": 1558193554.2775486}, {"loss": 0.20836725331630604, "info": {"x0": -2.512164803985411, "x1": 4.127780562672976, "x2": 7.683048850126957, "x3": -2.973450140768759, "x4": 3.3044171774569, "x5": 0.008180918426283728}}, null] +[[8, 0, 14], 3.0, {"submitted": 1558193554.3629935, "started": 1558193554.3637042, "finished": 1558193554.3722117}, {"loss": 0.20646766217342064, "info": {"x0": -2.4078801304098763, "x1": 3.8492988861149415, "x2": 7.595543440998202, "x3": -3.3617715401902832, "x4": 2.1818611100168956, "x5": 0.0189390434654544}}, null] +[[8, 0, 15], 3.0, {"submitted": 1558193554.3746006, "started": 1558193554.376422, "finished": 1558193554.387958}, {"loss": 0.427860695389211, "info": {"x0": -3.5206359302481998, "x1": 7.009885396157066, "x2": 6.182637027224651, "x3": -1.9445381340121055, "x4": 3.2787820822394966, "x5": 0.09896242900428781}}, null] +[[8, 0, 16], 3.0, {"submitted": 1558193554.4778664, "started": 1558193554.478304, "finished": 1558193554.4890046}, {"loss": 0.21635006432388232, "info": {"x0": -2.4892202876247453, "x1": 3.631924649753423, "x2": 7.7928368551586455, "x3": -3.6129320884635354, "x4": 2.5263035299423287, "x5": 0.030635080133676648}}, null] +[[8, 0, 17], 3.0, {"submitted": 1558193554.5767467, "started": 1558193554.5774424, "finished": 1558193554.5859773}, {"loss": 0.11438263022470993, "info": {"x0": -2.5804608247129703, "x1": 4.576953608883878, "x2": 7.999987405715128, "x3": -3.8652166087056945, "x4": 2.318641005476097, "x5": 0.008756378475257606}}, null] +[[8, 0, 18], 3.0, {"submitted": 1558193554.6746519, "started": 1558193554.6750598, "finished": 1558193554.6820445}, {"loss": 0.18532338140305757, "info": {"x0": -2.7928831109791945, "x1": 3.436185387479842, "x2": 7.426756578602726, "x3": -3.789062123804789, "x4": 1.4465997770060037, "x5": 0.0020664084949536922}}, null] +[[8, 0, 19], 3.0, {"submitted": 1558193554.767186, "started": 1558193554.7677107, "finished": 1558193554.7756066}, {"loss": 0.24635911152029624, "info": {"x0": -2.4631565789660677, "x1": 3.1064972767536703, "x2": 7.104427133947643, "x3": -3.78782919403809, "x4": 2.87989694720211, "x5": 0.026475650345192184}}, null] +[[8, 0, 20], 3.0, {"submitted": 1558193554.778707, "started": 1558193554.7790806, "finished": 1558193554.7900684}, {"loss": 0.22155133319461795, "info": {"x0": -2.821842940619904, "x1": 5.176438801845827, "x2": 5.829985195062127, "x3": -3.264725825102606, "x4": 1.7197395498797738, "x5": 0.06927585861778734}}, null] +[[8, 0, 21], 3.0, {"submitted": 1558193554.8843095, "started": 1558193554.8846953, "finished": 1558193554.8924851}, {"loss": 0.1471279961754973, "info": {"x0": -2.437664352372635, "x1": 3.125430066564059, "x2": 7.6729872862154345, "x3": -3.185644244025536, "x4": 1.0892909241349678, "x5": 0.004226590672384426}}, null] +[[8, 0, 22], 3.0, {"submitted": 1558193554.8961246, "started": 1558193554.8964393, "finished": 1558193554.9079943}, {"loss": 0.6363862498448963, "info": {"x0": -3.820477241086078, "x1": 6.884802357808106, "x2": 6.718593992359317, "x3": -0.14265128742972388, "x4": 4.122037941810293, "x5": 0.3301519922744443}}, null] +[[8, 0, 23], 3.0, {"submitted": 1558193555.0085778, "started": 1558193555.0090168, "finished": 1558193555.0211446}, {"loss": 0.22383536611043828, "info": {"x0": -2.5254284697770033, "x1": 4.531569379703811, "x2": 7.719853250965604, "x3": -3.8547710172870393, "x4": 3.637785064287214, "x5": 0.01053908633557888}}, null] +[[8, 0, 24], 3.0, {"submitted": 1558193555.1127212, "started": 1558193555.1131344, "finished": 1558193555.1217003}, {"loss": 0.2471053768389099, "info": {"x0": -2.5025198006977796, "x1": 3.26895786945481, "x2": 6.838893941401043, "x3": -1.0624192038906277, "x4": 4.376363753211732, "x5": 0.00905699765397958}}, null] +[[8, 0, 25], 3.0, {"submitted": 1558193555.1249127, "started": 1558193555.1254034, "finished": 1558193555.139133}, {"loss": 0.24737674806659604, "info": {"x0": -2.613456247581571, "x1": 5.078663549103716, "x2": 5.463507651077011, "x3": -0.22325453445912968, "x4": 1.6228140613922126, "x5": 0.3912409066139558}}, null] +[[8, 0, 26], 3.0, {"submitted": 1558193555.2330883, "started": 1558193555.233593, "finished": 1558193555.2412186}, {"loss": 0.11542288460838264, "info": {"x0": -2.638634068486544, "x1": 4.78664640851845, "x2": 7.815590048387078, "x3": -3.2113510783940473, "x4": 1.443559816515119, "x5": 0.02072081394097225}}, null] +[[8, 0, 5], 9.0, {"submitted": 1558193555.2431912, "started": 1558193555.2435102, "finished": 1558193555.2556322}, {"loss": 0.08763002753527334, "info": {"x0": -2.322961773827378, "x1": 4.5781057495395245, "x2": 7.336118063210371, "x3": -3.666903644979972, "x4": 2.685470368226753, "x5": 0.009897128398418371}}, null] +[[8, 0, 8], 9.0, {"submitted": 1558193555.2595644, "started": 1558193555.2628357, "finished": 1558193555.2748225}, {"loss": 0.07397105482060247, "info": {"x0": -2.3933845644760066, "x1": 4.143822725698624, "x2": 7.539455775689269, "x3": -3.771123178883136, "x4": 2.3210124913832466, "x5": 0.009850391755361756}}, null] +[[8, 0, 9], 9.0, {"submitted": 1558193555.2763326, "started": 1558193555.2767918, "finished": 1558193555.288902}, {"loss": 0.10312075627195191, "info": {"x0": -2.435545408143039, "x1": 3.4820844747239743, "x2": 7.2045041177873745, "x3": -3.7737158560343707, "x4": 1.1133283318004144, "x5": 0.008475386250825858}}, null] +[[8, 0, 13], 9.0, {"submitted": 1558193555.2914653, "started": 1558193555.29603, "finished": 1558193555.3110168}, {"loss": 0.09197195791001234, "info": {"x0": -2.512164803985411, "x1": 4.127780562672976, "x2": 7.683048850126957, "x3": -2.973450140768759, "x4": 3.3044171774569, "x5": 0.008180918426283728}}, null] +[[8, 0, 14], 9.0, {"submitted": 1558193555.3128881, "started": 1558193555.3132088, "finished": 1558193555.3346937}, {"loss": 0.08749434819646358, "info": {"x0": -2.4078801304098763, "x1": 3.8492988861149415, "x2": 7.595543440998202, "x3": -3.3617715401902832, "x4": 2.1818611100168956, "x5": 0.0189390434654544}}, null] +[[8, 0, 17], 9.0, {"submitted": 1558193555.3377528, "started": 1558193555.3382263, "finished": 1558193555.3462908}, {"loss": 0.06684757942584024, "info": {"x0": -2.5804608247129703, "x1": 4.576953608883878, "x2": 7.999987405715128, "x3": -3.8652166087056945, "x4": 2.318641005476097, "x5": 0.008756378475257606}}, null] +[[8, 0, 18], 9.0, {"submitted": 1558193555.3483691, "started": 1558193555.349168, "finished": 1558193555.359305}, {"loss": 0.10940750651246874, "info": {"x0": -2.7928831109791945, "x1": 3.436185387479842, "x2": 7.426756578602726, "x3": -3.789062123804789, "x4": 1.4465997770060037, "x5": 0.0020664084949536922}}, null] +[[8, 0, 21], 9.0, {"submitted": 1558193555.3621461, "started": 1558193555.3627663, "finished": 1558193555.3726087}, {"loss": 0.08688376387122097, "info": {"x0": -2.437664352372635, "x1": 3.125430066564059, "x2": 7.6729872862154345, "x3": -3.185644244025536, "x4": 1.0892909241349678, "x5": 0.004226590672384426}}, null] +[[8, 0, 26], 9.0, {"submitted": 1558193555.3740766, "started": 1558193555.3744173, "finished": 1558193555.3838644}, {"loss": 0.07496607942259834, "info": {"x0": -2.638634068486544, "x1": 4.78664640851845, "x2": 7.815590048387078, "x3": -3.2113510783940473, "x4": 1.443559816515119, "x5": 0.02072081394097225}}, null] +[[8, 0, 8], 27.0, {"submitted": 1558193555.3873096, "started": 1558193555.3880615, "finished": 1558193555.3976393}, {"loss": 0.04900497695753768, "info": {"x0": -2.3933845644760066, "x1": 4.143822725698624, "x2": 7.539455775689269, "x3": -3.771123178883136, "x4": 2.3210124913832466, "x5": 0.009850391755361756}}, null] +[[8, 0, 17], 27.0, {"submitted": 1558193555.4027257, "started": 1558193555.403365, "finished": 1558193555.4125583}, {"loss": 0.049547716183988066, "info": {"x0": -2.5804608247129703, "x1": 4.576953608883878, "x2": 7.999987405715128, "x3": -3.8652166087056945, "x4": 2.318641005476097, "x5": 0.008756378475257606}}, null] +[[8, 0, 26], 27.0, {"submitted": 1558193555.416661, "started": 1558193555.4170525, "finished": 1558193555.4288044}, {"loss": 0.06277702537827337, "info": {"x0": -2.638634068486544, "x1": 4.78664640851845, "x2": 7.815590048387078, "x3": -3.2113510783940473, "x4": 1.443559816515119, "x5": 0.02072081394097225}}, null] +[[8, 0, 8], 81.0, {"submitted": 1558193555.4354067, "started": 1558193555.4360013, "finished": 1558193555.442071}, {"loss": 0.043735867989435274, "info": {"x0": -2.3933845644760066, "x1": 4.143822725698624, "x2": 7.539455775689269, "x3": -3.771123178883136, "x4": 2.3210124913832466, "x5": 0.009850391755361756}}, null] +[[9, 0, 0], 9.0, {"submitted": 1558193555.5376277, "started": 1558193555.538162, "finished": 1558193555.5456452}, {"loss": 0.09597467137968199, "info": {"x0": -2.470185101796509, "x1": 3.842488609402108, "x2": 7.523476316061204, "x3": -1.6463964434554033, "x4": 3.964442715705276, "x5": 0.01238947891122269}}, null] +[[9, 0, 1], 9.0, {"submitted": 1558193555.650369, "started": 1558193555.6507664, "finished": 1558193555.657171}, {"loss": 0.09303482606609391, "info": {"x0": -2.5041069875331754, "x1": 4.263860559595687, "x2": 7.669574622607929, "x3": -2.608729239651483, "x4": 4.2247019030542665, "x5": 0.007476791474459562}}, null] +[[9, 0, 2], 9.0, {"submitted": 1558193555.755163, "started": 1558193555.7557068, "finished": 1558193555.764024}, {"loss": 0.06763907800643815, "info": {"x0": -2.375996234733913, "x1": 4.612857351175745, "x2": 7.474203798384714, "x3": -3.611337625022963, "x4": 1.568886149975623, "x5": 0.012423704714514441}}, null] +[[9, 0, 3], 9.0, {"submitted": 1558193555.873398, "started": 1558193555.873803, "finished": 1558193555.8872101}, {"loss": 0.09004974897524609, "info": {"x0": -2.529428228619023, "x1": 3.8862969768458235, "x2": 7.718386150896098, "x3": -2.3714450801875033, "x4": 2.7396442697139136, "x5": 0.0005850685649943319}}, null] +[[9, 0, 4], 9.0, {"submitted": 1558193555.9801664, "started": 1558193555.9806004, "finished": 1558193555.9875693}, {"loss": 0.11153324140393317, "info": {"x0": -2.4986556297185825, "x1": 3.44172572588361, "x2": 7.542408478235712, "x3": -1.854299623518334, "x4": 3.1934895896927937, "x5": 0.013497944986326796}}, null] +[[9, 0, 5], 9.0, {"submitted": 1558193556.0690372, "started": 1558193556.0694454, "finished": 1558193556.0762239}, {"loss": 0.09127091890085556, "info": {"x0": -2.372841074763344, "x1": 3.2366990588912428, "x2": 7.7718167433071805, "x3": -3.0078793007955706, "x4": 1.094752061099448, "x5": 0.032245480228565465}}, null] +[[9, 0, 6], 9.0, {"submitted": 1558193556.1791751, "started": 1558193556.1796286, "finished": 1558193556.1911345}, {"loss": 0.09213025534870074, "info": {"x0": -2.54484295198001, "x1": 4.085340261706338, "x2": 7.302132208623712, "x3": -3.8572605275333167, "x4": 1.7979691151302464, "x5": 0.005804618294181267}}, null] +[[9, 0, 7], 9.0, {"submitted": 1558193556.28288, "started": 1558193556.2833772, "finished": 1558193556.2899575}, {"loss": 0.1503618294116209, "info": {"x0": -2.3732583000090104, "x1": 4.469595014406897, "x2": 7.7343632946102945, "x3": -3.082058351349912, "x4": 2.2181371367857388, "x5": 0.021079952472764285}}, null] +[[9, 0, 8], 9.0, {"submitted": 1558193556.3836517, "started": 1558193556.3841274, "finished": 1558193556.4011564}, {"loss": 0.0873812746241426, "info": {"x0": -2.4300097578482394, "x1": 3.865002125821823, "x2": 7.3447403251115, "x3": -3.860239942587502, "x4": 1.9851352054208773, "x5": 0.015296262494997404}}, null] +[[9, 0, 2], 27.0, {"submitted": 1558193556.4030504, "started": 1558193556.40359, "finished": 1558193556.4141228}, {"loss": 0.05169606579072548, "info": {"x0": -2.375996234733913, "x1": 4.612857351175745, "x2": 7.474203798384714, "x3": -3.611337625022963, "x4": 1.568886149975623, "x5": 0.012423704714514441}}, null] +[[9, 0, 3], 27.0, {"submitted": 1558193556.4168198, "started": 1558193556.417495, "finished": 1558193556.4276886}, {"loss": 0.04834916359533936, "info": {"x0": -2.529428228619023, "x1": 3.8862969768458235, "x2": 7.718386150896098, "x3": -2.3714450801875033, "x4": 2.7396442697139136, "x5": 0.0005850685649943319}}, null] +[[9, 0, 8], 27.0, {"submitted": 1558193556.4314315, "started": 1558193556.4322798, "finished": 1558193556.4403112}, {"loss": 0.05723654399598577, "info": {"x0": -2.4300097578482394, "x1": 3.865002125821823, "x2": 7.3447403251115, "x3": -3.860239942587502, "x4": 1.9851352054208773, "x5": 0.015296262494997404}}, null] +[[9, 0, 3], 81.0, {"submitted": 1558193556.4430292, "started": 1558193556.4434924, "finished": 1558193556.4561396}, {"loss": 0.03658977924618232, "info": {"x0": -2.529428228619023, "x1": 3.8862969768458235, "x2": 7.718386150896098, "x3": -2.3714450801875033, "x4": 2.7396442697139136, "x5": 0.0005850685649943319}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/hyperband/configs.json new file mode 100644 index 0000000..860c2b3 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/hyperband/configs.json @@ -0,0 +1,128 @@ +[[0, 0, 0], {"x0": -2.233401834090057, "x1": 7.834647630281798, "x2": 4.297221934936076, "x3": -2.285051881103769, "x4": 1.5027606795274506, "x5": 0.1876016930373805}, {}] +[[0, 0, 1], {"x0": -4.432743703232554, "x1": 5.888331719734935, "x2": 4.715993815907231, "x3": -1.488918072894331, "x4": 4.766883870624646, "x5": 0.17920497299582155}, {}] +[[0, 0, 2], {"x0": -5.604788425383402, "x1": 5.4662183489490594, "x2": 7.7765234106839936, "x3": -1.9946246780877175, "x4": 4.971241745076158, "x5": 0.2863483657817919}, {}] +[[0, 0, 3], {"x0": -3.1083239211734397, "x1": 7.206859666745665, "x2": 5.185101052733005, "x3": -1.0697384087264643, "x4": 2.7082082457097982, "x5": 0.311845987317067}, {}] +[[0, 0, 4], {"x0": -5.185634932722801, "x1": 4.795586067225398, "x2": 7.409779491798165, "x3": -3.418954030962827, "x4": 4.429517352762205, "x5": 0.23157621533673606}, {}] +[[0, 0, 5], {"x0": -5.736864951366416, "x1": 4.881733585300693, "x2": 4.294339878975385, "x3": -2.365802912397599, "x4": 2.429758947933167, "x5": 0.42924340067211747}, {}] +[[0, 0, 6], {"x0": -2.5050373052019537, "x1": 7.273180822496182, "x2": 7.822223396522077, "x3": -1.263648676285349, "x4": 4.412229261248616, "x5": 0.4410351502138847}, {}] +[[0, 0, 7], {"x0": -5.351204251885554, "x1": 6.340971701304767, "x2": 7.367647894178756, "x3": -1.64395253175091, "x4": 1.65243873817536, "x5": 0.030802191140025414}, {}] +[[0, 0, 8], {"x0": -5.464468875683525, "x1": 4.957593600702651, "x2": 6.102249222798925, "x3": -0.4897932866685446, "x4": 4.528165649595848, "x5": 0.48854751422398207}, {}] +[[0, 0, 9], {"x0": -2.044325428036527, "x1": 4.956864066729441, "x2": 6.617058531571873, "x3": -1.0920422815908366, "x4": 2.0418164929243, "x5": 0.014545919890592618}, {}] +[[0, 0, 10], {"x0": -4.11762768343673, "x1": 7.050108561949494, "x2": 5.895899203255499, "x3": -3.6629260172027234, "x4": 2.4142682699312608, "x5": 0.42470992077675906}, {}] +[[0, 0, 11], {"x0": -3.632069581018187, "x1": 7.623870585573845, "x2": 6.384696083924146, "x3": -2.9125355398278607, "x4": 3.089814279289248, "x5": 0.25898333418427233}, {}] +[[0, 0, 12], {"x0": -4.8283752095685495, "x1": 7.877045705745698, "x2": 7.186679083892578, "x3": -3.6251703895347513, "x4": 4.4736431297644215, "x5": 0.11610224821644316}, {}] +[[0, 0, 13], {"x0": -5.690672395666377, "x1": 7.410499660891879, "x2": 7.031535581371571, "x3": -1.5280423685201816, "x4": 4.756844703468737, "x5": 0.19467705279698017}, {}] +[[0, 0, 14], {"x0": -2.5861324560183605, "x1": 6.087777423767918, "x2": 6.685321163706787, "x3": -3.517991745845466, "x4": 2.314034641544023, "x5": 0.2774761043630475}, {}] +[[0, 0, 15], {"x0": -4.198578602600537, "x1": 5.257309465871936, "x2": 6.073945689554821, "x3": -2.5005318633506097, "x4": 2.4488419105916743, "x5": 0.12582050789041038}, {}] +[[0, 0, 16], {"x0": -2.0738187467229827, "x1": 6.972348420234386, "x2": 7.519426636354602, "x3": -2.1248215312522865, "x4": 2.9469434302737794, "x5": 0.45734456833691595}, {}] +[[0, 0, 17], {"x0": -2.150064759566831, "x1": 3.0194828722781266, "x2": 5.437840235622007, "x3": -0.14912556602522775, "x4": 1.356289786352244, "x5": 0.31318159630122455}, {}] +[[0, 0, 18], {"x0": -4.097653322296237, "x1": 4.110097507118508, "x2": 7.961162393632527, "x3": -3.540553383322094, "x4": 2.680138166293669, "x5": 0.1303118102236015}, {}] +[[0, 0, 19], {"x0": -3.073238882543608, "x1": 6.54424566806137, "x2": 7.284081018066315, "x3": -0.3160793200828915, "x4": 3.3914705527513385, "x5": 0.4654744357304063}, {}] +[[0, 0, 20], {"x0": -5.301703123446362, "x1": 7.450284024830448, "x2": 4.293567577659281, "x3": -1.6138787286401146, "x4": 4.594917302448675, "x5": 0.07587732905616357}, {}] +[[0, 0, 21], {"x0": -5.760395100280891, "x1": 7.630862807607737, "x2": 4.3846800505749846, "x3": -3.8967040669449173, "x4": 2.0777030080485175, "x5": 0.04394184468530882}, {}] +[[0, 0, 22], {"x0": -5.004053172544424, "x1": 6.515916203630507, "x2": 5.577544927452225, "x3": -3.35335478724745, "x4": 2.8430764438711735, "x5": 0.34548696429707376}, {}] +[[0, 0, 23], {"x0": -4.5524296601420176, "x1": 7.820011445705311, "x2": 5.86332319748937, "x3": -3.6096480501894197, "x4": 4.148400881683749, "x5": 0.13420710417305054}, {}] +[[0, 0, 24], {"x0": -3.1714850783148485, "x1": 5.620814060721985, "x2": 5.376562634137164, "x3": -2.1923060705069095, "x4": 2.9555365218892553, "x5": 0.19863293385636377}, {}] +[[0, 0, 25], {"x0": -4.183752339612584, "x1": 4.863306746035189, "x2": 5.868243310369094, "x3": -1.615797164650103, "x4": 4.723444465962816, "x5": 0.19187945102197618}, {}] +[[0, 0, 26], {"x0": -5.349264378718528, "x1": 4.926269257227967, "x2": 7.017190215877514, "x3": -2.5324777598537977, "x4": 2.352440265095198, "x5": 0.11899126914958336}, {}] +[[1, 0, 0], {"x0": -2.4045776409497264, "x1": 5.228586955909111, "x2": 5.535914968954466, "x3": -1.083803203896415, "x4": 3.3998586297722713, "x5": 0.3775659319207199}, {}] +[[1, 0, 1], {"x0": -5.809093281176885, "x1": 5.078326532858279, "x2": 7.970915397169133, "x3": -3.1742024698042948, "x4": 1.4277369791657608, "x5": 0.12717329393706683}, {}] +[[1, 0, 2], {"x0": -5.217952236079796, "x1": 5.015488297725962, "x2": 5.15913174403401, "x3": -3.4463450909943174, "x4": 3.6606570653342123, "x5": 0.23356773877720177}, {}] +[[1, 0, 3], {"x0": -3.262929910971091, "x1": 4.427443035194923, "x2": 6.181546468963388, "x3": -1.6410951512775775, "x4": 3.066519710195785, "x5": 0.3881220605436827}, {}] +[[1, 0, 4], {"x0": -5.344122496024453, "x1": 4.136925368857039, "x2": 4.488423110097373, "x3": -0.6427475777211393, "x4": 3.8201547546989296, "x5": 0.2848075703523355}, {}] +[[1, 0, 5], {"x0": -3.6311382423765637, "x1": 7.597812689983068, "x2": 7.886417440726728, "x3": -2.2414175822376214, "x4": 1.1782293324919442, "x5": 0.06991470087388918}, {}] +[[1, 0, 6], {"x0": -3.444403802259676, "x1": 5.547960960805145, "x2": 7.032953148481672, "x3": -3.359155330602812, "x4": 3.5742364190964686, "x5": 0.0028401962709888595}, {}] +[[1, 0, 7], {"x0": -5.273890135007207, "x1": 3.8674753907847537, "x2": 6.730681022726319, "x3": -0.5106384418798036, "x4": 4.655855875894002, "x5": 0.22239800607106475}, {}] +[[1, 0, 8], {"x0": -5.100757203371162, "x1": 5.061198050065565, "x2": 6.857428788482669, "x3": -3.311934275502259, "x4": 3.639565709732532, "x5": 0.040170854630460384}, {}] +[[2, 0, 0], {"x0": -5.167378412353563, "x1": 3.3627802463843874, "x2": 4.780490343900942, "x3": -1.576314266436134, "x4": 4.344569944587296, "x5": 0.22302211579725678}, {}] +[[2, 0, 1], {"x0": -2.60670778424623, "x1": 3.403797566770159, "x2": 5.830507642876823, "x3": -3.8145308024812237, "x4": 1.417461315714064, "x5": 0.42797793970740233}, {}] +[[2, 0, 2], {"x0": -2.641027559720743, "x1": 6.784803436401716, "x2": 5.25045918334482, "x3": -3.1148145617882323, "x4": 1.4903590136129772, "x5": 0.4354509052275556}, {}] +[[2, 0, 3], {"x0": -4.973435106055881, "x1": 5.022377014569792, "x2": 7.706952985793093, "x3": -0.03957048848839717, "x4": 1.28365281635008, "x5": 0.13059303276110595}, {}] +[[2, 0, 4], {"x0": -3.7350992822246805, "x1": 3.5756237110854507, "x2": 7.9429996923697725, "x3": -3.4997698123312904, "x4": 3.2164474905098035, "x5": 0.23187978102940565}, {}] +[[2, 0, 5], {"x0": -2.08577299202322, "x1": 7.7158320839777135, "x2": 4.2334758722719315, "x3": -3.434733369377633, "x4": 1.4335916806562858, "x5": 0.23244755065449002}, {}] +[[3, 0, 0], {"x0": -2.6437197067424543, "x1": 4.357918769800236, "x2": 4.33621133037721, "x3": -1.3971806233618294, "x4": 2.204261953274514, "x5": 0.11571975691148578}, {}] +[[3, 0, 1], {"x0": -2.783208366953448, "x1": 3.0760315178994313, "x2": 5.465206673237338, "x3": -3.910289713294025, "x4": 1.0086480982029022, "x5": 0.17026994249394972}, {}] +[[3, 0, 2], {"x0": -4.042306314025641, "x1": 7.647277029736305, "x2": 5.248449624134012, "x3": -0.011602029486401655, "x4": 3.57052272349642, "x5": 0.026561702185760094}, {}] +[[3, 0, 3], {"x0": -5.2550507451588775, "x1": 5.186886937281119, "x2": 6.702023611004115, "x3": -1.331625815166908, "x4": 3.792571225699313, "x5": 0.3214067263045443}, {}] +[[4, 0, 0], {"x0": -4.202720225020534, "x1": 4.03842214751695, "x2": 7.553899477772569, "x3": -2.6714120377419652, "x4": 1.4786434175968632, "x5": 0.4702915681289342}, {}] +[[4, 0, 1], {"x0": -3.0059297412963772, "x1": 6.7802917231723505, "x2": 5.328361139927024, "x3": -1.0645130565974537, "x4": 4.153823025358175, "x5": 0.25197338731759095}, {}] +[[4, 0, 2], {"x0": -4.497401654345611, "x1": 4.365687324861103, "x2": 5.510972975565113, "x3": -0.8776282497505679, "x4": 2.631610293406697, "x5": 0.18232905432029273}, {}] +[[4, 0, 3], {"x0": -2.7214869000708077, "x1": 3.1441056505984237, "x2": 7.759776543265536, "x3": -2.1051792205044135, "x4": 1.6052816516684758, "x5": 0.4761605494164438}, {}] +[[4, 0, 4], {"x0": -4.605647083749549, "x1": 6.674269361707284, "x2": 7.135044530545295, "x3": -0.9008564288115499, "x4": 2.1252407077790116, "x5": 0.1985213246222326}, {}] +[[4, 0, 5], {"x0": -4.730213207444667, "x1": 5.599886403477378, "x2": 4.264119216030409, "x3": -3.871352115617261, "x4": 1.2814677017206386, "x5": 0.1687310021155976}, {}] +[[4, 0, 6], {"x0": -2.931110082539336, "x1": 7.96297961068387, "x2": 6.824965017109848, "x3": -2.4642802585929466, "x4": 3.858120429177699, "x5": 0.346935119130228}, {}] +[[4, 0, 7], {"x0": -4.302842822523091, "x1": 4.694690189720639, "x2": 4.005810815499586, "x3": -0.3087792294073277, "x4": 3.8444126798667324, "x5": 0.4873105736290743}, {}] +[[4, 0, 8], {"x0": -5.791556021703817, "x1": 7.678986690284389, "x2": 6.673196949221698, "x3": -1.9988961188419858, "x4": 1.5554924666983285, "x5": 0.07106312011312621}, {}] +[[4, 0, 9], {"x0": -5.654388025142294, "x1": 7.453062362162996, "x2": 4.05676289756618, "x3": -0.5141261113710254, "x4": 1.3302017158596815, "x5": 0.10461907013332689}, {}] +[[4, 0, 10], {"x0": -5.71057460236384, "x1": 3.2952027946654496, "x2": 6.610866287250378, "x3": -3.006229014781096, "x4": 1.8987853181584624, "x5": 0.25946901667792854}, {}] +[[4, 0, 11], {"x0": -3.1550847376101587, "x1": 4.862872192636615, "x2": 7.017232415270364, "x3": -3.067520027199032, "x4": 1.4227662289374856, "x5": 0.4321829751574994}, {}] +[[4, 0, 12], {"x0": -3.1491351295297525, "x1": 3.0456824784875476, "x2": 4.93065675857573, "x3": -1.1679650533840276, "x4": 2.969382716734456, "x5": 0.4860334714633056}, {}] +[[4, 0, 13], {"x0": -4.733614449968365, "x1": 5.025518855706973, "x2": 4.091527908029211, "x3": -2.7366620912774553, "x4": 2.585146299405006, "x5": 0.476392024841038}, {}] +[[4, 0, 14], {"x0": -4.235021997927708, "x1": 5.833244709877066, "x2": 5.827939023431117, "x3": -0.5727867941891658, "x4": 4.100253283087944, "x5": 0.2056851383549384}, {}] +[[4, 0, 15], {"x0": -2.4878408854935743, "x1": 6.118310155901288, "x2": 7.783570478513748, "x3": -0.41335705228740105, "x4": 3.2015695471315975, "x5": 0.4062857460764339}, {}] +[[4, 0, 16], {"x0": -4.557631257063193, "x1": 6.651615486564655, "x2": 5.086014002084443, "x3": -3.1590338959478257, "x4": 2.8289081772889353, "x5": 0.07297524049456783}, {}] +[[4, 0, 17], {"x0": -3.9329588992267888, "x1": 4.695178456109371, "x2": 5.2485077575130035, "x3": -1.8447498889027591, "x4": 2.738812914077125, "x5": 0.4610321969445237}, {}] +[[4, 0, 18], {"x0": -3.111194046206168, "x1": 5.124209792302958, "x2": 7.294431281889106, "x3": -0.49912003966190666, "x4": 1.9406968065078907, "x5": 0.3493244087706409}, {}] +[[4, 0, 19], {"x0": -4.136751692328209, "x1": 7.808544588310706, "x2": 5.960523944688271, "x3": -2.2046724530851196, "x4": 1.9910950857602834, "x5": 0.37040639570462053}, {}] +[[4, 0, 20], {"x0": -3.5702816481562354, "x1": 3.729830610370892, "x2": 5.63980335789635, "x3": -0.23444084317174596, "x4": 4.610012696494431, "x5": 0.37201655352745483}, {}] +[[4, 0, 21], {"x0": -2.2351207686077608, "x1": 5.131427875346137, "x2": 6.037219801259021, "x3": -2.9234613516288896, "x4": 2.533331591768483, "x5": 0.16397321260281084}, {}] +[[4, 0, 22], {"x0": -3.867106820498378, "x1": 5.232912804598952, "x2": 4.7073586743581455, "x3": -1.4657297841691483, "x4": 4.45029909956896, "x5": 0.4724203628189661}, {}] +[[4, 0, 23], {"x0": -3.7697341460659874, "x1": 7.556740842527744, "x2": 6.653482404037504, "x3": -2.0959098248997927, "x4": 3.8572029891634747, "x5": 0.2226436129201303}, {}] +[[4, 0, 24], {"x0": -4.343062736335324, "x1": 5.661051138318422, "x2": 4.4154310931419545, "x3": -3.0942751734196823, "x4": 2.0017747747074344, "x5": 0.04744508437734196}, {}] +[[4, 0, 25], {"x0": -3.2131453535770227, "x1": 6.2222267014628, "x2": 5.116853985005974, "x3": -2.893491342874972, "x4": 4.414200561455228, "x5": 0.1729301524783014}, {}] +[[4, 0, 26], {"x0": -4.462115433447473, "x1": 5.239024735101378, "x2": 4.742225083698752, "x3": -1.0471356967536738, "x4": 4.04112223503305, "x5": 0.2190151286065561}, {}] +[[5, 0, 0], {"x0": -4.134439875472369, "x1": 3.303700045754811, "x2": 5.9965669807572635, "x3": -2.350534380660097, "x4": 4.725361548737689, "x5": 0.2974451642364472}, {}] +[[5, 0, 1], {"x0": -4.497485164923077, "x1": 6.8645980415733705, "x2": 5.955890855621023, "x3": -0.07784008476264814, "x4": 3.2790697482980335, "x5": 0.4175871814726985}, {}] +[[5, 0, 2], {"x0": -2.6186004162738254, "x1": 7.984258349220533, "x2": 7.311292915044827, "x3": -0.8064983447326202, "x4": 3.8786258787052086, "x5": 0.49715772093377814}, {}] +[[5, 0, 3], {"x0": -3.136314154891071, "x1": 6.794986891028672, "x2": 7.055817821842494, "x3": -3.816112291154226, "x4": 4.224008958818345, "x5": 0.0636763798795254}, {}] +[[5, 0, 4], {"x0": -4.001340737824428, "x1": 5.7739948826558924, "x2": 6.805149680521026, "x3": -3.226507350228255, "x4": 3.625844258536736, "x5": 0.15690399106312247}, {}] +[[5, 0, 5], {"x0": -5.983611465413799, "x1": 6.442812293156732, "x2": 6.661553372980425, "x3": -1.066865524198322, "x4": 3.5195028873671546, "x5": 0.3118140569984285}, {}] +[[5, 0, 6], {"x0": -2.5026229879665087, "x1": 3.1356457235238553, "x2": 4.85494855866078, "x3": -3.102697125051158, "x4": 2.178011290629148, "x5": 0.16040848579750122}, {}] +[[5, 0, 7], {"x0": -2.6398461617332996, "x1": 6.3662929054192094, "x2": 4.848779495240552, "x3": -2.8585983943082485, "x4": 1.6741147220021175, "x5": 0.11358378143231246}, {}] +[[5, 0, 8], {"x0": -4.871219642346903, "x1": 5.537490236111415, "x2": 4.637486772541358, "x3": -3.3930987777835053, "x4": 1.663305884840827, "x5": 0.45278662317635054}, {}] +[[6, 0, 0], {"x0": -2.942591103123517, "x1": 4.0665986453154, "x2": 6.120796806601813, "x3": -0.24742411755839067, "x4": 1.6646443237062636, "x5": 0.342164837311559}, {}] +[[6, 0, 1], {"x0": -3.121984927681092, "x1": 7.602877852535113, "x2": 7.614601067443839, "x3": -0.26555784902063095, "x4": 1.10788325330001, "x5": 0.16490166503100967}, {}] +[[6, 0, 2], {"x0": -4.334095226142013, "x1": 7.083873510244094, "x2": 5.8251327532704575, "x3": -0.12065258762176434, "x4": 3.9631681160548844, "x5": 0.03103722319841873}, {}] +[[6, 0, 3], {"x0": -5.5810362528179, "x1": 7.513598996026163, "x2": 6.717304707226211, "x3": -2.8566959616227026, "x4": 4.410882393337746, "x5": 0.048939815590392066}, {}] +[[6, 0, 4], {"x0": -5.3039126528249785, "x1": 6.3560517928207645, "x2": 4.014946232620814, "x3": -1.0020486304388552, "x4": 3.478265229960131, "x5": 0.49330079967304674}, {}] +[[6, 0, 5], {"x0": -3.204097008262422, "x1": 5.900449056488187, "x2": 5.376990515833471, "x3": -1.222257293847803, "x4": 4.981459512083408, "x5": 0.061545912564033856}, {}] +[[7, 0, 0], {"x0": -5.772347163511597, "x1": 4.890597284831181, "x2": 7.973501121674611, "x3": -0.01667675783665068, "x4": 3.882543361238958, "x5": 0.44127752011560156}, {}] +[[7, 0, 1], {"x0": -3.5202125181770394, "x1": 4.6854253973259175, "x2": 5.756167612372813, "x3": -3.9446852695590167, "x4": 1.9582418847582619, "x5": 0.35363821181685096}, {}] +[[7, 0, 2], {"x0": -2.182856113417205, "x1": 5.574549761222761, "x2": 5.903262230567778, "x3": -0.9205521303532582, "x4": 1.754391648070866, "x5": 0.01743810303942439}, {}] +[[7, 0, 3], {"x0": -2.058678021108477, "x1": 5.503762804518557, "x2": 5.944941578107187, "x3": -1.6568977254688613, "x4": 3.402028372651831, "x5": 0.354615699740441}, {}] +[[8, 0, 0], {"x0": -5.999629647443495, "x1": 5.613065528121968, "x2": 5.779001697895048, "x3": -2.4093348789392635, "x4": 3.19718074724112, "x5": 0.2612598577589967}, {}] +[[8, 0, 1], {"x0": -3.8220732783337232, "x1": 6.766843664615354, "x2": 7.137123238856792, "x3": -1.751299195943432, "x4": 2.436104184552024, "x5": 0.2830422537241087}, {}] +[[8, 0, 2], {"x0": -3.7064161852976327, "x1": 4.100350190176072, "x2": 7.718522297346789, "x3": -3.6687908891210217, "x4": 4.4589410405536185, "x5": 0.03264997143321624}, {}] +[[8, 0, 3], {"x0": -5.020284410482139, "x1": 5.057951345973958, "x2": 7.965287833024985, "x3": -1.2923770134115253, "x4": 2.567203464141024, "x5": 0.2741161105133148}, {}] +[[8, 0, 4], {"x0": -2.924895923836043, "x1": 6.693802471348113, "x2": 7.264421127740663, "x3": -1.1922352677894574, "x4": 4.176493920385129, "x5": 0.26789549018747233}, {}] +[[8, 0, 5], {"x0": -3.1568219120945384, "x1": 3.509765291221398, "x2": 6.2371711804831085, "x3": -2.0545864454485203, "x4": 3.9031047812304265, "x5": 0.1447093645388129}, {}] +[[8, 0, 6], {"x0": -5.872696922891112, "x1": 4.732139704587956, "x2": 4.004857375829172, "x3": -1.1100247416997613, "x4": 1.1280590964694217, "x5": 0.013562273979220163}, {}] +[[8, 0, 7], {"x0": -2.5926718325594083, "x1": 5.507317184127331, "x2": 4.441693037504088, "x3": -3.932668290344872, "x4": 2.556408485971358, "x5": 0.033352110729395756}, {}] +[[8, 0, 8], {"x0": -3.453626314080434, "x1": 7.90617844491951, "x2": 6.001456224586831, "x3": -3.2796385607935497, "x4": 3.423066079159187, "x5": 0.04258437879515348}, {}] +[[8, 0, 9], {"x0": -2.6367580375013993, "x1": 4.568751271044143, "x2": 7.039678213795332, "x3": -0.34455638431068625, "x4": 2.455104040918081, "x5": 0.10485034380530583}, {}] +[[8, 0, 10], {"x0": -3.3407196259464484, "x1": 4.222459144272209, "x2": 6.255968979923372, "x3": -2.6218371629121253, "x4": 4.573402085052676, "x5": 0.0017318104594636896}, {}] +[[8, 0, 11], {"x0": -4.637550446547525, "x1": 5.233305991276486, "x2": 5.20933045107992, "x3": -0.09794688263587403, "x4": 1.0382997168527535, "x5": 0.4702338739855428}, {}] +[[8, 0, 12], {"x0": -5.401831088694742, "x1": 6.724919529354837, "x2": 7.838078799714865, "x3": -0.5758569894945258, "x4": 4.538263760289222, "x5": 0.16480847481981686}, {}] +[[8, 0, 13], {"x0": -5.892962246429046, "x1": 3.225189703969188, "x2": 5.546655155448344, "x3": -0.2827689427933895, "x4": 2.6759324928957926, "x5": 0.28872008034605884}, {}] +[[8, 0, 14], {"x0": -2.919274607007862, "x1": 6.265002629814612, "x2": 7.275171331835539, "x3": -0.9746335761821898, "x4": 4.390474601099678, "x5": 0.2795501901054332}, {}] +[[8, 0, 15], {"x0": -5.076005418651921, "x1": 7.867752752339159, "x2": 7.145122230264959, "x3": -1.5886256120132987, "x4": 1.303883812195754, "x5": 0.03523981146180438}, {}] +[[8, 0, 16], {"x0": -5.976388305669499, "x1": 5.202690501180032, "x2": 5.063785476829439, "x3": -1.8220390462361098, "x4": 3.7637963041737423, "x5": 0.10123564307949012}, {}] +[[8, 0, 17], {"x0": -4.8593808703678985, "x1": 4.405570565033112, "x2": 7.177079322924486, "x3": -3.199394140554314, "x4": 2.270806830999268, "x5": 0.49427432823602024}, {}] +[[8, 0, 18], {"x0": -3.7915678308699348, "x1": 3.7746187302106837, "x2": 4.92834705680917, "x3": -1.634424701631878, "x4": 3.6549655178895373, "x5": 0.2087799161449561}, {}] +[[8, 0, 19], {"x0": -2.7521692284416206, "x1": 6.195236746276015, "x2": 4.614000878307897, "x3": -3.2834716190769337, "x4": 4.520979432459498, "x5": 0.4140415891418686}, {}] +[[8, 0, 20], {"x0": -3.029866222493839, "x1": 3.9020092387271412, "x2": 6.632061206433605, "x3": -2.4718663090083526, "x4": 4.155090599680823, "x5": 0.37508556739197235}, {}] +[[8, 0, 21], {"x0": -4.780880697145582, "x1": 5.2287725405819145, "x2": 7.237377058913796, "x3": -0.5864105417931289, "x4": 2.6072216202512295, "x5": 0.029542775134577648}, {}] +[[8, 0, 22], {"x0": -4.6175693023164595, "x1": 4.473444141734276, "x2": 5.317634791367411, "x3": -3.6749675878326666, "x4": 2.192206287101183, "x5": 0.27645662242919117}, {}] +[[8, 0, 23], {"x0": -3.139758805590142, "x1": 6.292934131069636, "x2": 7.659627412437887, "x3": -0.9849125938134624, "x4": 4.927827671239935, "x5": 0.13090117573752597}, {}] +[[8, 0, 24], {"x0": -5.920235735582354, "x1": 7.000365818252368, "x2": 6.1555314065769835, "x3": -1.7558393606608664, "x4": 1.8310096763561208, "x5": 0.09028985317042304}, {}] +[[8, 0, 25], {"x0": -3.3266413701682875, "x1": 3.548058659869076, "x2": 7.6250417602047635, "x3": -3.737990529221242, "x4": 1.9358665227017702, "x5": 0.14246048897771368}, {}] +[[8, 0, 26], {"x0": -5.626876501467928, "x1": 6.13824383613658, "x2": 5.101499944254082, "x3": -0.030866955719511147, "x4": 4.1922348058131025, "x5": 0.3614049345616115}, {}] +[[9, 0, 0], {"x0": -2.48864985200095, "x1": 5.875600876392713, "x2": 4.124313154895843, "x3": -0.07868272350853989, "x4": 3.1897943719296937, "x5": 0.14699783269536743}, {}] +[[9, 0, 1], {"x0": -5.221656803389328, "x1": 4.491341351710133, "x2": 6.154602439574809, "x3": -3.733979659243403, "x4": 4.137432582059125, "x5": 0.36068340483815703}, {}] +[[9, 0, 2], {"x0": -4.125935815749298, "x1": 3.5378386621684865, "x2": 4.7359482766092125, "x3": -0.07826649279953779, "x4": 2.468757801767279, "x5": 0.41231570501253945}, {}] +[[9, 0, 3], {"x0": -5.734373260167763, "x1": 4.669433536699572, "x2": 4.58535145817638, "x3": -1.0297815831642847, "x4": 2.8671735309630595, "x5": 0.47045480146108415}, {}] +[[9, 0, 4], {"x0": -3.4822871589062068, "x1": 6.946157074361412, "x2": 6.698412472440545, "x3": -2.496355983456575, "x4": 3.0822434509952945, "x5": 0.17842564512706882}, {}] +[[9, 0, 5], {"x0": -4.416520052076895, "x1": 4.307702017855394, "x2": 6.852274874490642, "x3": -1.389512642690954, "x4": 1.9337841269026637, "x5": 0.33481525271271734}, {}] +[[9, 0, 6], {"x0": -4.953796271065202, "x1": 7.016541626261826, "x2": 7.145940994395832, "x3": -1.570314796398601, "x4": 1.9731951610068998, "x5": 0.12018306839329473}, {}] +[[9, 0, 7], {"x0": -3.124451608529215, "x1": 7.909218347854959, "x2": 5.500172126755357, "x3": -0.29654187830527645, "x4": 3.1317349156535506, "x5": 0.48647826304192676}, {}] +[[9, 0, 8], {"x0": -4.640924661278493, "x1": 5.191344332059304, "x2": 7.605872567885, "x3": -2.5105843771986893, "x4": 4.607157661240722, "x5": 0.31829349273472385}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/hyperband/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/hyperband/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/hyperband/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/hyperband/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/hyperband/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/hyperband/results.json new file mode 100644 index 0000000..d43615d --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/hyperband/results.json @@ -0,0 +1,183 @@ +[[0, 0, 0], 3.0, {"submitted": 1558193562.2854373, "started": 1558193562.2859743, "finished": 1558193562.2941878}, {"loss": 0.2890999503484251, "info": {"x0": -2.233401834090057, "x1": 7.834647630281798, "x2": 4.297221934936076, "x3": -2.285051881103769, "x4": 1.5027606795274506, "x5": 0.1876016930373805}}, null] +[[0, 0, 1], 3.0, {"submitted": 1558193562.300235, "started": 1558193562.302933, "finished": 1558193562.3134437}, {"loss": 0.9523066477428014, "info": {"x0": -4.432743703232554, "x1": 5.888331719734935, "x2": 4.715993815907231, "x3": -1.488918072894331, "x4": 4.766883870624646, "x5": 0.17920497299582155}}, null] +[[0, 0, 2], 3.0, {"submitted": 1558193562.3182778, "started": 1558193562.3187532, "finished": 1558193562.331602}, {"loss": 0.952962459453682, "info": {"x0": -5.604788425383402, "x1": 5.4662183489490594, "x2": 7.7765234106839936, "x3": -1.9946246780877175, "x4": 4.971241745076158, "x5": 0.2863483657817919}}, null] +[[0, 0, 3], 3.0, {"submitted": 1558193562.33779, "started": 1558193562.338322, "finished": 1558193562.3448694}, {"loss": 0.38109452750269285, "info": {"x0": -3.1083239211734397, "x1": 7.206859666745665, "x2": 5.185101052733005, "x3": -1.0697384087264643, "x4": 2.7082082457097982, "x5": 0.311845987317067}}, null] +[[0, 0, 4], 3.0, {"submitted": 1558193562.3527536, "started": 1558193562.3533223, "finished": 1558193562.3614187}, {"loss": 0.937652645365991, "info": {"x0": -5.185634932722801, "x1": 4.795586067225398, "x2": 7.409779491798165, "x3": -3.418954030962827, "x4": 4.429517352762205, "x5": 0.23157621533673606}}, null] +[[0, 0, 5], 3.0, {"submitted": 1558193562.364938, "started": 1558193562.3673885, "finished": 1558193562.376418}, {"loss": 0.9631671182968271, "info": {"x0": -5.736864951366416, "x1": 4.881733585300693, "x2": 4.294339878975385, "x3": -2.365802912397599, "x4": 2.429758947933167, "x5": 0.42924340067211747}}, null] +[[0, 0, 6], 3.0, {"submitted": 1558193562.3789644, "started": 1558193562.3795118, "finished": 1558193562.3909233}, {"loss": 0.34493441706812256, "info": {"x0": -2.5050373052019537, "x1": 7.273180822496182, "x2": 7.822223396522077, "x3": -1.263648676285349, "x4": 4.412229261248616, "x5": 0.4410351502138847}}, null] +[[0, 0, 7], 3.0, {"submitted": 1558193562.3926342, "started": 1558193562.3929648, "finished": 1558193562.405163}, {"loss": 0.940818633818586, "info": {"x0": -5.351204251885554, "x1": 6.340971701304767, "x2": 7.367647894178756, "x3": -1.64395253175091, "x4": 1.65243873817536, "x5": 0.030802191140025414}}, null] +[[0, 0, 8], 3.0, {"submitted": 1558193562.4111638, "started": 1558193562.4115088, "finished": 1558193562.423858}, {"loss": 0.9643374034444949, "info": {"x0": -5.464468875683525, "x1": 4.957593600702651, "x2": 6.102249222798925, "x3": -0.4897932866685446, "x4": 4.528165649595848, "x5": 0.48854751422398207}}, null] +[[0, 0, 9], 3.0, {"submitted": 1558193562.4260473, "started": 1558193562.426403, "finished": 1558193562.4385145}, {"loss": 0.11393035102057705, "info": {"x0": -2.044325428036527, "x1": 4.956864066729441, "x2": 6.617058531571873, "x3": -1.0920422815908366, "x4": 2.0418164929243, "x5": 0.014545919890592618}}, null] +[[0, 0, 10], 3.0, {"submitted": 1558193562.4406888, "started": 1558193562.4411216, "finished": 1558193562.4538717}, {"loss": 0.8796472179055996, "info": {"x0": -4.11762768343673, "x1": 7.050108561949494, "x2": 5.895899203255499, "x3": -3.6629260172027234, "x4": 2.4142682699312608, "x5": 0.42470992077675906}}, null] +[[0, 0, 11], 3.0, {"submitted": 1558193562.4560442, "started": 1558193562.4563403, "finished": 1558193562.4658215}, {"loss": 0.5659203955142923, "info": {"x0": -3.632069581018187, "x1": 7.623870585573845, "x2": 6.384696083924146, "x3": -2.9125355398278607, "x4": 3.089814279289248, "x5": 0.25898333418427233}}, null] +[[0, 0, 12], 3.0, {"submitted": 1558193562.4688718, "started": 1558193562.469277, "finished": 1558193562.4812098}, {"loss": 0.9463421526121936, "info": {"x0": -4.8283752095685495, "x1": 7.877045705745698, "x2": 7.186679083892578, "x3": -3.6251703895347513, "x4": 4.4736431297644215, "x5": 0.11610224821644316}}, null] +[[0, 0, 13], 3.0, {"submitted": 1558193562.4856381, "started": 1558193562.4861183, "finished": 1558193562.4940069}, {"loss": 0.9604477611863427, "info": {"x0": -5.690672395666377, "x1": 7.410499660891879, "x2": 7.031535581371571, "x3": -1.5280423685201816, "x4": 4.756844703468737, "x5": 0.19467705279698017}}, null] +[[0, 0, 14], 3.0, {"submitted": 1558193562.4963586, "started": 1558193562.4969134, "finished": 1558193562.5090742}, {"loss": 0.15578923575051062, "info": {"x0": -2.5861324560183605, "x1": 6.087777423767918, "x2": 6.685321163706787, "x3": -3.517991745845466, "x4": 2.314034641544023, "x5": 0.2774761043630475}}, null] +[[0, 0, 15], 3.0, {"submitted": 1558193562.5116584, "started": 1558193562.5122428, "finished": 1558193562.5242653}, {"loss": 0.719063771629899, "info": {"x0": -4.198578602600537, "x1": 5.257309465871936, "x2": 6.073945689554821, "x3": -2.5005318633506097, "x4": 2.4488419105916743, "x5": 0.12582050789041038}}, null] +[[0, 0, 16], 3.0, {"submitted": 1558193562.5267653, "started": 1558193562.527457, "finished": 1558193562.5453699}, {"loss": 0.24690185392006708, "info": {"x0": -2.0738187467229827, "x1": 6.972348420234386, "x2": 7.519426636354602, "x3": -2.1248215312522865, "x4": 2.9469434302737794, "x5": 0.45734456833691595}}, null] +[[0, 0, 17], 3.0, {"submitted": 1558193562.5500243, "started": 1558193562.5517662, "finished": 1558193562.559853}, {"loss": 0.238037082825525, "info": {"x0": -2.150064759566831, "x1": 3.0194828722781266, "x2": 5.437840235622007, "x3": -0.14912556602522775, "x4": 1.356289786352244, "x5": 0.31318159630122455}}, null] +[[0, 0, 18], 3.0, {"submitted": 1558193562.5619674, "started": 1558193562.56256, "finished": 1558193562.5836341}, {"loss": 0.6299185880209218, "info": {"x0": -4.097653322296237, "x1": 4.110097507118508, "x2": 7.961162393632527, "x3": -3.540553383322094, "x4": 2.680138166293669, "x5": 0.1303118102236015}}, null] +[[0, 0, 19], 3.0, {"submitted": 1558193562.58714, "started": 1558193562.5876272, "finished": 1558193562.5948713}, {"loss": 0.2504748920761369, "info": {"x0": -3.073238882543608, "x1": 6.54424566806137, "x2": 7.284081018066315, "x3": -0.3160793200828915, "x4": 3.3914705527513385, "x5": 0.4654744357304063}}, null] +[[0, 0, 20], 3.0, {"submitted": 1558193562.603432, "started": 1558193562.6040268, "finished": 1558193562.613976}, {"loss": 0.9654228849605246, "info": {"x0": -5.301703123446362, "x1": 7.450284024830448, "x2": 4.293567577659281, "x3": -1.6138787286401146, "x4": 4.594917302448675, "x5": 0.07587732905616357}}, null] +[[0, 0, 21], 3.0, {"submitted": 1558193562.618521, "started": 1558193562.618915, "finished": 1558193562.6260855}, {"loss": 0.9601028941085096, "info": {"x0": -5.760395100280891, "x1": 7.630862807607737, "x2": 4.3846800505749846, "x3": -3.8967040669449173, "x4": 2.0777030080485175, "x5": 0.04394184468530882}}, null] +[[0, 0, 22], 3.0, {"submitted": 1558193562.6281168, "started": 1558193562.628717, "finished": 1558193562.6438217}, {"loss": 0.9554123321984841, "info": {"x0": -5.004053172544424, "x1": 6.515916203630507, "x2": 5.577544927452225, "x3": -3.35335478724745, "x4": 2.8430764438711735, "x5": 0.34548696429707376}}, null] +[[0, 0, 23], 3.0, {"submitted": 1558193562.6465456, "started": 1558193562.6469338, "finished": 1558193562.6566844}, {"loss": 0.9382406147164033, "info": {"x0": -4.5524296601420176, "x1": 7.820011445705311, "x2": 5.86332319748937, "x3": -3.6096480501894197, "x4": 4.148400881683749, "x5": 0.13420710417305054}}, null] +[[0, 0, 24], 3.0, {"submitted": 1558193562.6583529, "started": 1558193562.6587586, "finished": 1558193562.6704159}, {"loss": 0.31374942872492984, "info": {"x0": -3.1714850783148485, "x1": 5.620814060721985, "x2": 5.376562634137164, "x3": -2.1923060705069095, "x4": 2.9555365218892553, "x5": 0.19863293385636377}}, null] +[[0, 0, 25], 3.0, {"submitted": 1558193562.6732996, "started": 1558193562.6737957, "finished": 1558193562.6882029}, {"loss": 0.7895522350080612, "info": {"x0": -4.183752339612584, "x1": 4.863306746035189, "x2": 5.868243310369094, "x3": -1.615797164650103, "x4": 4.723444465962816, "x5": 0.19187945102197618}}, null] +[[0, 0, 26], 3.0, {"submitted": 1558193562.6901805, "started": 1558193562.690681, "finished": 1558193562.7018325}, {"loss": 0.9323383068575721, "info": {"x0": -5.349264378718528, "x1": 4.926269257227967, "x2": 7.017190215877514, "x3": -2.5324777598537977, "x4": 2.352440265095198, "x5": 0.11899126914958336}}, null] +[[0, 0, 0], 9.0, {"submitted": 1558193562.7095115, "started": 1558193562.7099752, "finished": 1558193562.7203183}, {"loss": 0.27494346093384725, "info": {"x0": -2.233401834090057, "x1": 7.834647630281798, "x2": 4.297221934936076, "x3": -2.285051881103769, "x4": 1.5027606795274506, "x5": 0.1876016930373805}}, null] +[[0, 0, 3], 9.0, {"submitted": 1558193562.7219005, "started": 1558193562.7222443, "finished": 1558193562.7282863}, {"loss": 0.3297602894395414, "info": {"x0": -3.1083239211734397, "x1": 7.206859666745665, "x2": 5.185101052733005, "x3": -1.0697384087264643, "x4": 2.7082082457097982, "x5": 0.311845987317067}}, null] +[[0, 0, 6], 9.0, {"submitted": 1558193562.730028, "started": 1558193562.7303965, "finished": 1558193562.7431552}, {"loss": 0.21212121016067492, "info": {"x0": -2.5050373052019537, "x1": 7.273180822496182, "x2": 7.822223396522077, "x3": -1.263648676285349, "x4": 4.412229261248616, "x5": 0.4410351502138847}}, null] +[[0, 0, 9], 9.0, {"submitted": 1558193562.7474508, "started": 1558193562.7482908, "finished": 1558193562.758583}, {"loss": 0.06947083034460387, "info": {"x0": -2.044325428036527, "x1": 4.956864066729441, "x2": 6.617058531571873, "x3": -1.0920422815908366, "x4": 2.0418164929243, "x5": 0.014545919890592618}}, null] +[[0, 0, 14], 9.0, {"submitted": 1558193562.760194, "started": 1558193562.7607322, "finished": 1558193562.7783673}, {"loss": 0.12295341671645402, "info": {"x0": -2.5861324560183605, "x1": 6.087777423767918, "x2": 6.685321163706787, "x3": -3.517991745845466, "x4": 2.314034641544023, "x5": 0.2774761043630475}}, null] +[[0, 0, 16], 9.0, {"submitted": 1558193562.7802498, "started": 1558193562.7808154, "finished": 1558193562.7904017}, {"loss": 0.15637720560175644, "info": {"x0": -2.0738187467229827, "x1": 6.972348420234386, "x2": 7.519426636354602, "x3": -2.1248215312522865, "x4": 2.9469434302737794, "x5": 0.45734456833691595}}, null] +[[0, 0, 17], 9.0, {"submitted": 1558193562.7920506, "started": 1558193562.7925146, "finished": 1558193562.8073945}, {"loss": 0.1763907716743065, "info": {"x0": -2.150064759566831, "x1": 3.0194828722781266, "x2": 5.437840235622007, "x3": -0.14912556602522775, "x4": 1.356289786352244, "x5": 0.31318159630122455}}, null] +[[0, 0, 19], 9.0, {"submitted": 1558193562.8088944, "started": 1558193562.809248, "finished": 1558193562.8196855}, {"loss": 0.1543645375814712, "info": {"x0": -3.073238882543608, "x1": 6.54424566806137, "x2": 7.284081018066315, "x3": -0.3160793200828915, "x4": 3.3914705527513385, "x5": 0.4654744357304063}}, null] +[[0, 0, 24], 9.0, {"submitted": 1558193562.8211293, "started": 1558193562.8216271, "finished": 1558193562.832053}, {"loss": 0.24886928451163692, "info": {"x0": -3.1714850783148485, "x1": 5.620814060721985, "x2": 5.376562634137164, "x3": -2.1923060705069095, "x4": 2.9555365218892553, "x5": 0.19863293385636377}}, null] +[[0, 0, 9], 27.0, {"submitted": 1558193562.8357198, "started": 1558193562.8393207, "finished": 1558193562.8469856}, {"loss": 0.05307553570122806, "info": {"x0": -2.044325428036527, "x1": 4.956864066729441, "x2": 6.617058531571873, "x3": -1.0920422815908366, "x4": 2.0418164929243, "x5": 0.014545919890592618}}, null] +[[0, 0, 14], 27.0, {"submitted": 1558193562.8496935, "started": 1558193562.8502753, "finished": 1558193562.8600583}, {"loss": 0.11881501665890673, "info": {"x0": -2.5861324560183605, "x1": 6.087777423767918, "x2": 6.685321163706787, "x3": -3.517991745845466, "x4": 2.314034641544023, "x5": 0.2774761043630475}}, null] +[[0, 0, 19], 27.0, {"submitted": 1558193562.8615406, "started": 1558193562.8619268, "finished": 1558193562.876609}, {"loss": 0.10212573115774973, "info": {"x0": -3.073238882543608, "x1": 6.54424566806137, "x2": 7.284081018066315, "x3": -0.3160793200828915, "x4": 3.3914705527513385, "x5": 0.4654744357304063}}, null] +[[0, 0, 9], 81.0, {"submitted": 1558193562.8781574, "started": 1558193562.8786526, "finished": 1558193562.8884768}, {"loss": 0.05339213406969551, "info": {"x0": -2.044325428036527, "x1": 4.956864066729441, "x2": 6.617058531571873, "x3": -1.0920422815908366, "x4": 2.0418164929243, "x5": 0.014545919890592618}}, null] +[[1, 0, 0], 9.0, {"submitted": 1558193562.8910089, "started": 1558193562.891551, "finished": 1558193562.9039187}, {"loss": 0.20293984741093835, "info": {"x0": -2.4045776409497264, "x1": 5.228586955909111, "x2": 5.535914968954466, "x3": -1.083803203896415, "x4": 3.3998586297722713, "x5": 0.3775659319207199}}, null] +[[1, 0, 1], 9.0, {"submitted": 1558193562.9086137, "started": 1558193562.9090471, "finished": 1558193562.9205277}, {"loss": 0.9306422417181406, "info": {"x0": -5.809093281176885, "x1": 5.078326532858279, "x2": 7.970915397169133, "x3": -3.1742024698042948, "x4": 1.4277369791657608, "x5": 0.12717329393706683}}, null] +[[1, 0, 2], 9.0, {"submitted": 1558193562.922223, "started": 1558193562.9225907, "finished": 1558193562.9371045}, {"loss": 0.950497511753072, "info": {"x0": -5.217952236079796, "x1": 5.015488297725962, "x2": 5.15913174403401, "x3": -3.4463450909943174, "x4": 3.6606570653342123, "x5": 0.23356773877720177}}, null] +[[1, 0, 3], 9.0, {"submitted": 1558193562.9396083, "started": 1558193562.9400866, "finished": 1558193562.9500833}, {"loss": 0.2680008983959822, "info": {"x0": -3.262929910971091, "x1": 4.427443035194923, "x2": 6.181546468963388, "x3": -1.6410951512775775, "x4": 3.066519710195785, "x5": 0.3881220605436827}}, null] +[[1, 0, 4], 9.0, {"submitted": 1558193562.9541187, "started": 1558193562.9544396, "finished": 1558193562.9677534}, {"loss": 0.9495703296530327, "info": {"x0": -5.344122496024453, "x1": 4.136925368857039, "x2": 4.488423110097373, "x3": -0.6427475777211393, "x4": 3.8201547546989296, "x5": 0.2848075703523355}}, null] +[[1, 0, 5], 9.0, {"submitted": 1558193562.9727576, "started": 1558193562.9732232, "finished": 1558193562.9844222}, {"loss": 0.27729533923286914, "info": {"x0": -3.6311382423765637, "x1": 7.597812689983068, "x2": 7.886417440726728, "x3": -2.2414175822376214, "x4": 1.1782293324919442, "x5": 0.06991470087388918}}, null] +[[1, 0, 6], 9.0, {"submitted": 1558193562.9875257, "started": 1558193562.9880714, "finished": 1558193562.9960184}, {"loss": 0.22446856715058053, "info": {"x0": -3.444403802259676, "x1": 5.547960960805145, "x2": 7.032953148481672, "x3": -3.359155330602812, "x4": 3.5742364190964686, "x5": 0.0028401962709888595}}, null] +[[1, 0, 7], 9.0, {"submitted": 1558193563.0020788, "started": 1558193563.0025923, "finished": 1558193563.0114045}, {"loss": 0.8926277696721977, "info": {"x0": -5.273890135007207, "x1": 3.8674753907847537, "x2": 6.730681022726319, "x3": -0.5106384418798036, "x4": 4.655855875894002, "x5": 0.22239800607106475}}, null] +[[1, 0, 8], 9.0, {"submitted": 1558193563.0139792, "started": 1558193563.0145278, "finished": 1558193563.026374}, {"loss": 0.8973315224477331, "info": {"x0": -5.100757203371162, "x1": 5.061198050065565, "x2": 6.857428788482669, "x3": -3.311934275502259, "x4": 3.639565709732532, "x5": 0.040170854630460384}}, null] +[[1, 0, 0], 27.0, {"submitted": 1558193563.0311782, "started": 1558193563.0322077, "finished": 1558193563.0445187}, {"loss": 0.1809362290173513, "info": {"x0": -2.4045776409497264, "x1": 5.228586955909111, "x2": 5.535914968954466, "x3": -1.083803203896415, "x4": 3.3998586297722713, "x5": 0.3775659319207199}}, null] +[[1, 0, 3], 27.0, {"submitted": 1558193563.0461922, "started": 1558193563.0468178, "finished": 1558193563.057152}, {"loss": 0.23371776873266895, "info": {"x0": -3.262929910971091, "x1": 4.427443035194923, "x2": 6.181546468963388, "x3": -1.6410951512775775, "x4": 3.066519710195785, "x5": 0.3881220605436827}}, null] +[[1, 0, 6], 27.0, {"submitted": 1558193563.0597684, "started": 1558193563.0601149, "finished": 1558193563.074346}, {"loss": 0.1900497516225442, "info": {"x0": -3.444403802259676, "x1": 5.547960960805145, "x2": 7.032953148481672, "x3": -3.359155330602812, "x4": 3.5742364190964686, "x5": 0.0028401962709888595}}, null] +[[1, 0, 0], 81.0, {"submitted": 1558193563.0762892, "started": 1558193563.0766613, "finished": 1558193563.0904071}, {"loss": 0.1809362290173513, "info": {"x0": -2.4045776409497264, "x1": 5.228586955909111, "x2": 5.535914968954466, "x3": -1.083803203896415, "x4": 3.3998586297722713, "x5": 0.3775659319207199}}, null] +[[2, 0, 0], 27.0, {"submitted": 1558193563.0934193, "started": 1558193563.0938196, "finished": 1558193563.1086125}, {"loss": 0.9419945715939644, "info": {"x0": -5.167378412353563, "x1": 3.3627802463843874, "x2": 4.780490343900942, "x3": -1.576314266436134, "x4": 4.344569944587296, "x5": 0.22302211579725678}}, null] +[[2, 0, 1], 27.0, {"submitted": 1558193563.1111748, "started": 1558193563.1116138, "finished": 1558193563.1272328}, {"loss": 0.1942107628982081, "info": {"x0": -2.60670778424623, "x1": 3.403797566770159, "x2": 5.830507642876823, "x3": -3.8145308024812237, "x4": 1.417461315714064, "x5": 0.42797793970740233}}, null] +[[2, 0, 2], 27.0, {"submitted": 1558193563.1303673, "started": 1558193563.1308804, "finished": 1558193563.1433852}, {"loss": 0.27062415375611404, "info": {"x0": -2.641027559720743, "x1": 6.784803436401716, "x2": 5.25045918334482, "x3": -3.1148145617882323, "x4": 1.4903590136129772, "x5": 0.4354509052275556}}, null] +[[2, 0, 3], 27.0, {"submitted": 1558193563.1456344, "started": 1558193563.1511047, "finished": 1558193563.1600952}, {"loss": 0.42213929878713746, "info": {"x0": -4.973435106055881, "x1": 5.022377014569792, "x2": 7.706952985793093, "x3": -0.03957048848839717, "x4": 1.28365281635008, "x5": 0.13059303276110595}}, null] +[[2, 0, 4], 27.0, {"submitted": 1558193563.1627164, "started": 1558193563.16336, "finished": 1558193563.176005}, {"loss": 0.2083898653721497, "info": {"x0": -3.7350992822246805, "x1": 3.5756237110854507, "x2": 7.9429996923697725, "x3": -3.4997698123312904, "x4": 3.2164474905098035, "x5": 0.23187978102940565}}, null] +[[2, 0, 5], 27.0, {"submitted": 1558193563.1779575, "started": 1558193563.1791956, "finished": 1558193563.1921635}, {"loss": 0.25773405584071574, "info": {"x0": -2.08577299202322, "x1": 7.7158320839777135, "x2": 4.2334758722719315, "x3": -3.434733369377633, "x4": 1.4335916806562858, "x5": 0.23244755065449002}}, null] +[[2, 0, 1], 81.0, {"submitted": 1558193563.194047, "started": 1558193563.1944323, "finished": 1558193563.2046416}, {"loss": 0.18681591919365106, "info": {"x0": -2.60670778424623, "x1": 3.403797566770159, "x2": 5.830507642876823, "x3": -3.8145308024812237, "x4": 1.417461315714064, "x5": 0.42797793970740233}}, null] +[[2, 0, 4], 81.0, {"submitted": 1558193563.206328, "started": 1558193563.2066972, "finished": 1558193563.214678}, {"loss": 0.18048394112592905, "info": {"x0": -3.7350992822246805, "x1": 3.5756237110854507, "x2": 7.9429996923697725, "x3": -3.4997698123312904, "x4": 3.2164474905098035, "x5": 0.23187978102940565}}, null] +[[3, 0, 0], 81.0, {"submitted": 1558193563.222393, "started": 1558193563.2231104, "finished": 1558193563.2325368}, {"loss": 0.22971505974615275, "info": {"x0": -2.6437197067424543, "x1": 4.357918769800236, "x2": 4.33621133037721, "x3": -1.3971806233618294, "x4": 2.204261953274514, "x5": 0.11571975691148578}}, null] +[[3, 0, 1], 81.0, {"submitted": 1558193563.2382643, "started": 1558193563.238822, "finished": 1558193563.248241}, {"loss": 0.2023744884084814, "info": {"x0": -2.783208366953448, "x1": 3.0760315178994313, "x2": 5.465206673237338, "x3": -3.910289713294025, "x4": 1.0086480982029022, "x5": 0.17026994249394972}}, null] +[[3, 0, 2], 81.0, {"submitted": 1558193563.254657, "started": 1558193563.255213, "finished": 1558193563.2703347}, {"loss": 0.45526910955444383, "info": {"x0": -4.042306314025641, "x1": 7.647277029736305, "x2": 5.248449624134012, "x3": -0.011602029486401655, "x4": 3.57052272349642, "x5": 0.026561702185760094}}, null] +[[3, 0, 3], 81.0, {"submitted": 1558193563.2736785, "started": 1558193563.2742581, "finished": 1558193563.2830222}, {"loss": 0.8687697870566286, "info": {"x0": -5.2550507451588775, "x1": 5.186886937281119, "x2": 6.702023611004115, "x3": -1.331625815166908, "x4": 3.792571225699313, "x5": 0.3214067263045443}}, null] +[[4, 0, 0], 3.0, {"submitted": 1558193563.2896729, "started": 1558193563.2902393, "finished": 1558193563.2963622}, {"loss": 0.6329036620220196, "info": {"x0": -4.202720225020534, "x1": 4.03842214751695, "x2": 7.553899477772569, "x3": -2.6714120377419652, "x4": 1.4786434175968632, "x5": 0.4702915681289342}}, null] +[[4, 0, 1], 3.0, {"submitted": 1558193563.303524, "started": 1558193563.3051398, "finished": 1558193563.3164465}, {"loss": 0.41056082707971725, "info": {"x0": -3.0059297412963772, "x1": 6.7802917231723505, "x2": 5.328361139927024, "x3": -1.0645130565974537, "x4": 4.153823025358175, "x5": 0.25197338731759095}}, null] +[[4, 0, 2], 3.0, {"submitted": 1558193563.32396, "started": 1558193563.324345, "finished": 1558193563.337652}, {"loss": 0.8997060132124058, "info": {"x0": -4.497401654345611, "x1": 4.365687324861103, "x2": 5.510972975565113, "x3": -0.8776282497505679, "x4": 2.631610293406697, "x5": 0.18232905432029273}}, null] +[[4, 0, 3], 3.0, {"submitted": 1558193563.3398838, "started": 1558193563.3403165, "finished": 1558193563.3536465}, {"loss": 0.3845771110223625, "info": {"x0": -2.7214869000708077, "x1": 3.1441056505984237, "x2": 7.759776543265536, "x3": -2.1051792205044135, "x4": 1.6052816516684758, "x5": 0.4761605494164438}}, null] +[[4, 0, 4], 3.0, {"submitted": 1558193563.3571494, "started": 1558193563.357644, "finished": 1558193563.3690546}, {"loss": 0.8454319302841418, "info": {"x0": -4.605647083749549, "x1": 6.674269361707284, "x2": 7.135044530545295, "x3": -0.9008564288115499, "x4": 2.1252407077790116, "x5": 0.1985213246222326}}, null] +[[4, 0, 5], 3.0, {"submitted": 1558193563.3715332, "started": 1558193563.3719127, "finished": 1558193563.382021}, {"loss": 0.9548846680622537, "info": {"x0": -4.730213207444667, "x1": 5.599886403477378, "x2": 4.264119216030409, "x3": -3.871352115617261, "x4": 1.2814677017206386, "x5": 0.1687310021155976}}, null] +[[4, 0, 6], 3.0, {"submitted": 1558193563.3864875, "started": 1558193563.3874197, "finished": 1558193563.3958766}, {"loss": 0.24023066017421218, "info": {"x0": -2.931110082539336, "x1": 7.96297961068387, "x2": 6.824965017109848, "x3": -2.4642802585929466, "x4": 3.858120429177699, "x5": 0.346935119130228}}, null] +[[4, 0, 7], 3.0, {"submitted": 1558193563.39998, "started": 1558193563.4006157, "finished": 1558193563.4203715}, {"loss": 0.9297602888996186, "info": {"x0": -4.302842822523091, "x1": 4.694690189720639, "x2": 4.005810815499586, "x3": -0.3087792294073277, "x4": 3.8444126798667324, "x5": 0.4873105736290743}}, null] +[[4, 0, 8], 3.0, {"submitted": 1558193563.4226456, "started": 1558193563.4230978, "finished": 1558193563.4296129}, {"loss": 0.9612909473423071, "info": {"x0": -5.791556021703817, "x1": 7.678986690284389, "x2": 6.673196949221698, "x3": -1.9988961188419858, "x4": 1.5554924666983285, "x5": 0.07106312011312621}}, null] +[[4, 0, 9], 3.0, {"submitted": 1558193563.4346485, "started": 1558193563.4353878, "finished": 1558193563.4524677}, {"loss": 0.9610809583542508, "info": {"x0": -5.654388025142294, "x1": 7.453062362162996, "x2": 4.05676289756618, "x3": -0.5141261113710254, "x4": 1.3302017158596815, "x5": 0.10461907013332689}}, null] +[[4, 0, 10], 3.0, {"submitted": 1558193563.4545436, "started": 1558193563.4549835, "finished": 1558193563.462428}, {"loss": 0.9610583441162651, "info": {"x0": -5.71057460236384, "x1": 3.2952027946654496, "x2": 6.610866287250378, "x3": -3.006229014781096, "x4": 1.8987853181584624, "x5": 0.25946901667792854}}, null] +[[4, 0, 11], 3.0, {"submitted": 1558193563.4679003, "started": 1558193563.468366, "finished": 1558193563.4825141}, {"loss": 0.2383536820246428, "info": {"x0": -3.1550847376101587, "x1": 4.862872192636615, "x2": 7.017232415270364, "x3": -3.067520027199032, "x4": 1.4227662289374856, "x5": 0.4321829751574994}}, null] +[[4, 0, 12], 3.0, {"submitted": 1558193563.4873996, "started": 1558193563.4878333, "finished": 1558193563.4944868}, {"loss": 0.7262098578352031, "info": {"x0": -3.1491351295297525, "x1": 3.0456824784875476, "x2": 4.93065675857573, "x3": -1.1679650533840276, "x4": 2.969382716734456, "x5": 0.4860334714633056}}, null] +[[4, 0, 13], 3.0, {"submitted": 1558193563.496707, "started": 1558193563.497237, "finished": 1558193563.511964}, {"loss": 0.9500904559225184, "info": {"x0": -4.733614449968365, "x1": 5.025518855706973, "x2": 4.091527908029211, "x3": -2.7366620912774553, "x4": 2.585146299405006, "x5": 0.476392024841038}}, null] +[[4, 0, 14], 3.0, {"submitted": 1558193563.5150251, "started": 1558193563.5161073, "finished": 1558193563.526414}, {"loss": 0.8362053372628889, "info": {"x0": -4.235021997927708, "x1": 5.833244709877066, "x2": 5.827939023431117, "x3": -0.5727867941891658, "x4": 4.100253283087944, "x5": 0.2056851383549384}}, null] +[[4, 0, 15], 3.0, {"submitted": 1558193563.5282822, "started": 1558193563.528613, "finished": 1558193563.5444431}, {"loss": 0.20291722761134334, "info": {"x0": -2.4878408854935743, "x1": 6.118310155901288, "x2": 7.783570478513748, "x3": -0.41335705228740105, "x4": 3.2015695471315975, "x5": 0.4062857460764339}}, null] +[[4, 0, 16], 3.0, {"submitted": 1558193563.5464187, "started": 1558193563.5484016, "finished": 1558193563.5580652}, {"loss": 0.9599954766917413, "info": {"x0": -4.557631257063193, "x1": 6.651615486564655, "x2": 5.086014002084443, "x3": -3.1590338959478257, "x4": 2.8289081772889353, "x5": 0.07297524049456783}}, null] +[[4, 0, 17], 3.0, {"submitted": 1558193563.5599718, "started": 1558193563.5603125, "finished": 1558193563.5731761}, {"loss": 0.798394388283343, "info": {"x0": -3.9329588992267888, "x1": 4.695178456109371, "x2": 5.2485077575130035, "x3": -1.8447498889027591, "x4": 2.738812914077125, "x5": 0.4610321969445237}}, null] +[[4, 0, 18], 3.0, {"submitted": 1558193563.576107, "started": 1558193563.5764465, "finished": 1558193563.586626}, {"loss": 0.21447308314151217, "info": {"x0": -3.111194046206168, "x1": 5.124209792302958, "x2": 7.294431281889106, "x3": -0.49912003966190666, "x4": 1.9406968065078907, "x5": 0.3493244087706409}}, null] +[[4, 0, 19], 3.0, {"submitted": 1558193563.5886393, "started": 1558193563.5890915, "finished": 1558193563.5954187}, {"loss": 0.8371099039667914, "info": {"x0": -4.136751692328209, "x1": 7.808544588310706, "x2": 5.960523944688271, "x3": -2.2046724530851196, "x4": 1.9910950857602834, "x5": 0.37040639570462053}}, null] +[[4, 0, 20], 3.0, {"submitted": 1558193563.5986974, "started": 1558193563.5994184, "finished": 1558193563.6115916}, {"loss": 0.7191089959091486, "info": {"x0": -3.5702816481562354, "x1": 3.729830610370892, "x2": 5.63980335789635, "x3": -0.23444084317174596, "x4": 4.610012696494431, "x5": 0.37201655352745483}}, null] +[[4, 0, 21], 3.0, {"submitted": 1558193563.6171408, "started": 1558193563.6178505, "finished": 1558193563.6260147}, {"loss": 0.17609678905563403, "info": {"x0": -2.2351207686077608, "x1": 5.131427875346137, "x2": 6.037219801259021, "x3": -2.9234613516288896, "x4": 2.533331591768483, "x5": 0.16397321260281084}}, null] +[[4, 0, 22], 3.0, {"submitted": 1558193563.6279137, "started": 1558193563.6283178, "finished": 1558193563.6421301}, {"loss": 0.8896200797651999, "info": {"x0": -3.867106820498378, "x1": 5.232912804598952, "x2": 4.7073586743581455, "x3": -1.4657297841691483, "x4": 4.45029909956896, "x5": 0.4724203628189661}}, null] +[[4, 0, 23], 3.0, {"submitted": 1558193563.6448164, "started": 1558193563.6452985, "finished": 1558193563.657044}, {"loss": 0.659814561309806, "info": {"x0": -3.7697341460659874, "x1": 7.556740842527744, "x2": 6.653482404037504, "x3": -2.0959098248997927, "x4": 3.8572029891634747, "x5": 0.2226436129201303}}, null] +[[4, 0, 24], 3.0, {"submitted": 1558193563.6586473, "started": 1558193563.6589894, "finished": 1558193563.6706614}, {"loss": 0.920284938422499, "info": {"x0": -4.343062736335324, "x1": 5.661051138318422, "x2": 4.4154310931419545, "x3": -3.0942751734196823, "x4": 2.0017747747074344, "x5": 0.04744508437734196}}, null] +[[4, 0, 25], 3.0, {"submitted": 1558193563.6740308, "started": 1558193563.674996, "finished": 1558193563.6936047}, {"loss": 0.39416553166887436, "info": {"x0": -3.2131453535770227, "x1": 6.2222267014628, "x2": 5.116853985005974, "x3": -2.893491342874972, "x4": 4.414200561455228, "x5": 0.1729301524783014}}, null] +[[4, 0, 26], 3.0, {"submitted": 1558193563.695181, "started": 1558193563.696013, "finished": 1558193563.710646}, {"loss": 0.9279511520125592, "info": {"x0": -4.462115433447473, "x1": 5.239024735101378, "x2": 4.742225083698752, "x3": -1.0471356967536738, "x4": 4.04112223503305, "x5": 0.2190151286065561}}, null] +[[4, 0, 0], 9.0, {"submitted": 1558193563.7132301, "started": 1558193563.7148116, "finished": 1558193563.7242343}, {"loss": 0.5260515588264507, "info": {"x0": -4.202720225020534, "x1": 4.03842214751695, "x2": 7.553899477772569, "x3": -2.6714120377419652, "x4": 1.4786434175968632, "x5": 0.4702915681289342}}, null] +[[4, 0, 1], 9.0, {"submitted": 1558193563.7256465, "started": 1558193563.7260172, "finished": 1558193563.735109}, {"loss": 0.3482813136177815, "info": {"x0": -3.0059297412963772, "x1": 6.7802917231723505, "x2": 5.328361139927024, "x3": -1.0645130565974537, "x4": 4.153823025358175, "x5": 0.25197338731759095}}, null] +[[4, 0, 3], 9.0, {"submitted": 1558193563.740462, "started": 1558193563.740861, "finished": 1558193563.7505918}, {"loss": 0.28665761833126757, "info": {"x0": -2.7214869000708077, "x1": 3.1441056505984237, "x2": 7.759776543265536, "x3": -2.1051792205044135, "x4": 1.6052816516684758, "x5": 0.4761605494164438}}, null] +[[4, 0, 6], 9.0, {"submitted": 1558193563.7550447, "started": 1558193563.7555478, "finished": 1558193563.7664902}, {"loss": 0.17412935076310915, "info": {"x0": -2.931110082539336, "x1": 7.96297961068387, "x2": 6.824965017109848, "x3": -2.4642802585929466, "x4": 3.858120429177699, "x5": 0.346935119130228}}, null] +[[4, 0, 11], 9.0, {"submitted": 1558193563.7740712, "started": 1558193563.774565, "finished": 1558193563.784679}, {"loss": 0.18677068739549868, "info": {"x0": -3.1550847376101587, "x1": 4.862872192636615, "x2": 7.017232415270364, "x3": -3.067520027199032, "x4": 1.4227662289374856, "x5": 0.4321829751574994}}, null] +[[4, 0, 15], 9.0, {"submitted": 1558193563.7873347, "started": 1558193563.78777, "finished": 1558193563.7969954}, {"loss": 0.12605155820843322, "info": {"x0": -2.4878408854935743, "x1": 6.118310155901288, "x2": 7.783570478513748, "x3": -0.41335705228740105, "x4": 3.2015695471315975, "x5": 0.4062857460764339}}, null] +[[4, 0, 18], 9.0, {"submitted": 1558193563.8041875, "started": 1558193563.8049152, "finished": 1558193563.815882}, {"loss": 0.13763002805489322, "info": {"x0": -3.111194046206168, "x1": 5.124209792302958, "x2": 7.294431281889106, "x3": -0.49912003966190666, "x4": 1.9406968065078907, "x5": 0.3493244087706409}}, null] +[[4, 0, 21], 9.0, {"submitted": 1558193563.819107, "started": 1558193563.8194475, "finished": 1558193563.8340144}, {"loss": 0.12571234861982722, "info": {"x0": -2.2351207686077608, "x1": 5.131427875346137, "x2": 6.037219801259021, "x3": -2.9234613516288896, "x4": 2.533331591768483, "x5": 0.16397321260281084}}, null] +[[4, 0, 25], 9.0, {"submitted": 1558193563.8382862, "started": 1558193563.8403418, "finished": 1558193563.8474274}, {"loss": 0.32878787531094117, "info": {"x0": -3.2131453535770227, "x1": 6.2222267014628, "x2": 5.116853985005974, "x3": -2.893491342874972, "x4": 4.414200561455228, "x5": 0.1729301524783014}}, null] +[[4, 0, 15], 27.0, {"submitted": 1558193563.8507988, "started": 1558193563.8513193, "finished": 1558193563.8619282}, {"loss": 0.08686114808705424, "info": {"x0": -2.4878408854935743, "x1": 6.118310155901288, "x2": 7.783570478513748, "x3": -0.41335705228740105, "x4": 3.2015695471315975, "x5": 0.4062857460764339}}, null] +[[4, 0, 18], 27.0, {"submitted": 1558193563.8636422, "started": 1558193563.8644526, "finished": 1558193563.8753426}, {"loss": 0.1011080935105432, "info": {"x0": -3.111194046206168, "x1": 5.124209792302958, "x2": 7.294431281889106, "x3": -0.49912003966190666, "x4": 1.9406968065078907, "x5": 0.3493244087706409}}, null] +[[4, 0, 21], 27.0, {"submitted": 1558193563.8775356, "started": 1558193563.8780098, "finished": 1558193563.8924067}, {"loss": 0.10594753651988824, "info": {"x0": -2.2351207686077608, "x1": 5.131427875346137, "x2": 6.037219801259021, "x3": -2.9234613516288896, "x4": 2.533331591768483, "x5": 0.16397321260281084}}, null] +[[4, 0, 15], 81.0, {"submitted": 1558193563.895085, "started": 1558193563.8955052, "finished": 1558193563.9076283}, {"loss": 0.07994120205651037, "info": {"x0": -2.4878408854935743, "x1": 6.118310155901288, "x2": 7.783570478513748, "x3": -0.41335705228740105, "x4": 3.2015695471315975, "x5": 0.4062857460764339}}, null] +[[5, 0, 0], 9.0, {"submitted": 1558193563.910475, "started": 1558193563.9110038, "finished": 1558193563.920608}, {"loss": 0.8082541803837374, "info": {"x0": -4.134439875472369, "x1": 3.303700045754811, "x2": 5.9965669807572635, "x3": -2.350534380660097, "x4": 4.725361548737689, "x5": 0.2974451642364472}}, null] +[[5, 0, 1], 9.0, {"submitted": 1558193563.9236715, "started": 1558193563.9242177, "finished": 1558193563.9347703}, {"loss": 0.6076888265702343, "info": {"x0": -4.497485164923077, "x1": 6.8645980415733705, "x2": 5.955890855621023, "x3": -0.07784008476264814, "x4": 3.2790697482980335, "x5": 0.4175871814726985}}, null] +[[5, 0, 2], 9.0, {"submitted": 1558193563.9433746, "started": 1558193563.9437177, "finished": 1558193563.9546604}, {"loss": 0.16928991306251334, "info": {"x0": -2.6186004162738254, "x1": 7.984258349220533, "x2": 7.311292915044827, "x3": -0.8064983447326202, "x4": 3.8786258787052086, "x5": 0.49715772093377814}}, null] +[[5, 0, 3], 9.0, {"submitted": 1558193563.9600275, "started": 1558193563.9603786, "finished": 1558193563.9726663}, {"loss": 0.16820442741513522, "info": {"x0": -3.136314154891071, "x1": 6.794986891028672, "x2": 7.055817821842494, "x3": -3.816112291154226, "x4": 4.224008958818345, "x5": 0.0636763798795254}}, null] +[[5, 0, 4], 9.0, {"submitted": 1558193563.975327, "started": 1558193563.9759789, "finished": 1558193563.9872828}, {"loss": 0.5037991847494159, "info": {"x0": -4.001340737824428, "x1": 5.7739948826558924, "x2": 6.805149680521026, "x3": -3.226507350228255, "x4": 3.625844258536736, "x5": 0.15690399106312247}}, null] +[[5, 0, 5], 9.0, {"submitted": 1558193563.9908633, "started": 1558193563.991537, "finished": 1558193564.0045993}, {"loss": 0.9614201712725563, "info": {"x0": -5.983611465413799, "x1": 6.442812293156732, "x2": 6.661553372980425, "x3": -1.066865524198322, "x4": 3.5195028873671546, "x5": 0.3118140569984285}}, null] +[[5, 0, 6], 9.0, {"submitted": 1558193564.0073214, "started": 1558193564.00774, "finished": 1558193564.0160692}, {"loss": 0.2780189943274509, "info": {"x0": -2.5026229879665087, "x1": 3.1356457235238553, "x2": 4.85494855866078, "x3": -3.102697125051158, "x4": 2.178011290629148, "x5": 0.16040848579750122}}, null] +[[5, 0, 7], 9.0, {"submitted": 1558193564.0244024, "started": 1558193564.024835, "finished": 1558193564.03756}, {"loss": 0.240094982332932, "info": {"x0": -2.6398461617332996, "x1": 6.3662929054192094, "x2": 4.848779495240552, "x3": -2.8585983943082485, "x4": 1.6741147220021175, "x5": 0.11358378143231246}}, null] +[[5, 0, 8], 9.0, {"submitted": 1558193564.0403802, "started": 1558193564.0408664, "finished": 1558193564.0481222}, {"loss": 0.9566485746229325, "info": {"x0": -4.871219642346903, "x1": 5.537490236111415, "x2": 4.637486772541358, "x3": -3.3930987777835053, "x4": 1.663305884840827, "x5": 0.45278662317635054}}, null] +[[5, 0, 2], 27.0, {"submitted": 1558193564.052544, "started": 1558193564.0531936, "finished": 1558193564.0632057}, {"loss": 0.1269787406824337, "info": {"x0": -2.6186004162738254, "x1": 7.984258349220533, "x2": 7.311292915044827, "x3": -0.8064983447326202, "x4": 3.8786258787052086, "x5": 0.49715772093377814}}, null] +[[5, 0, 3], 27.0, {"submitted": 1558193564.0699203, "started": 1558193564.0705743, "finished": 1558193564.0795012}, {"loss": 0.15805065187460046, "info": {"x0": -3.136314154891071, "x1": 6.794986891028672, "x2": 7.055817821842494, "x3": -3.816112291154226, "x4": 4.224008958818345, "x5": 0.0636763798795254}}, null] +[[5, 0, 7], 27.0, {"submitted": 1558193564.0841177, "started": 1558193564.085333, "finished": 1558193564.104592}, {"loss": 0.23616010948294486, "info": {"x0": -2.6398461617332996, "x1": 6.3662929054192094, "x2": 4.848779495240552, "x3": -2.8585983943082485, "x4": 1.6741147220021175, "x5": 0.11358378143231246}}, null] +[[5, 0, 2], 81.0, {"submitted": 1558193564.1072943, "started": 1558193564.1078029, "finished": 1558193564.1213667}, {"loss": 0.12191315975894437, "info": {"x0": -2.6186004162738254, "x1": 7.984258349220533, "x2": 7.311292915044827, "x3": -0.8064983447326202, "x4": 3.8786258787052086, "x5": 0.49715772093377814}}, null] +[[6, 0, 0], 27.0, {"submitted": 1558193564.125178, "started": 1558193564.1262984, "finished": 1558193564.137929}, {"loss": 0.13577566777942734, "info": {"x0": -2.942591103123517, "x1": 4.0665986453154, "x2": 6.120796806601813, "x3": -0.24742411755839067, "x4": 1.6646443237062636, "x5": 0.342164837311559}}, null] +[[6, 0, 1], 27.0, {"submitted": 1558193564.1407037, "started": 1558193564.1412003, "finished": 1558193564.1532083}, {"loss": 0.09626865447079742, "info": {"x0": -3.121984927681092, "x1": 7.602877852535113, "x2": 7.614601067443839, "x3": -0.26555784902063095, "x4": 1.10788325330001, "x5": 0.16490166503100967}}, null] +[[6, 0, 2], 27.0, {"submitted": 1558193564.1570168, "started": 1558193564.157604, "finished": 1558193564.170244}, {"loss": 0.5506558120611268, "info": {"x0": -4.334095226142013, "x1": 7.083873510244094, "x2": 5.8251327532704575, "x3": -0.12065258762176434, "x4": 3.9631681160548844, "x5": 0.03103722319841873}}, null] +[[6, 0, 3], 27.0, {"submitted": 1558193564.1732898, "started": 1558193564.1737804, "finished": 1558193564.1818206}, {"loss": 0.9555932460277081, "info": {"x0": -5.5810362528179, "x1": 7.513598996026163, "x2": 6.717304707226211, "x3": -2.8566959616227026, "x4": 4.410882393337746, "x5": 0.048939815590392066}}, null] +[[6, 0, 4], 27.0, {"submitted": 1558193564.190711, "started": 1558193564.1912026, "finished": 1558193564.203458}, {"loss": 0.9614201719765031, "info": {"x0": -5.3039126528249785, "x1": 6.3560517928207645, "x2": 4.014946232620814, "x3": -1.0020486304388552, "x4": 3.478265229960131, "x5": 0.49330079967304674}}, null] +[[6, 0, 5], 27.0, {"submitted": 1558193564.2075365, "started": 1558193564.20801, "finished": 1558193564.218873}, {"loss": 0.21677974017226606, "info": {"x0": -3.204097008262422, "x1": 5.900449056488187, "x2": 5.376990515833471, "x3": -1.222257293847803, "x4": 4.981459512083408, "x5": 0.061545912564033856}}, null] +[[6, 0, 0], 81.0, {"submitted": 1558193564.2214997, "started": 1558193564.2219348, "finished": 1558193564.2296104}, {"loss": 0.12946630538938703, "info": {"x0": -2.942591103123517, "x1": 4.0665986453154, "x2": 6.120796806601813, "x3": -0.24742411755839067, "x4": 1.6646443237062636, "x5": 0.342164837311559}}, null] +[[6, 0, 1], 81.0, {"submitted": 1558193564.236671, "started": 1558193564.2382984, "finished": 1558193564.2456203}, {"loss": 0.09626865447079742, "info": {"x0": -3.121984927681092, "x1": 7.602877852535113, "x2": 7.614601067443839, "x3": -0.26555784902063095, "x4": 1.10788325330001, "x5": 0.16490166503100967}}, null] +[[7, 0, 0], 81.0, {"submitted": 1558193564.2532897, "started": 1558193564.2539394, "finished": 1558193564.2623556}, {"loss": 0.7769335125633635, "info": {"x0": -5.772347163511597, "x1": 4.890597284831181, "x2": 7.973501121674611, "x3": -0.01667675783665068, "x4": 3.882543361238958, "x5": 0.44127752011560156}}, null] +[[7, 0, 1], 81.0, {"submitted": 1558193564.2660992, "started": 1558193564.2682736, "finished": 1558193564.2780397}, {"loss": 0.329873358878492, "info": {"x0": -3.5202125181770394, "x1": 4.6854253973259175, "x2": 5.756167612372813, "x3": -3.9446852695590167, "x4": 1.9582418847582619, "x5": 0.35363821181685096}}, null] +[[7, 0, 2], 81.0, {"submitted": 1558193564.2823157, "started": 1558193564.283201, "finished": 1558193564.2948875}, {"loss": 0.09181365612700534, "info": {"x0": -2.182856113417205, "x1": 5.574549761222761, "x2": 5.903262230567778, "x3": -0.9205521303532582, "x4": 1.754391648070866, "x5": 0.01743810303942439}}, null] +[[7, 0, 3], 81.0, {"submitted": 1558193564.296831, "started": 1558193564.297359, "finished": 1558193564.310905}, {"loss": 0.18833107348853298, "info": {"x0": -2.058678021108477, "x1": 5.503762804518557, "x2": 5.944941578107187, "x3": -1.6568977254688613, "x4": 3.402028372651831, "x5": 0.354615699740441}}, null] +[[8, 0, 0], 3.0, {"submitted": 1558193564.3133779, "started": 1558193564.3151705, "finished": 1558193564.3265197}, {"loss": 0.965441730384509, "info": {"x0": -5.999629647443495, "x1": 5.613065528121968, "x2": 5.779001697895048, "x3": -2.4093348789392635, "x4": 3.19718074724112, "x5": 0.2612598577589967}}, null] +[[8, 0, 1], 3.0, {"submitted": 1558193564.3283179, "started": 1558193564.328843, "finished": 1558193564.340658}, {"loss": 0.4744685656422676, "info": {"x0": -3.8220732783337232, "x1": 6.766843664615354, "x2": 7.137123238856792, "x3": -1.751299195943432, "x4": 2.436104184552024, "x5": 0.2830422537241087}}, null] +[[8, 0, 2], 3.0, {"submitted": 1558193564.342598, "started": 1558193564.343268, "finished": 1558193564.356717}, {"loss": 0.46933513827578127, "info": {"x0": -3.7064161852976327, "x1": 4.100350190176072, "x2": 7.718522297346789, "x3": -3.6687908891210217, "x4": 4.4589410405536185, "x5": 0.03264997143321624}}, null] +[[8, 0, 3], 3.0, {"submitted": 1558193564.3586295, "started": 1558193564.3591142, "finished": 1558193564.3706365}, {"loss": 0.8968340114898445, "info": {"x0": -5.020284410482139, "x1": 5.057951345973958, "x2": 7.965287833024985, "x3": -1.2923770134115253, "x4": 2.567203464141024, "x5": 0.2741161105133148}}, null] +[[8, 0, 4], 3.0, {"submitted": 1558193564.3736594, "started": 1558193564.3741388, "finished": 1558193564.38832}, {"loss": 0.24047941795467312, "info": {"x0": -2.924895923836043, "x1": 6.693802471348113, "x2": 7.264421127740663, "x3": -1.1922352677894574, "x4": 4.176493920385129, "x5": 0.26789549018747233}}, null] +[[8, 0, 5], 3.0, {"submitted": 1558193564.3911834, "started": 1558193564.3916554, "finished": 1558193564.4014015}, {"loss": 0.4253505192754334, "info": {"x0": -3.1568219120945384, "x1": 3.509765291221398, "x2": 6.2371711804831085, "x3": -2.0545864454485203, "x4": 3.9031047812304265, "x5": 0.1447093645388129}}, null] +[[8, 0, 6], 3.0, {"submitted": 1558193564.4057338, "started": 1558193564.4062781, "finished": 1558193564.4215662}, {"loss": 0.9588421527693939, "info": {"x0": -5.872696922891112, "x1": 4.732139704587956, "x2": 4.004857375829172, "x3": -1.1100247416997613, "x4": 1.1280590964694217, "x5": 0.013562273979220163}}, null] +[[8, 0, 7], 3.0, {"submitted": 1558193564.4236321, "started": 1558193564.4240065, "finished": 1558193564.43494}, {"loss": 0.2814789684473363, "info": {"x0": -2.5926718325594083, "x1": 5.507317184127331, "x2": 4.441693037504088, "x3": -3.932668290344872, "x4": 2.556408485971358, "x5": 0.033352110729395756}}, null] +[[8, 0, 8], 3.0, {"submitted": 1558193564.4427986, "started": 1558193564.4433684, "finished": 1558193564.4545903}, {"loss": 0.4665762051407539, "info": {"x0": -3.453626314080434, "x1": 7.90617844491951, "x2": 6.001456224586831, "x3": -3.2796385607935497, "x4": 3.423066079159187, "x5": 0.04258437879515348}}, null] +[[8, 0, 9], 3.0, {"submitted": 1558193564.456932, "started": 1558193564.4573393, "finished": 1558193564.464943}, {"loss": 0.1322026204181332, "info": {"x0": -2.6367580375013993, "x1": 4.568751271044143, "x2": 7.039678213795332, "x3": -0.34455638431068625, "x4": 2.455104040918081, "x5": 0.10485034380530583}}, null] +[[8, 0, 10], 3.0, {"submitted": 1558193564.472554, "started": 1558193564.4747233, "finished": 1558193564.4885232}, {"loss": 0.3345997253480889, "info": {"x0": -3.3407196259464484, "x1": 4.222459144272209, "x2": 6.255968979923372, "x3": -2.6218371629121253, "x4": 4.573402085052676, "x5": 0.0017318104594636896}}, null] +[[8, 0, 11], 3.0, {"submitted": 1558193564.490369, "started": 1558193564.4907594, "finished": 1558193564.498337}, {"loss": 0.9157847113238857, "info": {"x0": -4.637550446547525, "x1": 5.233305991276486, "x2": 5.20933045107992, "x3": -0.09794688263587403, "x4": 1.0382997168527535, "x5": 0.4702338739855428}}, null] +[[8, 0, 12], 3.0, {"submitted": 1558193564.504531, "started": 1558193564.5049014, "finished": 1558193564.5125663}, {"loss": 0.9498190864789194, "info": {"x0": -5.401831088694742, "x1": 6.724919529354837, "x2": 7.838078799714865, "x3": -0.5758569894945258, "x4": 4.538263760289222, "x5": 0.16480847481981686}}, null] +[[8, 0, 13], 3.0, {"submitted": 1558193564.5215347, "started": 1558193564.5220406, "finished": 1558193564.5293214}, {"loss": 0.962256896655715, "info": {"x0": -5.892962246429046, "x1": 3.225189703969188, "x2": 5.546655155448344, "x3": -0.2827689427933895, "x4": 2.6759324928957926, "x5": 0.28872008034605884}}, null] +[[8, 0, 14], 3.0, {"submitted": 1558193564.5317402, "started": 1558193564.5322154, "finished": 1558193564.5440736}, {"loss": 0.2603573005975021, "info": {"x0": -2.919274607007862, "x1": 6.265002629814612, "x2": 7.275171331835539, "x3": -0.9746335761821898, "x4": 4.390474601099678, "x5": 0.2795501901054332}}, null] +[[8, 0, 15], 3.0, {"submitted": 1558193564.5518904, "started": 1558193564.5527425, "finished": 1558193564.5617473}, {"loss": 0.9108095873313211, "info": {"x0": -5.076005418651921, "x1": 7.867752752339159, "x2": 7.145122230264959, "x3": -1.5886256120132987, "x4": 1.303883812195754, "x5": 0.03523981146180438}}, null] +[[8, 0, 16], 3.0, {"submitted": 1558193564.5643513, "started": 1558193564.5654924, "finished": 1558193564.5760071}, {"loss": 0.9583898685235456, "info": {"x0": -5.976388305669499, "x1": 5.202690501180032, "x2": 5.063785476829439, "x3": -1.8220390462361098, "x4": 3.7637963041737423, "x5": 0.10123564307949012}}, null] +[[8, 0, 17], 3.0, {"submitted": 1558193564.578689, "started": 1558193564.5790346, "finished": 1558193564.593853}, {"loss": 0.8898236076791075, "info": {"x0": -4.8593808703678985, "x1": 4.405570565033112, "x2": 7.177079322924486, "x3": -3.199394140554314, "x4": 2.270806830999268, "x5": 0.49427432823602024}}, null] +[[8, 0, 18], 3.0, {"submitted": 1558193564.5958252, "started": 1558193564.5961716, "finished": 1558193564.612332}, {"loss": 0.8701718658337321, "info": {"x0": -3.7915678308699348, "x1": 3.7746187302106837, "x2": 4.92834705680917, "x3": -1.634424701631878, "x4": 3.6549655178895373, "x5": 0.2087799161449561}}, null] +[[8, 0, 19], 3.0, {"submitted": 1558193564.6144295, "started": 1558193564.6154728, "finished": 1558193564.625045}, {"loss": 0.7345318832987778, "info": {"x0": -2.7521692284416206, "x1": 6.195236746276015, "x2": 4.614000878307897, "x3": -3.2834716190769337, "x4": 4.520979432459498, "x5": 0.4140415891418686}}, null] +[[8, 0, 20], 3.0, {"submitted": 1558193564.6269436, "started": 1558193564.6272795, "finished": 1558193564.6387835}, {"loss": 0.2969923097783491, "info": {"x0": -3.029866222493839, "x1": 3.9020092387271412, "x2": 6.632061206433605, "x3": -2.4718663090083526, "x4": 4.155090599680823, "x5": 0.37508556739197235}}, null] +[[8, 0, 21], 3.0, {"submitted": 1558193564.6440835, "started": 1558193564.644913, "finished": 1558193564.6566005}, {"loss": 0.8442107630786596, "info": {"x0": -4.780880697145582, "x1": 5.2287725405819145, "x2": 7.237377058913796, "x3": -0.5864105417931289, "x4": 2.6072216202512295, "x5": 0.029542775134577648}}, null] +[[8, 0, 22], 3.0, {"submitted": 1558193564.6585467, "started": 1558193564.6589005, "finished": 1558193564.6684017}, {"loss": 0.9243554934154993, "info": {"x0": -4.6175693023164595, "x1": 4.473444141734276, "x2": 5.317634791367411, "x3": -3.6749675878326666, "x4": 2.192206287101183, "x5": 0.27645662242919117}}, null] +[[8, 0, 23], 3.0, {"submitted": 1558193564.6758418, "started": 1558193564.676262, "finished": 1558193564.687424}, {"loss": 0.27530528970605267, "info": {"x0": -3.139758805590142, "x1": 6.292934131069636, "x2": 7.659627412437887, "x3": -0.9849125938134624, "x4": 4.927827671239935, "x5": 0.13090117573752597}}, null] +[[8, 0, 24], 3.0, {"submitted": 1558193564.6898296, "started": 1558193564.690221, "finished": 1558193564.6972651}, {"loss": 0.956852102907179, "info": {"x0": -5.920235735582354, "x1": 7.000365818252368, "x2": 6.1555314065769835, "x3": -1.7558393606608664, "x4": 1.8310096763561208, "x5": 0.09028985317042304}}, null] +[[8, 0, 25], 3.0, {"submitted": 1558193564.7072845, "started": 1558193564.7079067, "finished": 1558193564.7209616}, {"loss": 0.2516282170849221, "info": {"x0": -3.3266413701682875, "x1": 3.548058659869076, "x2": 7.6250417602047635, "x3": -3.737990529221242, "x4": 1.9358665227017702, "x5": 0.14246048897771368}}, null] +[[8, 0, 26], 3.0, {"submitted": 1558193564.7238827, "started": 1558193564.7306502, "finished": 1558193564.7419415}, {"loss": 0.9668023517778968, "info": {"x0": -5.626876501467928, "x1": 6.13824383613658, "x2": 5.101499944254082, "x3": -0.030866955719511147, "x4": 4.1922348058131025, "x5": 0.3614049345616115}}, null] +[[8, 0, 4], 9.0, {"submitted": 1558193564.7448902, "started": 1558193564.7455094, "finished": 1558193564.7598462}, {"loss": 0.16026684379399714, "info": {"x0": -2.924895923836043, "x1": 6.693802471348113, "x2": 7.264421127740663, "x3": -1.1922352677894574, "x4": 4.176493920385129, "x5": 0.26789549018747233}}, null] +[[8, 0, 5], 9.0, {"submitted": 1558193564.7636533, "started": 1558193564.7641013, "finished": 1558193564.778729}, {"loss": 0.22566711881254015, "info": {"x0": -3.1568219120945384, "x1": 3.509765291221398, "x2": 6.2371711804831085, "x3": -2.0545864454485203, "x4": 3.9031047812304265, "x5": 0.1447093645388129}}, null] +[[8, 0, 7], 9.0, {"submitted": 1558193564.7849302, "started": 1558193564.7858524, "finished": 1558193564.803352}, {"loss": 0.2398236108413922, "info": {"x0": -2.5926718325594083, "x1": 5.507317184127331, "x2": 4.441693037504088, "x3": -3.932668290344872, "x4": 2.556408485971358, "x5": 0.033352110729395756}}, null] +[[8, 0, 9], 9.0, {"submitted": 1558193564.8075843, "started": 1558193564.8083217, "finished": 1558193564.8233879}, {"loss": 0.0700814119201071, "info": {"x0": -2.6367580375013993, "x1": 4.568751271044143, "x2": 7.039678213795332, "x3": -0.34455638431068625, "x4": 2.455104040918081, "x5": 0.10485034380530583}}, null] +[[8, 0, 10], 9.0, {"submitted": 1558193564.8259141, "started": 1558193564.8263044, "finished": 1558193564.8428116}, {"loss": 0.2099728608235198, "info": {"x0": -3.3407196259464484, "x1": 4.222459144272209, "x2": 6.255968979923372, "x3": -2.6218371629121253, "x4": 4.573402085052676, "x5": 0.0017318104594636896}}, null] +[[8, 0, 14], 9.0, {"submitted": 1558193564.8500173, "started": 1558193564.8521643, "finished": 1558193564.8709662}, {"loss": 0.18150157986629178, "info": {"x0": -2.919274607007862, "x1": 6.265002629814612, "x2": 7.275171331835539, "x3": -0.9746335761821898, "x4": 4.390474601099678, "x5": 0.2795501901054332}}, null] +[[8, 0, 20], 9.0, {"submitted": 1558193564.877784, "started": 1558193564.87824, "finished": 1558193564.8956919}, {"loss": 0.20128901004252095, "info": {"x0": -3.029866222493839, "x1": 3.9020092387271412, "x2": 6.632061206433605, "x3": -2.4718663090083526, "x4": 4.155090599680823, "x5": 0.37508556739197235}}, null] +[[8, 0, 23], 9.0, {"submitted": 1558193564.899704, "started": 1558193564.9002364, "finished": 1558193564.9120846}, {"loss": 0.15838986728887977, "info": {"x0": -3.139758805590142, "x1": 6.292934131069636, "x2": 7.659627412437887, "x3": -0.9849125938134624, "x4": 4.927827671239935, "x5": 0.13090117573752597}}, null] +[[8, 0, 25], 9.0, {"submitted": 1558193564.9169743, "started": 1558193564.91783, "finished": 1558193564.9294293}, {"loss": 0.17559927211782073, "info": {"x0": -3.3266413701682875, "x1": 3.548058659869076, "x2": 7.6250417602047635, "x3": -3.737990529221242, "x4": 1.9358665227017702, "x5": 0.14246048897771368}}, null] +[[8, 0, 4], 27.0, {"submitted": 1558193564.9328935, "started": 1558193564.9334319, "finished": 1558193564.9466293}, {"loss": 0.12315694023478038, "info": {"x0": -2.924895923836043, "x1": 6.693802471348113, "x2": 7.264421127740663, "x3": -1.1922352677894574, "x4": 4.176493920385129, "x5": 0.26789549018747233}}, null] +[[8, 0, 9], 27.0, {"submitted": 1558193564.9491866, "started": 1558193564.9531791, "finished": 1558193564.968486}, {"loss": 0.04663048515029752, "info": {"x0": -2.6367580375013993, "x1": 4.568751271044143, "x2": 7.039678213795332, "x3": -0.34455638431068625, "x4": 2.455104040918081, "x5": 0.10485034380530583}}, null] +[[8, 0, 23], 27.0, {"submitted": 1558193564.9712296, "started": 1558193564.9717515, "finished": 1558193564.9812276}, {"loss": 0.089258252818193, "info": {"x0": -3.139758805590142, "x1": 6.292934131069636, "x2": 7.659627412437887, "x3": -0.9849125938134624, "x4": 4.927827671239935, "x5": 0.13090117573752597}}, null] +[[8, 0, 9], 81.0, {"submitted": 1558193564.992334, "started": 1558193564.9927697, "finished": 1558193565.0035634}, {"loss": 0.043713253404909766, "info": {"x0": -2.6367580375013993, "x1": 4.568751271044143, "x2": 7.039678213795332, "x3": -0.34455638431068625, "x4": 2.455104040918081, "x5": 0.10485034380530583}}, null] +[[9, 0, 0], 9.0, {"submitted": 1558193565.007614, "started": 1558193565.0079422, "finished": 1558193565.021743}, {"loss": 0.2875169626529375, "info": {"x0": -2.48864985200095, "x1": 5.875600876392713, "x2": 4.124313154895843, "x3": -0.07868272350853989, "x4": 3.1897943719296937, "x5": 0.14699783269536743}}, null] +[[9, 0, 1], 9.0, {"submitted": 1558193565.0270443, "started": 1558193565.027703, "finished": 1558193565.04144}, {"loss": 0.9364314779490975, "info": {"x0": -5.221656803389328, "x1": 4.491341351710133, "x2": 6.154602439574809, "x3": -3.733979659243403, "x4": 4.137432582059125, "x5": 0.36068340483815703}}, null] +[[9, 0, 2], 9.0, {"submitted": 1558193565.0444453, "started": 1558193565.0449064, "finished": 1558193565.0571253}, {"loss": 0.7967209371217083, "info": {"x0": -4.125935815749298, "x1": 3.5378386621684865, "x2": 4.7359482766092125, "x3": -0.07826649279953779, "x4": 2.468757801767279, "x5": 0.41231570501253945}}, null] +[[9, 0, 3], 9.0, {"submitted": 1558193565.0632014, "started": 1558193565.0684843, "finished": 1558193565.0784922}, {"loss": 0.9541610126386972, "info": {"x0": -5.734373260167763, "x1": 4.669433536699572, "x2": 4.58535145817638, "x3": -1.0297815831642847, "x4": 2.8671735309630595, "x5": 0.47045480146108415}}, null] +[[9, 0, 4], 9.0, {"submitted": 1558193565.0843964, "started": 1558193565.0848706, "finished": 1558193565.0992665}, {"loss": 0.3155359555886699, "info": {"x0": -3.4822871589062068, "x1": 6.946157074361412, "x2": 6.698412472440545, "x3": -2.496355983456575, "x4": 3.0822434509952945, "x5": 0.17842564512706882}}, null] +[[9, 0, 5], 9.0, {"submitted": 1558193565.1026099, "started": 1558193565.1030967, "finished": 1558193565.110386}, {"loss": 0.5324287616764458, "info": {"x0": -4.416520052076895, "x1": 4.307702017855394, "x2": 6.852274874490642, "x3": -1.389512642690954, "x4": 1.9337841269026637, "x5": 0.33481525271271734}}, null] +[[9, 0, 6], 9.0, {"submitted": 1558193565.1138167, "started": 1558193565.11441, "finished": 1558193565.1256163}, {"loss": 0.8226142011321272, "info": {"x0": -4.953796271065202, "x1": 7.016541626261826, "x2": 7.145940994395832, "x3": -1.570314796398601, "x4": 1.9731951610068998, "x5": 0.12018306839329473}}, null] +[[9, 0, 7], 9.0, {"submitted": 1558193565.128689, "started": 1558193565.1292014, "finished": 1558193565.1425083}, {"loss": 0.2981004063358462, "info": {"x0": -3.124451608529215, "x1": 7.909218347854959, "x2": 5.500172126755357, "x3": -0.29654187830527645, "x4": 3.1317349156535506, "x5": 0.48647826304192676}}, null] +[[9, 0, 8], 9.0, {"submitted": 1558193565.1457493, "started": 1558193565.1461818, "finished": 1558193565.1632404}, {"loss": 0.8222523736703445, "info": {"x0": -4.640924661278493, "x1": 5.191344332059304, "x2": 7.605872567885, "x3": -2.5105843771986893, "x4": 4.607157661240722, "x5": 0.31829349273472385}}, null] +[[9, 0, 0], 27.0, {"submitted": 1558193565.166795, "started": 1558193565.167341, "finished": 1558193565.182758}, {"loss": 0.27713704459244504, "info": {"x0": -2.48864985200095, "x1": 5.875600876392713, "x2": 4.124313154895843, "x3": -0.07868272350853989, "x4": 3.1897943719296937, "x5": 0.14699783269536743}}, null] +[[9, 0, 4], 27.0, {"submitted": 1558193565.1872108, "started": 1558193565.187665, "finished": 1558193565.2016356}, {"loss": 0.3028493881859104, "info": {"x0": -3.4822871589062068, "x1": 6.946157074361412, "x2": 6.698412472440545, "x3": -2.496355983456575, "x4": 3.0822434509952945, "x5": 0.17842564512706882}}, null] +[[9, 0, 7], 27.0, {"submitted": 1558193565.2103806, "started": 1558193565.2107527, "finished": 1558193565.2194297}, {"loss": 0.28891903910632594, "info": {"x0": -3.124451608529215, "x1": 7.909218347854959, "x2": 5.500172126755357, "x3": -0.29654187830527645, "x4": 3.1317349156535506, "x5": 0.48647826304192676}}, null] +[[9, 0, 0], 81.0, {"submitted": 1558193565.2219594, "started": 1558193565.2224066, "finished": 1558193565.2340295}, {"loss": 0.27713704459244504, "info": {"x0": -2.48864985200095, "x1": 5.875600876392713, "x2": 4.124313154895843, "x3": -0.07868272350853989, "x4": 3.1897943719296937, "x5": 0.14699783269536743}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/randomsearch/configs.json new file mode 100644 index 0000000..89f8e87 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/randomsearch/configs.json @@ -0,0 +1,40 @@ +[[0, 0, 0], {"x0": -2.6547486351091, "x1": 4.845089536599028, "x2": 7.775587109237138, "x3": -3.5187094499420346, "x4": 1.26036664289947, "x5": 0.10083144490583751}, {}] +[[0, 0, 1], {"x0": -2.8297252149950802, "x1": 5.157010592526723, "x2": 4.455613350074082, "x3": -3.4235306298211023, "x4": 4.736560008725361, "x5": 0.2750953324118983}, {}] +[[0, 0, 2], {"x0": -3.3233074950681476, "x1": 5.781612362552611, "x2": 5.955113485219311, "x3": -1.730294029217081, "x4": 2.5204792365419935, "x5": 0.37333297200075305}, {}] +[[0, 0, 3], {"x0": -4.824515564930737, "x1": 3.403969103506529, "x2": 5.678312696454037, "x3": -1.145749576468273, "x4": 3.9884393828495175, "x5": 0.16357376346292063}, {}] +[[1, 0, 0], {"x0": -2.5858409398473183, "x1": 4.286982880220303, "x2": 7.151325397392341, "x3": -3.4862594837698264, "x4": 3.2311714179140907, "x5": 0.3430767244967735}, {}] +[[1, 0, 1], {"x0": -5.23793001741581, "x1": 3.267090175927866, "x2": 7.428514524994208, "x3": -0.38897099135574154, "x4": 4.5621128525986965, "x5": 0.4171229385931486}, {}] +[[1, 0, 2], {"x0": -3.639330245041524, "x1": 6.590646316189612, "x2": 5.277100603623676, "x3": -1.8918617272810945, "x4": 4.760396565453922, "x5": 0.2158808271549817}, {}] +[[1, 0, 3], {"x0": -4.599458259648596, "x1": 6.1091986442062485, "x2": 7.332539473337237, "x3": -2.3567769811454076, "x4": 2.173254183781504, "x5": 0.2437785508737192}, {}] +[[2, 0, 0], {"x0": -3.058208356486502, "x1": 5.3235432264858735, "x2": 5.376273572708527, "x3": -1.7621019114851886, "x4": 2.9555181304558156, "x5": 0.28475060237160926}, {}] +[[2, 0, 1], {"x0": -5.60639766941887, "x1": 3.3895700429684767, "x2": 5.3922710161568395, "x3": -0.740599918163312, "x4": 1.4116507300144754, "x5": 0.4245198995868717}, {}] +[[2, 0, 2], {"x0": -2.4596318026050383, "x1": 6.598846338561126, "x2": 6.047585778641179, "x3": -2.6505251507344023, "x4": 2.5001532580611006, "x5": 0.06395424597897664}, {}] +[[2, 0, 3], {"x0": -5.113898266132995, "x1": 7.763073130532882, "x2": 6.6552883225344015, "x3": -1.9288735644052952, "x4": 2.116032213091668, "x5": 0.45235809389738385}, {}] +[[3, 0, 0], {"x0": -4.781377157767727, "x1": 6.946004935487597, "x2": 7.951064835129436, "x3": -0.49436370858416145, "x4": 1.6829811349838257, "x5": 0.10192282155122662}, {}] +[[3, 0, 1], {"x0": -3.2492688183505707, "x1": 7.337188248684226, "x2": 4.99911910725465, "x3": -2.709796644013216, "x4": 2.7794574674182893, "x5": 0.12078900711295204}, {}] +[[3, 0, 2], {"x0": -4.954400575473318, "x1": 5.886052038557678, "x2": 7.862756612816241, "x3": -3.1325041327532213, "x4": 3.351440322529074, "x5": 0.09603610955323338}, {}] +[[3, 0, 3], {"x0": -2.428043392587372, "x1": 7.968799815932819, "x2": 5.0217492330470535, "x3": -1.3669013581503746, "x4": 3.332385026635257, "x5": 0.4325412974374286}, {}] +[[4, 0, 0], {"x0": -3.512309395902878, "x1": 7.491159908409486, "x2": 5.901692869157131, "x3": -1.5562995573588352, "x4": 1.3278870547997985, "x5": 0.32357138945450864}, {}] +[[4, 0, 1], {"x0": -3.6874637948409115, "x1": 4.830949989961102, "x2": 4.4602142325747955, "x3": -1.762675601111177, "x4": 2.1777446848864592, "x5": 0.15393802843919452}, {}] +[[4, 0, 2], {"x0": -2.2207562611854925, "x1": 3.0035168533843466, "x2": 4.927498808571862, "x3": -0.9965339816514138, "x4": 2.6325606491805473, "x5": 0.22973060928598638}, {}] +[[4, 0, 3], {"x0": -4.862484661516874, "x1": 6.797010823264159, "x2": 7.822307073254821, "x3": -3.776088573842289, "x4": 3.7847374362833195, "x5": 0.20454674499362302}, {}] +[[5, 0, 0], {"x0": -3.3145423945289814, "x1": 5.290079711590144, "x2": 4.042348413685325, "x3": -1.0271788945859055, "x4": 1.9320930036780362, "x5": 0.18883090769693395}, {}] +[[5, 0, 1], {"x0": -3.8503549627641043, "x1": 5.1813921418062865, "x2": 5.788029400299834, "x3": -3.9288100046538945, "x4": 2.029024154457847, "x5": 0.2729863462844282}, {}] +[[5, 0, 2], {"x0": -2.7438448899479724, "x1": 7.340225115998527, "x2": 5.343609627072626, "x3": -0.2293745156602558, "x4": 2.492136043790359, "x5": 0.02922388716831381}, {}] +[[5, 0, 3], {"x0": -2.447363870218059, "x1": 6.935073374569095, "x2": 4.054956191343434, "x3": -0.3639212284451858, "x4": 1.5764796212705163, "x5": 0.25695107374134085}, {}] +[[6, 0, 0], {"x0": -5.692628780717472, "x1": 4.205888238487981, "x2": 5.088582351489347, "x3": -2.096051452363781, "x4": 4.273294295996902, "x5": 0.15119880767095045}, {}] +[[6, 0, 1], {"x0": -2.847235925841569, "x1": 3.42808359486831, "x2": 6.630676603117108, "x3": -0.886948554664968, "x4": 3.768074073436593, "x5": 0.42271560907142}, {}] +[[6, 0, 2], {"x0": -2.358731954842192, "x1": 7.573692626186123, "x2": 4.7726989275645355, "x3": -1.191603921973892, "x4": 4.7657023181564355, "x5": 0.05454512388091581}, {}] +[[6, 0, 3], {"x0": -4.633557835105547, "x1": 5.551287605369307, "x2": 7.191468077939509, "x3": -3.1761442053158695, "x4": 1.000228894602916, "x5": 0.019636157748919747}, {}] +[[7, 0, 0], {"x0": -4.25363072206088, "x1": 5.198652409765092, "x2": 7.991845683564323, "x3": -0.9968087607137708, "x4": 2.095029046967961, "x5": 0.45106178023478716}, {}] +[[7, 0, 1], {"x0": -2.991004134416573, "x1": 5.764363639338103, "x2": 4.566547730157369, "x3": -0.01946367591917486, "x4": 2.9967387622014248, "x5": 0.27333309818902857}, {}] +[[7, 0, 2], {"x0": -2.983751403223762, "x1": 7.059042939960344, "x2": 5.131233155784809, "x3": -2.3320357281326527, "x4": 2.8497463033523474, "x5": 0.1448652546162979}, {}] +[[7, 0, 3], {"x0": -2.5693745346179586, "x1": 4.18948379322564, "x2": 6.474714978757692, "x3": -1.8737189906626694, "x4": 2.2649180672726557, "x5": 0.34551649453866884}, {}] +[[8, 0, 0], {"x0": -5.902241021116399, "x1": 3.1643791265155254, "x2": 5.71706325614887, "x3": -1.6061494439052506, "x4": 3.3125011211663864, "x5": 0.09655756938627114}, {}] +[[8, 0, 1], {"x0": -3.0343029557979513, "x1": 4.883804891937151, "x2": 5.091264571496937, "x3": -0.9465114245091941, "x4": 3.444811214560246, "x5": 0.15218221250709602}, {}] +[[8, 0, 2], {"x0": -2.9043115179366974, "x1": 4.230580263742836, "x2": 5.30715321726306, "x3": -0.9528348007450211, "x4": 1.1754047872122366, "x5": 0.15834656636190192}, {}] +[[8, 0, 3], {"x0": -5.015459401562916, "x1": 3.891382163765665, "x2": 4.470356584896816, "x3": -1.664327279003845, "x4": 2.3570107513966283, "x5": 0.40740635175632334}, {}] +[[9, 0, 0], {"x0": -3.3515814455085686, "x1": 5.136053218422042, "x2": 7.70682898020971, "x3": -3.659334656595383, "x4": 2.4168106160021248, "x5": 0.24807711087592865}, {}] +[[9, 0, 1], {"x0": -2.3783060726114664, "x1": 7.192748188445658, "x2": 6.090432835978407, "x3": -0.4299594179681061, "x4": 3.3706041883138194, "x5": 0.4400574404649323}, {}] +[[9, 0, 2], {"x0": -2.6438260878934807, "x1": 6.1523039081581725, "x2": 4.1114829104558765, "x3": -3.086108327974316, "x4": 4.561684204574377, "x5": 0.22448595403168836}, {}] +[[9, 0, 3], {"x0": -3.181329597831493, "x1": 3.350736822785198, "x2": 7.361329609345649, "x3": -2.336950300862666, "x4": 2.0750437192648463, "x5": 0.4110609578462765}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/randomsearch/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/randomsearch/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/randomsearch/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/randomsearch/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/randomsearch/results.json new file mode 100644 index 0000000..ca34df2 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/randomsearch/results.json @@ -0,0 +1,40 @@ +[[0, 0, 0], 81, {"submitted": 1558193540.0729163, "started": 1558193540.073249, "finished": 1558193540.0864146}, {"loss": 0.06300316644383469, "info": {"x0": -2.6547486351091, "x1": 4.845089536599028, "x2": 7.775587109237138, "x3": -3.5187094499420346, "x4": 1.26036664289947, "x5": 0.10083144490583751}}, null] +[[0, 0, 1], 81, {"submitted": 1558193540.09077, "started": 1558193540.0913188, "finished": 1558193540.0982087}, {"loss": 0.515309813603496, "info": {"x0": -2.8297252149950802, "x1": 5.157010592526723, "x2": 4.455613350074082, "x3": -3.4235306298211023, "x4": 4.736560008725361, "x5": 0.2750953324118983}}, null] +[[0, 0, 2], 81, {"submitted": 1558193540.1002424, "started": 1558193540.1005423, "finished": 1558193540.1070523}, {"loss": 0.30526910894316606, "info": {"x0": -3.3233074950681476, "x1": 5.781612362552611, "x2": 5.955113485219311, "x3": -1.730294029217081, "x4": 2.5204792365419935, "x5": 0.37333297200075305}}, null] +[[0, 0, 3], 81, {"submitted": 1558193540.1088421, "started": 1558193540.1099286, "finished": 1558193540.1246474}, {"loss": 0.7080054228858326, "info": {"x0": -4.824515564930737, "x1": 3.403969103506529, "x2": 5.678312696454037, "x3": -1.145749576468273, "x4": 3.9884393828495175, "x5": 0.16357376346292063}}, null] +[[1, 0, 0], 81, {"submitted": 1558193540.1267989, "started": 1558193540.1271229, "finished": 1558193540.1362667}, {"loss": 0.09816825072698494, "info": {"x0": -2.5858409398473183, "x1": 4.286982880220303, "x2": 7.151325397392341, "x3": -3.4862594837698264, "x4": 3.2311714179140907, "x5": 0.3430767244967735}}, null] +[[1, 0, 1], 81, {"submitted": 1558193540.1384754, "started": 1558193540.138968, "finished": 1558193540.1500683}, {"loss": 0.6182722724980053, "info": {"x0": -5.23793001741581, "x1": 3.267090175927866, "x2": 7.428514524994208, "x3": -0.38897099135574154, "x4": 4.5621128525986965, "x5": 0.4171229385931486}}, null] +[[1, 0, 2], 81, {"submitted": 1558193540.1537642, "started": 1558193540.1549366, "finished": 1558193540.1631377}, {"loss": 0.6334916320842134, "info": {"x0": -3.639330245041524, "x1": 6.590646316189612, "x2": 5.277100603623676, "x3": -1.8918617272810945, "x4": 4.760396565453922, "x5": 0.2158808271549817}}, null] +[[1, 0, 3], 81, {"submitted": 1558193540.168881, "started": 1558193540.1694112, "finished": 1558193540.175906}, {"loss": 0.6861148782928691, "info": {"x0": -4.599458259648596, "x1": 6.1091986442062485, "x2": 7.332539473337237, "x3": -2.3567769811454076, "x4": 2.173254183781504, "x5": 0.2437785508737192}}, null] +[[2, 0, 0], 81, {"submitted": 1558193540.1819174, "started": 1558193540.1833928, "finished": 1558193540.1923819}, {"loss": 0.22899140496024284, "info": {"x0": -3.058208356486502, "x1": 5.3235432264858735, "x2": 5.376273572708527, "x3": -1.7621019114851886, "x4": 2.9555181304558156, "x5": 0.28475060237160926}}, null] +[[2, 0, 1], 81, {"submitted": 1558193540.1945567, "started": 1558193540.1951098, "finished": 1558193540.2053847}, {"loss": 0.9243781086945362, "info": {"x0": -5.60639766941887, "x1": 3.3895700429684767, "x2": 5.3922710161568395, "x3": -0.740599918163312, "x4": 1.4116507300144754, "x5": 0.4245198995868717}}, null] +[[2, 0, 2], 81, {"submitted": 1558193540.2098331, "started": 1558193540.2102683, "finished": 1558193540.2225528}, {"loss": 0.11881501526112256, "info": {"x0": -2.4596318026050383, "x1": 6.598846338561126, "x2": 6.047585778641179, "x3": -2.6505251507344023, "x4": 2.5001532580611006, "x5": 0.06395424597897664}}, null] +[[2, 0, 3], 81, {"submitted": 1558193540.2248042, "started": 1558193540.2251878, "finished": 1558193540.2340217}, {"loss": 0.9495929440984285, "info": {"x0": -5.113898266132995, "x1": 7.763073130532882, "x2": 6.6552883225344015, "x3": -1.9288735644052952, "x4": 2.116032213091668, "x5": 0.45235809389738385}}, null] +[[3, 0, 0], 81, {"submitted": 1558193540.2371373, "started": 1558193540.237672, "finished": 1558193540.249506}, {"loss": 0.4086838532483508, "info": {"x0": -4.781377157767727, "x1": 6.946004935487597, "x2": 7.951064835129436, "x3": -0.49436370858416145, "x4": 1.6829811349838257, "x5": 0.10192282155122662}}, null] +[[3, 0, 1], 81, {"submitted": 1558193540.2531426, "started": 1558193540.2534637, "finished": 1558193540.2595851}, {"loss": 0.518747169221488, "info": {"x0": -3.2492688183505707, "x1": 7.337188248684226, "x2": 4.99911910725465, "x3": -2.709796644013216, "x4": 2.7794574674182893, "x5": 0.12078900711295204}}, null] +[[3, 0, 2], 81, {"submitted": 1558193540.262084, "started": 1558193540.2626593, "finished": 1558193540.2765815}, {"loss": 0.6635006775110724, "info": {"x0": -4.954400575473318, "x1": 5.886052038557678, "x2": 7.862756612816241, "x3": -3.1325041327532213, "x4": 3.351440322529074, "x5": 0.09603610955323338}}, null] +[[3, 0, 3], 81, {"submitted": 1558193540.2788992, "started": 1558193540.2796133, "finished": 1558193540.2913625}, {"loss": 0.31671189177783027, "info": {"x0": -2.428043392587372, "x1": 7.968799815932819, "x2": 5.0217492330470535, "x3": -1.3669013581503746, "x4": 3.332385026635257, "x5": 0.4325412974374286}}, null] +[[4, 0, 0], 81, {"submitted": 1558193540.2935195, "started": 1558193540.2938762, "finished": 1558193540.3074918}, {"loss": 0.4344640430666199, "info": {"x0": -3.512309395902878, "x1": 7.491159908409486, "x2": 5.901692869157131, "x3": -1.5562995573588352, "x4": 1.3278870547997985, "x5": 0.32357138945450864}}, null] +[[4, 0, 1], 81, {"submitted": 1558193540.3115866, "started": 1558193540.3124032, "finished": 1558193540.3255413}, {"loss": 0.4922207119491766, "info": {"x0": -3.6874637948409115, "x1": 4.830949989961102, "x2": 4.4602142325747955, "x3": -1.762675601111177, "x4": 2.1777446848864592, "x5": 0.15393802843919452}}, null] +[[4, 0, 2], 81, {"submitted": 1558193540.327724, "started": 1558193540.3280776, "finished": 1558193540.3434708}, {"loss": 0.23150158238991905, "info": {"x0": -2.2207562611854925, "x1": 3.0035168533843466, "x2": 4.927498808571862, "x3": -0.9965339816514138, "x4": 2.6325606491805473, "x5": 0.22973060928598638}}, null] +[[4, 0, 3], 81, {"submitted": 1558193540.3468337, "started": 1558193540.347332, "finished": 1558193540.3590071}, {"loss": 0.7797602883654244, "info": {"x0": -4.862484661516874, "x1": 6.797010823264159, "x2": 7.822307073254821, "x3": -3.776088573842289, "x4": 3.7847374362833195, "x5": 0.20454674499362302}}, null] +[[5, 0, 0], 81, {"submitted": 1558193540.3617513, "started": 1558193540.3622396, "finished": 1558193540.3739624}, {"loss": 0.40601537410137833, "info": {"x0": -3.3145423945289814, "x1": 5.290079711590144, "x2": 4.042348413685325, "x3": -1.0271788945859055, "x4": 1.9320930036780362, "x5": 0.18883090769693395}}, null] +[[5, 0, 1], 81, {"submitted": 1558193540.3764029, "started": 1558193540.3771865, "finished": 1558193540.3881724}, {"loss": 0.5776345494865852, "info": {"x0": -3.8503549627641043, "x1": 5.1813921418062865, "x2": 5.788029400299834, "x3": -3.9288100046538945, "x4": 2.029024154457847, "x5": 0.2729863462844282}}, null] +[[5, 0, 2], 81, {"submitted": 1558193540.3908331, "started": 1558193540.3913448, "finished": 1558193540.4034398}, {"loss": 0.17985074426431238, "info": {"x0": -2.7438448899479724, "x1": 7.340225115998527, "x2": 5.343609627072626, "x3": -0.2293745156602558, "x4": 2.492136043790359, "x5": 0.02922388716831381}}, null] +[[5, 0, 3], 81, {"submitted": 1558193540.4063637, "started": 1558193540.406853, "finished": 1558193540.4185185}, {"loss": 0.33679330136605057, "info": {"x0": -2.447363870218059, "x1": 6.935073374569095, "x2": 4.054956191343434, "x3": -0.3639212284451858, "x4": 1.5764796212705163, "x5": 0.25695107374134085}}, null] +[[6, 0, 0], 81, {"submitted": 1558193540.4220042, "started": 1558193540.422641, "finished": 1558193540.4294174}, {"loss": 0.9544474589284725, "info": {"x0": -5.692628780717472, "x1": 4.205888238487981, "x2": 5.088582351489347, "x3": -2.096051452363781, "x4": 4.273294295996902, "x5": 0.15119880767095045}}, null] +[[6, 0, 1], 81, {"submitted": 1558193540.4352107, "started": 1558193540.4360266, "finished": 1558193540.4491804}, {"loss": 0.1399366785516463, "info": {"x0": -2.847235925841569, "x1": 3.42808359486831, "x2": 6.630676603117108, "x3": -0.886948554664968, "x4": 3.768074073436593, "x5": 0.42271560907142}}, null] +[[6, 0, 2], 81, {"submitted": 1558193540.4558046, "started": 1558193540.4562387, "finished": 1558193540.4684818}, {"loss": 0.2765038406590109, "info": {"x0": -2.358731954842192, "x1": 7.573692626186123, "x2": 4.7726989275645355, "x3": -1.191603921973892, "x4": 4.7657023181564355, "x5": 0.05454512388091581}}, null] +[[6, 0, 3], 81, {"submitted": 1558193540.4720685, "started": 1558193540.4726508, "finished": 1558193540.483524}, {"loss": 0.6639529615623581, "info": {"x0": -4.633557835105547, "x1": 5.551287605369307, "x2": 7.191468077939509, "x3": -3.1761442053158695, "x4": 1.000228894602916, "x5": 0.019636157748919747}}, null] +[[7, 0, 0], 81, {"submitted": 1558193540.4884918, "started": 1558193540.4889772, "finished": 1558193540.5008264}, {"loss": 0.33188602240281856, "info": {"x0": -4.25363072206088, "x1": 5.198652409765092, "x2": 7.991845683564323, "x3": -0.9968087607137708, "x4": 2.095029046967961, "x5": 0.45106178023478716}}, null] +[[7, 0, 1], 81, {"submitted": 1558193540.5115025, "started": 1558193540.5151749, "finished": 1558193540.527771}, {"loss": 0.37817729276999634, "info": {"x0": -2.991004134416573, "x1": 5.764363639338103, "x2": 4.566547730157369, "x3": -0.01946367591917486, "x4": 2.9967387622014248, "x5": 0.27333309818902857}}, null] +[[7, 0, 2], 81, {"submitted": 1558193540.532113, "started": 1558193540.5338507, "finished": 1558193540.5449321}, {"loss": 0.34292175663523083, "info": {"x0": -2.983751403223762, "x1": 7.059042939960344, "x2": 5.131233155784809, "x3": -2.3320357281326527, "x4": 2.8497463033523474, "x5": 0.1448652546162979}}, null] +[[7, 0, 3], 81, {"submitted": 1558193540.556462, "started": 1558193540.5570152, "finished": 1558193540.5695498}, {"loss": 0.11702849509380675, "info": {"x0": -2.5693745346179586, "x1": 4.18948379322564, "x2": 6.474714978757692, "x3": -1.8737189906626694, "x4": 2.2649180672726557, "x5": 0.34551649453866884}}, null] +[[8, 0, 0], 81, {"submitted": 1558193540.571686, "started": 1558193540.5719876, "finished": 1558193540.5840237}, {"loss": 0.9514699223911292, "info": {"x0": -5.902241021116399, "x1": 3.1643791265155254, "x2": 5.71706325614887, "x3": -1.6061494439052506, "x4": 3.3125011211663864, "x5": 0.09655756938627114}}, null] +[[8, 0, 1], 81, {"submitted": 1558193540.5875196, "started": 1558193540.5911307, "finished": 1558193540.6030107}, {"loss": 0.19450474879769705, "info": {"x0": -3.0343029557979513, "x1": 4.883804891937151, "x2": 5.091264571496937, "x3": -0.9465114245091941, "x4": 3.444811214560246, "x5": 0.15218221250709602}}, null] +[[8, 0, 2], 81, {"submitted": 1558193540.609804, "started": 1558193540.610416, "finished": 1558193540.6239204}, {"loss": 0.17641338864059158, "info": {"x0": -2.9043115179366974, "x1": 4.230580263742836, "x2": 5.30715321726306, "x3": -0.9528348007450211, "x4": 1.1754047872122366, "x5": 0.15834656636190192}}, null] +[[8, 0, 3], 81, {"submitted": 1558193540.6262152, "started": 1558193540.6266947, "finished": 1558193540.6373827}, {"loss": 0.9359339651783524, "info": {"x0": -5.015459401562916, "x1": 3.891382163765665, "x2": 4.470356584896816, "x3": -1.664327279003845, "x4": 2.3570107513966283, "x5": 0.40740635175632334}}, null] +[[9, 0, 0], 81, {"submitted": 1558193540.6397712, "started": 1558193540.6402411, "finished": 1558193540.650863}, {"loss": 0.20031659515235073, "info": {"x0": -3.3515814455085686, "x1": 5.136053218422042, "x2": 7.70682898020971, "x3": -3.659334656595383, "x4": 2.4168106160021248, "x5": 0.24807711087592865}}, null] +[[9, 0, 1], 81, {"submitted": 1558193540.6537123, "started": 1558193540.654061, "finished": 1558193540.661774}, {"loss": 0.19050203774348473, "info": {"x0": -2.3783060726114664, "x1": 7.192748188445658, "x2": 6.090432835978407, "x3": -0.4299594179681061, "x4": 3.3706041883138194, "x5": 0.4400574404649323}}, null] +[[9, 0, 2], 81, {"submitted": 1558193540.6693099, "started": 1558193540.6699395, "finished": 1558193540.67779}, {"loss": 0.445612844092875, "info": {"x0": -2.6438260878934807, "x1": 6.1523039081581725, "x2": 4.1114829104558765, "x3": -3.086108327974316, "x4": 4.561684204574377, "x5": 0.22448595403168836}}, null] +[[9, 0, 3], 81, {"submitted": 1558193540.6856809, "started": 1558193540.6861038, "finished": 1558193540.700569}, {"loss": 0.11399818744623302, "info": {"x0": -3.181329597831493, "x1": 3.350736822785198, "x2": 7.361329609345649, "x3": -2.336950300862666, "x4": 2.0750437192648463, "x5": 0.4110609578462765}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/configspace.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/configspace.json similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/configspace.json rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/letter/smac/run_1155199281/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/runhistory.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/runhistory.json new file mode 100644 index 0000000..fa8eec2 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/runhistory.json @@ -0,0 +1,968 @@ +{ + "data": [ + [ + [ + 1, + null, + 0 + ], + [ + 0.4528719992715948, + 0.014354705810546875, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 2, + null, + 0 + ], + [ + 0.07017186877415874, + 0.014907360076904297, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 3, + null, + 0 + ], + [ + 0.8585029382385863, + 0.015309333801269531, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 4, + null, + 0 + ], + [ + 0.9346901846422817, + 0.015706777572631836, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 5, + null, + 0 + ], + [ + 0.6391904094512986, + 0.015228986740112305, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 6, + null, + 0 + ], + [ + 0.5524423256425471, + 0.016057729721069336, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 7, + null, + 0 + ], + [ + 0.8156037950971677, + 0.016369104385375977, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 8, + null, + 0 + ], + [ + 0.3180461340572488, + 0.01711130142211914, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 9, + null, + 0 + ], + [ + 0.24027588704440017, + 0.01598811149597168, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 10, + null, + 0 + ], + [ + 0.9510854809359854, + 0.017585277557373047, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 11, + null, + 0 + ], + [ + 0.0703753985117486, + 0.016813039779663086, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 12, + null, + 0 + ], + [ + 0.10298507520242386, + 0.01937699317932129, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 13, + null, + 0 + ], + [ + 0.06978742599298596, + 0.16113948822021484, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 14, + null, + 0 + ], + [ + 0.4587064654807708, + 0.02355360984802246, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 15, + null, + 0 + ], + [ + 0.9540253270572462, + 0.023183345794677734, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 16, + null, + 0 + ], + [ + 0.7474898207937766, + 0.034863948822021484, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 17, + null, + 0 + ], + [ + 0.6397783770439502, + 0.036965131759643555, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 18, + null, + 0 + ], + [ + 0.6092039768805215, + 0.019435882568359375, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 19, + null, + 0 + ], + [ + 0.06571687099379363, + 0.027514934539794922, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 20, + null, + 0 + ], + [ + 0.9581637268903661, + 0.02065420150756836, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 21, + null, + 0 + ], + [ + 0.057892353191789814, + 0.022004365921020508, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 22, + null, + 0 + ], + [ + 0.9199457248563325, + 0.026740312576293945, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 23, + null, + 0 + ], + [ + 0.12150610289601702, + 0.026554107666015625, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 24, + null, + 0 + ], + [ + 0.6140660335498931, + 0.03556013107299805, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 25, + null, + 0 + ], + [ + 0.08570782581452921, + 0.05305123329162598, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 26, + null, + 0 + ], + [ + 0.10782451454275392, + 0.03132796287536621, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 27, + null, + 0 + ], + [ + 0.4960425114664339, + 0.032691001892089844, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 28, + null, + 0 + ], + [ + 0.17516960610716875, + 0.0191347599029541, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 29, + null, + 0 + ], + [ + 0.6412256910972387, + 0.024929046630859375, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 30, + null, + 0 + ], + [ + 0.16813658473719195, + 0.027304649353027344, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 31, + null, + 0 + ], + [ + 0.2768882829967207, + 0.023060083389282227, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 32, + null, + 0 + ], + [ + 0.9510063317252957, + 0.023854732513427734, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 33, + null, + 0 + ], + [ + 0.899706015011362, + 0.021187543869018555, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 34, + null, + 0 + ], + [ + 0.04242423898302448, + 0.020999908447265625, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 35, + null, + 0 + ], + [ + 0.9283355937691506, + 0.02264881134033203, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 36, + null, + 0 + ], + [ + 0.9549298957488549, + 0.026350736618041992, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 37, + null, + 0 + ], + [ + 0.30863862162542693, + 0.02458477020263672, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 38, + null, + 0 + ], + [ + 0.257349610546362, + 0.030022144317626953, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 39, + null, + 0 + ], + [ + 0.8382406128844233, + 0.02458786964416504, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 40, + null, + 0 + ], + [ + 0.1405472638136874, + 0.027614355087280273, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ] + ], + "config_origins": { + "1": "Random initial design.", + "2": "Random Search", + "3": "Random Search (sorted)", + "4": "Random Search", + "5": "Random Search (sorted)", + "6": "Random Search (sorted)", + "7": "Random Search", + "8": "Random Search (sorted)", + "9": "Random Search", + "10": "Random Search", + "11": "Random Search (sorted)", + "12": "Random Search", + "13": "Random Search (sorted)", + "14": "Random Search (sorted)", + "15": "Random Search", + "16": "Random Search", + "17": "Random Search", + "18": "Random Search", + "19": "Random Search (sorted)", + "20": "Random Search", + "21": "Random Search (sorted)", + "22": "Random Search", + "23": "Random Search", + "24": "Random Search", + "25": "Random Search (sorted)", + "26": "Random Search (sorted)", + "27": "Random Search", + "28": "Random Search", + "29": "Random Search", + "30": "Random Search", + "31": "Random Search (sorted)", + "32": "Random Search", + "33": "Random Search", + "34": "Random Search (sorted)", + "35": "Random Search", + "36": "Random Search", + "37": "Random Search", + "38": "Random Search (sorted)", + "39": "Random Search", + "40": "Random Search" + }, + "configs": { + "1": { + "x0": -2.6825397313802792, + "x1": 7.619548198595208, + "x2": 4.145019634442923, + "x3": -1.1709274274827868, + "x4": 3.083628549201582, + "x5": 0.4016129149717395 + }, + "2": { + "x0": -3.0497673710891613, + "x1": 5.330919757007382, + "x2": 6.940968125883387, + "x3": -1.539624143253262, + "x4": 3.0835006236294973, + "x5": 0.13989358695433468 + }, + "3": { + "x0": -5.395513356124596, + "x1": 5.084959487636455, + "x2": 7.34777900625234, + "x3": -1.93133180134928, + "x4": 1.204258586528752, + "x5": 0.09567662163075563 + }, + "4": { + "x0": -5.630009424286204, + "x1": 5.000700720538175, + "x2": 6.703410231077084, + "x3": -2.9391976451715647, + "x4": 4.018605783719571, + "x5": 0.30514278233782804 + }, + "5": { + "x0": -3.8955685625162046, + "x1": 6.466272297741886, + "x2": 5.684089881150213, + "x3": -2.8428301384501182, + "x4": 2.434019239752562, + "x5": 0.32451869580378134 + }, + "6": { + "x0": -3.7758422328406898, + "x1": 3.393403288028304, + "x2": 4.704357281050174, + "x3": -3.326477863732902, + "x4": 1.8053202542308333, + "x5": 0.07780276694921373 + }, + "7": { + "x0": -5.462748531766204, + "x1": 3.5870668332063005, + "x2": 7.459537425888046, + "x3": -1.118226197526984, + "x4": 4.489207050821473, + "x5": 0.29910856170967043 + }, + "8": { + "x0": -3.029875389046214, + "x1": 7.874297864610071, + "x2": 5.260502768513728, + "x3": -2.2040985592512983, + "x4": 1.8604161354150155, + "x5": 0.12060544589523264 + }, + "9": { + "x0": -2.100638058399733, + "x1": 7.257147794881787, + "x2": 5.605853545338103, + "x3": -3.7017947311849984, + "x4": 2.118984509628602, + "x5": 0.3996031169295782 + }, + "10": { + "x0": -5.365623615020853, + "x1": 5.71710716369326, + "x2": 5.441195564816974, + "x3": -2.0950589618040025, + "x4": 1.1348317091278557, + "x5": 0.072679970369461 + }, + "11": { + "x0": -2.5522351827583134, + "x1": 3.9520604479995862, + "x2": 6.750788609559877, + "x3": -1.2764748279671099, + "x4": 3.0344938220502837, + "x5": 0.24608546829428474 + }, + "12": { + "x0": -2.015848580110051, + "x1": 3.1497428615832925, + "x2": 7.836707499396265, + "x3": -0.9541878004803745, + "x4": 3.7499636573397734, + "x5": 0.019216668718772645 + }, + "13": { + "x0": -2.080773012338321, + "x1": 7.506384712120714, + "x2": 6.896214129221207, + "x3": -2.72928328234397, + "x4": 2.272471024389858, + "x5": 0.2980244053518462 + }, + "14": { + "x0": -3.1812347587959264, + "x1": 6.7472398768106405, + "x2": 5.193146785196609, + "x3": -3.9832947472624394, + "x4": 2.8507365360479264, + "x5": 0.12863752955901653 + }, + "15": { + "x0": -5.554552623786464, + "x1": 4.010195472678546, + "x2": 5.786429308076418, + "x3": -1.6284375605236114, + "x4": 4.056962170443873, + "x5": 0.04045200976352814 + }, + "16": { + "x0": -5.9379231448395355, + "x1": 4.2966403333245475, + "x2": 7.728485765965034, + "x3": -0.7492960560358193, + "x4": 4.065226515289667, + "x5": 0.09938689321458272 + }, + "17": { + "x0": -4.9738015476886615, + "x1": 3.2768768556077723, + "x2": 7.5294543759656865, + "x3": -1.6698839758407185, + "x4": 2.599167982995808, + "x5": 0.46424624831794625 + }, + "18": { + "x0": -3.869930287620709, + "x1": 5.521622500395326, + "x2": 4.150372971159982, + "x3": -3.1659571478582116, + "x4": 1.1865369897274447, + "x5": 0.24584735762143395 + }, + "19": { + "x0": -2.3405863434213656, + "x1": 5.792361305300507, + "x2": 7.327439884780533, + "x3": -2.3234915721205947, + "x4": 1.4778937397419685, + "x5": 0.028695689863961982 + }, + "20": { + "x0": -4.597749727499114, + "x1": 7.833590197862645, + "x2": 4.7640590470968505, + "x3": -3.8507129764848016, + "x4": 4.546918670109736, + "x5": 0.2687896683422189 + }, + "21": { + "x0": -2.5491670410058593, + "x1": 6.425536998040009, + "x2": 6.936642202921141, + "x3": -1.3976295959426155, + "x4": 4.26709788987649, + "x5": 0.10374118577443192 + }, + "22": { + "x0": -4.857458473705449, + "x1": 4.408972633609033, + "x2": 5.224781570332222, + "x3": -2.0818337380999687, + "x4": 2.703973235968777, + "x5": 0.43765401141663324 + }, + "23": { + "x0": -2.8145607435103734, + "x1": 5.988161836017237, + "x2": 6.101224366228945, + "x3": -1.270568162128019, + "x4": 4.605255574061018, + "x5": 0.11082583939945118 + }, + "24": { + "x0": -4.149967789845983, + "x1": 4.899627930086011, + "x2": 5.632104418404517, + "x3": -2.969371533482978, + "x4": 2.5542780441332336, + "x5": 0.3924258348453976 + }, + "25": { + "x0": -3.256985587085902, + "x1": 5.898226583673113, + "x2": 7.202994513656357, + "x3": -1.2137805905550314, + "x4": 4.93957979981497, + "x5": 0.09894189456509545 + }, + "26": { + "x0": -3.477849429743794, + "x1": 3.4018796789425756, + "x2": 6.704996190572458, + "x3": -1.3208837252543395, + "x4": 1.6994947178801278, + "x5": 0.023525701765563956 + }, + "27": { + "x0": -3.867517575316467, + "x1": 4.29772996308754, + "x2": 5.141990513875443, + "x3": -1.939339171006953, + "x4": 2.0314378829583686, + "x5": 0.27487619825513704 + }, + "28": { + "x0": -3.809229585613068, + "x1": 6.1648025835991405, + "x2": 7.690652387241198, + "x3": -0.26024964398378936, + "x4": 2.0990309131861067, + "x5": 0.4031607833177203 + }, + "29": { + "x0": -4.174258302130571, + "x1": 6.689691138657078, + "x2": 5.555107196550347, + "x3": -0.8437769821824048, + "x4": 3.480812882669032, + "x5": 0.04459863470195058 + }, + "30": { + "x0": -2.6252127113288184, + "x1": 3.9337358078095344, + "x2": 5.378152754416812, + "x3": -1.1012236963825215, + "x4": 1.7852931850422697, + "x5": 0.24021109204119134 + }, + "31": { + "x0": -3.6420464217422746, + "x1": 7.146306962640255, + "x2": 7.475938686318765, + "x3": -2.7579544108439635, + "x4": 4.506973857857217, + "x5": 0.10808211624535924 + }, + "32": { + "x0": -5.481382691005324, + "x1": 6.956422427258364, + "x2": 5.2634934452196385, + "x3": -1.9038363453315261, + "x4": 2.68417185818625, + "x5": 0.025037047821805825 + }, + "33": { + "x0": -4.161780944410102, + "x1": 7.234882064545725, + "x2": 5.057378269200143, + "x3": -1.8208745575118752, + "x4": 4.164062317070399, + "x5": 0.059093378191333534 + }, + "34": { + "x0": -2.459187504000582, + "x1": 5.380176653573916, + "x2": 7.223467832882394, + "x3": -2.232403616774815, + "x4": 2.916420099006719, + "x5": 0.07248265530684728 + }, + "35": { + "x0": -5.278678438742547, + "x1": 5.121770014656238, + "x2": 5.893482833417657, + "x3": -1.2855598992539834, + "x4": 3.819314290137515, + "x5": 0.06662184030976237 + }, + "36": { + "x0": -5.621320345501076, + "x1": 7.988818413440005, + "x2": 6.192349220916241, + "x3": -3.3275754973927287, + "x4": 1.8290294963068616, + "x5": 0.2565311219952655 + }, + "37": { + "x0": -2.2527390583445284, + "x1": 7.509886338401627, + "x2": 5.073404711511355, + "x3": -0.3951124414521088, + "x4": 3.38537938297676, + "x5": 0.41501576110714056 + }, + "38": { + "x0": -3.8491296998772375, + "x1": 3.426865643150186, + "x2": 6.986075491872297, + "x3": -2.567605356486369, + "x4": 4.255786435190128, + "x5": 0.3365935174633671 + }, + "39": { + "x0": -5.745547077209259, + "x1": 3.03691672482893, + "x2": 6.924720594081377, + "x3": -0.2876435273549176, + "x4": 3.4026259579500775, + "x5": 0.23376022520086215 + }, + "40": { + "x0": -2.929119590852462, + "x1": 5.058496763577683, + "x2": 6.916874702156462, + "x3": -3.3013345309026123, + "x4": 2.2965108715656544, + "x5": 0.3787329343465649 + } + } +} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/scenario.txt b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/scenario.txt similarity index 67% rename from examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/scenario.txt rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/scenario.txt index 305a408..2691188 100644 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/toyfunction/smac/run_213378335/scenario.txt +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/scenario.txt @@ -7,6 +7,6 @@ cost_for_crash = 2147483647.0 algo_runs_timelimit = inf wallclock_limit = inf always_race_default = False -ta_run_limit = 2.0 +ta_run_limit = 40.0 initial_incumbent = RANDOM -pcs_fn = opt_results/small_bnn/toyfunction/smac/run_213378335/configspace.json +pcs_fn = ../opt_results/paramnet_surrogates/letter/smac/run_727669348/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/stats.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/stats.json new file mode 100644 index 0000000..438bb94 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/stats.json @@ -0,0 +1 @@ +{"ta_runs": 40, "n_configs": 40, "wallclock_time_used": 47.32938528060913, "ta_time_used": 1.0863277912139893, "inc_changed": 6, "_n_configs_per_intensify": 38, "_n_calls_of_intensify": 19, "_ema_n_configs_per_intensifiy": 2.0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/traj_aclib2.json new file mode 100644 index 0000000..3a01deb --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/traj_aclib2.json @@ -0,0 +1,7 @@ +{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 9.703636169433594e-05, "evaluations": 0, "cost": 2147483648, "incumbent": ["x0='-2.6825397313802792'", "x1='7.619548198595208'", "x2='4.145019634442923'", "x3='-1.1709274274827868'", "x4='3.083628549201582'", "x5='0.4016129149717395'"], "origin": "Random initial design."} +{"cpu_time": 0.014354705810546875, "total_cpu_time": null, "wallclock_time": 0.03343462944030762, "evaluations": 1, "cost": 0.4528719992715948, "incumbent": ["x0='-2.6825397313802792'", "x1='7.619548198595208'", "x2='4.145019634442923'", "x3='-1.1709274274827868'", "x4='3.083628549201582'", "x5='0.4016129149717395'"], "origin": "Random initial design."} +{"cpu_time": 0.029262065887451172, "total_cpu_time": null, "wallclock_time": 0.3221702575683594, "evaluations": 2, "cost": 0.07017186877415874, "incumbent": ["x0='-3.0497673710891613'", "x1='5.330919757007382'", "x2='6.940968125883387'", "x3='-1.539624143253262'", "x4='3.0835006236294973'", "x5='0.13989358695433468'"], "origin": "Random Search"} +{"cpu_time": 0.35594820976257324, "total_cpu_time": null, "wallclock_time": 7.989388465881348, "evaluations": 13, "cost": 0.06978742599298596, "incumbent": ["x0='-2.080773012338321'", "x1='7.506384712120714'", "x2='6.896214129221207'", "x3='-2.72928328234397'", "x4='2.272471024389858'", "x5='0.2980244053518462'"], "origin": "Random Search (sorted)"} +{"cpu_time": 0.5214650630950928, "total_cpu_time": null, "wallclock_time": 16.556226015090942, "evaluations": 19, "cost": 0.06571687099379363, "incumbent": ["x0='-2.3405863434213656'", "x1='5.792361305300507'", "x2='7.327439884780533'", "x3='-2.3234915721205947'", "x4='1.4778937397419685'", "x5='0.028695689863961982'"], "origin": "Random Search (sorted)"} +{"cpu_time": 0.5641236305236816, "total_cpu_time": null, "wallclock_time": 19.506958723068237, "evaluations": 21, "cost": 0.057892353191789814, "incumbent": ["x0='-2.5491670410058593'", "x1='6.425536998040009'", "x2='6.936642202921141'", "x3='-1.3976295959426155'", "x4='4.26709788987649'", "x5='0.10374118577443192'"], "origin": "Random Search (sorted)"} +{"cpu_time": 0.9305191040039062, "total_cpu_time": null, "wallclock_time": 39.099194049835205, "evaluations": 34, "cost": 0.04242423898302448, "incumbent": ["x0='-2.459187504000582'", "x1='5.380176653573916'", "x2='7.223467832882394'", "x3='-2.232403616774815'", "x4='2.916420099006719'", "x5='0.07248265530684728'"], "origin": "Random Search (sorted)"} diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/traj_old.csv b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/traj_old.csv new file mode 100644 index 0000000..1de1d8c --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/letter/smac/run_727669348/traj_old.csv @@ -0,0 +1,8 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." +0.000000, 2147483648.000000, 0.000097, 1, 0.000097, x0='-2.6825397313802792', x1='7.619548198595208', x2='4.145019634442923', x3='-1.1709274274827868', x4='3.083628549201582', x5='0.4016129149717395' +0.014355, 0.452872, 0.033435, 1, 0.019080, x0='-2.6825397313802792', x1='7.619548198595208', x2='4.145019634442923', x3='-1.1709274274827868', x4='3.083628549201582', x5='0.4016129149717395' +0.029262, 0.070172, 0.322170, 2, 0.292908, x0='-3.0497673710891613', x1='5.330919757007382', x2='6.940968125883387', x3='-1.539624143253262', x4='3.0835006236294973', x5='0.13989358695433468' +0.355948, 0.069787, 7.989388, 3, 7.633440, x0='-2.080773012338321', x1='7.506384712120714', x2='6.896214129221207', x3='-2.72928328234397', x4='2.272471024389858', x5='0.2980244053518462' +0.521465, 0.065717, 16.556226, 4, 16.034761, x0='-2.3405863434213656', x1='5.792361305300507', x2='7.327439884780533', x3='-2.3234915721205947', x4='1.4778937397419685', x5='0.028695689863961982' +0.564124, 0.057892, 19.506959, 5, 18.942835, x0='-2.5491670410058593', x1='6.425536998040009', x2='6.936642202921141', x3='-1.3976295959426155', x4='4.26709788987649', x5='0.10374118577443192' +0.930519, 0.042424, 39.099194, 6, 38.168675, x0='-2.459187504000582', x1='5.380176653573916', x2='7.223467832882394', x3='-2.232403616774815', x4='2.916420099006719', x5='0.07248265530684728' diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/bohb/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/bohb/configs.json new file mode 100644 index 0000000..a2bc834 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/bohb/configs.json @@ -0,0 +1,128 @@ +[[0, 0, 0], {"x0": -3.2159005969264887, "x1": 6.647702595351151, "x2": 5.817987928916166, "x3": -3.1336273967276873, "x4": 3.652006042335498, "x5": 0.209604100539998}, {"model_based_pick": false}] +[[0, 0, 1], {"x0": -4.057783742006659, "x1": 3.5439814859727314, "x2": 6.228637858641273, "x3": -2.3155493656240846, "x4": 2.6102347079228077, "x5": 0.4949490319754148}, {"model_based_pick": false}] +[[0, 0, 2], {"x0": -4.4583191787947545, "x1": 4.477969549049127, "x2": 7.256907951050151, "x3": -0.9004839330662304, "x4": 2.149665867670106, "x5": 0.16482812450178402}, {"model_based_pick": false}] +[[0, 0, 3], {"x0": -4.096163655499607, "x1": 3.7132106893805386, "x2": 5.179867621379582, "x3": -3.8871326532440413, "x4": 4.0158222349151425, "x5": 0.4644048615027159}, {"model_based_pick": false}] +[[0, 0, 4], {"x0": -3.2487623825387306, "x1": 7.2465086551670295, "x2": 5.421778639703536, "x3": -3.3861612010007907, "x4": 3.0530200859147913, "x5": 0.48366551335331076}, {"model_based_pick": false}] +[[0, 0, 5], {"x0": -4.315011111742705, "x1": 6.3671122643865985, "x2": 4.995482755379959, "x3": -3.428018973270414, "x4": 2.602454808852079, "x5": 0.276834497438408}, {"model_based_pick": false}] +[[0, 0, 6], {"x0": -4.650327658304253, "x1": 3.0349079368898786, "x2": 7.596885334658632, "x3": -1.5241105091795455, "x4": 1.5845433489298966, "x5": 0.4916459702850172}, {"model_based_pick": false}] +[[0, 0, 7], {"x0": -3.748701151241837, "x1": 7.446017944946547, "x2": 4.93592212227119, "x3": -3.199731722543426, "x4": 2.78503333092113, "x5": 0.01929806205535023}, {"model_based_pick": false}] +[[0, 0, 8], {"x0": -5.395986246654427, "x1": 3.3682352576035925, "x2": 4.852754398903345, "x3": -3.389379633129783, "x4": 1.4895153143963915, "x5": 0.4611551043570413}, {"model_based_pick": false}] +[[0, 0, 9], {"x0": -4.09313580898814, "x1": 3.005307390344936, "x2": 5.401065201538199, "x3": -1.0696856739178542, "x4": 1.773453952147598, "x5": 0.2429319178239795}, {"model_based_pick": false}] +[[0, 0, 10], {"x0": -4.193603588120851, "x1": 7.344889139298167, "x2": 4.758523664814993, "x3": -3.915023171621218, "x4": 1.9359500842845203, "x5": 0.4237411757117606}, {"model_based_pick": false}] +[[0, 0, 11], {"x0": -2.672080447242335, "x1": 6.3134016590950175, "x2": 4.428568860130058, "x3": -1.9379883113700127, "x4": 2.312213263388846, "x5": 0.4548517723514774}, {"model_based_pick": false}] +[[0, 0, 12], {"x0": -3.0301859438785392, "x1": 6.267424515620192, "x2": 4.221640044086556, "x3": -1.5174690622889693, "x4": 1.7218850320147343, "x5": 0.31948134873693795}, {"model_based_pick": false}] +[[0, 0, 13], {"x0": -2.4767898588822246, "x1": 7.588958339159421, "x2": 4.753523325076504, "x3": -3.262433678398985, "x4": 4.073016619499661, "x5": 0.35540420389903915}, {"model_based_pick": false}] +[[0, 0, 14], {"x0": -4.018239817627127, "x1": 7.783462481073862, "x2": 4.905201478586845, "x3": -3.7720021765629963, "x4": 1.4560487672761577, "x5": 0.16037390298296922}, {"model_based_pick": true}] +[[0, 0, 15], {"x0": -3.5903682366049248, "x1": 7.502609250021345, "x2": 4.923251598282015, "x3": -2.160917179725897, "x4": 2.8838562561420282, "x5": 0.04723151090746858}, {"model_based_pick": true}] +[[0, 0, 16], {"x0": -4.568936037772298, "x1": 4.632045301639488, "x2": 7.377827633759605, "x3": -1.7098870290133656, "x4": 1.215242896372565, "x5": 0.4768769071034539}, {"model_based_pick": false}] +[[0, 0, 17], {"x0": -3.0503976448840087, "x1": 6.198520144117668, "x2": 4.3147711527618595, "x3": -2.0186589025691433, "x4": 1.3986875179903402, "x5": 0.044661448805267685}, {"model_based_pick": true}] +[[0, 0, 18], {"x0": -2.940708602975882, "x1": 5.452877167568279, "x2": 5.044128785929012, "x3": -2.736005302543562, "x4": 2.490816274132235, "x5": 0.19567679973053326}, {"model_based_pick": false}] +[[0, 0, 19], {"x0": -3.398552001007181, "x1": 6.630573862525226, "x2": 4.105490744896253, "x3": -1.3573257759136785, "x4": 2.168110116881894, "x5": 0.015450579667217235}, {"model_based_pick": true}] +[[0, 0, 20], {"x0": -2.6673369380578427, "x1": 3.0574262855826784, "x2": 5.345556825240093, "x3": -1.0280972334460374, "x4": 1.4507188121362131, "x5": 0.08799778039303702}, {"model_based_pick": false}] +[[0, 0, 21], {"x0": -2.22964530090845, "x1": 3.14453784572461, "x2": 4.199716733069446, "x3": -2.6557762747904388, "x4": 2.507382705719628, "x5": 0.06906426561188272}, {"model_based_pick": false}] +[[0, 0, 22], {"x0": -5.517479235615568, "x1": 4.696945341277284, "x2": 5.788702673352905, "x3": -2.250806505286718, "x4": 2.567304325587476, "x5": 0.2689128977301084}, {"model_based_pick": false}] +[[0, 0, 23], {"x0": -3.211828683027162, "x1": 7.570661113347098, "x2": 4.338874933859894, "x3": -0.7750009311086821, "x4": 1.736708229486438, "x5": 0.02071169232154754}, {"model_based_pick": true}] +[[0, 0, 24], {"x0": -3.346754277068704, "x1": 6.563478477422331, "x2": 4.470084479128998, "x3": -1.3772463858905457, "x4": 2.4183970042333005, "x5": 0.036111433500418365}, {"model_based_pick": true}] +[[0, 0, 25], {"x0": -2.745565347432438, "x1": 7.538088902666726, "x2": 6.045070149568031, "x3": -0.7033852332216166, "x4": 3.3761241293338515, "x5": 0.32909828009683734}, {"model_based_pick": false}] +[[0, 0, 26], {"x0": -2.0690706243664736, "x1": 5.805990009044359, "x2": 4.530782301194661, "x3": -2.083119543468002, "x4": 1.1402100068512517, "x5": 0.025056272944793456}, {"model_based_pick": false}] +[[1, 0, 0], {"x0": -2.429353332855517, "x1": 6.581091565035357, "x2": 6.776726779551046, "x3": -1.2629813710593822, "x4": 3.9679584407210373, "x5": 0.33782846159309915}, {"model_based_pick": true}] +[[1, 0, 1], {"x0": -2.805841144996098, "x1": 6.927217682736359, "x2": 6.341916166869179, "x3": -0.20897406304319865, "x4": 2.7675770026456052, "x5": 0.3907256026024867}, {"model_based_pick": true}] +[[1, 0, 2], {"x0": -2.2379139891239825, "x1": 6.722090091544738, "x2": 6.369452781358184, "x3": -0.7499129047041224, "x4": 3.8837228455717296, "x5": 0.37239099826018435}, {"model_based_pick": true}] +[[1, 0, 3], {"x0": -2.066125256656272, "x1": 6.1584051034204625, "x2": 6.221402972689734, "x3": -0.7334944002085475, "x4": 4.968636054059556, "x5": 0.3183717154290149}, {"model_based_pick": true}] +[[1, 0, 4], {"x0": -3.6692524336978507, "x1": 6.348426755829321, "x2": 5.055521776142618, "x3": -3.957360102432501, "x4": 3.9894986119995854, "x5": 0.21799612878688268}, {"model_based_pick": false}] +[[1, 0, 5], {"x0": -3.349204474293383, "x1": 3.1769978355465747, "x2": 4.612071567882443, "x3": -1.882693695512624, "x4": 2.464288667267464, "x5": 0.033971109446745695}, {"model_based_pick": true}] +[[1, 0, 6], {"x0": -2.795668920591821, "x1": 4.875004254258721, "x2": 5.821243495836557, "x3": -2.934052068226191, "x4": 1.386065187787178, "x5": 0.24411265488727338}, {"model_based_pick": true}] +[[1, 0, 7], {"x0": -2.83595608859663, "x1": 6.429733763084675, "x2": 4.7143766957632955, "x3": -2.2451237672313993, "x4": 2.3585825137539973, "x5": 0.06620440382770454}, {"model_based_pick": false}] +[[1, 0, 8], {"x0": -2.972164361709637, "x1": 4.038968972487884, "x2": 6.818904298530258, "x3": -1.1637403857513227, "x4": 1.1431576448857896, "x5": 0.3002945751506552}, {"model_based_pick": true}] +[[2, 0, 0], {"x0": -2.8629306936506045, "x1": 3.495432851965556, "x2": 5.968324950319661, "x3": -0.9726317222159753, "x4": 2.0673569289478766, "x5": 0.4222405479910781}, {"model_based_pick": true}] +[[2, 0, 1], {"x0": -2.8911926219325053, "x1": 3.6625973965816017, "x2": 7.069410388377445, "x3": -0.8570053713438952, "x4": 1.37095208585614, "x5": 0.14851005493723893}, {"model_based_pick": true}] +[[2, 0, 2], {"x0": -2.0447268621125443, "x1": 3.5409179169550313, "x2": 7.016790776353917, "x3": -2.9330083029480027, "x4": 2.5741870491838656, "x5": 0.3097246705544897}, {"model_based_pick": false}] +[[2, 0, 3], {"x0": -2.7997893186678553, "x1": 3.4095269069903673, "x2": 7.23828441540056, "x3": -1.1746661800448246, "x4": 2.7021002737457636, "x5": 0.2591401723808331}, {"model_based_pick": true}] +[[2, 0, 4], {"x0": -5.39836073066861, "x1": 7.722062559075901, "x2": 7.979996030230323, "x3": -3.9259371182888856, "x4": 3.0169719971035036, "x5": 0.44675690258484085}, {"model_based_pick": false}] +[[2, 0, 5], {"x0": -3.3939022213797285, "x1": 4.0891541439415, "x2": 7.211696847621109, "x3": -0.8291354866076523, "x4": 1.7256952965294041, "x5": 0.1948711361516247}, {"model_based_pick": true}] +[[3, 0, 0], {"x0": -3.0350837274738067, "x1": 4.5434108989568625, "x2": 7.82982259026798, "x3": -1.5455116024767466, "x4": 1.9579766164640238, "x5": 0.3202556220757323}, {"model_based_pick": true}] +[[3, 0, 1], {"x0": -5.7042039451576745, "x1": 7.891174239382115, "x2": 7.543632743251426, "x3": -2.9326154802530406, "x4": 3.3631695632554823, "x5": 0.2857824904628166}, {"model_based_pick": false}] +[[3, 0, 2], {"x0": -2.7192218630081717, "x1": 3.049119114947671, "x2": 7.402511748281913, "x3": -3.267270566644823, "x4": 1.0946631743504558, "x5": 0.48383467971915806}, {"model_based_pick": true}] +[[3, 0, 3], {"x0": -3.1004835047332913, "x1": 3.4686791995797814, "x2": 7.792616508710651, "x3": -2.1930042276164405, "x4": 1.4377020115039287, "x5": 0.30245642701493075}, {"model_based_pick": true}] +[[4, 0, 0], {"x0": -3.2987233069731206, "x1": 3.16684316726557, "x2": 7.518128283659995, "x3": -0.2358517223370047, "x4": 2.420109794159857, "x5": 0.2775640019340102}, {"model_based_pick": true}] +[[4, 0, 1], {"x0": -2.5247706142369997, "x1": 3.139921398824432, "x2": 7.248202351917707, "x3": -3.4440419562102673, "x4": 2.506573535733833, "x5": 0.3360686099041359}, {"model_based_pick": true}] +[[4, 0, 2], {"x0": -2.878350384558435, "x1": 5.313252603350495, "x2": 7.5151463987352285, "x3": -1.2319836290849864, "x4": 1.893307088249255, "x5": 0.11500559542447109}, {"model_based_pick": true}] +[[4, 0, 3], {"x0": -3.0451880642024594, "x1": 7.874697357882464, "x2": 5.255096555675857, "x3": -0.8170164427924256, "x4": 4.207923757744259, "x5": 0.2950568077431696}, {"model_based_pick": false}] +[[4, 0, 4], {"x0": -3.2433237978008522, "x1": 5.056049797420319, "x2": 7.736112043231189, "x3": -1.6486572451389385, "x4": 2.239075075450563, "x5": 0.265015285548961}, {"model_based_pick": true}] +[[4, 0, 5], {"x0": -2.6782910316394593, "x1": 3.785551309446687, "x2": 7.655028669213177, "x3": -2.8956926102327385, "x4": 1.835705857364588, "x5": 0.16308926290034062}, {"model_based_pick": true}] +[[4, 0, 6], {"x0": -5.07423268350911, "x1": 4.16159441984089, "x2": 5.029025596383379, "x3": -1.4133061104876683, "x4": 4.854015090757086, "x5": 0.11389999482581392}, {"model_based_pick": false}] +[[4, 0, 7], {"x0": -3.2454108882959924, "x1": 3.9493333502288057, "x2": 7.78271146127613, "x3": -0.209252046776224, "x4": 2.196431464542076, "x5": 0.22351355842724396}, {"model_based_pick": true}] +[[4, 0, 8], {"x0": -4.543318231311219, "x1": 3.7451318167826146, "x2": 4.388131535412531, "x3": -2.2150576714769863, "x4": 4.254083879918431, "x5": 0.030066067883180947}, {"model_based_pick": false}] +[[4, 0, 9], {"x0": -2.8233306698902156, "x1": 4.211072879932996, "x2": 6.090540833421254, "x3": -3.5037103407347256, "x4": 1.7533784195547937, "x5": 0.4033015774730685}, {"model_based_pick": false}] +[[4, 0, 10], {"x0": -2.709748985628248, "x1": 3.751441485826219, "x2": 6.423792887768704, "x3": -1.044771882375466, "x4": 1.293090153140704, "x5": 0.12013487853649726}, {"model_based_pick": true}] +[[4, 0, 11], {"x0": -2.635273612285193, "x1": 3.490137119089677, "x2": 6.874094757669017, "x3": -1.4429514304917777, "x4": 1.764279299688229, "x5": 0.4159073053652158}, {"model_based_pick": true}] +[[4, 0, 12], {"x0": -5.554038888335878, "x1": 3.395084340357728, "x2": 6.793812178567567, "x3": -2.536275349464753, "x4": 2.549379305770417, "x5": 0.4732492863746505}, {"model_based_pick": false}] +[[4, 0, 13], {"x0": -2.808142070957054, "x1": 4.427107645829427, "x2": 5.993952830496998, "x3": -1.8264577220254359, "x4": 1.3171474583552671, "x5": 0.2768466018387449}, {"model_based_pick": true}] +[[4, 0, 14], {"x0": -2.797922957472571, "x1": 3.575789303307422, "x2": 7.164294996244992, "x3": -0.6470334468820331, "x4": 2.221044479194491, "x5": 0.1742028478507469}, {"model_based_pick": true}] +[[4, 0, 15], {"x0": -3.3440256409571254, "x1": 3.6369561788245885, "x2": 7.5921924203610445, "x3": -1.2080440740222866, "x4": 2.967563048827121, "x5": 0.4155055559019886}, {"model_based_pick": true}] +[[4, 0, 16], {"x0": -4.400095617806089, "x1": 4.566352320583588, "x2": 4.050296580392027, "x3": -1.518672888469887, "x4": 4.274836989438075, "x5": 0.4184729532643059}, {"model_based_pick": false}] +[[4, 0, 17], {"x0": -3.1513722867358087, "x1": 3.607059338202973, "x2": 6.597465989436497, "x3": -0.8627475160363844, "x4": 1.3166109722184087, "x5": 0.46654219206897407}, {"model_based_pick": true}] +[[4, 0, 18], {"x0": -2.431687859027013, "x1": 3.760112636618868, "x2": 6.87095708581055, "x3": -0.802541253752362, "x4": 1.074325442728493, "x5": 0.36177676352337773}, {"model_based_pick": true}] +[[4, 0, 19], {"x0": -3.3415034004623085, "x1": 3.1156422131543304, "x2": 7.837452990630249, "x3": -1.2703041162673405, "x4": 1.8016783195486972, "x5": 0.464991401781454}, {"model_based_pick": true}] +[[4, 0, 20], {"x0": -2.7897997310576947, "x1": 5.19588202926928, "x2": 6.930533908846916, "x3": -1.4128915942095501, "x4": 1.3329325773633032, "x5": 0.25042911321857003}, {"model_based_pick": true}] +[[4, 0, 21], {"x0": -3.6268604395039077, "x1": 3.4926501830426635, "x2": 7.736728551755327, "x3": -0.4596090202791747, "x4": 2.325986873128071, "x5": 0.2321038601757628}, {"model_based_pick": true}] +[[4, 0, 22], {"x0": -2.733369421385225, "x1": 3.2394040560956174, "x2": 6.602905268013619, "x3": -3.61304245173854, "x4": 2.497900811435864, "x5": 0.2846076209173699}, {"model_based_pick": true}] +[[4, 0, 23], {"x0": -3.0521683908689896, "x1": 4.737836733077142, "x2": 6.938433861823468, "x3": -0.806402051218293, "x4": 2.048923306097664, "x5": 0.4192391087387214}, {"model_based_pick": true}] +[[4, 0, 24], {"x0": -2.8992806227664185, "x1": 6.63825408158677, "x2": 6.180618989705822, "x3": -0.4060326761801156, "x4": 4.461193186309173, "x5": 0.3344684948149606}, {"model_based_pick": false}] +[[4, 0, 25], {"x0": -3.0066864857917612, "x1": 3.015159375902314, "x2": 6.809572189372625, "x3": -0.11138976047239213, "x4": 2.6918874163534303, "x5": 0.33799621506217553}, {"model_based_pick": true}] +[[4, 0, 26], {"x0": -2.197351859564982, "x1": 5.990347951982583, "x2": 7.99384169797476, "x3": -2.6190666562773286, "x4": 2.6695625022369014, "x5": 0.06070821229516288}, {"model_based_pick": false}] +[[5, 0, 0], {"x0": -3.3791510455874914, "x1": 3.7507625713431936, "x2": 7.077862353410803, "x3": -0.6453859698087325, "x4": 1.8401630788577883, "x5": 0.00723383791563216}, {"model_based_pick": true}] +[[5, 0, 1], {"x0": -2.786292444584149, "x1": 3.8236437500025904, "x2": 6.839214357028903, "x3": -0.8950378310204887, "x4": 1.058433368961559, "x5": 0.08860691483852648}, {"model_based_pick": true}] +[[5, 0, 2], {"x0": -3.1336512861534875, "x1": 5.915943804504737, "x2": 7.258419073755607, "x3": -1.2733851695390404, "x4": 1.3610106132913193, "x5": 0.06020875079987206}, {"model_based_pick": true}] +[[5, 0, 3], {"x0": -2.877217772295252, "x1": 4.026184988438846, "x2": 7.972049693859265, "x3": -1.8822529643454136, "x4": 3.8627007941003617, "x5": 0.032479308307233334}, {"model_based_pick": true}] +[[5, 0, 4], {"x0": -2.806277964177388, "x1": 5.338997025603036, "x2": 7.798003424182863, "x3": -1.3212250263329826, "x4": 1.7600338274275913, "x5": 0.036664512049874864}, {"model_based_pick": true}] +[[5, 0, 5], {"x0": -2.6644979766912593, "x1": 4.599168180318664, "x2": 7.031367553018136, "x3": -1.4592694892875397, "x4": 2.239516757639482, "x5": 0.04292980657820644}, {"model_based_pick": true}] +[[5, 0, 6], {"x0": -2.537569270692792, "x1": 3.6389405939978787, "x2": 6.635239933946208, "x3": -0.4220577676743056, "x4": 1.0174522826352665, "x5": 0.13821818215073528}, {"model_based_pick": true}] +[[5, 0, 7], {"x0": -2.3888107335117295, "x1": 5.447117379454278, "x2": 7.381349684567159, "x3": -1.2475108200979763, "x4": 1.6278359278850183, "x5": 0.024811105401983363}, {"model_based_pick": true}] +[[5, 0, 8], {"x0": -3.223885031038383, "x1": 3.675737908941053, "x2": 4.33153773242771, "x3": -1.7273467655996275, "x4": 2.82912214525445, "x5": 0.13709021391953513}, {"model_based_pick": false}] +[[6, 0, 0], {"x0": -5.1599122920958305, "x1": 5.222566047628602, "x2": 7.009012792090284, "x3": -2.430887905185072, "x4": 2.1850767634331745, "x5": 0.3696869224324019}, {"model_based_pick": false}] +[[6, 0, 1], {"x0": -3.1214166167528186, "x1": 7.09217498237475, "x2": 7.334350122724048, "x3": -0.9904074570775578, "x4": 1.4044643306476803, "x5": 0.02053266780585357}, {"model_based_pick": true}] +[[6, 0, 2], {"x0": -2.538352578165055, "x1": 5.395154407156005, "x2": 7.912787569993551, "x3": -1.4126864119426887, "x4": 2.933357820585306, "x5": 0.007179552214194838}, {"model_based_pick": true}] +[[6, 0, 3], {"x0": -2.159299923454515, "x1": 5.405096952624975, "x2": 6.2633174338743025, "x3": -1.9385250361815216, "x4": 3.897071847970185, "x5": 0.10647588842198624}, {"model_based_pick": false}] +[[6, 0, 4], {"x0": -3.1935955708979233, "x1": 5.95599740450722, "x2": 7.739903674969643, "x3": -1.484585233891063, "x4": 1.07615286513601, "x5": 0.02911453595745439}, {"model_based_pick": true}] +[[6, 0, 5], {"x0": -3.336923274816461, "x1": 7.1437659045010315, "x2": 6.827284965719019, "x3": -1.2046157747360233, "x4": 1.2067176830476694, "x5": 0.015788420062646857}, {"model_based_pick": true}] +[[7, 0, 0], {"x0": -2.994443241645423, "x1": 5.67301901870004, "x2": 7.149548732216158, "x3": -1.2483637615674437, "x4": 1.146112676569696, "x5": 0.09253325706761852}, {"model_based_pick": true}] +[[7, 0, 1], {"x0": -2.812310968746141, "x1": 5.76492896045767, "x2": 7.719400373842002, "x3": -1.4220375611721, "x4": 1.7337903758244628, "x5": 0.14364644035670832}, {"model_based_pick": true}] +[[7, 0, 2], {"x0": -3.0574992359538946, "x1": 5.149088773703574, "x2": 7.124036897039822, "x3": -1.424104299805247, "x4": 1.5358416755723685, "x5": 0.19490193709081277}, {"model_based_pick": true}] +[[7, 0, 3], {"x0": -2.9628332449873396, "x1": 4.439227914880045, "x2": 7.438054722575036, "x3": -1.4252535802101174, "x4": 1.668220488156831, "x5": 0.39059637146362813}, {"model_based_pick": true}] +[[8, 0, 0], {"x0": -2.9140184827116653, "x1": 4.459438946439406, "x2": 7.901998280789643, "x3": -1.2236074892441473, "x4": 1.7919780396749885, "x5": 0.056470710482190614}, {"model_based_pick": true}] +[[8, 0, 1], {"x0": -3.0083844148898296, "x1": 4.386793042382273, "x2": 7.776090755735991, "x3": -1.502699622880368, "x4": 2.392483949201459, "x5": 0.27115758300262044}, {"model_based_pick": true}] +[[8, 0, 2], {"x0": -3.6049240936758022, "x1": 4.521611476430015, "x2": 4.639842353587941, "x3": -0.8357771715588163, "x4": 4.257688387670525, "x5": 0.07624201156617694}, {"model_based_pick": false}] +[[8, 0, 3], {"x0": -2.8187012242198275, "x1": 5.975375194522241, "x2": 7.144112739483171, "x3": -1.4864442385339958, "x4": 1.460231777308235, "x5": 0.09674761180565017}, {"model_based_pick": true}] +[[8, 0, 4], {"x0": -3.288591643512313, "x1": 4.466373756744041, "x2": 7.334583377454759, "x3": -0.7178396298065692, "x4": 2.024888600877106, "x5": 0.24375861127265688}, {"model_based_pick": true}] +[[8, 0, 5], {"x0": -2.8655052699892423, "x1": 5.194720678881751, "x2": 7.566123301301716, "x3": -1.5006958733378193, "x4": 1.5731130909810576, "x5": 0.10792250014172769}, {"model_based_pick": true}] +[[8, 0, 6], {"x0": -3.2143510724398037, "x1": 5.829065180922134, "x2": 7.503120405510453, "x3": -1.3955527377084573, "x4": 1.4116635142921528, "x5": 0.20396112147520915}, {"model_based_pick": true}] +[[8, 0, 7], {"x0": -3.281401673321686, "x1": 5.757553302287812, "x2": 7.369916540349626, "x3": -1.3807276917515297, "x4": 1.0090856285552596, "x5": 0.003919501229702749}, {"model_based_pick": true}] +[[8, 0, 8], {"x0": -2.892199940097713, "x1": 4.89170234371942, "x2": 7.272674515182494, "x3": -1.3480006640871371, "x4": 1.5185047731215942, "x5": 0.00791318206572332}, {"model_based_pick": true}] +[[8, 0, 9], {"x0": -2.8397928740076632, "x1": 5.801349076562235, "x2": 7.666230783164709, "x3": -1.6504002667932678, "x4": 1.4267547350761323, "x5": 0.12451459935419143}, {"model_based_pick": true}] +[[8, 0, 10], {"x0": -5.232732155240493, "x1": 3.666849248243018, "x2": 7.789925554722213, "x3": -2.884891350536891, "x4": 2.6029091370312916, "x5": 0.2655467027374823}, {"model_based_pick": false}] +[[8, 0, 11], {"x0": -2.8059142849641145, "x1": 4.580348331497686, "x2": 7.057028119036914, "x3": -1.2402209243081534, "x4": 1.523927790852379, "x5": 0.18329571072479536}, {"model_based_pick": true}] +[[8, 0, 12], {"x0": -3.89255921317556, "x1": 3.286075972431738, "x2": 7.765074714250709, "x3": -3.0716494820349953, "x4": 4.123350613671208, "x5": 0.0739974352987377}, {"model_based_pick": false}] +[[8, 0, 13], {"x0": -3.3918832846898304, "x1": 4.518500483950598, "x2": 7.544791074027066, "x3": -0.869922640002815, "x4": 1.4806169053015048, "x5": 0.16625851916931234}, {"model_based_pick": true}] +[[8, 0, 14], {"x0": -2.3799624009382443, "x1": 5.437002048980128, "x2": 6.28162358162249, "x3": -2.791488941908703, "x4": 1.882983114730187, "x5": 0.3615103492291291}, {"model_based_pick": false}] +[[8, 0, 15], {"x0": -2.622145829727267, "x1": 6.053150555271737, "x2": 7.538833018869452, "x3": -1.2624519235360165, "x4": 1.6580222115521772, "x5": 0.1310228129323727}, {"model_based_pick": true}] +[[8, 0, 16], {"x0": -3.246344393402349, "x1": 5.652645110286558, "x2": 7.377375101876321, "x3": -1.4233484493931279, "x4": 1.5275457002969142, "x5": 0.14730987609230947}, {"model_based_pick": true}] +[[8, 0, 17], {"x0": -2.606109652556031, "x1": 6.253555728301505, "x2": 7.902785393716239, "x3": -1.5600394435141811, "x4": 1.6129645890088322, "x5": 0.13237042862054532}, {"model_based_pick": true}] +[[8, 0, 18], {"x0": -3.024389196207851, "x1": 6.747871353458493, "x2": 7.087377265748392, "x3": -1.1210753880733315, "x4": 1.3014601705549311, "x5": 0.12045577096520892}, {"model_based_pick": true}] +[[8, 0, 19], {"x0": -2.9115251796972967, "x1": 4.691226030699207, "x2": 7.631132319885667, "x3": -1.2850899394252338, "x4": 1.9347805468891792, "x5": 0.15750158165002404}, {"model_based_pick": true}] +[[8, 0, 20], {"x0": -2.929865802094781, "x1": 5.282101392469639, "x2": 7.5880638037975, "x3": -1.4864815638475868, "x4": 1.7446781035190926, "x5": 0.24691509132078993}, {"model_based_pick": true}] +[[8, 0, 21], {"x0": -2.0835134731780567, "x1": 6.244252530071048, "x2": 6.684186848686521, "x3": -0.667480862552388, "x4": 2.3855239153218366, "x5": 0.13010517768811508}, {"model_based_pick": false}] +[[8, 0, 22], {"x0": -2.873352847785295, "x1": 4.75790022129238, "x2": 7.486936405095916, "x3": -1.5765693176647044, "x4": 1.822160378144428, "x5": 0.24933397112264089}, {"model_based_pick": true}] +[[8, 0, 23], {"x0": -3.3561345217051883, "x1": 4.892138697900752, "x2": 7.235587464542244, "x3": -1.4176801337998763, "x4": 1.809684811650907, "x5": 0.13609839809361352}, {"model_based_pick": true}] +[[8, 0, 24], {"x0": -4.47748872012167, "x1": 4.3383407399082845, "x2": 5.1816316182649835, "x3": -2.1587636282952625, "x4": 2.8742065296627177, "x5": 0.3898473765255892}, {"model_based_pick": false}] +[[8, 0, 25], {"x0": -4.223071363556652, "x1": 5.653346416491015, "x2": 4.062176362649978, "x3": -0.0568734836124456, "x4": 3.2586170714467464, "x5": 0.10395514065043188}, {"model_based_pick": false}] +[[8, 0, 26], {"x0": -2.277583154170667, "x1": 3.357613047977241, "x2": 7.1127667343065095, "x3": -2.8794287843994826, "x4": 1.0101035177869249, "x5": 0.4951557696484761}, {"model_based_pick": false}] +[[9, 0, 0], {"x0": -3.0926492624790702, "x1": 5.327035693635959, "x2": 7.963677005376297, "x3": -1.2758816385644303, "x4": 1.8480347600291442, "x5": 0.1853069514308593}, {"model_based_pick": true}] +[[9, 0, 1], {"x0": -3.0293209040590012, "x1": 4.442606170098841, "x2": 7.791994009598046, "x3": -1.1553273386274152, "x4": 1.8184908408984484, "x5": 0.10711337095901462}, {"model_based_pick": true}] +[[9, 0, 2], {"x0": -5.3342595851348555, "x1": 3.1918044221610593, "x2": 4.059376821950101, "x3": -1.9092705785498518, "x4": 2.822951397346009, "x5": 0.3446608542656266}, {"model_based_pick": false}] +[[9, 0, 3], {"x0": -3.937068279222197, "x1": 6.381220956461233, "x2": 4.032730340442349, "x3": -2.8164084167328647, "x4": 2.925672369534332, "x5": 0.13283309659258236}, {"model_based_pick": false}] +[[9, 0, 4], {"x0": -3.0235181241801286, "x1": 5.246251717598286, "x2": 7.474441293461345, "x3": -1.1594177363410818, "x4": 1.7309439138632847, "x5": 0.1839056435326581}, {"model_based_pick": true}] +[[9, 0, 5], {"x0": -4.27062346815095, "x1": 5.278439476313257, "x2": 7.179071792389188, "x3": -1.8510793911293058, "x4": 4.552218978080942, "x5": 0.47682342448692516}, {"model_based_pick": false}] +[[9, 0, 6], {"x0": -2.378394243062977, "x1": 3.6148359961167857, "x2": 5.139960305772307, "x3": -0.8983913145944569, "x4": 4.145622801117645, "x5": 0.27302883068058476}, {"model_based_pick": false}] +[[9, 0, 7], {"x0": -2.990068581144176, "x1": 5.069317515660211, "x2": 7.627352228195109, "x3": -1.2236139602891196, "x4": 1.613793550846846, "x5": 0.23811252356145923}, {"model_based_pick": true}] +[[9, 0, 8], {"x0": -2.9183101197561245, "x1": 5.904647909070882, "x2": 7.56148990683042, "x3": -0.12720924530773914, "x4": 4.300260264238847, "x5": 0.3901277930367801}, {"model_based_pick": false}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/bohb/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/bohb/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/bohb/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/bohb/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/bohb/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/bohb/results.json new file mode 100644 index 0000000..2f44ff0 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/bohb/results.json @@ -0,0 +1,183 @@ +[[0, 0, 0], 9.0, {"submitted": 1558193646.9502504, "started": 1558193646.9509287, "finished": 1558193646.9573145}, {"loss": 0.05149999819815158, "info": {"x0": -3.2159005969264887, "x1": 6.647702595351151, "x2": 5.817987928916166, "x3": -3.1336273967276873, "x4": 3.652006042335498, "x5": 0.209604100539998}}, null] +[[0, 0, 1], 9.0, {"submitted": 1558193646.9604008, "started": 1558193646.960873, "finished": 1558193646.9685378}, {"loss": 1, "info": {"x0": -4.057783742006659, "x1": 3.5439814859727314, "x2": 6.228637858641273, "x3": -2.3155493656240846, "x4": 2.6102347079228077, "x5": 0.4949490319754148}}, null] +[[0, 0, 2], 9.0, {"submitted": 1558193646.970938, "started": 1558193646.9714499, "finished": 1558193646.9787757}, {"loss": 1, "info": {"x0": -4.4583191787947545, "x1": 4.477969549049127, "x2": 7.256907951050151, "x3": -0.9004839330662304, "x4": 2.149665867670106, "x5": 0.16482812450178402}}, null] +[[0, 0, 3], 9.0, {"submitted": 1558193646.9812279, "started": 1558193646.9817004, "finished": 1558193646.9874587}, {"loss": 0.4315199986216426, "info": {"x0": -4.096163655499607, "x1": 3.7132106893805386, "x2": 5.179867621379582, "x3": -3.8871326532440413, "x4": 4.0158222349151425, "x5": 0.4644048615027159}}, null] +[[0, 0, 4], 9.0, {"submitted": 1558193646.9894483, "started": 1558193646.9897873, "finished": 1558193646.9966831}, {"loss": 0.0706399982982874, "info": {"x0": -3.2487623825387306, "x1": 7.2465086551670295, "x2": 5.421778639703536, "x3": -3.3861612010007907, "x4": 3.0530200859147913, "x5": 0.48366551335331076}}, null] +[[0, 0, 5], 9.0, {"submitted": 1558193647.0010169, "started": 1558193647.0013826, "finished": 1558193647.0068154}, {"loss": 0.22625999807208777, "info": {"x0": -4.315011111742705, "x1": 6.3671122643865985, "x2": 4.995482755379959, "x3": -3.428018973270414, "x4": 2.602454808852079, "x5": 0.276834497438408}}, null] +[[0, 0, 6], 9.0, {"submitted": 1558193647.0099678, "started": 1558193647.0103893, "finished": 1558193647.0179029}, {"loss": 1, "info": {"x0": -4.650327658304253, "x1": 3.0349079368898786, "x2": 7.596885334658632, "x3": -1.5241105091795455, "x4": 1.5845433489298966, "x5": 0.4916459702850172}}, null] +[[0, 0, 7], 9.0, {"submitted": 1558193647.0206568, "started": 1558193647.0210133, "finished": 1558193647.0287664}, {"loss": 0.08875999975085258, "info": {"x0": -3.748701151241837, "x1": 7.446017944946547, "x2": 4.93592212227119, "x3": -3.199731722543426, "x4": 2.78503333092113, "x5": 0.01929806205535023}}, null] +[[0, 0, 8], 9.0, {"submitted": 1558193647.0338967, "started": 1558193647.0343583, "finished": 1558193647.040957}, {"loss": 0.6567199954823406, "info": {"x0": -5.395986246654427, "x1": 3.3682352576035925, "x2": 4.852754398903345, "x3": -3.389379633129783, "x4": 1.4895153143963915, "x5": 0.4611551043570413}}, null] +[[0, 0, 9], 9.0, {"submitted": 1558193647.0441632, "started": 1558193647.044567, "finished": 1558193647.0515747}, {"loss": 1, "info": {"x0": -4.09313580898814, "x1": 3.005307390344936, "x2": 5.401065201538199, "x3": -1.0696856739178542, "x4": 1.773453952147598, "x5": 0.2429319178239795}}, null] +[[0, 0, 10], 9.0, {"submitted": 1558193647.0544376, "started": 1558193647.0549023, "finished": 1558193647.0626876}, {"loss": 0.279730001796484, "info": {"x0": -4.193603588120851, "x1": 7.344889139298167, "x2": 4.758523664814993, "x3": -3.915023171621218, "x4": 1.9359500842845203, "x5": 0.4237411757117606}}, null] +[[0, 0, 11], 9.0, {"submitted": 1558193647.0658143, "started": 1558193647.0661695, "finished": 1558193647.0723672}, {"loss": 0.10994000045031309, "info": {"x0": -2.672080447242335, "x1": 6.3134016590950175, "x2": 4.428568860130058, "x3": -1.9379883113700127, "x4": 2.312213263388846, "x5": 0.4548517723514774}}, null] +[[0, 0, 12], 9.0, {"submitted": 1558193647.075566, "started": 1558193647.0760446, "finished": 1558193647.0833583}, {"loss": 0.07799000097572803, "info": {"x0": -3.0301859438785392, "x1": 6.267424515620192, "x2": 4.221640044086556, "x3": -1.5174690622889693, "x4": 1.7218850320147343, "x5": 0.31948134873693795}}, null] +[[0, 0, 13], 9.0, {"submitted": 1558193647.0862548, "started": 1558193647.0866551, "finished": 1558193647.093708}, {"loss": 0.36082999397426846, "info": {"x0": -2.4767898588822246, "x1": 7.588958339159421, "x2": 4.753523325076504, "x3": -3.262433678398985, "x4": 4.073016619499661, "x5": 0.35540420389903915}}, null] +[[0, 0, 14], 9.0, {"submitted": 1558193647.1535714, "started": 1558193647.1539962, "finished": 1558193647.1608186}, {"loss": 0.13687000008225442, "info": {"x0": -4.018239817627127, "x1": 7.783462481073862, "x2": 4.905201478586845, "x3": -3.7720021765629963, "x4": 1.4560487672761577, "x5": 0.16037390298296922}}, null] +[[0, 0, 15], 9.0, {"submitted": 1558193647.2278244, "started": 1558193647.2285264, "finished": 1558193647.237572}, {"loss": 0.07555999848127364, "info": {"x0": -3.5903682366049248, "x1": 7.502609250021345, "x2": 4.923251598282015, "x3": -2.160917179725897, "x4": 2.8838562561420282, "x5": 0.04723151090746858}}, null] +[[0, 0, 16], 9.0, {"submitted": 1558193647.2418299, "started": 1558193647.2423332, "finished": 1558193647.2510343}, {"loss": 1, "info": {"x0": -4.568936037772298, "x1": 4.632045301639488, "x2": 7.377827633759605, "x3": -1.7098870290133656, "x4": 1.215242896372565, "x5": 0.4768769071034539}}, null] +[[0, 0, 17], 9.0, {"submitted": 1558193647.3243656, "started": 1558193647.3247774, "finished": 1558193647.3308256}, {"loss": 0.05531999887287616, "info": {"x0": -3.0503976448840087, "x1": 6.198520144117668, "x2": 4.3147711527618595, "x3": -2.0186589025691433, "x4": 1.3986875179903402, "x5": 0.044661448805267685}}, null] +[[0, 0, 18], 9.0, {"submitted": 1558193647.3337963, "started": 1558193647.3341165, "finished": 1558193647.341064}, {"loss": 0.051950000257492066, "info": {"x0": -2.940708602975882, "x1": 5.452877167568279, "x2": 5.044128785929012, "x3": -2.736005302543562, "x4": 2.490816274132235, "x5": 0.19567679973053326}}, null] +[[0, 0, 19], 9.0, {"submitted": 1558193647.4100614, "started": 1558193647.410801, "finished": 1558193647.4177403}, {"loss": 0.06452000009179115, "info": {"x0": -3.398552001007181, "x1": 6.630573862525226, "x2": 4.105490744896253, "x3": -1.3573257759136785, "x4": 2.168110116881894, "x5": 0.015450579667217235}}, null] +[[0, 0, 20], 9.0, {"submitted": 1558193647.421184, "started": 1558193647.4215817, "finished": 1558193647.4287484}, {"loss": 1, "info": {"x0": -2.6673369380578427, "x1": 3.0574262855826784, "x2": 5.345556825240093, "x3": -1.0280972334460374, "x4": 1.4507188121362131, "x5": 0.08799778039303702}}, null] +[[0, 0, 21], 9.0, {"submitted": 1558193647.4327564, "started": 1558193647.4331758, "finished": 1558193647.4407368}, {"loss": 1, "info": {"x0": -2.22964530090845, "x1": 3.14453784572461, "x2": 4.199716733069446, "x3": -2.6557762747904388, "x4": 2.507382705719628, "x5": 0.06906426561188272}}, null] +[[0, 0, 22], 9.0, {"submitted": 1558193647.4450078, "started": 1558193647.445464, "finished": 1558193647.4534674}, {"loss": 0.7882899961152299, "info": {"x0": -5.517479235615568, "x1": 4.696945341277284, "x2": 5.788702673352905, "x3": -2.250806505286718, "x4": 2.567304325587476, "x5": 0.2689128977301084}}, null] +[[0, 0, 23], 9.0, {"submitted": 1558193647.5136597, "started": 1558193647.5145192, "finished": 1558193647.52302}, {"loss": 0.05480999875009061, "info": {"x0": -3.211828683027162, "x1": 7.570661113347098, "x2": 4.338874933859894, "x3": -0.7750009311086821, "x4": 1.736708229486438, "x5": 0.02071169232154754}}, null] +[[0, 0, 24], 9.0, {"submitted": 1558193647.5844586, "started": 1558193647.5848525, "finished": 1558193647.5910878}, {"loss": 0.06647000046789646, "info": {"x0": -3.346754277068704, "x1": 6.563478477422331, "x2": 4.470084479128998, "x3": -1.3772463858905457, "x4": 2.4183970042333005, "x5": 0.036111433500418365}}, null] +[[0, 0, 25], 9.0, {"submitted": 1558193647.5949886, "started": 1558193647.5954692, "finished": 1558193647.6041758}, {"loss": 0.04367999880075454, "info": {"x0": -2.745565347432438, "x1": 7.538088902666726, "x2": 6.045070149568031, "x3": -0.7033852332216166, "x4": 3.3761241293338515, "x5": 0.32909828009683734}}, null] +[[0, 0, 26], 9.0, {"submitted": 1558193647.6073654, "started": 1558193647.607763, "finished": 1558193647.616273}, {"loss": 0.051180000591278085, "info": {"x0": -2.0690706243664736, "x1": 5.805990009044359, "x2": 4.530782301194661, "x3": -2.083119543468002, "x4": 1.1402100068512517, "x5": 0.025056272944793456}}, null] +[[0, 0, 0], 27.0, {"submitted": 1558193647.619656, "started": 1558193647.6199658, "finished": 1558193647.6251822}, {"loss": 0.0353799963593483, "info": {"x0": -3.2159005969264887, "x1": 6.647702595351151, "x2": 5.817987928916166, "x3": -3.1336273967276873, "x4": 3.652006042335498, "x5": 0.209604100539998}}, null] +[[0, 0, 4], 27.0, {"submitted": 1558193647.6267126, "started": 1558193647.6271381, "finished": 1558193647.6341255}, {"loss": 0.05625999862611293, "info": {"x0": -3.2487623825387306, "x1": 7.2465086551670295, "x2": 5.421778639703536, "x3": -3.3861612010007907, "x4": 3.0530200859147913, "x5": 0.48366551335331076}}, null] +[[0, 0, 17], 27.0, {"submitted": 1558193647.6355484, "started": 1558193647.6358545, "finished": 1558193647.641327}, {"loss": 0.04572999904215336, "info": {"x0": -3.0503976448840087, "x1": 6.198520144117668, "x2": 4.3147711527618595, "x3": -2.0186589025691433, "x4": 1.3986875179903402, "x5": 0.044661448805267685}}, null] +[[0, 0, 18], 27.0, {"submitted": 1558193647.6429565, "started": 1558193647.6434247, "finished": 1558193647.6529076}, {"loss": 0.04132000074505807, "info": {"x0": -2.940708602975882, "x1": 5.452877167568279, "x2": 5.044128785929012, "x3": -2.736005302543562, "x4": 2.490816274132235, "x5": 0.19567679973053326}}, null] +[[0, 0, 19], 27.0, {"submitted": 1558193647.6551728, "started": 1558193647.6555915, "finished": 1558193647.662733}, {"loss": 0.05498000119864942, "info": {"x0": -3.398552001007181, "x1": 6.630573862525226, "x2": 4.105490744896253, "x3": -1.3573257759136785, "x4": 2.168110116881894, "x5": 0.015450579667217235}}, null] +[[0, 0, 23], 27.0, {"submitted": 1558193647.6659882, "started": 1558193647.6663346, "finished": 1558193647.6723871}, {"loss": 0.04777999950647356, "info": {"x0": -3.211828683027162, "x1": 7.570661113347098, "x2": 4.338874933859894, "x3": -0.7750009311086821, "x4": 1.736708229486438, "x5": 0.02071169232154754}}, null] +[[0, 0, 24], 27.0, {"submitted": 1558193647.6739285, "started": 1558193647.674347, "finished": 1558193647.6836483}, {"loss": 0.05250000129282475, "info": {"x0": -3.346754277068704, "x1": 6.563478477422331, "x2": 4.470084479128998, "x3": -1.3772463858905457, "x4": 2.4183970042333005, "x5": 0.036111433500418365}}, null] +[[0, 0, 25], 27.0, {"submitted": 1558193647.6860752, "started": 1558193647.686434, "finished": 1558193647.6926432}, {"loss": 0.03183999948740006, "info": {"x0": -2.745565347432438, "x1": 7.538088902666726, "x2": 6.045070149568031, "x3": -0.7033852332216166, "x4": 3.3761241293338515, "x5": 0.32909828009683734}}, null] +[[0, 0, 26], 27.0, {"submitted": 1558193647.6953173, "started": 1558193647.695791, "finished": 1558193647.7024891}, {"loss": 0.04304000029683112, "info": {"x0": -2.0690706243664736, "x1": 5.805990009044359, "x2": 4.530782301194661, "x3": -2.083119543468002, "x4": 1.1402100068512517, "x5": 0.025056272944793456}}, null] +[[0, 0, 0], 81.0, {"submitted": 1558193647.7045963, "started": 1558193647.7049823, "finished": 1558193647.71219}, {"loss": 0.03181999596476557, "info": {"x0": -3.2159005969264887, "x1": 6.647702595351151, "x2": 5.817987928916166, "x3": -3.1336273967276873, "x4": 3.652006042335498, "x5": 0.209604100539998}}, null] +[[0, 0, 18], 81.0, {"submitted": 1558193647.7150292, "started": 1558193647.715418, "finished": 1558193647.7208505}, {"loss": 0.03781000090897083, "info": {"x0": -2.940708602975882, "x1": 5.452877167568279, "x2": 5.044128785929012, "x3": -2.736005302543562, "x4": 2.490816274132235, "x5": 0.19567679973053326}}, null] +[[0, 0, 25], 81.0, {"submitted": 1558193647.7227297, "started": 1558193647.7231624, "finished": 1558193647.730008}, {"loss": 0.027949999966025364, "info": {"x0": -2.745565347432438, "x1": 7.538088902666726, "x2": 6.045070149568031, "x3": -0.7033852332216166, "x4": 3.3761241293338515, "x5": 0.32909828009683734}}, null] +[[0, 0, 25], 243.0, {"submitted": 1558193647.73325, "started": 1558193647.7335851, "finished": 1558193647.7413204}, {"loss": 0.027429999983906737, "info": {"x0": -2.745565347432438, "x1": 7.538088902666726, "x2": 6.045070149568031, "x3": -0.7033852332216166, "x4": 3.3761241293338515, "x5": 0.32909828009683734}}, null] +[[1, 0, 0], 27.0, {"submitted": 1558193647.8011227, "started": 1558193647.8014526, "finished": 1558193647.8073838}, {"loss": 0.029279997961521153, "info": {"x0": -2.429353332855517, "x1": 6.581091565035357, "x2": 6.776726779551046, "x3": -1.2629813710593822, "x4": 3.9679584407210373, "x5": 0.33782846159309915}}, null] +[[1, 0, 1], 27.0, {"submitted": 1558193647.8723414, "started": 1558193647.8727114, "finished": 1558193647.8803058}, {"loss": 0.04024999963641168, "info": {"x0": -2.805841144996098, "x1": 6.927217682736359, "x2": 6.341916166869179, "x3": -0.20897406304319865, "x4": 2.7675770026456052, "x5": 0.3907256026024867}}, null] +[[1, 0, 2], 27.0, {"submitted": 1558193647.9510279, "started": 1558193647.951406, "finished": 1558193647.9574034}, {"loss": 0.04915999750047921, "info": {"x0": -2.2379139891239825, "x1": 6.722090091544738, "x2": 6.369452781358184, "x3": -0.7499129047041224, "x4": 3.8837228455717296, "x5": 0.37239099826018435}}, null] +[[1, 0, 3], 27.0, {"submitted": 1558193648.029403, "started": 1558193648.0299118, "finished": 1558193648.035895}, {"loss": 0.0918699991250038, "info": {"x0": -2.066125256656272, "x1": 6.1584051034204625, "x2": 6.221402972689734, "x3": -0.7334944002085475, "x4": 4.968636054059556, "x5": 0.3183717154290149}}, null] +[[1, 0, 4], 27.0, {"submitted": 1558193648.0383003, "started": 1558193648.038829, "finished": 1558193648.0498047}, {"loss": 0.06764999807596207, "info": {"x0": -3.6692524336978507, "x1": 6.348426755829321, "x2": 5.055521776142618, "x3": -3.957360102432501, "x4": 3.9894986119995854, "x5": 0.21799612878688268}}, null] +[[1, 0, 5], 27.0, {"submitted": 1558193648.1140003, "started": 1558193648.114549, "finished": 1558193648.1207404}, {"loss": 0.05962999702215192, "info": {"x0": -3.349204474293383, "x1": 3.1769978355465747, "x2": 4.612071567882443, "x3": -1.882693695512624, "x4": 2.464288667267464, "x5": 0.033971109446745695}}, null] +[[1, 0, 6], 27.0, {"submitted": 1558193648.1918683, "started": 1558193648.192422, "finished": 1558193648.199863}, {"loss": 0.030629998817443847, "info": {"x0": -2.795668920591821, "x1": 4.875004254258721, "x2": 5.821243495836557, "x3": -2.934052068226191, "x4": 1.386065187787178, "x5": 0.24411265488727338}}, null] +[[1, 0, 7], 27.0, {"submitted": 1558193648.202546, "started": 1558193648.2029629, "finished": 1558193648.2096503}, {"loss": 0.03941000304162503, "info": {"x0": -2.83595608859663, "x1": 6.429733763084675, "x2": 4.7143766957632955, "x3": -2.2451237672313993, "x4": 2.3585825137539973, "x5": 0.06620440382770454}}, null] +[[1, 0, 8], 27.0, {"submitted": 1558193648.2722385, "started": 1558193648.2726474, "finished": 1558193648.2784073}, {"loss": 0.0334899982535839, "info": {"x0": -2.972164361709637, "x1": 4.038968972487884, "x2": 6.818904298530258, "x3": -1.1637403857513227, "x4": 1.1431576448857896, "x5": 0.3002945751506552}}, null] +[[1, 0, 0], 81.0, {"submitted": 1558193648.2825675, "started": 1558193648.283113, "finished": 1558193648.2907333}, {"loss": 0.022759997385144226, "info": {"x0": -2.429353332855517, "x1": 6.581091565035357, "x2": 6.776726779551046, "x3": -1.2629813710593822, "x4": 3.9679584407210373, "x5": 0.33782846159309915}}, null] +[[1, 0, 6], 81.0, {"submitted": 1558193648.2923322, "started": 1558193648.2926805, "finished": 1558193648.3007288}, {"loss": 0.02637999865889549, "info": {"x0": -2.795668920591821, "x1": 4.875004254258721, "x2": 5.821243495836557, "x3": -2.934052068226191, "x4": 1.386065187787178, "x5": 0.24411265488727338}}, null] +[[1, 0, 8], 81.0, {"submitted": 1558193648.30242, "started": 1558193648.302927, "finished": 1558193648.3096042}, {"loss": 0.024159998244047153, "info": {"x0": -2.972164361709637, "x1": 4.038968972487884, "x2": 6.818904298530258, "x3": -1.1637403857513227, "x4": 1.1431576448857896, "x5": 0.3002945751506552}}, null] +[[1, 0, 0], 243.0, {"submitted": 1558193648.3117423, "started": 1558193648.3122103, "finished": 1558193648.319045}, {"loss": 0.020509997038841255, "info": {"x0": -2.429353332855517, "x1": 6.581091565035357, "x2": 6.776726779551046, "x3": -1.2629813710593822, "x4": 3.9679584407210373, "x5": 0.33782846159309915}}, null] +[[2, 0, 0], 81.0, {"submitted": 1558193648.3864164, "started": 1558193648.386784, "finished": 1558193648.3925195}, {"loss": 0.040900000211596496, "info": {"x0": -2.8629306936506045, "x1": 3.495432851965556, "x2": 5.968324950319661, "x3": -0.9726317222159753, "x4": 2.0673569289478766, "x5": 0.4222405479910781}}, null] +[[2, 0, 1], 81.0, {"submitted": 1558193648.4644086, "started": 1558193648.4649162, "finished": 1558193648.4706454}, {"loss": 0.022760002527236943, "info": {"x0": -2.8911926219325053, "x1": 3.6625973965816017, "x2": 7.069410388377445, "x3": -0.8570053713438952, "x4": 1.37095208585614, "x5": 0.14851005493723893}}, null] +[[2, 0, 2], 81.0, {"submitted": 1558193648.4732518, "started": 1558193648.4736974, "finished": 1558193648.481667}, {"loss": 0.4538649980456569, "info": {"x0": -2.0447268621125443, "x1": 3.5409179169550313, "x2": 7.016790776353917, "x3": -2.9330083029480027, "x4": 2.5741870491838656, "x5": 0.3097246705544897}}, null] +[[2, 0, 3], 81.0, {"submitted": 1558193648.5486405, "started": 1558193648.5490367, "finished": 1558193648.55531}, {"loss": 0.030349999985098842, "info": {"x0": -2.7997893186678553, "x1": 3.4095269069903673, "x2": 7.23828441540056, "x3": -1.1746661800448246, "x4": 2.7021002737457636, "x5": 0.2591401723808331}}, null] +[[2, 0, 4], 81.0, {"submitted": 1558193648.5578318, "started": 1558193648.5583477, "finished": 1558193648.5690331}, {"loss": 0.46127000015489744, "info": {"x0": -5.39836073066861, "x1": 7.722062559075901, "x2": 7.979996030230323, "x3": -3.9259371182888856, "x4": 3.0169719971035036, "x5": 0.44675690258484085}}, null] +[[2, 0, 5], 81.0, {"submitted": 1558193648.6517272, "started": 1558193648.6521769, "finished": 1558193648.6587164}, {"loss": 0.024269999039769164, "info": {"x0": -3.3939022213797285, "x1": 4.0891541439415, "x2": 7.211696847621109, "x3": -0.8291354866076523, "x4": 1.7256952965294041, "x5": 0.1948711361516247}}, null] +[[2, 0, 1], 243.0, {"submitted": 1558193648.6610057, "started": 1558193648.661361, "finished": 1558193648.6705258}, {"loss": 0.019290002483725577, "info": {"x0": -2.8911926219325053, "x1": 3.6625973965816017, "x2": 7.069410388377445, "x3": -0.8570053713438952, "x4": 1.37095208585614, "x5": 0.14851005493723893}}, null] +[[2, 0, 5], 243.0, {"submitted": 1558193648.6725438, "started": 1558193648.6729558, "finished": 1558193648.680965}, {"loss": 0.018859999155402186, "info": {"x0": -3.3939022213797285, "x1": 4.0891541439415, "x2": 7.211696847621109, "x3": -0.8291354866076523, "x4": 1.7256952965294041, "x5": 0.1948711361516247}}, null] +[[3, 0, 0], 243.0, {"submitted": 1558193648.7509959, "started": 1558193648.7513793, "finished": 1558193648.7582679}, {"loss": 0.01798999740660192, "info": {"x0": -3.0350837274738067, "x1": 4.5434108989568625, "x2": 7.82982259026798, "x3": -1.5455116024767466, "x4": 1.9579766164640238, "x5": 0.3202556220757323}}, null] +[[3, 0, 1], 243.0, {"submitted": 1558193648.7615695, "started": 1558193648.7622652, "finished": 1558193648.773181}, {"loss": 0.5074099980342388, "info": {"x0": -5.7042039451576745, "x1": 7.891174239382115, "x2": 7.543632743251426, "x3": -2.9326154802530406, "x4": 3.3631695632554823, "x5": 0.2857824904628166}}, null] +[[3, 0, 2], 243.0, {"submitted": 1558193648.851749, "started": 1558193648.852163, "finished": 1558193648.8597634}, {"loss": 0.13645999912783502, "info": {"x0": -2.7192218630081717, "x1": 3.049119114947671, "x2": 7.402511748281913, "x3": -3.267270566644823, "x4": 1.0946631743504558, "x5": 0.48383467971915806}}, null] +[[3, 0, 3], 243.0, {"submitted": 1558193648.9487877, "started": 1558193648.9493458, "finished": 1558193648.9579597}, {"loss": 0.02080999948143958, "info": {"x0": -3.1004835047332913, "x1": 3.4686791995797814, "x2": 7.792616508710651, "x3": -2.1930042276164405, "x4": 1.4377020115039287, "x5": 0.30245642701493075}}, null] +[[4, 0, 0], 9.0, {"submitted": 1558193649.0311415, "started": 1558193649.031724, "finished": 1558193649.039934}, {"loss": 1, "info": {"x0": -3.2987233069731206, "x1": 3.16684316726557, "x2": 7.518128283659995, "x3": -0.2358517223370047, "x4": 2.420109794159857, "x5": 0.2775640019340102}}, null] +[[4, 0, 1], 9.0, {"submitted": 1558193649.1185932, "started": 1558193649.1190991, "finished": 1558193649.1265016}, {"loss": 1, "info": {"x0": -2.5247706142369997, "x1": 3.139921398824432, "x2": 7.248202351917707, "x3": -3.4440419562102673, "x4": 2.506573535733833, "x5": 0.3360686099041359}}, null] +[[4, 0, 2], 9.0, {"submitted": 1558193649.21959, "started": 1558193649.220115, "finished": 1558193649.2309434}, {"loss": 0.03925999917805193, "info": {"x0": -2.878350384558435, "x1": 5.313252603350495, "x2": 7.5151463987352285, "x3": -1.2319836290849864, "x4": 1.893307088249255, "x5": 0.11500559542447109}}, null] +[[4, 0, 3], 9.0, {"submitted": 1558193649.2389598, "started": 1558193649.2396681, "finished": 1558193649.2571561}, {"loss": 0.05306999703168871, "info": {"x0": -3.0451880642024594, "x1": 7.874697357882464, "x2": 5.255096555675857, "x3": -0.8170164427924256, "x4": 4.207923757744259, "x5": 0.2950568077431696}}, null] +[[4, 0, 4], 9.0, {"submitted": 1558193649.3916662, "started": 1558193649.3933227, "finished": 1558193649.4087102}, {"loss": 1, "info": {"x0": -3.2433237978008522, "x1": 5.056049797420319, "x2": 7.736112043231189, "x3": -1.6486572451389385, "x4": 2.239075075450563, "x5": 0.265015285548961}}, null] +[[4, 0, 5], 9.0, {"submitted": 1558193649.555352, "started": 1558193649.555807, "finished": 1558193649.573376}, {"loss": 1, "info": {"x0": -2.6782910316394593, "x1": 3.785551309446687, "x2": 7.655028669213177, "x3": -2.8956926102327385, "x4": 1.835705857364588, "x5": 0.16308926290034062}}, null] +[[4, 0, 6], 9.0, {"submitted": 1558193649.576755, "started": 1558193649.5779657, "finished": 1558193649.5932658}, {"loss": 0.6508699941147864, "info": {"x0": -5.07423268350911, "x1": 4.16159441984089, "x2": 5.029025596383379, "x3": -1.4133061104876683, "x4": 4.854015090757086, "x5": 0.11389999482581392}}, null] +[[4, 0, 7], 9.0, {"submitted": 1558193649.6789794, "started": 1558193649.679849, "finished": 1558193649.6968462}, {"loss": 1, "info": {"x0": -3.2454108882959924, "x1": 3.9493333502288057, "x2": 7.78271146127613, "x3": -0.209252046776224, "x4": 2.196431464542076, "x5": 0.22351355842724396}}, null] +[[4, 0, 8], 9.0, {"submitted": 1558193649.7034066, "started": 1558193649.703811, "finished": 1558193649.7205563}, {"loss": 0.5854299973410366, "info": {"x0": -4.543318231311219, "x1": 3.7451318167826146, "x2": 4.388131535412531, "x3": -2.2150576714769863, "x4": 4.254083879918431, "x5": 0.030066067883180947}}, null] +[[4, 0, 9], 9.0, {"submitted": 1558193649.7243855, "started": 1558193649.7250767, "finished": 1558193649.7382243}, {"loss": 0.07146999657154085, "info": {"x0": -2.8233306698902156, "x1": 4.211072879932996, "x2": 6.090540833421254, "x3": -3.5037103407347256, "x4": 1.7533784195547937, "x5": 0.4033015774730685}}, null] +[[4, 0, 10], 9.0, {"submitted": 1558193649.8490973, "started": 1558193649.8495777, "finished": 1558193649.8561075}, {"loss": 1, "info": {"x0": -2.709748985628248, "x1": 3.751441485826219, "x2": 6.423792887768704, "x3": -1.044771882375466, "x4": 1.293090153140704, "x5": 0.12013487853649726}}, null] +[[4, 0, 11], 9.0, {"submitted": 1558193649.93864, "started": 1558193649.9391148, "finished": 1558193649.946556}, {"loss": 1, "info": {"x0": -2.635273612285193, "x1": 3.490137119089677, "x2": 6.874094757669017, "x3": -1.4429514304917777, "x4": 1.764279299688229, "x5": 0.4159073053652158}}, null] +[[4, 0, 12], 9.0, {"submitted": 1558193649.9502409, "started": 1558193649.9512284, "finished": 1558193649.9605687}, {"loss": 1, "info": {"x0": -5.554038888335878, "x1": 3.395084340357728, "x2": 6.793812178567567, "x3": -2.536275349464753, "x4": 2.549379305770417, "x5": 0.4732492863746505}}, null] +[[4, 0, 13], 9.0, {"submitted": 1558193650.0606809, "started": 1558193650.061062, "finished": 1558193650.0721908}, {"loss": 0.052380002073645605, "info": {"x0": -2.808142070957054, "x1": 4.427107645829427, "x2": 5.993952830496998, "x3": -1.8264577220254359, "x4": 1.3171474583552671, "x5": 0.2768466018387449}}, null] +[[4, 0, 14], 9.0, {"submitted": 1558193650.1672208, "started": 1558193650.1677573, "finished": 1558193650.1775227}, {"loss": 1, "info": {"x0": -2.797922957472571, "x1": 3.575789303307422, "x2": 7.164294996244992, "x3": -0.6470334468820331, "x4": 2.221044479194491, "x5": 0.1742028478507469}}, null] +[[4, 0, 15], 9.0, {"submitted": 1558193650.270533, "started": 1558193650.2709143, "finished": 1558193650.2790616}, {"loss": 1, "info": {"x0": -3.3440256409571254, "x1": 3.6369561788245885, "x2": 7.5921924203610445, "x3": -1.2080440740222866, "x4": 2.967563048827121, "x5": 0.4155055559019886}}, null] +[[4, 0, 16], 9.0, {"submitted": 1558193650.284465, "started": 1558193650.2849982, "finished": 1558193650.2946365}, {"loss": 0.7310899962653965, "info": {"x0": -4.400095617806089, "x1": 4.566352320583588, "x2": 4.050296580392027, "x3": -1.518672888469887, "x4": 4.274836989438075, "x5": 0.4184729532643059}}, null] +[[4, 0, 17], 9.0, {"submitted": 1558193650.3978198, "started": 1558193650.3983858, "finished": 1558193650.4153736}, {"loss": 1, "info": {"x0": -3.1513722867358087, "x1": 3.607059338202973, "x2": 6.597465989436497, "x3": -0.8627475160363844, "x4": 1.3166109722184087, "x5": 0.46654219206897407}}, null] +[[4, 0, 18], 9.0, {"submitted": 1558193650.5083988, "started": 1558193650.5087876, "finished": 1558193650.5165353}, {"loss": 0.0462799978530407, "info": {"x0": -2.431687859027013, "x1": 3.760112636618868, "x2": 6.87095708581055, "x3": -0.802541253752362, "x4": 1.074325442728493, "x5": 0.36177676352337773}}, null] +[[4, 0, 19], 9.0, {"submitted": 1558193650.6067824, "started": 1558193650.607169, "finished": 1558193650.6139836}, {"loss": 1, "info": {"x0": -3.3415034004623085, "x1": 3.1156422131543304, "x2": 7.837452990630249, "x3": -1.2703041162673405, "x4": 1.8016783195486972, "x5": 0.464991401781454}}, null] +[[4, 0, 20], 9.0, {"submitted": 1558193650.7245677, "started": 1558193650.7252078, "finished": 1558193650.745243}, {"loss": 0.04358000245571135, "info": {"x0": -2.7897997310576947, "x1": 5.19588202926928, "x2": 6.930533908846916, "x3": -1.4128915942095501, "x4": 1.3329325773633032, "x5": 0.25042911321857003}}, null] +[[4, 0, 21], 9.0, {"submitted": 1558193650.8448176, "started": 1558193650.8451912, "finished": 1558193650.855154}, {"loss": 1, "info": {"x0": -3.6268604395039077, "x1": 3.4926501830426635, "x2": 7.736728551755327, "x3": -0.4596090202791747, "x4": 2.325986873128071, "x5": 0.2321038601757628}}, null] +[[4, 0, 22], 9.0, {"submitted": 1558193650.9439065, "started": 1558193650.9443562, "finished": 1558193650.9540536}, {"loss": 1, "info": {"x0": -2.733369421385225, "x1": 3.2394040560956174, "x2": 6.602905268013619, "x3": -3.61304245173854, "x4": 2.497900811435864, "x5": 0.2846076209173699}}, null] +[[4, 0, 23], 9.0, {"submitted": 1558193651.0560088, "started": 1558193651.0563948, "finished": 1558193651.0683575}, {"loss": 0.06326000146269797, "info": {"x0": -3.0521683908689896, "x1": 4.737836733077142, "x2": 6.938433861823468, "x3": -0.806402051218293, "x4": 2.048923306097664, "x5": 0.4192391087387214}}, null] +[[4, 0, 24], 9.0, {"submitted": 1558193651.0718079, "started": 1558193651.0723882, "finished": 1558193651.079335}, {"loss": 0.04676000071048738, "info": {"x0": -2.8992806227664185, "x1": 6.63825408158677, "x2": 6.180618989705822, "x3": -0.4060326761801156, "x4": 4.461193186309173, "x5": 0.3344684948149606}}, null] +[[4, 0, 25], 9.0, {"submitted": 1558193651.1980119, "started": 1558193651.1985958, "finished": 1558193651.2053769}, {"loss": 1, "info": {"x0": -3.0066864857917612, "x1": 3.015159375902314, "x2": 6.809572189372625, "x3": -0.11138976047239213, "x4": 2.6918874163534303, "x5": 0.33799621506217553}}, null] +[[4, 0, 26], 9.0, {"submitted": 1558193651.2105782, "started": 1558193651.2113032, "finished": 1558193651.221583}, {"loss": 1, "info": {"x0": -2.197351859564982, "x1": 5.990347951982583, "x2": 7.99384169797476, "x3": -2.6190666562773286, "x4": 2.6695625022369014, "x5": 0.06070821229516288}}, null] +[[4, 0, 2], 27.0, {"submitted": 1558193651.2235317, "started": 1558193651.2239385, "finished": 1558193651.2379384}, {"loss": 0.026919999421238905, "info": {"x0": -2.878350384558435, "x1": 5.313252603350495, "x2": 7.5151463987352285, "x3": -1.2319836290849864, "x4": 1.893307088249255, "x5": 0.11500559542447109}}, null] +[[4, 0, 3], 27.0, {"submitted": 1558193651.240661, "started": 1558193651.2409697, "finished": 1558193651.2520077}, {"loss": 0.04087999825716019, "info": {"x0": -3.0451880642024594, "x1": 7.874697357882464, "x2": 5.255096555675857, "x3": -0.8170164427924256, "x4": 4.207923757744259, "x5": 0.2950568077431696}}, null] +[[4, 0, 8], 27.0, {"submitted": 1558193651.255112, "started": 1558193651.2560608, "finished": 1558193651.2719533}, {"loss": 0.30705999803096057, "info": {"x0": -4.543318231311219, "x1": 3.7451318167826146, "x2": 4.388131535412531, "x3": -2.2150576714769863, "x4": 4.254083879918431, "x5": 0.030066067883180947}}, null] +[[4, 0, 9], 27.0, {"submitted": 1558193651.2741396, "started": 1558193651.2744958, "finished": 1558193651.2837305}, {"loss": 0.04922999830007554, "info": {"x0": -2.8233306698902156, "x1": 4.211072879932996, "x2": 6.090540833421254, "x3": -3.5037103407347256, "x4": 1.7533784195547937, "x5": 0.4033015774730685}}, null] +[[4, 0, 13], 27.0, {"submitted": 1558193651.2871099, "started": 1558193651.287783, "finished": 1558193651.2967212}, {"loss": 0.032340001979470255, "info": {"x0": -2.808142070957054, "x1": 4.427107645829427, "x2": 5.993952830496998, "x3": -1.8264577220254359, "x4": 1.3171474583552671, "x5": 0.2768466018387449}}, null] +[[4, 0, 18], 27.0, {"submitted": 1558193651.3038037, "started": 1558193651.3042862, "finished": 1558193651.3106477}, {"loss": 0.032009997801780696, "info": {"x0": -2.431687859027013, "x1": 3.760112636618868, "x2": 6.87095708581055, "x3": -0.802541253752362, "x4": 1.074325442728493, "x5": 0.36177676352337773}}, null] +[[4, 0, 20], 27.0, {"submitted": 1558193651.3129554, "started": 1558193651.315464, "finished": 1558193651.3265014}, {"loss": 0.02667000257611274, "info": {"x0": -2.7897997310576947, "x1": 5.19588202926928, "x2": 6.930533908846916, "x3": -1.4128915942095501, "x4": 1.3329325773633032, "x5": 0.25042911321857003}}, null] +[[4, 0, 23], 27.0, {"submitted": 1558193651.3294141, "started": 1558193651.3307471, "finished": 1558193651.3413255}, {"loss": 0.04336000191211701, "info": {"x0": -3.0521683908689896, "x1": 4.737836733077142, "x2": 6.938433861823468, "x3": -0.806402051218293, "x4": 2.048923306097664, "x5": 0.4192391087387214}}, null] +[[4, 0, 24], 27.0, {"submitted": 1558193651.3436754, "started": 1558193651.34405, "finished": 1558193651.3567805}, {"loss": 0.031639999999403964, "info": {"x0": -2.8992806227664185, "x1": 6.63825408158677, "x2": 6.180618989705822, "x3": -0.4060326761801156, "x4": 4.461193186309173, "x5": 0.3344684948149606}}, null] +[[4, 0, 2], 81.0, {"submitted": 1558193651.361058, "started": 1558193651.3614042, "finished": 1558193651.3739057}, {"loss": 0.020979999400973327, "info": {"x0": -2.878350384558435, "x1": 5.313252603350495, "x2": 7.5151463987352285, "x3": -1.2319836290849864, "x4": 1.893307088249255, "x5": 0.11500559542447109}}, null] +[[4, 0, 20], 81.0, {"submitted": 1558193651.3764093, "started": 1558193651.3768172, "finished": 1558193651.3877907}, {"loss": 0.021110002410411832, "info": {"x0": -2.7897997310576947, "x1": 5.19588202926928, "x2": 6.930533908846916, "x3": -1.4128915942095501, "x4": 1.3329325773633032, "x5": 0.25042911321857003}}, null] +[[4, 0, 24], 81.0, {"submitted": 1558193651.3931262, "started": 1558193651.393569, "finished": 1558193651.404562}, {"loss": 0.0265600011140108, "info": {"x0": -2.8992806227664185, "x1": 6.63825408158677, "x2": 6.180618989705822, "x3": -0.4060326761801156, "x4": 4.461193186309173, "x5": 0.3344684948149606}}, null] +[[4, 0, 2], 243.0, {"submitted": 1558193651.4069033, "started": 1558193651.4073532, "finished": 1558193651.4133778}, {"loss": 0.016709999254941932, "info": {"x0": -2.878350384558435, "x1": 5.313252603350495, "x2": 7.5151463987352285, "x3": -1.2319836290849864, "x4": 1.893307088249255, "x5": 0.11500559542447109}}, null] +[[5, 0, 0], 27.0, {"submitted": 1558193651.5083883, "started": 1558193651.5088985, "finished": 1558193651.5197704}, {"loss": 0.04305999657591186, "info": {"x0": -3.3791510455874914, "x1": 3.7507625713431936, "x2": 7.077862353410803, "x3": -0.6453859698087325, "x4": 1.8401630788577883, "x5": 0.00723383791563216}}, null] +[[5, 0, 1], 27.0, {"submitted": 1558193651.617852, "started": 1558193651.6183398, "finished": 1558193651.6261396}, {"loss": 0.03193000167489052, "info": {"x0": -2.786292444584149, "x1": 3.8236437500025904, "x2": 6.839214357028903, "x3": -0.8950378310204887, "x4": 1.058433368961559, "x5": 0.08860691483852648}}, null] +[[5, 0, 2], 27.0, {"submitted": 1558193651.7192643, "started": 1558193651.719727, "finished": 1558193651.7326198}, {"loss": 0.02571000265598298, "info": {"x0": -3.1336512861534875, "x1": 5.915943804504737, "x2": 7.258419073755607, "x3": -1.2733851695390404, "x4": 1.3610106132913193, "x5": 0.06020875079987206}}, null] +[[5, 0, 3], 27.0, {"submitted": 1558193651.817264, "started": 1558193651.8177795, "finished": 1558193651.8241963}, {"loss": 1, "info": {"x0": -2.877217772295252, "x1": 4.026184988438846, "x2": 7.972049693859265, "x3": -1.8822529643454136, "x4": 3.8627007941003617, "x5": 0.032479308307233334}}, null] +[[5, 0, 4], 27.0, {"submitted": 1558193651.9099262, "started": 1558193651.9103203, "finished": 1558193651.9216902}, {"loss": 0.02871999883949755, "info": {"x0": -2.806277964177388, "x1": 5.338997025603036, "x2": 7.798003424182863, "x3": -1.3212250263329826, "x4": 1.7600338274275913, "x5": 0.036664512049874864}}, null] +[[5, 0, 5], 27.0, {"submitted": 1558193652.0203483, "started": 1558193652.0207644, "finished": 1558193652.0272486}, {"loss": 0.030450001968145367, "info": {"x0": -2.6644979766912593, "x1": 4.599168180318664, "x2": 7.031367553018136, "x3": -1.4592694892875397, "x4": 2.239516757639482, "x5": 0.04292980657820644}}, null] +[[5, 0, 6], 27.0, {"submitted": 1558193652.1032689, "started": 1558193652.103618, "finished": 1558193652.1098592}, {"loss": 0.035700001723170297, "info": {"x0": -2.537569270692792, "x1": 3.6389405939978787, "x2": 6.635239933946208, "x3": -0.4220577676743056, "x4": 1.0174522826352665, "x5": 0.13821818215073528}}, null] +[[5, 0, 7], 27.0, {"submitted": 1558193652.2029593, "started": 1558193652.2035177, "finished": 1558193652.210446}, {"loss": 0.02859999713003636, "info": {"x0": -2.3888107335117295, "x1": 5.447117379454278, "x2": 7.381349684567159, "x3": -1.2475108200979763, "x4": 1.6278359278850183, "x5": 0.024811105401983363}}, null] +[[5, 0, 8], 27.0, {"submitted": 1558193652.2150962, "started": 1558193652.2154922, "finished": 1558193652.2230115}, {"loss": 0.07290999866783619, "info": {"x0": -3.223885031038383, "x1": 3.675737908941053, "x2": 4.33153773242771, "x3": -1.7273467655996275, "x4": 2.82912214525445, "x5": 0.13709021391953513}}, null] +[[5, 0, 2], 81.0, {"submitted": 1558193652.2244098, "started": 1558193652.2247052, "finished": 1558193652.237886}, {"loss": 0.02021000362157823, "info": {"x0": -3.1336512861534875, "x1": 5.915943804504737, "x2": 7.258419073755607, "x3": -1.2733851695390404, "x4": 1.3610106132913193, "x5": 0.06020875079987206}}, null] +[[5, 0, 4], 81.0, {"submitted": 1558193652.241298, "started": 1558193652.2418272, "finished": 1558193652.2496295}, {"loss": 0.020799998265504837, "info": {"x0": -2.806277964177388, "x1": 5.338997025603036, "x2": 7.798003424182863, "x3": -1.3212250263329826, "x4": 1.7600338274275913, "x5": 0.036664512049874864}}, null] +[[5, 0, 7], 81.0, {"submitted": 1558193652.2549298, "started": 1558193652.2553842, "finished": 1558193652.263777}, {"loss": 0.02166999715924265, "info": {"x0": -2.3888107335117295, "x1": 5.447117379454278, "x2": 7.381349684567159, "x3": -1.2475108200979763, "x4": 1.6278359278850183, "x5": 0.024811105401983363}}, null] +[[5, 0, 2], 243.0, {"submitted": 1558193652.272129, "started": 1558193652.2725196, "finished": 1558193652.2822187}, {"loss": 0.019260004132986074, "info": {"x0": -3.1336512861534875, "x1": 5.915943804504737, "x2": 7.258419073755607, "x3": -1.2733851695390404, "x4": 1.3610106132913193, "x5": 0.06020875079987206}}, null] +[[6, 0, 0], 81.0, {"submitted": 1558193652.2872849, "started": 1558193652.287735, "finished": 1558193652.3030155}, {"loss": 0.12525000004410744, "info": {"x0": -5.1599122920958305, "x1": 5.222566047628602, "x2": 7.009012792090284, "x3": -2.430887905185072, "x4": 2.1850767634331745, "x5": 0.3696869224324019}}, null] +[[6, 0, 1], 81.0, {"submitted": 1558193652.401374, "started": 1558193652.4018145, "finished": 1558193652.4080856}, {"loss": 0.020380000209808357, "info": {"x0": -3.1214166167528186, "x1": 7.09217498237475, "x2": 7.334350122724048, "x3": -0.9904074570775578, "x4": 1.4044643306476803, "x5": 0.02053266780585357}}, null] +[[6, 0, 2], 81.0, {"submitted": 1558193652.506024, "started": 1558193652.506544, "finished": 1558193652.5128217}, {"loss": 0.02326000112354757, "info": {"x0": -2.538352578165055, "x1": 5.395154407156005, "x2": 7.912787569993551, "x3": -1.4126864119426887, "x4": 2.933357820585306, "x5": 0.007179552214194838}}, null] +[[6, 0, 3], 81.0, {"submitted": 1558193652.5174859, "started": 1558193652.518886, "finished": 1558193652.5277658}, {"loss": 0.11660000143591316, "info": {"x0": -2.159299923454515, "x1": 5.405096952624975, "x2": 6.2633174338743025, "x3": -1.9385250361815216, "x4": 3.897071847970185, "x5": 0.10647588842198624}}, null] +[[6, 0, 4], 81.0, {"submitted": 1558193652.6255176, "started": 1558193652.6259537, "finished": 1558193652.6405604}, {"loss": 0.020039999433755874, "info": {"x0": -3.1935955708979233, "x1": 5.95599740450722, "x2": 7.739903674969643, "x3": -1.484585233891063, "x4": 1.07615286513601, "x5": 0.02911453595745439}}, null] +[[6, 0, 5], 81.0, {"submitted": 1558193652.7243404, "started": 1558193652.7247071, "finished": 1558193652.736211}, {"loss": 0.025400002706050872, "info": {"x0": -3.336923274816461, "x1": 7.1437659045010315, "x2": 6.827284965719019, "x3": -1.2046157747360233, "x4": 1.2067176830476694, "x5": 0.015788420062646857}}, null] +[[6, 0, 1], 243.0, {"submitted": 1558193652.7395394, "started": 1558193652.739938, "finished": 1558193652.7463882}, {"loss": 0.019890000419616704, "info": {"x0": -3.1214166167528186, "x1": 7.09217498237475, "x2": 7.334350122724048, "x3": -0.9904074570775578, "x4": 1.4044643306476803, "x5": 0.02053266780585357}}, null] +[[6, 0, 4], 243.0, {"submitted": 1558193652.754941, "started": 1558193652.7555947, "finished": 1558193652.7638888}, {"loss": 0.01747999927818774, "info": {"x0": -3.1935955708979233, "x1": 5.95599740450722, "x2": 7.739903674969643, "x3": -1.484585233891063, "x4": 1.07615286513601, "x5": 0.02911453595745439}}, null] +[[7, 0, 0], 243.0, {"submitted": 1558193652.8499243, "started": 1558193652.8504312, "finished": 1558193652.8574677}, {"loss": 0.019015002242624757, "info": {"x0": -2.994443241645423, "x1": 5.67301901870004, "x2": 7.149548732216158, "x3": -1.2483637615674437, "x4": 1.146112676569696, "x5": 0.09253325706761852}}, null] +[[7, 0, 1], 243.0, {"submitted": 1558193652.955888, "started": 1558193652.9562628, "finished": 1558193652.964709}, {"loss": 0.01675999787926674, "info": {"x0": -2.812310968746141, "x1": 5.76492896045767, "x2": 7.719400373842002, "x3": -1.4220375611721, "x4": 1.7337903758244628, "x5": 0.14364644035670832}}, null] +[[7, 0, 2], 243.0, {"submitted": 1558193653.0476127, "started": 1558193653.0488915, "finished": 1558193653.0577936}, {"loss": 0.018760004708170897, "info": {"x0": -3.0574992359538946, "x1": 5.149088773703574, "x2": 7.124036897039822, "x3": -1.424104299805247, "x4": 1.5358416755723685, "x5": 0.19490193709081277}}, null] +[[7, 0, 3], 243.0, {"submitted": 1558193653.138401, "started": 1558193653.1388285, "finished": 1558193653.1448984}, {"loss": 0.019380001649260514, "info": {"x0": -2.9628332449873396, "x1": 4.439227914880045, "x2": 7.438054722575036, "x3": -1.4252535802101174, "x4": 1.668220488156831, "x5": 0.39059637146362813}}, null] +[[8, 0, 0], 9.0, {"submitted": 1558193653.2480526, "started": 1558193653.2486858, "finished": 1558193653.2565627}, {"loss": 1, "info": {"x0": -2.9140184827116653, "x1": 4.459438946439406, "x2": 7.901998280789643, "x3": -1.2236074892441473, "x4": 1.7919780396749885, "x5": 0.056470710482190614}}, null] +[[8, 0, 1], 9.0, {"submitted": 1558193653.35713, "started": 1558193653.3574536, "finished": 1558193653.363873}, {"loss": 1, "info": {"x0": -3.0083844148898296, "x1": 4.386793042382273, "x2": 7.776090755735991, "x3": -1.502699622880368, "x4": 2.392483949201459, "x5": 0.27115758300262044}}, null] +[[8, 0, 2], 9.0, {"submitted": 1558193653.3673782, "started": 1558193653.3699534, "finished": 1558193653.3780673}, {"loss": 0.10835999839931727, "info": {"x0": -3.6049240936758022, "x1": 4.521611476430015, "x2": 4.639842353587941, "x3": -0.8357771715588163, "x4": 4.257688387670525, "x5": 0.07624201156617694}}, null] +[[8, 0, 3], 9.0, {"submitted": 1558193653.4641106, "started": 1558193653.4645505, "finished": 1558193653.4739275}, {"loss": 0.043885001273453225, "info": {"x0": -2.8187012242198275, "x1": 5.975375194522241, "x2": 7.144112739483171, "x3": -1.4864442385339958, "x4": 1.460231777308235, "x5": 0.09674761180565017}}, null] +[[8, 0, 4], 9.0, {"submitted": 1558193653.5643663, "started": 1558193653.5651407, "finished": 1558193653.575323}, {"loss": 1, "info": {"x0": -3.288591643512313, "x1": 4.466373756744041, "x2": 7.334583377454759, "x3": -0.7178396298065692, "x4": 2.024888600877106, "x5": 0.24375861127265688}}, null] +[[8, 0, 5], 9.0, {"submitted": 1558193653.6782124, "started": 1558193653.6786866, "finished": 1558193653.6867418}, {"loss": 0.038399998852014526, "info": {"x0": -2.8655052699892423, "x1": 5.194720678881751, "x2": 7.566123301301716, "x3": -1.5006958733378193, "x4": 1.5731130909810576, "x5": 0.10792250014172769}}, null] +[[8, 0, 6], 9.0, {"submitted": 1558193653.795042, "started": 1558193653.7954543, "finished": 1558193653.8066761}, {"loss": 0.04394749989122153, "info": {"x0": -3.2143510724398037, "x1": 5.829065180922134, "x2": 7.503120405510453, "x3": -1.3955527377084573, "x4": 1.4116635142921528, "x5": 0.20396112147520915}}, null] +[[8, 0, 7], 9.0, {"submitted": 1558193653.9008882, "started": 1558193653.901585, "finished": 1558193653.9089468}, {"loss": 0.055299997252225876, "info": {"x0": -3.281401673321686, "x1": 5.757553302287812, "x2": 7.369916540349626, "x3": -1.3807276917515297, "x4": 1.0090856285552596, "x5": 0.003919501229702749}}, null] +[[8, 0, 8], 9.0, {"submitted": 1558193654.000118, "started": 1558193654.000891, "finished": 1558193654.0077715}, {"loss": 1, "info": {"x0": -2.892199940097713, "x1": 4.89170234371942, "x2": 7.272674515182494, "x3": -1.3480006640871371, "x4": 1.5185047731215942, "x5": 0.00791318206572332}}, null] +[[8, 0, 9], 9.0, {"submitted": 1558193654.0930276, "started": 1558193654.0935683, "finished": 1558193654.107418}, {"loss": 0.03730999673604964, "info": {"x0": -2.8397928740076632, "x1": 5.801349076562235, "x2": 7.666230783164709, "x3": -1.6504002667932678, "x4": 1.4267547350761323, "x5": 0.12451459935419143}}, null] +[[8, 0, 10], 9.0, {"submitted": 1558193654.109907, "started": 1558193654.1102955, "finished": 1558193654.1215065}, {"loss": 1, "info": {"x0": -5.232732155240493, "x1": 3.666849248243018, "x2": 7.789925554722213, "x3": -2.884891350536891, "x4": 2.6029091370312916, "x5": 0.2655467027374823}}, null] +[[8, 0, 11], 9.0, {"submitted": 1558193654.207887, "started": 1558193654.2082999, "finished": 1558193654.2143838}, {"loss": 0.03976749864473939, "info": {"x0": -2.8059142849641145, "x1": 4.580348331497686, "x2": 7.057028119036914, "x3": -1.2402209243081534, "x4": 1.523927790852379, "x5": 0.18329571072479536}}, null] +[[8, 0, 12], 9.0, {"submitted": 1558193654.2173555, "started": 1558193654.2187736, "finished": 1558193654.2286432}, {"loss": 1, "info": {"x0": -3.89255921317556, "x1": 3.286075972431738, "x2": 7.765074714250709, "x3": -3.0716494820349953, "x4": 4.123350613671208, "x5": 0.0739974352987377}}, null] +[[8, 0, 13], 9.0, {"submitted": 1558193654.3153908, "started": 1558193654.3161922, "finished": 1558193654.3227887}, {"loss": 1, "info": {"x0": -3.3918832846898304, "x1": 4.518500483950598, "x2": 7.544791074027066, "x3": -0.869922640002815, "x4": 1.4806169053015048, "x5": 0.16625851916931234}}, null] +[[8, 0, 14], 9.0, {"submitted": 1558193654.3247633, "started": 1558193654.3251927, "finished": 1558193654.341119}, {"loss": 0.051420001018047334, "info": {"x0": -2.3799624009382443, "x1": 5.437002048980128, "x2": 6.28162358162249, "x3": -2.791488941908703, "x4": 1.882983114730187, "x5": 0.3615103492291291}}, null] +[[8, 0, 15], 9.0, {"submitted": 1558193654.4242334, "started": 1558193654.424741, "finished": 1558193654.4374967}, {"loss": 0.04312999469518662, "info": {"x0": -2.622145829727267, "x1": 6.053150555271737, "x2": 7.538833018869452, "x3": -1.2624519235360165, "x4": 1.6580222115521772, "x5": 0.1310228129323727}}, null] +[[8, 0, 16], 9.0, {"submitted": 1558193654.5176318, "started": 1558193654.5181139, "finished": 1558193654.5256596}, {"loss": 0.0438699971449375, "info": {"x0": -3.246344393402349, "x1": 5.652645110286558, "x2": 7.377375101876321, "x3": -1.4233484493931279, "x4": 1.5275457002969142, "x5": 0.14730987609230947}}, null] +[[8, 0, 17], 9.0, {"submitted": 1558193654.614935, "started": 1558193654.6154013, "finished": 1558193654.6223264}, {"loss": 0.03882999469459057, "info": {"x0": -2.606109652556031, "x1": 6.253555728301505, "x2": 7.902785393716239, "x3": -1.5600394435141811, "x4": 1.6129645890088322, "x5": 0.13237042862054532}}, null] +[[8, 0, 18], 9.0, {"submitted": 1558193654.7040825, "started": 1558193654.7049472, "finished": 1558193654.7108874}, {"loss": 0.034120001510977736, "info": {"x0": -3.024389196207851, "x1": 6.747871353458493, "x2": 7.087377265748392, "x3": -1.1210753880733315, "x4": 1.3014601705549311, "x5": 0.12045577096520892}}, null] +[[8, 0, 19], 9.0, {"submitted": 1558193654.7859704, "started": 1558193654.7865372, "finished": 1558193654.7933276}, {"loss": 1, "info": {"x0": -2.9115251796972967, "x1": 4.691226030699207, "x2": 7.631132319885667, "x3": -1.2850899394252338, "x4": 1.9347805468891792, "x5": 0.15750158165002404}}, null] +[[8, 0, 20], 9.0, {"submitted": 1558193654.8818207, "started": 1558193654.8821707, "finished": 1558193654.8927367}, {"loss": 0.03893999910145997, "info": {"x0": -2.929865802094781, "x1": 5.282101392469639, "x2": 7.5880638037975, "x3": -1.4864815638475868, "x4": 1.7446781035190926, "x5": 0.24691509132078993}}, null] +[[8, 0, 21], 9.0, {"submitted": 1558193654.89623, "started": 1558193654.8970633, "finished": 1558193654.9131594}, {"loss": 0.03953999801516532, "info": {"x0": -2.0835134731780567, "x1": 6.244252530071048, "x2": 6.684186848686521, "x3": -0.667480862552388, "x4": 2.3855239153218366, "x5": 0.13010517768811508}}, null] +[[8, 0, 22], 9.0, {"submitted": 1558193654.9889271, "started": 1558193654.989346, "finished": 1558193654.995476}, {"loss": 1, "info": {"x0": -2.873352847785295, "x1": 4.75790022129238, "x2": 7.486936405095916, "x3": -1.5765693176647044, "x4": 1.822160378144428, "x5": 0.24933397112264089}}, null] +[[8, 0, 23], 9.0, {"submitted": 1558193655.0953946, "started": 1558193655.0957778, "finished": 1558193655.1060379}, {"loss": 1, "info": {"x0": -3.3561345217051883, "x1": 4.892138697900752, "x2": 7.235587464542244, "x3": -1.4176801337998763, "x4": 1.809684811650907, "x5": 0.13609839809361352}}, null] +[[8, 0, 24], 9.0, {"submitted": 1558193655.1088624, "started": 1558193655.1094537, "finished": 1558193655.1171367}, {"loss": 0.45918999981306496, "info": {"x0": -4.47748872012167, "x1": 4.3383407399082845, "x2": 5.1816316182649835, "x3": -2.1587636282952625, "x4": 2.8742065296627177, "x5": 0.3898473765255892}}, null] +[[8, 0, 25], 9.0, {"submitted": 1558193655.1201909, "started": 1558193655.1206794, "finished": 1558193655.1303866}, {"loss": 0.31518000063017015, "info": {"x0": -4.223071363556652, "x1": 5.653346416491015, "x2": 4.062176362649978, "x3": -0.0568734836124456, "x4": 3.2586170714467464, "x5": 0.10395514065043188}}, null] +[[8, 0, 26], 9.0, {"submitted": 1558193655.1366167, "started": 1558193655.1371865, "finished": 1558193655.144875}, {"loss": 1, "info": {"x0": -2.277583154170667, "x1": 3.357613047977241, "x2": 7.1127667343065095, "x3": -2.8794287843994826, "x4": 1.0101035177869249, "x5": 0.4951557696484761}}, null] +[[8, 0, 5], 27.0, {"submitted": 1558193655.146739, "started": 1558193655.1485224, "finished": 1558193655.1613328}, {"loss": 0.026759999357461928, "info": {"x0": -2.8655052699892423, "x1": 5.194720678881751, "x2": 7.566123301301716, "x3": -1.5006958733378193, "x4": 1.5731130909810576, "x5": 0.10792250014172769}}, null] +[[8, 0, 9], 27.0, {"submitted": 1558193655.16376, "started": 1558193655.164255, "finished": 1558193655.1751142}, {"loss": 0.023059998080134404, "info": {"x0": -2.8397928740076632, "x1": 5.801349076562235, "x2": 7.666230783164709, "x3": -1.6504002667932678, "x4": 1.4267547350761323, "x5": 0.12451459935419143}}, null] +[[8, 0, 11], 27.0, {"submitted": 1558193655.177021, "started": 1558193655.1773467, "finished": 1558193655.1873908}, {"loss": 0.02856499877274036, "info": {"x0": -2.8059142849641145, "x1": 4.580348331497686, "x2": 7.057028119036914, "x3": -1.2402209243081534, "x4": 1.523927790852379, "x5": 0.18329571072479536}}, null] +[[8, 0, 15], 27.0, {"submitted": 1558193655.191593, "started": 1558193655.1921792, "finished": 1558193655.201715}, {"loss": 0.02541999538302423, "info": {"x0": -2.622145829727267, "x1": 6.053150555271737, "x2": 7.538833018869452, "x3": -1.2624519235360165, "x4": 1.6580222115521772, "x5": 0.1310228129323727}}, null] +[[8, 0, 16], 27.0, {"submitted": 1558193655.2068746, "started": 1558193655.2073784, "finished": 1558193655.2143946}, {"loss": 0.02567999902546405, "info": {"x0": -3.246344393402349, "x1": 5.652645110286558, "x2": 7.377375101876321, "x3": -1.4233484493931279, "x4": 1.5275457002969142, "x5": 0.14730987609230947}}, null] +[[8, 0, 17], 27.0, {"submitted": 1558193655.2181752, "started": 1558193655.2222703, "finished": 1558193655.2316818}, {"loss": 0.02478999586105346, "info": {"x0": -2.606109652556031, "x1": 6.253555728301505, "x2": 7.902785393716239, "x3": -1.5600394435141811, "x4": 1.6129645890088322, "x5": 0.13237042862054532}}, null] +[[8, 0, 18], 27.0, {"submitted": 1558193655.2380464, "started": 1558193655.239024, "finished": 1558193655.2452157}, {"loss": 0.0227000024497509, "info": {"x0": -3.024389196207851, "x1": 6.747871353458493, "x2": 7.087377265748392, "x3": -1.1210753880733315, "x4": 1.3014601705549311, "x5": 0.12045577096520892}}, null] +[[8, 0, 20], 27.0, {"submitted": 1558193655.2509215, "started": 1558193655.2514367, "finished": 1558193655.2626057}, {"loss": 0.028119999153017994, "info": {"x0": -2.929865802094781, "x1": 5.282101392469639, "x2": 7.5880638037975, "x3": -1.4864815638475868, "x4": 1.7446781035190926, "x5": 0.24691509132078993}}, null] +[[8, 0, 21], 27.0, {"submitted": 1558193655.266819, "started": 1558193655.2673368, "finished": 1558193655.2743335}, {"loss": 0.0298399990838766, "info": {"x0": -2.0835134731780567, "x1": 6.244252530071048, "x2": 6.684186848686521, "x3": -0.667480862552388, "x4": 2.3855239153218366, "x5": 0.13010517768811508}}, null] +[[8, 0, 9], 81.0, {"submitted": 1558193655.2765307, "started": 1558193655.2769141, "finished": 1558193655.2877848}, {"loss": 0.018079998214840888, "info": {"x0": -2.8397928740076632, "x1": 5.801349076562235, "x2": 7.666230783164709, "x3": -1.6504002667932678, "x4": 1.4267547350761323, "x5": 0.12451459935419143}}, null] +[[8, 0, 17], 81.0, {"submitted": 1558193655.2893791, "started": 1558193655.289846, "finished": 1558193655.3016808}, {"loss": 0.018709995155334457, "info": {"x0": -2.606109652556031, "x1": 6.253555728301505, "x2": 7.902785393716239, "x3": -1.5600394435141811, "x4": 1.6129645890088322, "x5": 0.13237042862054532}}, null] +[[8, 0, 18], 81.0, {"submitted": 1558193655.3047962, "started": 1558193655.3054683, "finished": 1558193655.3125927}, {"loss": 0.019420003150701526, "info": {"x0": -3.024389196207851, "x1": 6.747871353458493, "x2": 7.087377265748392, "x3": -1.1210753880733315, "x4": 1.3014601705549311, "x5": 0.12045577096520892}}, null] +[[8, 0, 9], 243.0, {"submitted": 1558193655.3166986, "started": 1558193655.317165, "finished": 1558193655.3299253}, {"loss": 0.016029998351335527, "info": {"x0": -2.8397928740076632, "x1": 5.801349076562235, "x2": 7.666230783164709, "x3": -1.6504002667932678, "x4": 1.4267547350761323, "x5": 0.12451459935419143}}, null] +[[9, 0, 0], 27.0, {"submitted": 1558193655.41738, "started": 1558193655.4179022, "finished": 1558193655.425184}, {"loss": 0.030079994444847123, "info": {"x0": -3.0926492624790702, "x1": 5.327035693635959, "x2": 7.963677005376297, "x3": -1.2758816385644303, "x4": 1.8480347600291442, "x5": 0.1853069514308593}}, null] +[[9, 0, 1], 27.0, {"submitted": 1558193655.5099313, "started": 1558193655.5103483, "finished": 1558193655.5187488}, {"loss": 0.037290001502037054, "info": {"x0": -3.0293209040590012, "x1": 4.442606170098841, "x2": 7.791994009598046, "x3": -1.1553273386274152, "x4": 1.8184908408984484, "x5": 0.10711337095901462}}, null] +[[9, 0, 2], 27.0, {"submitted": 1558193655.5249696, "started": 1558193655.525346, "finished": 1558193655.5389886}, {"loss": 0.6773999935211241, "info": {"x0": -5.3342595851348555, "x1": 3.1918044221610593, "x2": 4.059376821950101, "x3": -1.9092705785498518, "x4": 2.822951397346009, "x5": 0.3446608542656266}}, null] +[[9, 0, 3], 27.0, {"submitted": 1558193655.5417867, "started": 1558193655.5421872, "finished": 1558193655.5497348}, {"loss": 0.10044999859929087, "info": {"x0": -3.937068279222197, "x1": 6.381220956461233, "x2": 4.032730340442349, "x3": -2.8164084167328647, "x4": 2.925672369534332, "x5": 0.13283309659258236}}, null] +[[9, 0, 4], 27.0, {"submitted": 1558193655.6231508, "started": 1558193655.6235075, "finished": 1558193655.6345394}, {"loss": 0.027020002020001422, "info": {"x0": -3.0235181241801286, "x1": 5.246251717598286, "x2": 7.474441293461345, "x3": -1.1594177363410818, "x4": 1.7309439138632847, "x5": 0.1839056435326581}}, null] +[[9, 0, 5], 27.0, {"submitted": 1558193655.6415174, "started": 1558193655.6418993, "finished": 1558193655.6495638}, {"loss": 0.1718999956062436, "info": {"x0": -4.27062346815095, "x1": 5.278439476313257, "x2": 7.179071792389188, "x3": -1.8510793911293058, "x4": 4.552218978080942, "x5": 0.47682342448692516}}, null] +[[9, 0, 6], 27.0, {"submitted": 1558193655.654672, "started": 1558193655.6551871, "finished": 1558193655.6666028}, {"loss": 0.1297499999316037, "info": {"x0": -2.378394243062977, "x1": 3.6148359961167857, "x2": 5.139960305772307, "x3": -0.8983913145944569, "x4": 4.145622801117645, "x5": 0.27302883068058476}}, null] +[[9, 0, 7], 27.0, {"submitted": 1558193655.7553344, "started": 1558193655.7556903, "finished": 1558193655.7620244}, {"loss": 0.030750003581643114, "info": {"x0": -2.990068581144176, "x1": 5.069317515660211, "x2": 7.627352228195109, "x3": -1.2236139602891196, "x4": 1.613793550846846, "x5": 0.23811252356145923}}, null] +[[9, 0, 8], 27.0, {"submitted": 1558193655.764603, "started": 1558193655.7667725, "finished": 1558193655.7764635}, {"loss": 0.03616000369012355, "info": {"x0": -2.9183101197561245, "x1": 5.904647909070882, "x2": 7.56148990683042, "x3": -0.12720924530773914, "x4": 4.300260264238847, "x5": 0.3901277930367801}}, null] +[[9, 0, 0], 81.0, {"submitted": 1558193655.7782683, "started": 1558193655.7788851, "finished": 1558193655.7895792}, {"loss": 0.021039994524121287, "info": {"x0": -3.0926492624790702, "x1": 5.327035693635959, "x2": 7.963677005376297, "x3": -1.2758816385644303, "x4": 1.8480347600291442, "x5": 0.1853069514308593}}, null] +[[9, 0, 4], 81.0, {"submitted": 1558193655.791814, "started": 1558193655.7921412, "finished": 1558193655.805181}, {"loss": 0.020690002797245997, "info": {"x0": -3.0235181241801286, "x1": 5.246251717598286, "x2": 7.474441293461345, "x3": -1.1594177363410818, "x4": 1.7309439138632847, "x5": 0.1839056435326581}}, null] +[[9, 0, 7], 81.0, {"submitted": 1558193655.806882, "started": 1558193655.8072562, "finished": 1558193655.8131957}, {"loss": 0.022700004078149805, "info": {"x0": -2.990068581144176, "x1": 5.069317515660211, "x2": 7.627352228195109, "x3": -1.2236139602891196, "x4": 1.613793550846846, "x5": 0.23811252356145923}}, null] +[[9, 0, 4], 243.0, {"submitted": 1558193655.8156748, "started": 1558193655.816056, "finished": 1558193655.8266335}, {"loss": 0.017780003054141978, "info": {"x0": -3.0235181241801286, "x1": 5.246251717598286, "x2": 7.474441293461345, "x3": -1.1594177363410818, "x4": 1.7309439138632847, "x5": 0.1839056435326581}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/hyperband/configs.json new file mode 100644 index 0000000..7455873 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/hyperband/configs.json @@ -0,0 +1,128 @@ +[[0, 0, 0], {"x0": -3.70402854052528, "x1": 4.991417705977198, "x2": 4.554181360894038, "x3": -2.8012946436440536, "x4": 4.542832121265401, "x5": 0.4940594853007663}, {}] +[[0, 0, 1], {"x0": -3.035439395161107, "x1": 3.5255752818237935, "x2": 7.2509059988792, "x3": -1.491852562409787, "x4": 3.9289902046517966, "x5": 0.4649004147226151}, {}] +[[0, 0, 2], {"x0": -3.3159152342193647, "x1": 6.171084268128512, "x2": 5.8471946768961445, "x3": -0.43120258190415983, "x4": 3.5745460465634213, "x5": 0.3079664311526385}, {}] +[[0, 0, 3], {"x0": -3.9099307149765137, "x1": 4.325646251653739, "x2": 5.56254764767024, "x3": -1.4476949550906042, "x4": 1.6871592373852478, "x5": 0.3750448933678043}, {}] +[[0, 0, 4], {"x0": -2.982500003360147, "x1": 5.9457691028958894, "x2": 6.642249153992445, "x3": -3.1370762196328594, "x4": 2.892511045489025, "x5": 0.13929395230723562}, {}] +[[0, 0, 5], {"x0": -5.818375403103306, "x1": 6.41602660227597, "x2": 6.987882604770842, "x3": -3.1815704041991637, "x4": 4.390987380364833, "x5": 0.13495696066412471}, {}] +[[0, 0, 6], {"x0": -4.392005181313406, "x1": 3.088481610355131, "x2": 5.119187316921872, "x3": -1.8042457024756824, "x4": 3.8798533683489658, "x5": 0.17293572640396065}, {}] +[[0, 0, 7], {"x0": -4.153933287555677, "x1": 6.988064299470963, "x2": 7.318262226752756, "x3": -2.25951801094932, "x4": 2.1055772750706985, "x5": 0.20182799356503767}, {}] +[[0, 0, 8], {"x0": -3.3949398972826383, "x1": 3.8187049189977937, "x2": 7.628629007172329, "x3": -2.29617029440714, "x4": 3.2722986752765504, "x5": 0.34365469406263915}, {}] +[[0, 0, 9], {"x0": -2.6284170237343685, "x1": 3.8265375623994387, "x2": 7.323133415288206, "x3": -3.7217205326495972, "x4": 2.019325028652121, "x5": 0.3675646212790302}, {}] +[[0, 0, 10], {"x0": -5.96615417885626, "x1": 3.556810148893116, "x2": 6.643632328091253, "x3": -3.3648089407955166, "x4": 2.3103885227475787, "x5": 0.4202736206989195}, {}] +[[0, 0, 11], {"x0": -4.962126429424677, "x1": 4.996336391695884, "x2": 5.327656330984432, "x3": -1.7604888680421262, "x4": 4.6011296820427745, "x5": 0.30170395156631263}, {}] +[[0, 0, 12], {"x0": -2.403772645469254, "x1": 7.208154477506218, "x2": 7.417178713778334, "x3": -2.5632618026393788, "x4": 1.7457099244126764, "x5": 0.09488151559532404}, {}] +[[0, 0, 13], {"x0": -3.82904057264856, "x1": 5.714235553044322, "x2": 7.129703498742023, "x3": -1.344386983355974, "x4": 4.453967485372458, "x5": 0.38912171492641817}, {}] +[[0, 0, 14], {"x0": -3.961572945314672, "x1": 3.6513115713845226, "x2": 4.607143957448676, "x3": -1.1610750066167936, "x4": 1.9367405434135723, "x5": 0.44136596045116827}, {}] +[[0, 0, 15], {"x0": -5.70586138773182, "x1": 7.35268186939928, "x2": 6.128710058370478, "x3": -0.8544675418840808, "x4": 2.6190810060490524, "x5": 0.01673776495253293}, {}] +[[0, 0, 16], {"x0": -4.029840479335767, "x1": 7.553302833154741, "x2": 6.186416584692689, "x3": -3.56388520013008, "x4": 4.657122397493092, "x5": 0.05269091678201082}, {}] +[[0, 0, 17], {"x0": -2.368511722643792, "x1": 5.417706627018114, "x2": 5.20247045505827, "x3": -2.2584547872153102, "x4": 4.041227766426411, "x5": 0.15509008083273507}, {}] +[[0, 0, 18], {"x0": -3.44905387089842, "x1": 5.264377043304213, "x2": 7.600699126014916, "x3": -3.2363230736262314, "x4": 2.8707923096363244, "x5": 0.46017711046377696}, {}] +[[0, 0, 19], {"x0": -5.871988818901646, "x1": 5.344161343736015, "x2": 6.7528421448848475, "x3": -3.160883579231891, "x4": 3.5370529017015944, "x5": 0.01578455872372181}, {}] +[[0, 0, 20], {"x0": -5.783147818245645, "x1": 7.815929213549847, "x2": 6.90771772247518, "x3": -2.298911165898502, "x4": 3.06836802049927, "x5": 0.07678313399419462}, {}] +[[0, 0, 21], {"x0": -2.103015438514233, "x1": 7.984593414630449, "x2": 7.9109555612605345, "x3": -0.9954918637666177, "x4": 4.475468238866167, "x5": 0.40964270701685795}, {}] +[[0, 0, 22], {"x0": -4.977227128119811, "x1": 7.4567135930741655, "x2": 6.243364434930855, "x3": -0.3331575372070632, "x4": 1.588757803704309, "x5": 0.4118212022704868}, {}] +[[0, 0, 23], {"x0": -4.1063473657621135, "x1": 3.6219565114878978, "x2": 4.779597032328904, "x3": -0.7371821745155027, "x4": 4.7291724394886, "x5": 0.08863150073365417}, {}] +[[0, 0, 24], {"x0": -2.504711690622519, "x1": 4.386856136681349, "x2": 7.3461706961534645, "x3": -2.7187732879303117, "x4": 2.4253354355197083, "x5": 0.09417014051816092}, {}] +[[0, 0, 25], {"x0": -2.326092805303507, "x1": 7.469112846554885, "x2": 5.322409775605467, "x3": -1.2102443817263335, "x4": 4.15381836205947, "x5": 0.49599428575747473}, {}] +[[0, 0, 26], {"x0": -2.526265959182889, "x1": 3.741684967348512, "x2": 4.372932028151467, "x3": -2.708714993999987, "x4": 1.0373093242507987, "x5": 0.22431083118455059}, {}] +[[1, 0, 0], {"x0": -5.453934392450128, "x1": 7.292006808686294, "x2": 7.118479092590099, "x3": -3.8851038682847614, "x4": 2.290620205049863, "x5": 0.4796342983052563}, {}] +[[1, 0, 1], {"x0": -2.5017276551489402, "x1": 7.204693473468818, "x2": 5.103458595685714, "x3": -3.8639112753078866, "x4": 2.7928669831580923, "x5": 0.11902311744802285}, {}] +[[1, 0, 2], {"x0": -3.4190857554849767, "x1": 5.742802292473199, "x2": 4.74906334267329, "x3": -2.7688859413893234, "x4": 1.7607931606980696, "x5": 0.21149020641855448}, {}] +[[1, 0, 3], {"x0": -2.766303906619959, "x1": 4.1734919106246915, "x2": 5.7437106140693395, "x3": -2.502385519439046, "x4": 3.414751957066494, "x5": 0.005076625897038778}, {}] +[[1, 0, 4], {"x0": -4.194369144944095, "x1": 6.438851312667475, "x2": 6.22580518123139, "x3": -3.6036335569017273, "x4": 3.731453987010197, "x5": 0.2572114407765837}, {}] +[[1, 0, 5], {"x0": -4.2510532855726, "x1": 4.767886931847222, "x2": 5.300662283078481, "x3": -1.7623297784588705, "x4": 3.8906708035016115, "x5": 0.2595843746135403}, {}] +[[1, 0, 6], {"x0": -5.570598850226771, "x1": 5.744669525645311, "x2": 6.844989795536398, "x3": -3.306562598160349, "x4": 4.225466277843164, "x5": 0.4374158108365275}, {}] +[[1, 0, 7], {"x0": -2.7680381976199993, "x1": 7.678193184345374, "x2": 5.026651354017449, "x3": -0.9891532161478525, "x4": 2.8553355719835016, "x5": 0.48252753590722886}, {}] +[[1, 0, 8], {"x0": -2.471991511668048, "x1": 3.9379059297629313, "x2": 6.746466498675196, "x3": -3.994208556813741, "x4": 4.582345711791474, "x5": 0.24882396864648249}, {}] +[[2, 0, 0], {"x0": -3.5556028852917816, "x1": 5.134897762991777, "x2": 6.671245417965478, "x3": -1.0288889473481513, "x4": 2.0692639003344193, "x5": 0.22276162006698813}, {}] +[[2, 0, 1], {"x0": -5.021825363221989, "x1": 4.123369324144071, "x2": 5.226014313948218, "x3": -3.8339911012344023, "x4": 1.1222265726154683, "x5": 0.42609619426086287}, {}] +[[2, 0, 2], {"x0": -4.708776292946483, "x1": 6.909798517397123, "x2": 6.367642529399498, "x3": -2.53425601494385, "x4": 3.1781025482284777, "x5": 0.3743585220693358}, {}] +[[2, 0, 3], {"x0": -3.1037666034637823, "x1": 3.648220881789843, "x2": 6.6306960675490885, "x3": -2.185261468484789, "x4": 2.9209912533452105, "x5": 0.34784198869968036}, {}] +[[2, 0, 4], {"x0": -4.157439471557307, "x1": 3.401101857681618, "x2": 4.386256590305561, "x3": -0.44579765841118935, "x4": 3.9343177349301417, "x5": 0.3375849900661359}, {}] +[[2, 0, 5], {"x0": -2.3167635038273033, "x1": 5.406084578339964, "x2": 7.611255884023507, "x3": -2.946205532746152, "x4": 2.829743126017637, "x5": 0.1846528413863585}, {}] +[[3, 0, 0], {"x0": -5.874330631233892, "x1": 3.518980476249972, "x2": 6.396471696095682, "x3": -2.788981811911634, "x4": 3.6423620687362344, "x5": 0.2633925142680874}, {}] +[[3, 0, 1], {"x0": -5.825438061147464, "x1": 5.172445314384143, "x2": 5.168912909733367, "x3": -3.1947354693402263, "x4": 4.445082226244027, "x5": 0.33324937671385996}, {}] +[[3, 0, 2], {"x0": -5.5633631331216655, "x1": 6.235156370269788, "x2": 4.19544587377497, "x3": -0.2982552666063998, "x4": 3.240583248288508, "x5": 0.05788002753240179}, {}] +[[3, 0, 3], {"x0": -4.311837900098293, "x1": 6.673517196160649, "x2": 6.496346123559568, "x3": -3.5090199772340385, "x4": 2.106346782259985, "x5": 0.1773814262994955}, {}] +[[4, 0, 0], {"x0": -4.332896065677885, "x1": 7.114501174611844, "x2": 7.322412750481153, "x3": -0.3733072473644361, "x4": 4.996312733560149, "x5": 0.054779018672934054}, {}] +[[4, 0, 1], {"x0": -5.597215443520535, "x1": 5.076031161269606, "x2": 6.102074450111754, "x3": -1.2356808178666947, "x4": 2.189785643916091, "x5": 0.2910646891734265}, {}] +[[4, 0, 2], {"x0": -4.14063954715086, "x1": 3.0755628194887734, "x2": 5.194779560311524, "x3": -3.3148012400142086, "x4": 1.382486135804577, "x5": 0.3895730884046115}, {}] +[[4, 0, 3], {"x0": -2.9502777570587018, "x1": 6.040010482712203, "x2": 6.679776300243439, "x3": -2.2917703199184314, "x4": 3.8606278197078976, "x5": 0.49184986310734446}, {}] +[[4, 0, 4], {"x0": -2.020275926584572, "x1": 4.686938809400109, "x2": 7.022232385346527, "x3": -1.5678986841311877, "x4": 1.796764342345465, "x5": 0.09181419930121365}, {}] +[[4, 0, 5], {"x0": -4.931059101972192, "x1": 6.311925232305237, "x2": 4.576806293052399, "x3": -2.3957711531564345, "x4": 2.3177775232060966, "x5": 0.021298881197264807}, {}] +[[4, 0, 6], {"x0": -4.4709231777536536, "x1": 4.8140760519094385, "x2": 4.792771837877761, "x3": -1.764688687619612, "x4": 2.3540716362833374, "x5": 0.16399385160340024}, {}] +[[4, 0, 7], {"x0": -5.045890061742488, "x1": 4.503515841261034, "x2": 5.75220440782728, "x3": -2.1839304712734857, "x4": 2.811233705517521, "x5": 0.31321248821192754}, {}] +[[4, 0, 8], {"x0": -2.0100346888802965, "x1": 4.367484768807278, "x2": 6.116432169623176, "x3": -3.804941274953296, "x4": 1.2498826512790195, "x5": 0.34726023435364634}, {}] +[[4, 0, 9], {"x0": -3.6010479830013185, "x1": 5.437478607967673, "x2": 6.038375516314074, "x3": -2.919379701677911, "x4": 1.761187174617242, "x5": 0.1920204874717238}, {}] +[[4, 0, 10], {"x0": -2.5550774836055927, "x1": 6.951737336404175, "x2": 7.925971945930373, "x3": -1.6574546168426223, "x4": 4.091961920525707, "x5": 0.01578674317821993}, {}] +[[4, 0, 11], {"x0": -5.254470301378253, "x1": 7.42986367806386, "x2": 4.920963565600047, "x3": -1.0950426392767736, "x4": 2.5509973107731865, "x5": 0.29122977359437924}, {}] +[[4, 0, 12], {"x0": -4.556026173026808, "x1": 6.853525440387576, "x2": 4.89894373537075, "x3": -1.870290020702495, "x4": 2.710701342703536, "x5": 0.025692442437432572}, {}] +[[4, 0, 13], {"x0": -5.840081336695931, "x1": 4.218331978037112, "x2": 6.5805405206771495, "x3": -2.97531975620809, "x4": 4.969080891238782, "x5": 0.15486832829742292}, {}] +[[4, 0, 14], {"x0": -5.089660691823662, "x1": 7.643667138884641, "x2": 7.447532447718654, "x3": -0.7421298450019864, "x4": 4.107171366742334, "x5": 0.06321832438288089}, {}] +[[4, 0, 15], {"x0": -5.502405779135698, "x1": 4.253026838841151, "x2": 5.551210675390907, "x3": -3.037308778184353, "x4": 3.0823670055343992, "x5": 0.32885478930409767}, {}] +[[4, 0, 16], {"x0": -2.7463820301881685, "x1": 4.903663202568626, "x2": 7.639798016946719, "x3": -3.732483488318395, "x4": 4.260823364406482, "x5": 0.3726591334432813}, {}] +[[4, 0, 17], {"x0": -5.346895838670638, "x1": 7.617413010155749, "x2": 7.983325884849849, "x3": -3.6734999222706852, "x4": 4.5350207661385795, "x5": 0.190348797407349}, {}] +[[4, 0, 18], {"x0": -3.9681586579773667, "x1": 5.525702841286796, "x2": 7.162271436673521, "x3": -2.6599692361138088, "x4": 3.776819146767531, "x5": 0.06452205880054362}, {}] +[[4, 0, 19], {"x0": -5.955132230863902, "x1": 7.823268142155564, "x2": 5.682561193537524, "x3": -3.4728512368117275, "x4": 1.1551204938513409, "x5": 0.1909334621308294}, {}] +[[4, 0, 20], {"x0": -5.087516611194394, "x1": 7.114129623205071, "x2": 4.225119073711262, "x3": -3.407264998629873, "x4": 3.005255690896825, "x5": 0.0003619317553619772}, {}] +[[4, 0, 21], {"x0": -2.830909907422863, "x1": 6.783273332234847, "x2": 4.621288498537126, "x3": -0.9902402037523288, "x4": 1.27314878514969, "x5": 0.37175693071902466}, {}] +[[4, 0, 22], {"x0": -4.004079745967816, "x1": 5.7257080791947175, "x2": 5.011184863695771, "x3": -0.7781885843268657, "x4": 2.797504704119063, "x5": 0.4751676330074424}, {}] +[[4, 0, 23], {"x0": -3.656914863693097, "x1": 4.096406814971647, "x2": 6.874667923485273, "x3": -3.592933098768831, "x4": 4.316003775290685, "x5": 0.22189961806216846}, {}] +[[4, 0, 24], {"x0": -3.4635097160045047, "x1": 6.633475276361127, "x2": 4.289703091882139, "x3": -2.033975910540822, "x4": 3.130320974903925, "x5": 0.05247818422444528}, {}] +[[4, 0, 25], {"x0": -5.267137839792597, "x1": 4.928695049390651, "x2": 5.686057912862207, "x3": -0.5774451290044698, "x4": 2.901153133654955, "x5": 0.15811665312027462}, {}] +[[4, 0, 26], {"x0": -5.918001376828711, "x1": 6.878337965945711, "x2": 6.472589490972472, "x3": -1.643072961275641, "x4": 2.4093758935928395, "x5": 0.07477398450287132}, {}] +[[5, 0, 0], {"x0": -2.0251439422811446, "x1": 6.2516997271529755, "x2": 4.944920858068631, "x3": -2.677447110882106, "x4": 3.359678511007838, "x5": 0.3947701349020901}, {}] +[[5, 0, 1], {"x0": -5.311533435002644, "x1": 7.277207541610659, "x2": 6.419672195942522, "x3": -2.6123993503027725, "x4": 3.838893670237536, "x5": 0.23246351456570713}, {}] +[[5, 0, 2], {"x0": -3.2133901529313227, "x1": 6.123752308089612, "x2": 5.832229908668431, "x3": -2.981088012617295, "x4": 2.414871739669543, "x5": 0.05610133363765618}, {}] +[[5, 0, 3], {"x0": -2.7211839171458188, "x1": 5.3015335304387055, "x2": 4.861601323207291, "x3": -0.06624920245847887, "x4": 2.5735148347735253, "x5": 0.23921335907841246}, {}] +[[5, 0, 4], {"x0": -3.0506202725094367, "x1": 4.258231529528802, "x2": 4.086668729517351, "x3": -1.8873971714410889, "x4": 2.802288965469676, "x5": 0.36999683423649493}, {}] +[[5, 0, 5], {"x0": -2.071106554272205, "x1": 7.206928813637815, "x2": 6.997804794958462, "x3": -0.2764111089068977, "x4": 2.8069446814786927, "x5": 0.4927963288230439}, {}] +[[5, 0, 6], {"x0": -2.8285293450971323, "x1": 3.1672217315812996, "x2": 7.086148021981931, "x3": -0.9240773041544692, "x4": 4.864404671350153, "x5": 0.22444600586580737}, {}] +[[5, 0, 7], {"x0": -4.309991907763077, "x1": 4.789722048381941, "x2": 4.477864850276177, "x3": -0.9113289906008739, "x4": 3.1249452188895592, "x5": 0.3788854817166867}, {}] +[[5, 0, 8], {"x0": -3.6250871665812427, "x1": 6.9586152215344566, "x2": 4.775444187549399, "x3": -0.1989940374130459, "x4": 3.0439773747434815, "x5": 0.4186223706161836}, {}] +[[6, 0, 0], {"x0": -5.575901375682471, "x1": 6.7073330714900985, "x2": 4.641068666689797, "x3": -3.6497403718249255, "x4": 1.9081919271327528, "x5": 0.13469701479714158}, {}] +[[6, 0, 1], {"x0": -2.884948489674924, "x1": 4.960034571987709, "x2": 5.543560269198962, "x3": -0.5723185477314052, "x4": 1.821141950126775, "x5": 0.2946955405930146}, {}] +[[6, 0, 2], {"x0": -2.294322156812357, "x1": 5.152090687926406, "x2": 7.136838530790609, "x3": -1.782251469437059, "x4": 2.822836471081123, "x5": 0.04803406710588359}, {}] +[[6, 0, 3], {"x0": -4.9494380067182195, "x1": 3.577988057450378, "x2": 7.075834342197597, "x3": -3.712470693654146, "x4": 1.5612196833321836, "x5": 0.08772652189264762}, {}] +[[6, 0, 4], {"x0": -4.7160012188652285, "x1": 4.512276175935902, "x2": 4.864424527745495, "x3": -0.6174266828559407, "x4": 3.770577871793666, "x5": 0.45989535288660227}, {}] +[[6, 0, 5], {"x0": -2.46252157509531, "x1": 3.4647157290204236, "x2": 4.521136041640958, "x3": -3.674296210893481, "x4": 4.678687865040663, "x5": 0.021547714084239777}, {}] +[[7, 0, 0], {"x0": -2.8174581665083456, "x1": 3.3958155043962073, "x2": 5.68580845233762, "x3": -3.0235931523429658, "x4": 1.303627185513621, "x5": 0.297176567183568}, {}] +[[7, 0, 1], {"x0": -5.050064537630043, "x1": 6.296810397933161, "x2": 4.651318871899013, "x3": -1.3043489218464424, "x4": 4.628105587335764, "x5": 0.2612413761525226}, {}] +[[7, 0, 2], {"x0": -3.833015045130404, "x1": 5.3516354097180585, "x2": 5.641470350982062, "x3": -0.7748609557190052, "x4": 2.130007418409271, "x5": 0.01676238223660581}, {}] +[[7, 0, 3], {"x0": -2.460537955184538, "x1": 7.278726237612876, "x2": 7.7314105295670945, "x3": -3.0261052685920773, "x4": 4.21746315056088, "x5": 0.3676530584607541}, {}] +[[8, 0, 0], {"x0": -4.594805030499456, "x1": 4.800921332287571, "x2": 6.352949641780459, "x3": -1.628687335375968, "x4": 4.027449445965001, "x5": 0.3444635031159173}, {}] +[[8, 0, 1], {"x0": -2.9123862462225873, "x1": 4.820175094943102, "x2": 7.518750858755476, "x3": -0.4686846058900751, "x4": 4.9655473418674045, "x5": 0.3952553034143236}, {}] +[[8, 0, 2], {"x0": -4.561505717261223, "x1": 5.121132150164996, "x2": 5.998081202606099, "x3": -2.5413979087747123, "x4": 4.025444651951755, "x5": 0.4033385178489842}, {}] +[[8, 0, 3], {"x0": -3.3445555845772255, "x1": 3.60843980099032, "x2": 6.329852882764881, "x3": -0.3171761257909691, "x4": 4.306172332041752, "x5": 0.42175865977764126}, {}] +[[8, 0, 4], {"x0": -5.197176454692373, "x1": 5.931843800408282, "x2": 7.3011513576430485, "x3": -3.9369458871990504, "x4": 3.4055655653883763, "x5": 0.16425225102718827}, {}] +[[8, 0, 5], {"x0": -3.6408183697115852, "x1": 3.868835969543263, "x2": 6.42938565675401, "x3": -3.637509323334378, "x4": 2.488818087487543, "x5": 0.30154867161460397}, {}] +[[8, 0, 6], {"x0": -3.4847117619365235, "x1": 3.205205417198896, "x2": 6.06766422256778, "x3": -1.6625684541690817, "x4": 1.6312227732710864, "x5": 0.012944693995867007}, {}] +[[8, 0, 7], {"x0": -3.1674109067850416, "x1": 4.325362346236307, "x2": 4.887414436426371, "x3": -3.323804570410232, "x4": 1.8421772265556555, "x5": 0.12890388823069754}, {}] +[[8, 0, 8], {"x0": -5.937292070700318, "x1": 3.9539170786894062, "x2": 6.856482990335179, "x3": -2.7943403927386097, "x4": 3.694505359153173, "x5": 0.20779525248445024}, {}] +[[8, 0, 9], {"x0": -3.5414338176719293, "x1": 5.278612934993472, "x2": 6.83149641676932, "x3": -1.3956271334741799, "x4": 3.2420920708590413, "x5": 0.26724585711762233}, {}] +[[8, 0, 10], {"x0": -3.2792787781996093, "x1": 6.7141242409733675, "x2": 5.648038296793004, "x3": -1.9739623038990706, "x4": 2.114359618112507, "x5": 0.2067160546998772}, {}] +[[8, 0, 11], {"x0": -5.231467481341594, "x1": 3.6559997176812393, "x2": 7.038822678668691, "x3": -3.6146310489406104, "x4": 3.7832469546730327, "x5": 0.23157107060653853}, {}] +[[8, 0, 12], {"x0": -5.538377791247667, "x1": 7.889909954585619, "x2": 5.15383304927008, "x3": -1.0254412147273806, "x4": 4.994476903960777, "x5": 0.44984109498141467}, {}] +[[8, 0, 13], {"x0": -2.110387042688963, "x1": 4.127243627184816, "x2": 5.749685009077991, "x3": -2.4562146721620532, "x4": 4.687879431325013, "x5": 0.04092579865766882}, {}] +[[8, 0, 14], {"x0": -3.67894271861641, "x1": 4.3095364527979205, "x2": 7.935834885244557, "x3": -3.010893694991238, "x4": 1.3438035474736538, "x5": 0.345702834033439}, {}] +[[8, 0, 15], {"x0": -5.0445174057670545, "x1": 4.626480658449738, "x2": 7.224345217356905, "x3": -3.9764536147812497, "x4": 1.7291962401108547, "x5": 0.0011182059805172062}, {}] +[[8, 0, 16], {"x0": -2.4208520784896677, "x1": 6.352577325904455, "x2": 5.105168121254062, "x3": -0.3687853292249863, "x4": 2.9465520331038295, "x5": 0.3435877075243593}, {}] +[[8, 0, 17], {"x0": -3.783731386054822, "x1": 4.316955306987335, "x2": 4.440709356993502, "x3": -0.11667452605241513, "x4": 1.2863391318505237, "x5": 0.08143903544144843}, {}] +[[8, 0, 18], {"x0": -3.8790280924133884, "x1": 7.6521823563112825, "x2": 6.5096084388148325, "x3": -0.0038828225091349644, "x4": 3.564649700776939, "x5": 0.24576466209713677}, {}] +[[8, 0, 19], {"x0": -2.1997445002568794, "x1": 5.40456218099455, "x2": 7.125702109190812, "x3": -1.552972298687615, "x4": 2.202046804315369, "x5": 0.09079016092228215}, {}] +[[8, 0, 20], {"x0": -5.416890585930575, "x1": 7.564125662315096, "x2": 6.469924333601693, "x3": -3.2151934435930514, "x4": 3.6572229756661865, "x5": 0.3779036101938677}, {}] +[[8, 0, 21], {"x0": -5.023504181243529, "x1": 4.993105675863702, "x2": 4.279144848649516, "x3": -1.6491223123226995, "x4": 4.418548151051604, "x5": 0.03078859113648119}, {}] +[[8, 0, 22], {"x0": -5.087223583644787, "x1": 7.949456697646735, "x2": 7.840451336520655, "x3": -1.5077765707273691, "x4": 2.4327674252038594, "x5": 0.27501543161026903}, {}] +[[8, 0, 23], {"x0": -2.143322912058006, "x1": 3.022746533697766, "x2": 7.786804037032695, "x3": -2.9290724716780847, "x4": 4.016345012538334, "x5": 0.4331458054358054}, {}] +[[8, 0, 24], {"x0": -4.419284248725813, "x1": 5.241990205069509, "x2": 7.633664728609305, "x3": -0.8773970060338785, "x4": 3.193013299798753, "x5": 0.0877970327632458}, {}] +[[8, 0, 25], {"x0": -3.294451517936895, "x1": 4.173159040190339, "x2": 7.582523163488932, "x3": -2.946021549009527, "x4": 1.359766674941516, "x5": 0.036054531333989226}, {}] +[[8, 0, 26], {"x0": -4.495903217364831, "x1": 3.823579981579075, "x2": 7.49274528676869, "x3": -3.0556023913184673, "x4": 1.204269749427076, "x5": 0.39407797554832913}, {}] +[[9, 0, 0], {"x0": -4.654469863864071, "x1": 5.217295873189009, "x2": 6.088040137164635, "x3": -3.194612435063768, "x4": 4.148669546258041, "x5": 0.01174482384727532}, {}] +[[9, 0, 1], {"x0": -4.129476780222786, "x1": 4.748279320654197, "x2": 5.588740263383567, "x3": -0.601261500927583, "x4": 3.8749982194031114, "x5": 0.4559714627259356}, {}] +[[9, 0, 2], {"x0": -2.484180559932916, "x1": 4.08275891981752, "x2": 5.845172920941448, "x3": -2.082930971082567, "x4": 2.119923725791733, "x5": 0.04396715922568989}, {}] +[[9, 0, 3], {"x0": -2.482118477348497, "x1": 3.109916118959852, "x2": 4.197153654702947, "x3": -0.574131753245323, "x4": 2.0133455146201045, "x5": 0.30348621477946536}, {}] +[[9, 0, 4], {"x0": -3.439733746527008, "x1": 5.302274999753989, "x2": 7.806459992814731, "x3": -2.618936593336737, "x4": 2.9319069861707083, "x5": 0.3443225190991326}, {}] +[[9, 0, 5], {"x0": -3.3441707725581575, "x1": 3.8050324954947383, "x2": 6.970957944056357, "x3": -2.7156352542116804, "x4": 2.2747225879729784, "x5": 0.10902721027563667}, {}] +[[9, 0, 6], {"x0": -2.707144596085528, "x1": 5.322031474825859, "x2": 7.601243559396408, "x3": -0.8097364057586924, "x4": 1.6072334373588961, "x5": 0.459544108816873}, {}] +[[9, 0, 7], {"x0": -3.286809194055589, "x1": 4.325596224676087, "x2": 4.654318168444124, "x3": -0.7254008109826673, "x4": 2.707744449841772, "x5": 0.11886044878422225}, {}] +[[9, 0, 8], {"x0": -2.738895867247304, "x1": 7.916703079114954, "x2": 6.420735656778538, "x3": -2.4399937219096266, "x4": 2.3273338867755666, "x5": 0.3731389786366825}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/hyperband/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/hyperband/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/hyperband/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/hyperband/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/hyperband/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/hyperband/results.json new file mode 100644 index 0000000..15a028c --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/hyperband/results.json @@ -0,0 +1,183 @@ +[[0, 0, 0], 9.0, {"submitted": 1558193661.344489, "started": 1558193661.344898, "finished": 1558193661.3536558}, {"loss": 0.620389995944351, "info": {"x0": -3.70402854052528, "x1": 4.991417705977198, "x2": 4.554181360894038, "x3": -2.8012946436440536, "x4": 4.542832121265401, "x5": 0.4940594853007663}}, null] +[[0, 0, 1], 9.0, {"submitted": 1558193661.3552966, "started": 1558193661.3556283, "finished": 1558193661.3631058}, {"loss": 1, "info": {"x0": -3.035439395161107, "x1": 3.5255752818237935, "x2": 7.2509059988792, "x3": -1.491852562409787, "x4": 3.9289902046517966, "x5": 0.4649004147226151}}, null] +[[0, 0, 2], 9.0, {"submitted": 1558193661.3701181, "started": 1558193661.3711777, "finished": 1558193661.3833053}, {"loss": 0.06423000214457511, "info": {"x0": -3.3159152342193647, "x1": 6.171084268128512, "x2": 5.8471946768961445, "x3": -0.43120258190415983, "x4": 3.5745460465634213, "x5": 0.3079664311526385}}, null] +[[0, 0, 3], 9.0, {"submitted": 1558193661.385692, "started": 1558193661.386229, "finished": 1558193661.3923051}, {"loss": 0.1338200012099743, "info": {"x0": -3.9099307149765137, "x1": 4.325646251653739, "x2": 5.56254764767024, "x3": -1.4476949550906042, "x4": 1.6871592373852478, "x5": 0.3750448933678043}}, null] +[[0, 0, 4], 9.0, {"submitted": 1558193661.3952582, "started": 1558193661.395947, "finished": 1558193661.4091806}, {"loss": 0.03416999903857707, "info": {"x0": -2.982500003360147, "x1": 5.9457691028958894, "x2": 6.642249153992445, "x3": -3.1370762196328594, "x4": 2.892511045489025, "x5": 0.13929395230723562}}, null] +[[0, 0, 5], 9.0, {"submitted": 1558193661.4119356, "started": 1558193661.4123683, "finished": 1558193661.4222417}, {"loss": 0.8507199991364033, "info": {"x0": -5.818375403103306, "x1": 6.41602660227597, "x2": 6.987882604770842, "x3": -3.1815704041991637, "x4": 4.390987380364833, "x5": 0.13495696066412471}}, null] +[[0, 0, 6], 9.0, {"submitted": 1558193661.4239402, "started": 1558193661.4242847, "finished": 1558193661.4353247}, {"loss": 1, "info": {"x0": -4.392005181313406, "x1": 3.088481610355131, "x2": 5.119187316921872, "x3": -1.8042457024756824, "x4": 3.8798533683489658, "x5": 0.17293572640396065}}, null] +[[0, 0, 7], 9.0, {"submitted": 1558193661.4373467, "started": 1558193661.4377718, "finished": 1558193661.4451153}, {"loss": 0.10699999713718893, "info": {"x0": -4.153933287555677, "x1": 6.988064299470963, "x2": 7.318262226752756, "x3": -2.25951801094932, "x4": 2.1055772750706985, "x5": 0.20182799356503767}}, null] +[[0, 0, 8], 9.0, {"submitted": 1558193661.4475362, "started": 1558193661.4480267, "finished": 1558193661.454393}, {"loss": 1, "info": {"x0": -3.3949398972826383, "x1": 3.8187049189977937, "x2": 7.628629007172329, "x3": -2.29617029440714, "x4": 3.2722986752765504, "x5": 0.34365469406263915}}, null] +[[0, 0, 9], 9.0, {"submitted": 1558193661.4582486, "started": 1558193661.4587338, "finished": 1558193661.4688637}, {"loss": 1, "info": {"x0": -2.6284170237343685, "x1": 3.8265375623994387, "x2": 7.323133415288206, "x3": -3.7217205326495972, "x4": 2.019325028652121, "x5": 0.3675646212790302}}, null] +[[0, 0, 10], 9.0, {"submitted": 1558193661.4719298, "started": 1558193661.4723177, "finished": 1558193661.4793496}, {"loss": 1, "info": {"x0": -5.96615417885626, "x1": 3.556810148893116, "x2": 6.643632328091253, "x3": -3.3648089407955166, "x4": 2.3103885227475787, "x5": 0.4202736206989195}}, null] +[[0, 0, 11], 9.0, {"submitted": 1558193661.48473, "started": 1558193661.4853013, "finished": 1558193661.494562}, {"loss": 0.8066899972671642, "info": {"x0": -4.962126429424677, "x1": 4.996336391695884, "x2": 5.327656330984432, "x3": -1.7604888680421262, "x4": 4.6011296820427745, "x5": 0.30170395156631263}}, null] +[[0, 0, 12], 9.0, {"submitted": 1558193661.496857, "started": 1558193661.4972224, "finished": 1558193661.5074027}, {"loss": 0.032299997777938835, "info": {"x0": -2.403772645469254, "x1": 7.208154477506218, "x2": 7.417178713778334, "x3": -2.5632618026393788, "x4": 1.7457099244126764, "x5": 0.09488151559532404}}, null] +[[0, 0, 13], 9.0, {"submitted": 1558193661.5108802, "started": 1558193661.5113688, "finished": 1558193661.5199723}, {"loss": 0.08317000039815901, "info": {"x0": -3.82904057264856, "x1": 5.714235553044322, "x2": 7.129703498742023, "x3": -1.344386983355974, "x4": 4.453967485372458, "x5": 0.38912171492641817}}, null] +[[0, 0, 14], 9.0, {"submitted": 1558193661.5231233, "started": 1558193661.5236664, "finished": 1558193661.5327566}, {"loss": 0.21971999559551478, "info": {"x0": -3.961572945314672, "x1": 3.6513115713845226, "x2": 4.607143957448676, "x3": -1.1610750066167936, "x4": 1.9367405434135723, "x5": 0.44136596045116827}}, null] +[[0, 0, 15], 9.0, {"submitted": 1558193661.5353096, "started": 1558193661.536025, "finished": 1558193661.5445762}, {"loss": 0.8133199987339974, "info": {"x0": -5.70586138773182, "x1": 7.35268186939928, "x2": 6.128710058370478, "x3": -0.8544675418840808, "x4": 2.6190810060490524, "x5": 0.01673776495253293}}, null] +[[0, 0, 16], 9.0, {"submitted": 1558193661.5461464, "started": 1558193661.5465336, "finished": 1558193661.5555267}, {"loss": 0.1464900018656254, "info": {"x0": -4.029840479335767, "x1": 7.553302833154741, "x2": 6.186416584692689, "x3": -3.56388520013008, "x4": 4.657122397493092, "x5": 0.05269091678201082}}, null] +[[0, 0, 17], 9.0, {"submitted": 1558193661.5578215, "started": 1558193661.5582962, "finished": 1558193661.5665667}, {"loss": 0.05748999811053276, "info": {"x0": -2.368511722643792, "x1": 5.417706627018114, "x2": 5.20247045505827, "x3": -2.2584547872153102, "x4": 4.041227766426411, "x5": 0.15509008083273507}}, null] +[[0, 0, 18], 9.0, {"submitted": 1558193661.5696745, "started": 1558193661.5703511, "finished": 1558193661.584824}, {"loss": 1, "info": {"x0": -3.44905387089842, "x1": 5.264377043304213, "x2": 7.600699126014916, "x3": -3.2363230736262314, "x4": 2.8707923096363244, "x5": 0.46017711046377696}}, null] +[[0, 0, 19], 9.0, {"submitted": 1558193661.5888207, "started": 1558193661.5893831, "finished": 1558193661.596616}, {"loss": 0.8175199974176103, "info": {"x0": -5.871988818901646, "x1": 5.344161343736015, "x2": 6.7528421448848475, "x3": -3.160883579231891, "x4": 3.5370529017015944, "x5": 0.01578455872372181}}, null] +[[0, 0, 20], 9.0, {"submitted": 1558193661.6007547, "started": 1558193661.6012464, "finished": 1558193661.6086016}, {"loss": 0.8513899986939506, "info": {"x0": -5.783147818245645, "x1": 7.815929213549847, "x2": 6.90771772247518, "x3": -2.298911165898502, "x4": 3.06836802049927, "x5": 0.07678313399419462}}, null] +[[0, 0, 21], 9.0, {"submitted": 1558193661.6108134, "started": 1558193661.6112163, "finished": 1558193661.620317}, {"loss": 1, "info": {"x0": -2.103015438514233, "x1": 7.984593414630449, "x2": 7.9109555612605345, "x3": -0.9954918637666177, "x4": 4.475468238866167, "x5": 0.40964270701685795}}, null] +[[0, 0, 22], 9.0, {"submitted": 1558193661.623109, "started": 1558193661.6234448, "finished": 1558193661.6306353}, {"loss": 0.31548000068008897, "info": {"x0": -4.977227128119811, "x1": 7.4567135930741655, "x2": 6.243364434930855, "x3": -0.3331575372070632, "x4": 1.588757803704309, "x5": 0.4118212022704868}}, null] +[[0, 0, 23], 9.0, {"submitted": 1558193661.6339962, "started": 1558193661.6382122, "finished": 1558193661.646561}, {"loss": 0.3575099968831242, "info": {"x0": -4.1063473657621135, "x1": 3.6219565114878978, "x2": 4.779597032328904, "x3": -0.7371821745155027, "x4": 4.7291724394886, "x5": 0.08863150073365417}}, null] +[[0, 0, 24], 9.0, {"submitted": 1558193661.6550288, "started": 1558193661.655648, "finished": 1558193661.6666877}, {"loss": 1, "info": {"x0": -2.504711690622519, "x1": 4.386856136681349, "x2": 7.3461706961534645, "x3": -2.7187732879303117, "x4": 2.4253354355197083, "x5": 0.09417014051816092}}, null] +[[0, 0, 25], 9.0, {"submitted": 1558193661.6695552, "started": 1558193661.6701427, "finished": 1558193661.6805482}, {"loss": 0.300889994995445, "info": {"x0": -2.326092805303507, "x1": 7.469112846554885, "x2": 5.322409775605467, "x3": -1.2102443817263335, "x4": 4.15381836205947, "x5": 0.49599428575747473}}, null] +[[0, 0, 26], 9.0, {"submitted": 1558193661.6860158, "started": 1558193661.6864421, "finished": 1558193661.6953952}, {"loss": 0.07867999651491642, "info": {"x0": -2.526265959182889, "x1": 3.741684967348512, "x2": 4.372932028151467, "x3": -2.708714993999987, "x4": 1.0373093242507987, "x5": 0.22431083118455059}}, null] +[[0, 0, 2], 27.0, {"submitted": 1558193661.699889, "started": 1558193661.7002869, "finished": 1558193661.7103968}, {"loss": 0.03850000343561173, "info": {"x0": -3.3159152342193647, "x1": 6.171084268128512, "x2": 5.8471946768961445, "x3": -0.43120258190415983, "x4": 3.5745460465634213, "x5": 0.3079664311526385}}, null] +[[0, 0, 3], 27.0, {"submitted": 1558193661.7120423, "started": 1558193661.7125742, "finished": 1558193661.7238805}, {"loss": 0.07327000280022622, "info": {"x0": -3.9099307149765137, "x1": 4.325646251653739, "x2": 5.56254764767024, "x3": -1.4476949550906042, "x4": 1.6871592373852478, "x5": 0.3750448933678043}}, null] +[[0, 0, 4], 27.0, {"submitted": 1558193661.7252495, "started": 1558193661.7258558, "finished": 1558193661.7340438}, {"loss": 0.025019998307824143, "info": {"x0": -2.982500003360147, "x1": 5.9457691028958894, "x2": 6.642249153992445, "x3": -3.1370762196328594, "x4": 2.892511045489025, "x5": 0.13929395230723562}}, null] +[[0, 0, 7], 27.0, {"submitted": 1558193661.7367156, "started": 1558193661.7372806, "finished": 1558193661.7475975}, {"loss": 0.07463999799251557, "info": {"x0": -4.153933287555677, "x1": 6.988064299470963, "x2": 7.318262226752756, "x3": -2.25951801094932, "x4": 2.1055772750706985, "x5": 0.20182799356503767}}, null] +[[0, 0, 12], 27.0, {"submitted": 1558193661.7526052, "started": 1558193661.7529888, "finished": 1558193661.7610126}, {"loss": 0.022619996292591094, "info": {"x0": -2.403772645469254, "x1": 7.208154477506218, "x2": 7.417178713778334, "x3": -2.5632618026393788, "x4": 1.7457099244126764, "x5": 0.09488151559532404}}, null] +[[0, 0, 13], 27.0, {"submitted": 1558193661.762947, "started": 1558193661.763857, "finished": 1558193661.7736642}, {"loss": 0.05389000015497207, "info": {"x0": -3.82904057264856, "x1": 5.714235553044322, "x2": 7.129703498742023, "x3": -1.344386983355974, "x4": 4.453967485372458, "x5": 0.38912171492641817}}, null] +[[0, 0, 16], 27.0, {"submitted": 1558193661.7753778, "started": 1558193661.7757678, "finished": 1558193661.7861197}, {"loss": 0.07313999756336213, "info": {"x0": -4.029840479335767, "x1": 7.553302833154741, "x2": 6.186416584692689, "x3": -3.56388520013008, "x4": 4.657122397493092, "x5": 0.05269091678201082}}, null] +[[0, 0, 17], 27.0, {"submitted": 1558193661.787606, "started": 1558193661.7880528, "finished": 1558193661.7943914}, {"loss": 0.04051999867022037, "info": {"x0": -2.368511722643792, "x1": 5.417706627018114, "x2": 5.20247045505827, "x3": -2.2584547872153102, "x4": 4.041227766426411, "x5": 0.15509008083273507}}, null] +[[0, 0, 26], 27.0, {"submitted": 1558193661.7964258, "started": 1558193661.7969532, "finished": 1558193661.8071773}, {"loss": 0.0581999967867136, "info": {"x0": -2.526265959182889, "x1": 3.741684967348512, "x2": 4.372932028151467, "x3": -2.708714993999987, "x4": 1.0373093242507987, "x5": 0.22431083118455059}}, null] +[[0, 0, 2], 81.0, {"submitted": 1558193661.809945, "started": 1558193661.8104444, "finished": 1558193661.8206286}, {"loss": 0.03219000273168086, "info": {"x0": -3.3159152342193647, "x1": 6.171084268128512, "x2": 5.8471946768961445, "x3": -0.43120258190415983, "x4": 3.5745460465634213, "x5": 0.3079664311526385}}, null] +[[0, 0, 4], 81.0, {"submitted": 1558193661.821995, "started": 1558193661.822422, "finished": 1558193661.8290772}, {"loss": 0.020889998005032516, "info": {"x0": -2.982500003360147, "x1": 5.9457691028958894, "x2": 6.642249153992445, "x3": -3.1370762196328594, "x4": 2.892511045489025, "x5": 0.13929395230723562}}, null] +[[0, 0, 12], 81.0, {"submitted": 1558193661.8313193, "started": 1558193661.8317199, "finished": 1558193661.8407395}, {"loss": 0.018599997407197956, "info": {"x0": -2.403772645469254, "x1": 7.208154477506218, "x2": 7.417178713778334, "x3": -2.5632618026393788, "x4": 1.7457099244126764, "x5": 0.09488151559532404}}, null] +[[0, 0, 12], 243.0, {"submitted": 1558193661.8443859, "started": 1558193661.844745, "finished": 1558193661.8548226}, {"loss": 0.017819997467994675, "info": {"x0": -2.403772645469254, "x1": 7.208154477506218, "x2": 7.417178713778334, "x3": -2.5632618026393788, "x4": 1.7457099244126764, "x5": 0.09488151559532404}}, null] +[[1, 0, 0], 27.0, {"submitted": 1558193661.8568032, "started": 1558193661.8571281, "finished": 1558193661.862572}, {"loss": 0.4769000002008677, "info": {"x0": -5.453934392450128, "x1": 7.292006808686294, "x2": 7.118479092590099, "x3": -3.8851038682847614, "x4": 2.290620205049863, "x5": 0.4796342983052563}}, null] +[[1, 0, 1], 27.0, {"submitted": 1558193661.86463, "started": 1558193661.8650832, "finished": 1558193661.8781278}, {"loss": 0.03365999872744083, "info": {"x0": -2.5017276551489402, "x1": 7.204693473468818, "x2": 5.103458595685714, "x3": -3.8639112753078866, "x4": 2.7928669831580923, "x5": 0.11902311744802285}}, null] +[[1, 0, 2], 27.0, {"submitted": 1558193661.8803048, "started": 1558193661.880936, "finished": 1558193661.8882043}, {"loss": 0.05694000249505042, "info": {"x0": -3.4190857554849767, "x1": 5.742802292473199, "x2": 4.74906334267329, "x3": -2.7688859413893234, "x4": 1.7607931606980696, "x5": 0.21149020641855448}}, null] +[[1, 0, 3], 27.0, {"submitted": 1558193661.8897874, "started": 1558193661.8900957, "finished": 1558193661.899849}, {"loss": 0.031649999395012854, "info": {"x0": -2.766303906619959, "x1": 4.1734919106246915, "x2": 5.7437106140693395, "x3": -2.502385519439046, "x4": 3.414751957066494, "x5": 0.005076625897038778}}, null] +[[1, 0, 4], 27.0, {"submitted": 1558193661.9021032, "started": 1558193661.9026892, "finished": 1558193661.9190114}, {"loss": 0.13093000066041943, "info": {"x0": -4.194369144944095, "x1": 6.438851312667475, "x2": 6.22580518123139, "x3": -3.6036335569017273, "x4": 3.731453987010197, "x5": 0.2572114407765837}}, null] +[[1, 0, 5], 27.0, {"submitted": 1558193661.9209833, "started": 1558193661.9216263, "finished": 1558193661.9292734}, {"loss": 0.12377999768346551, "info": {"x0": -4.2510532855726, "x1": 4.767886931847222, "x2": 5.300662283078481, "x3": -1.7623297784588705, "x4": 3.8906708035016115, "x5": 0.2595843746135403}}, null] +[[1, 0, 6], 27.0, {"submitted": 1558193661.9324925, "started": 1558193661.9328768, "finished": 1558193661.9406912}, {"loss": 0.7720599974133446, "info": {"x0": -5.570598850226771, "x1": 5.744669525645311, "x2": 6.844989795536398, "x3": -3.306562598160349, "x4": 4.225466277843164, "x5": 0.4374158108365275}}, null] +[[1, 0, 7], 27.0, {"submitted": 1558193661.9444265, "started": 1558193661.9450483, "finished": 1558193661.9547899}, {"loss": 0.07730999929726125, "info": {"x0": -2.7680381976199993, "x1": 7.678193184345374, "x2": 5.026651354017449, "x3": -0.9891532161478525, "x4": 2.8553355719835016, "x5": 0.48252753590722886}}, null] +[[1, 0, 8], 27.0, {"submitted": 1558193661.9566054, "started": 1558193661.9571714, "finished": 1558193661.9646606}, {"loss": 0.1326699993425608, "info": {"x0": -2.471991511668048, "x1": 3.9379059297629313, "x2": 6.746466498675196, "x3": -3.994208556813741, "x4": 4.582345711791474, "x5": 0.24882396864648249}}, null] +[[1, 0, 1], 81.0, {"submitted": 1558193661.9671292, "started": 1558193661.9676082, "finished": 1558193661.9801433}, {"loss": 0.031799998834729185, "info": {"x0": -2.5017276551489402, "x1": 7.204693473468818, "x2": 5.103458595685714, "x3": -3.8639112753078866, "x4": 2.7928669831580923, "x5": 0.11902311744802285}}, null] +[[1, 0, 2], 81.0, {"submitted": 1558193661.982395, "started": 1558193661.98303, "finished": 1558193661.9896069}, {"loss": 0.05247000270485878, "info": {"x0": -3.4190857554849767, "x1": 5.742802292473199, "x2": 4.74906334267329, "x3": -2.7688859413893234, "x4": 1.7607931606980696, "x5": 0.21149020641855448}}, null] +[[1, 0, 3], 81.0, {"submitted": 1558193661.991176, "started": 1558193661.9918683, "finished": 1558193661.9997075}, {"loss": 0.024789999771118156, "info": {"x0": -2.766303906619959, "x1": 4.1734919106246915, "x2": 5.7437106140693395, "x3": -2.502385519439046, "x4": 3.414751957066494, "x5": 0.005076625897038778}}, null] +[[1, 0, 3], 243.0, {"submitted": 1558193662.0084424, "started": 1558193662.008902, "finished": 1558193662.0196521}, {"loss": 0.02252999961912633, "info": {"x0": -2.766303906619959, "x1": 4.1734919106246915, "x2": 5.7437106140693395, "x3": -2.502385519439046, "x4": 3.414751957066494, "x5": 0.005076625897038778}}, null] +[[2, 0, 0], 81.0, {"submitted": 1558193662.0219986, "started": 1558193662.022336, "finished": 1558193662.035342}, {"loss": 0.025740003296732882, "info": {"x0": -3.5556028852917816, "x1": 5.134897762991777, "x2": 6.671245417965478, "x3": -1.0288889473481513, "x4": 2.0692639003344193, "x5": 0.22276162006698813}}, null] +[[2, 0, 1], 81.0, {"submitted": 1558193662.038417, "started": 1558193662.0432363, "finished": 1558193662.052758}, {"loss": 0.12231999964892863, "info": {"x0": -5.021825363221989, "x1": 4.123369324144071, "x2": 5.226014313948218, "x3": -3.8339911012344023, "x4": 1.1222265726154683, "x5": 0.42609619426086287}}, null] +[[2, 0, 2], 81.0, {"submitted": 1558193662.0545769, "started": 1558193662.0549653, "finished": 1558193662.0617201}, {"loss": 0.1612499959141016, "info": {"x0": -4.708776292946483, "x1": 6.909798517397123, "x2": 6.367642529399498, "x3": -2.53425601494385, "x4": 3.1781025482284777, "x5": 0.3743585220693358}}, null] +[[2, 0, 3], 81.0, {"submitted": 1558193662.0673962, "started": 1558193662.0678515, "finished": 1558193662.0814602}, {"loss": 0.02948999840259554, "info": {"x0": -3.1037666034637823, "x1": 3.648220881789843, "x2": 6.6306960675490885, "x3": -2.185261468484789, "x4": 2.9209912533452105, "x5": 0.34784198869968036}}, null] +[[2, 0, 4], 81.0, {"submitted": 1558193662.086508, "started": 1558193662.087054, "finished": 1558193662.0939558}, {"loss": 0.3070499997422099, "info": {"x0": -4.157439471557307, "x1": 3.401101857681618, "x2": 4.386256590305561, "x3": -0.44579765841118935, "x4": 3.9343177349301417, "x5": 0.3375849900661359}}, null] +[[2, 0, 5], 81.0, {"submitted": 1558193662.0960088, "started": 1558193662.096418, "finished": 1558193662.1105762}, {"loss": 0.024189997965693467, "info": {"x0": -2.3167635038273033, "x1": 5.406084578339964, "x2": 7.611255884023507, "x3": -2.946205532746152, "x4": 2.829743126017637, "x5": 0.1846528413863585}}, null] +[[2, 0, 0], 243.0, {"submitted": 1558193662.1120121, "started": 1558193662.1123385, "finished": 1558193662.1197424}, {"loss": 0.022900003471970565, "info": {"x0": -3.5556028852917816, "x1": 5.134897762991777, "x2": 6.671245417965478, "x3": -1.0288889473481513, "x4": 2.0692639003344193, "x5": 0.22276162006698813}}, null] +[[2, 0, 5], 243.0, {"submitted": 1558193662.121179, "started": 1558193662.1214828, "finished": 1558193662.1278121}, {"loss": 0.018479997998476015, "info": {"x0": -2.3167635038273033, "x1": 5.406084578339964, "x2": 7.611255884023507, "x3": -2.946205532746152, "x4": 2.829743126017637, "x5": 0.1846528413863585}}, null] +[[3, 0, 0], 243.0, {"submitted": 1558193662.1317122, "started": 1558193662.1333141, "finished": 1558193662.1466088}, {"loss": 0.45979999560303986, "info": {"x0": -5.874330631233892, "x1": 3.518980476249972, "x2": 6.396471696095682, "x3": -2.788981811911634, "x4": 3.6423620687362344, "x5": 0.2633925142680874}}, null] +[[3, 0, 1], 243.0, {"submitted": 1558193662.1489325, "started": 1558193662.1492279, "finished": 1558193662.1579065}, {"loss": 0.7860999986737965, "info": {"x0": -5.825438061147464, "x1": 5.172445314384143, "x2": 5.168912909733367, "x3": -3.1947354693402263, "x4": 4.445082226244027, "x5": 0.33324937671385996}}, null] +[[3, 0, 2], 243.0, {"submitted": 1558193662.1604743, "started": 1558193662.1607282, "finished": 1558193662.1718936}, {"loss": 0.40562999851644044, "info": {"x0": -5.5633631331216655, "x1": 6.235156370269788, "x2": 4.19544587377497, "x3": -0.2982552666063998, "x4": 3.240583248288508, "x5": 0.05788002753240179}}, null] +[[3, 0, 3], 243.0, {"submitted": 1558193662.1743033, "started": 1558193662.1748915, "finished": 1558193662.1851213}, {"loss": 0.07429000327885149, "info": {"x0": -4.311837900098293, "x1": 6.673517196160649, "x2": 6.496346123559568, "x3": -3.5090199772340385, "x4": 2.106346782259985, "x5": 0.1773814262994955}}, null] +[[4, 0, 0], 9.0, {"submitted": 1558193662.1874347, "started": 1558193662.1878648, "finished": 1558193662.1959097}, {"loss": 0.24741999922037122, "info": {"x0": -4.332896065677885, "x1": 7.114501174611844, "x2": 7.322412750481153, "x3": -0.3733072473644361, "x4": 4.996312733560149, "x5": 0.054779018672934054}}, null] +[[4, 0, 1], 9.0, {"submitted": 1558193662.1987941, "started": 1558193662.1992831, "finished": 1558193662.2086058}, {"loss": 0.6370999943506719, "info": {"x0": -5.597215443520535, "x1": 5.076031161269606, "x2": 6.102074450111754, "x3": -1.2356808178666947, "x4": 2.189785643916091, "x5": 0.2910646891734265}}, null] +[[4, 0, 2], 9.0, {"submitted": 1558193662.210836, "started": 1558193662.2112186, "finished": 1558193662.2184129}, {"loss": 1, "info": {"x0": -4.14063954715086, "x1": 3.0755628194887734, "x2": 5.194779560311524, "x3": -3.3148012400142086, "x4": 1.382486135804577, "x5": 0.3895730884046115}}, null] +[[4, 0, 3], 9.0, {"submitted": 1558193662.2238426, "started": 1558193662.2245393, "finished": 1558193662.2320201}, {"loss": 0.19626000045329334, "info": {"x0": -2.9502777570587018, "x1": 6.040010482712203, "x2": 6.679776300243439, "x3": -2.2917703199184314, "x4": 3.8606278197078976, "x5": 0.49184986310734446}}, null] +[[4, 0, 4], 9.0, {"submitted": 1558193662.2345188, "started": 1558193662.2349617, "finished": 1558193662.244839}, {"loss": 0.06135000262618064, "info": {"x0": -2.020275926584572, "x1": 4.686938809400109, "x2": 7.022232385346527, "x3": -1.5678986841311877, "x4": 1.796764342345465, "x5": 0.09181419930121365}}, null] +[[4, 0, 5], 9.0, {"submitted": 1558193662.2465165, "started": 1558193662.247157, "finished": 1558193662.254278}, {"loss": 0.5964100005166233, "info": {"x0": -4.931059101972192, "x1": 6.311925232305237, "x2": 4.576806293052399, "x3": -2.3957711531564345, "x4": 2.3177775232060966, "x5": 0.021298881197264807}}, null] +[[4, 0, 6], 9.0, {"submitted": 1558193662.2562785, "started": 1558193662.256756, "finished": 1558193662.269263}, {"loss": 0.31483999839819965, "info": {"x0": -4.4709231777536536, "x1": 4.8140760519094385, "x2": 4.792771837877761, "x3": -1.764688687619612, "x4": 2.3540716362833374, "x5": 0.16399385160340024}}, null] +[[4, 0, 7], 9.0, {"submitted": 1558193662.272175, "started": 1558193662.2726421, "finished": 1558193662.2804332}, {"loss": 0.534029995311238, "info": {"x0": -5.045890061742488, "x1": 4.503515841261034, "x2": 5.75220440782728, "x3": -2.1839304712734857, "x4": 2.811233705517521, "x5": 0.31321248821192754}}, null] +[[4, 0, 8], 9.0, {"submitted": 1558193662.2833457, "started": 1558193662.284029, "finished": 1558193662.2924454}, {"loss": 0.06217000180542469, "info": {"x0": -2.0100346888802965, "x1": 4.367484768807278, "x2": 6.116432169623176, "x3": -3.804941274953296, "x4": 1.2498826512790195, "x5": 0.34726023435364634}}, null] +[[4, 0, 9], 9.0, {"submitted": 1558193662.2944214, "started": 1558193662.294872, "finished": 1558193662.3087163}, {"loss": 0.054729998915791514, "info": {"x0": -3.6010479830013185, "x1": 5.437478607967673, "x2": 6.038375516314074, "x3": -2.919379701677911, "x4": 1.761187174617242, "x5": 0.1920204874717238}}, null] +[[4, 0, 10], 9.0, {"submitted": 1558193662.3111584, "started": 1558193662.3115373, "finished": 1558193662.3199532}, {"loss": 1, "info": {"x0": -2.5550774836055927, "x1": 6.951737336404175, "x2": 7.925971945930373, "x3": -1.6574546168426223, "x4": 4.091961920525707, "x5": 0.01578674317821993}}, null] +[[4, 0, 11], 9.0, {"submitted": 1558193662.3224845, "started": 1558193662.3229825, "finished": 1558193662.3318708}, {"loss": 0.7021499986632168, "info": {"x0": -5.254470301378253, "x1": 7.42986367806386, "x2": 4.920963565600047, "x3": -1.0950426392767736, "x4": 2.5509973107731865, "x5": 0.29122977359437924}}, null] +[[4, 0, 12], 9.0, {"submitted": 1558193662.3342526, "started": 1558193662.3347225, "finished": 1558193662.3434293}, {"loss": 0.3577699999386072, "info": {"x0": -4.556026173026808, "x1": 6.853525440387576, "x2": 4.89894373537075, "x3": -1.870290020702495, "x4": 2.710701342703536, "x5": 0.025692442437432572}}, null] +[[4, 0, 13], 9.0, {"submitted": 1558193662.3455756, "started": 1558193662.3460224, "finished": 1558193662.3561993}, {"loss": 1, "info": {"x0": -5.840081336695931, "x1": 4.218331978037112, "x2": 6.5805405206771495, "x3": -2.97531975620809, "x4": 4.969080891238782, "x5": 0.15486832829742292}}, null] +[[4, 0, 14], 9.0, {"submitted": 1558193662.358965, "started": 1558193662.359339, "finished": 1558193662.3681917}, {"loss": 0.6655200000818075, "info": {"x0": -5.089660691823662, "x1": 7.643667138884641, "x2": 7.447532447718654, "x3": -0.7421298450019864, "x4": 4.107171366742334, "x5": 0.06321832438288089}}, null] +[[4, 0, 15], 9.0, {"submitted": 1558193662.3717813, "started": 1558193662.3723292, "finished": 1558193662.3793423}, {"loss": 0.8298799959800393, "info": {"x0": -5.502405779135698, "x1": 4.253026838841151, "x2": 5.551210675390907, "x3": -3.037308778184353, "x4": 3.0823670055343992, "x5": 0.32885478930409767}}, null] +[[4, 0, 16], 9.0, {"submitted": 1558193662.3818507, "started": 1558193662.38239, "finished": 1558193662.3932004}, {"loss": 1, "info": {"x0": -2.7463820301881685, "x1": 4.903663202568626, "x2": 7.639798016946719, "x3": -3.732483488318395, "x4": 4.260823364406482, "x5": 0.3726591334432813}}, null] +[[4, 0, 17], 9.0, {"submitted": 1558193662.3952975, "started": 1558193662.3957143, "finished": 1558193662.4052756}, {"loss": 1, "info": {"x0": -5.346895838670638, "x1": 7.617413010155749, "x2": 7.983325884849849, "x3": -3.6734999222706852, "x4": 4.5350207661385795, "x5": 0.190348797407349}}, null] +[[4, 0, 18], 9.0, {"submitted": 1558193662.4072034, "started": 1558193662.4076626, "finished": 1558193662.4154186}, {"loss": 0.09564999935746195, "info": {"x0": -3.9681586579773667, "x1": 5.525702841286796, "x2": 7.162271436673521, "x3": -2.6599692361138088, "x4": 3.776819146767531, "x5": 0.06452205880054362}}, null] +[[4, 0, 19], 9.0, {"submitted": 1558193662.4211814, "started": 1558193662.4215584, "finished": 1558193662.4282708}, {"loss": 0.8920399997468292, "info": {"x0": -5.955132230863902, "x1": 7.823268142155564, "x2": 5.682561193537524, "x3": -3.4728512368117275, "x4": 1.1551204938513409, "x5": 0.1909334621308294}}, null] +[[4, 0, 20], 9.0, {"submitted": 1558193662.4318156, "started": 1558193662.432342, "finished": 1558193662.441283}, {"loss": 0.7846699999656528, "info": {"x0": -5.087516611194394, "x1": 7.114129623205071, "x2": 4.225119073711262, "x3": -3.407264998629873, "x4": 3.005255690896825, "x5": 0.0003619317553619772}}, null] +[[4, 0, 21], 9.0, {"submitted": 1558193662.4440002, "started": 1558193662.4445438, "finished": 1558193662.456408}, {"loss": 0.06473999947249888, "info": {"x0": -2.830909907422863, "x1": 6.783273332234847, "x2": 4.621288498537126, "x3": -0.9902402037523288, "x4": 1.27314878514969, "x5": 0.37175693071902466}}, null] +[[4, 0, 22], 9.0, {"submitted": 1558193662.458156, "started": 1558193662.4585161, "finished": 1558193662.4674652}, {"loss": 0.17676999901711937, "info": {"x0": -4.004079745967816, "x1": 5.7257080791947175, "x2": 5.011184863695771, "x3": -0.7781885843268657, "x4": 2.797504704119063, "x5": 0.4751676330074424}}, null] +[[4, 0, 23], 9.0, {"submitted": 1558193662.4703174, "started": 1558193662.4711099, "finished": 1558193662.4811318}, {"loss": 1, "info": {"x0": -3.656914863693097, "x1": 4.096406814971647, "x2": 6.874667923485273, "x3": -3.592933098768831, "x4": 4.316003775290685, "x5": 0.22189961806216846}}, null] +[[4, 0, 24], 9.0, {"submitted": 1558193662.4853623, "started": 1558193662.485831, "finished": 1558193662.4933138}, {"loss": 0.0764099994313717, "info": {"x0": -3.4635097160045047, "x1": 6.633475276361127, "x2": 4.289703091882139, "x3": -2.033975910540822, "x4": 3.130320974903925, "x5": 0.05247818422444528}}, null] +[[4, 0, 25], 9.0, {"submitted": 1558193662.495312, "started": 1558193662.495724, "finished": 1558193662.502835}, {"loss": 0.49172999427497394, "info": {"x0": -5.267137839792597, "x1": 4.928695049390651, "x2": 5.686057912862207, "x3": -0.5774451290044698, "x4": 2.901153133654955, "x5": 0.15811665312027462}}, null] +[[4, 0, 26], 9.0, {"submitted": 1558193662.505093, "started": 1558193662.50696, "finished": 1558193662.513514}, {"loss": 0.8493799993358181, "info": {"x0": -5.918001376828711, "x1": 6.878337965945711, "x2": 6.472589490972472, "x3": -1.643072961275641, "x4": 2.4093758935928395, "x5": 0.07477398450287132}}, null] +[[4, 0, 0], 27.0, {"submitted": 1558193662.5176127, "started": 1558193662.5181046, "finished": 1558193662.5255692}, {"loss": 0.10428999910295009, "info": {"x0": -4.332896065677885, "x1": 7.114501174611844, "x2": 7.322412750481153, "x3": -0.3733072473644361, "x4": 4.996312733560149, "x5": 0.054779018672934054}}, null] +[[4, 0, 3], 27.0, {"submitted": 1558193662.5271657, "started": 1558193662.5275161, "finished": 1558193662.5343103}, {"loss": 0.1322000003671646, "info": {"x0": -2.9502777570587018, "x1": 6.040010482712203, "x2": 6.679776300243439, "x3": -2.2917703199184314, "x4": 3.8606278197078976, "x5": 0.49184986310734446}}, null] +[[4, 0, 4], 27.0, {"submitted": 1558193662.5388124, "started": 1558193662.5392008, "finished": 1558193662.5491076}, {"loss": 0.04621000267565252, "info": {"x0": -2.020275926584572, "x1": 4.686938809400109, "x2": 7.022232385346527, "x3": -1.5678986841311877, "x4": 1.796764342345465, "x5": 0.09181419930121365}}, null] +[[4, 0, 8], 27.0, {"submitted": 1558193662.552409, "started": 1558193662.5527666, "finished": 1558193662.5591984}, {"loss": 0.041530002698302294, "info": {"x0": -2.0100346888802965, "x1": 4.367484768807278, "x2": 6.116432169623176, "x3": -3.804941274953296, "x4": 1.2498826512790195, "x5": 0.34726023435364634}}, null] +[[4, 0, 9], 27.0, {"submitted": 1558193662.5611773, "started": 1558193662.5617318, "finished": 1558193662.5736606}, {"loss": 0.03485999904632568, "info": {"x0": -3.6010479830013185, "x1": 5.437478607967673, "x2": 6.038375516314074, "x3": -2.919379701677911, "x4": 1.761187174617242, "x5": 0.1920204874717238}}, null] +[[4, 0, 18], 27.0, {"submitted": 1558193662.5751317, "started": 1558193662.5756257, "finished": 1558193662.5875015}, {"loss": 0.05752999980628491, "info": {"x0": -3.9681586579773667, "x1": 5.525702841286796, "x2": 7.162271436673521, "x3": -2.6599692361138088, "x4": 3.776819146767531, "x5": 0.06452205880054362}}, null] +[[4, 0, 21], 27.0, {"submitted": 1558193662.5889966, "started": 1558193662.5893304, "finished": 1558193662.5952256}, {"loss": 0.055419998928904535, "info": {"x0": -2.830909907422863, "x1": 6.783273332234847, "x2": 4.621288498537126, "x3": -0.9902402037523288, "x4": 1.27314878514969, "x5": 0.37175693071902466}}, null] +[[4, 0, 22], 27.0, {"submitted": 1558193662.596478, "started": 1558193662.5968602, "finished": 1558193662.608244}, {"loss": 0.10924999833285809, "info": {"x0": -4.004079745967816, "x1": 5.7257080791947175, "x2": 5.011184863695771, "x3": -0.7781885843268657, "x4": 2.797504704119063, "x5": 0.4751676330074424}}, null] +[[4, 0, 24], 27.0, {"submitted": 1558193662.6115391, "started": 1558193662.611895, "finished": 1558193662.6195605}, {"loss": 0.0600600002193451, "info": {"x0": -3.4635097160045047, "x1": 6.633475276361127, "x2": 4.289703091882139, "x3": -2.033975910540822, "x4": 3.130320974903925, "x5": 0.05247818422444528}}, null] +[[4, 0, 4], 81.0, {"submitted": 1558193662.6214585, "started": 1558193662.6219482, "finished": 1558193662.6294363}, {"loss": 0.03235000203549863, "info": {"x0": -2.020275926584572, "x1": 4.686938809400109, "x2": 7.022232385346527, "x3": -1.5678986841311877, "x4": 1.796764342345465, "x5": 0.09181419930121365}}, null] +[[4, 0, 8], 81.0, {"submitted": 1558193662.631107, "started": 1558193662.6319613, "finished": 1558193662.6395907}, {"loss": 0.030080003008246415, "info": {"x0": -2.0100346888802965, "x1": 4.367484768807278, "x2": 6.116432169623176, "x3": -3.804941274953296, "x4": 1.2498826512790195, "x5": 0.34726023435364634}}, null] +[[4, 0, 9], 81.0, {"submitted": 1558193662.6413682, "started": 1558193662.6421642, "finished": 1558193662.6537817}, {"loss": 0.027929998723268512, "info": {"x0": -3.6010479830013185, "x1": 5.437478607967673, "x2": 6.038375516314074, "x3": -2.919379701677911, "x4": 1.761187174617242, "x5": 0.1920204874717238}}, null] +[[4, 0, 9], 243.0, {"submitted": 1558193662.6554527, "started": 1558193662.6558657, "finished": 1558193662.6614487}, {"loss": 0.027169998798370343, "info": {"x0": -3.6010479830013185, "x1": 5.437478607967673, "x2": 6.038375516314074, "x3": -2.919379701677911, "x4": 1.761187174617242, "x5": 0.1920204874717238}}, null] +[[5, 0, 0], 27.0, {"submitted": 1558193662.663312, "started": 1558193662.663707, "finished": 1558193662.6753182}, {"loss": 0.08941999735593795, "info": {"x0": -2.0251439422811446, "x1": 6.2516997271529755, "x2": 4.944920858068631, "x3": -2.677447110882106, "x4": 3.359678511007838, "x5": 0.3947701349020901}}, null] +[[5, 0, 1], 27.0, {"submitted": 1558193662.6804144, "started": 1558193662.6807508, "finished": 1558193662.6873548}, {"loss": 0.5452100005723536, "info": {"x0": -5.311533435002644, "x1": 7.277207541610659, "x2": 6.419672195942522, "x3": -2.6123993503027725, "x4": 3.838893670237536, "x5": 0.23246351456570713}}, null] +[[5, 0, 2], 27.0, {"submitted": 1558193662.6895952, "started": 1558193662.6900196, "finished": 1558193662.6964333}, {"loss": 0.027540000332593906, "info": {"x0": -3.2133901529313227, "x1": 6.123752308089612, "x2": 5.832229908668431, "x3": -2.981088012617295, "x4": 2.414871739669543, "x5": 0.05610133363765618}}, null] +[[5, 0, 3], 27.0, {"submitted": 1558193662.6994023, "started": 1558193662.6998436, "finished": 1558193662.7142372}, {"loss": 0.04515999895274638, "info": {"x0": -2.7211839171458188, "x1": 5.3015335304387055, "x2": 4.861601323207291, "x3": -0.06624920245847887, "x4": 2.5735148347735253, "x5": 0.23921335907841246}}, null] +[[5, 0, 4], 27.0, {"submitted": 1558193662.719606, "started": 1558193662.7201362, "finished": 1558193662.7263083}, {"loss": 0.13510999814689165, "info": {"x0": -3.0506202725094367, "x1": 4.258231529528802, "x2": 4.086668729517351, "x3": -1.8873971714410889, "x4": 2.802288965469676, "x5": 0.36999683423649493}}, null] +[[5, 0, 5], 27.0, {"submitted": 1558193662.7282627, "started": 1558193662.7286377, "finished": 1558193662.74314}, {"loss": 0.2149499946796894, "info": {"x0": -2.071106554272205, "x1": 7.206928813637815, "x2": 6.997804794958462, "x3": -0.2764111089068977, "x4": 2.8069446814786927, "x5": 0.4927963288230439}}, null] +[[5, 0, 6], 27.0, {"submitted": 1558193662.7454493, "started": 1558193662.7458253, "finished": 1558193662.7537704}, {"loss": 0.04947000355660915, "info": {"x0": -2.8285293450971323, "x1": 3.1672217315812996, "x2": 7.086148021981931, "x3": -0.9240773041544692, "x4": 4.864404671350153, "x5": 0.22444600586580737}}, null] +[[5, 0, 7], 27.0, {"submitted": 1558193662.755862, "started": 1558193662.7562966, "finished": 1558193662.7667575}, {"loss": 0.21033999834567313, "info": {"x0": -4.309991907763077, "x1": 4.789722048381941, "x2": 4.477864850276177, "x3": -0.9113289906008739, "x4": 3.1249452188895592, "x5": 0.3788854817166867}}, null] +[[5, 0, 8], 27.0, {"submitted": 1558193662.7750611, "started": 1558193662.7759511, "finished": 1558193662.7845066}, {"loss": 0.08473999616444114, "info": {"x0": -3.6250871665812427, "x1": 6.9586152215344566, "x2": 4.775444187549399, "x3": -0.1989940374130459, "x4": 3.0439773747434815, "x5": 0.4186223706161836}}, null] +[[5, 0, 2], 81.0, {"submitted": 1558193662.7864351, "started": 1558193662.7868998, "finished": 1558193662.7937403}, {"loss": 0.025610001131296155, "info": {"x0": -3.2133901529313227, "x1": 6.123752308089612, "x2": 5.832229908668431, "x3": -2.981088012617295, "x4": 2.414871739669543, "x5": 0.05610133363765618}}, null] +[[5, 0, 3], 81.0, {"submitted": 1558193662.7956529, "started": 1558193662.7961497, "finished": 1558193662.805973}, {"loss": 0.04061999838531016, "info": {"x0": -2.7211839171458188, "x1": 5.3015335304387055, "x2": 4.861601323207291, "x3": -0.06624920245847887, "x4": 2.5735148347735253, "x5": 0.23921335907841246}}, null] +[[5, 0, 6], 81.0, {"submitted": 1558193662.8084948, "started": 1558193662.8089185, "finished": 1558193662.818968}, {"loss": 0.0350700032532215, "info": {"x0": -2.8285293450971323, "x1": 3.1672217315812996, "x2": 7.086148021981931, "x3": -0.9240773041544692, "x4": 4.864404671350153, "x5": 0.22444600586580737}}, null] +[[5, 0, 2], 243.0, {"submitted": 1558193662.8205132, "started": 1558193662.8208404, "finished": 1558193662.8285038}, {"loss": 0.025370001317262657, "info": {"x0": -3.2133901529313227, "x1": 6.123752308089612, "x2": 5.832229908668431, "x3": -2.981088012617295, "x4": 2.414871739669543, "x5": 0.05610133363765618}}, null] +[[6, 0, 0], 81.0, {"submitted": 1558193662.831697, "started": 1558193662.8349195, "finished": 1558193662.8449876}, {"loss": 0.7867499998906998, "info": {"x0": -5.575901375682471, "x1": 6.7073330714900985, "x2": 4.641068666689797, "x3": -3.6497403718249255, "x4": 1.9081919271327528, "x5": 0.13469701479714158}}, null] +[[6, 0, 1], 81.0, {"submitted": 1558193662.8507442, "started": 1558193662.8513064, "finished": 1558193662.8597648}, {"loss": 0.03222999924302102, "info": {"x0": -2.884948489674924, "x1": 4.960034571987709, "x2": 5.543560269198962, "x3": -0.5723185477314052, "x4": 1.821141950126775, "x5": 0.2946955405930146}}, null] +[[6, 0, 2], 81.0, {"submitted": 1558193662.8621447, "started": 1558193662.862688, "finished": 1558193662.876657}, {"loss": 0.024760000845789908, "info": {"x0": -2.294322156812357, "x1": 5.152090687926406, "x2": 7.136838530790609, "x3": -1.782251469437059, "x4": 2.822836471081123, "x5": 0.04803406710588359}}, null] +[[6, 0, 3], 81.0, {"submitted": 1558193662.8789494, "started": 1558193662.8793468, "finished": 1558193662.886816}, {"loss": 0.10225999970972537, "info": {"x0": -4.9494380067182195, "x1": 3.577988057450378, "x2": 7.075834342197597, "x3": -3.712470693654146, "x4": 1.5612196833321836, "x5": 0.08772652189264762}}, null] +[[6, 0, 4], 81.0, {"submitted": 1558193662.889139, "started": 1558193662.8895152, "finished": 1558193662.8983593}, {"loss": 0.48860999469950783, "info": {"x0": -4.7160012188652285, "x1": 4.512276175935902, "x2": 4.864424527745495, "x3": -0.6174266828559407, "x4": 3.770577871793666, "x5": 0.45989535288660227}}, null] +[[6, 0, 5], 81.0, {"submitted": 1558193662.9021995, "started": 1558193662.902837, "finished": 1558193662.912389}, {"loss": 0.04154999687492846, "info": {"x0": -2.46252157509531, "x1": 3.4647157290204236, "x2": 4.521136041640958, "x3": -3.674296210893481, "x4": 4.678687865040663, "x5": 0.021547714084239777}}, null] +[[6, 0, 1], 243.0, {"submitted": 1558193662.9142568, "started": 1558193662.9147098, "finished": 1558193662.9210985}, {"loss": 0.031289999144077284, "info": {"x0": -2.884948489674924, "x1": 4.960034571987709, "x2": 5.543560269198962, "x3": -0.5723185477314052, "x4": 1.821141950126775, "x5": 0.2946955405930146}}, null] +[[6, 0, 2], 243.0, {"submitted": 1558193662.9226165, "started": 1558193662.922925, "finished": 1558193662.932487}, {"loss": 0.01961000092566014, "info": {"x0": -2.294322156812357, "x1": 5.152090687926406, "x2": 7.136838530790609, "x3": -1.782251469437059, "x4": 2.822836471081123, "x5": 0.04803406710588359}}, null] +[[7, 0, 0], 243.0, {"submitted": 1558193662.9353676, "started": 1558193662.9358025, "finished": 1558193662.9444087}, {"loss": 0.03257000080764294, "info": {"x0": -2.8174581665083456, "x1": 3.3958155043962073, "x2": 5.68580845233762, "x3": -3.0235931523429658, "x4": 1.303627185513621, "x5": 0.297176567183568}}, null] +[[7, 0, 1], 243.0, {"submitted": 1558193662.9467354, "started": 1558193662.947225, "finished": 1558193662.9562302}, {"loss": 0.6620299993206562, "info": {"x0": -5.050064537630043, "x1": 6.296810397933161, "x2": 4.651318871899013, "x3": -1.3043489218464424, "x4": 4.628105587335764, "x5": 0.2612413761525226}}, null] +[[7, 0, 2], 243.0, {"submitted": 1558193662.9581294, "started": 1558193662.958576, "finished": 1558193662.9689927}, {"loss": 0.032650002777576445, "info": {"x0": -3.833015045130404, "x1": 5.3516354097180585, "x2": 5.641470350982062, "x3": -0.7748609557190052, "x4": 2.130007418409271, "x5": 0.01676238223660581}}, null] +[[7, 0, 3], 243.0, {"submitted": 1558193662.972222, "started": 1558193662.972593, "finished": 1558193662.9797552}, {"loss": 0.018790005164742486, "info": {"x0": -2.460537955184538, "x1": 7.278726237612876, "x2": 7.7314105295670945, "x3": -3.0261052685920773, "x4": 4.21746315056088, "x5": 0.3676530584607541}}, null] +[[8, 0, 0], 9.0, {"submitted": 1558193662.9826794, "started": 1558193662.9833999, "finished": 1558193662.991995}, {"loss": 0.4973799950721115, "info": {"x0": -4.594805030499456, "x1": 4.800921332287571, "x2": 6.352949641780459, "x3": -1.628687335375968, "x4": 4.027449445965001, "x5": 0.3444635031159173}}, null] +[[8, 0, 1], 9.0, {"submitted": 1558193662.994258, "started": 1558193662.994683, "finished": 1558193663.003119}, {"loss": 1, "info": {"x0": -2.9123862462225873, "x1": 4.820175094943102, "x2": 7.518750858755476, "x3": -0.4686846058900751, "x4": 4.9655473418674045, "x5": 0.3952553034143236}}, null] +[[8, 0, 2], 9.0, {"submitted": 1558193663.0059392, "started": 1558193663.006262, "finished": 1558193663.014132}, {"loss": 0.6111899950147419, "info": {"x0": -4.561505717261223, "x1": 5.121132150164996, "x2": 5.998081202606099, "x3": -2.5413979087747123, "x4": 4.025444651951755, "x5": 0.4033385178489842}}, null] +[[8, 0, 3], 9.0, {"submitted": 1558193663.0174162, "started": 1558193663.0181618, "finished": 1558193663.0254707}, {"loss": 1, "info": {"x0": -3.3445555845772255, "x1": 3.60843980099032, "x2": 6.329852882764881, "x3": -0.3171761257909691, "x4": 4.306172332041752, "x5": 0.42175865977764126}}, null] +[[8, 0, 4], 9.0, {"submitted": 1558193663.0294812, "started": 1558193663.0298977, "finished": 1558193663.0415654}, {"loss": 0.5685599981517344, "info": {"x0": -5.197176454692373, "x1": 5.931843800408282, "x2": 7.3011513576430485, "x3": -3.9369458871990504, "x4": 3.4055655653883763, "x5": 0.16425225102718827}}, null] +[[8, 0, 5], 9.0, {"submitted": 1558193663.0440402, "started": 1558193663.0446131, "finished": 1558193663.053176}, {"loss": 0.07026999579131601, "info": {"x0": -3.6408183697115852, "x1": 3.868835969543263, "x2": 6.42938565675401, "x3": -3.637509323334378, "x4": 2.488818087487543, "x5": 0.30154867161460397}}, null] +[[8, 0, 6], 9.0, {"submitted": 1558193663.0563154, "started": 1558193663.0568025, "finished": 1558193663.0667343}, {"loss": 1, "info": {"x0": -3.4847117619365235, "x1": 3.205205417198896, "x2": 6.06766422256778, "x3": -1.6625684541690817, "x4": 1.6312227732710864, "x5": 0.012944693995867007}}, null] +[[8, 0, 7], 9.0, {"submitted": 1558193663.0688033, "started": 1558193663.0722873, "finished": 1558193663.0797098}, {"loss": 0.0644699958729744, "info": {"x0": -3.1674109067850416, "x1": 4.325362346236307, "x2": 4.887414436426371, "x3": -3.323804570410232, "x4": 1.8421772265556555, "x5": 0.12890388823069754}}, null] +[[8, 0, 8], 9.0, {"submitted": 1558193663.0838063, "started": 1558193663.084131, "finished": 1558193663.0935597}, {"loss": 1, "info": {"x0": -5.937292070700318, "x1": 3.9539170786894062, "x2": 6.856482990335179, "x3": -2.7943403927386097, "x4": 3.694505359153173, "x5": 0.20779525248445024}}, null] +[[8, 0, 9], 9.0, {"submitted": 1558193663.0962255, "started": 1558193663.0966754, "finished": 1558193663.1049764}, {"loss": 0.0651199983429909, "info": {"x0": -3.5414338176719293, "x1": 5.278612934993472, "x2": 6.83149641676932, "x3": -1.3956271334741799, "x4": 3.2420920708590413, "x5": 0.26724585711762233}}, null] +[[8, 0, 10], 9.0, {"submitted": 1558193663.106939, "started": 1558193663.1074715, "finished": 1558193663.1202145}, {"loss": 0.04489999909937381, "info": {"x0": -3.2792787781996093, "x1": 6.7141242409733675, "x2": 5.648038296793004, "x3": -1.9739623038990706, "x4": 2.114359618112507, "x5": 0.2067160546998772}}, null] +[[8, 0, 11], 9.0, {"submitted": 1558193663.1227312, "started": 1558193663.1233099, "finished": 1558193663.1306398}, {"loss": 1, "info": {"x0": -5.231467481341594, "x1": 3.6559997176812393, "x2": 7.038822678668691, "x3": -3.6146310489406104, "x4": 3.7832469546730327, "x5": 0.23157107060653853}}, null] +[[8, 0, 12], 9.0, {"submitted": 1558193663.1343646, "started": 1558193663.1349103, "finished": 1558193663.1447616}, {"loss": 0.8605099995659291, "info": {"x0": -5.538377791247667, "x1": 7.889909954585619, "x2": 5.15383304927008, "x3": -1.0254412147273806, "x4": 4.994476903960777, "x5": 0.44984109498141467}}, null] +[[8, 0, 13], 9.0, {"submitted": 1558193663.1488318, "started": 1558193663.1492198, "finished": 1558193663.1601818}, {"loss": 0.148159994584322, "info": {"x0": -2.110387042688963, "x1": 4.127243627184816, "x2": 5.749685009077991, "x3": -2.4562146721620532, "x4": 4.687879431325013, "x5": 0.04092579865766882}}, null] +[[8, 0, 14], 9.0, {"submitted": 1558193663.1621819, "started": 1558193663.1627743, "finished": 1558193663.176539}, {"loss": 1, "info": {"x0": -3.67894271861641, "x1": 4.3095364527979205, "x2": 7.935834885244557, "x3": -3.010893694991238, "x4": 1.3438035474736538, "x5": 0.345702834033439}}, null] +[[8, 0, 15], 9.0, {"submitted": 1558193663.179039, "started": 1558193663.1795018, "finished": 1558193663.1909893}, {"loss": 1, "info": {"x0": -5.0445174057670545, "x1": 4.626480658449738, "x2": 7.224345217356905, "x3": -3.9764536147812497, "x4": 1.7291962401108547, "x5": 0.0011182059805172062}}, null] +[[8, 0, 16], 9.0, {"submitted": 1558193663.1938448, "started": 1558193663.1942606, "finished": 1558193663.207326}, {"loss": 0.06877999788582326, "info": {"x0": -2.4208520784896677, "x1": 6.352577325904455, "x2": 5.105168121254062, "x3": -0.3687853292249863, "x4": 2.9465520331038295, "x5": 0.3435877075243593}}, null] +[[8, 0, 17], 9.0, {"submitted": 1558193663.2101882, "started": 1558193663.210627, "finished": 1558193663.2210553}, {"loss": 0.09781000040143728, "info": {"x0": -3.783731386054822, "x1": 4.316955306987335, "x2": 4.440709356993502, "x3": -0.11667452605241513, "x4": 1.2863391318505237, "x5": 0.08143903544144843}}, null] +[[8, 0, 18], 9.0, {"submitted": 1558193663.22345, "started": 1558193663.2237926, "finished": 1558193663.2311661}, {"loss": 0.0990600040459633, "info": {"x0": -3.8790280924133884, "x1": 7.6521823563112825, "x2": 6.5096084388148325, "x3": -0.0038828225091349644, "x4": 3.564649700776939, "x5": 0.24576466209713677}}, null] +[[8, 0, 19], 9.0, {"submitted": 1558193663.233809, "started": 1558193663.2342417, "finished": 1558193663.2483935}, {"loss": 0.04645000122368337, "info": {"x0": -2.1997445002568794, "x1": 5.40456218099455, "x2": 7.125702109190812, "x3": -1.552972298687615, "x4": 2.202046804315369, "x5": 0.09079016092228215}}, null] +[[8, 0, 20], 9.0, {"submitted": 1558193663.2511156, "started": 1558193663.2515054, "finished": 1558193663.258537}, {"loss": 0.8164099995256215, "info": {"x0": -5.416890585930575, "x1": 7.564125662315096, "x2": 6.469924333601693, "x3": -3.2151934435930514, "x4": 3.6572229756661865, "x5": 0.3779036101938677}}, null] +[[8, 0, 21], 9.0, {"submitted": 1558193663.2607806, "started": 1558193663.2611296, "finished": 1558193663.2704954}, {"loss": 0.7578699987536297, "info": {"x0": -5.023504181243529, "x1": 4.993105675863702, "x2": 4.279144848649516, "x3": -1.6491223123226995, "x4": 4.418548151051604, "x5": 0.03078859113648119}}, null] +[[8, 0, 22], 9.0, {"submitted": 1558193663.2728806, "started": 1558193663.273367, "finished": 1558193663.28982}, {"loss": 0.3939200000885129, "info": {"x0": -5.087223583644787, "x1": 7.949456697646735, "x2": 7.840451336520655, "x3": -1.5077765707273691, "x4": 2.4327674252038594, "x5": 0.27501543161026903}}, null] +[[8, 0, 23], 9.0, {"submitted": 1558193663.292297, "started": 1558193663.2927864, "finished": 1558193663.299789}, {"loss": 1, "info": {"x0": -2.143322912058006, "x1": 3.022746533697766, "x2": 7.786804037032695, "x3": -2.9290724716780847, "x4": 4.016345012538334, "x5": 0.4331458054358054}}, null] +[[8, 0, 24], 9.0, {"submitted": 1558193663.3018682, "started": 1558193663.3048904, "finished": 1558193663.3160632}, {"loss": 1, "info": {"x0": -4.419284248725813, "x1": 5.241990205069509, "x2": 7.633664728609305, "x3": -0.8773970060338785, "x4": 3.193013299798753, "x5": 0.0877970327632458}}, null] +[[8, 0, 25], 9.0, {"submitted": 1558193663.3184936, "started": 1558193663.3189123, "finished": 1558193663.326688}, {"loss": 1, "info": {"x0": -3.294451517936895, "x1": 4.173159040190339, "x2": 7.582523163488932, "x3": -2.946021549009527, "x4": 1.359766674941516, "x5": 0.036054531333989226}}, null] +[[8, 0, 26], 9.0, {"submitted": 1558193663.328828, "started": 1558193663.3294427, "finished": 1558193663.3388567}, {"loss": 1, "info": {"x0": -4.495903217364831, "x1": 3.823579981579075, "x2": 7.49274528676869, "x3": -3.0556023913184673, "x4": 1.204269749427076, "x5": 0.39407797554832913}}, null] +[[8, 0, 5], 27.0, {"submitted": 1558193663.342425, "started": 1558193663.3434145, "finished": 1558193663.3534818}, {"loss": 0.0459499967968464, "info": {"x0": -3.6408183697115852, "x1": 3.868835969543263, "x2": 6.42938565675401, "x3": -3.637509323334378, "x4": 2.488818087487543, "x5": 0.30154867161460397}}, null] +[[8, 0, 7], 27.0, {"submitted": 1558193663.3548572, "started": 1558193663.3552098, "finished": 1558193663.3620977}, {"loss": 0.041929997597336774, "info": {"x0": -3.1674109067850416, "x1": 4.325362346236307, "x2": 4.887414436426371, "x3": -3.323804570410232, "x4": 1.8421772265556555, "x5": 0.12890388823069754}}, null] +[[8, 0, 9], 27.0, {"submitted": 1558193663.365127, "started": 1558193663.3657494, "finished": 1558193663.3767984}, {"loss": 0.036099999976158134, "info": {"x0": -3.5414338176719293, "x1": 5.278612934993472, "x2": 6.83149641676932, "x3": -1.3956271334741799, "x4": 3.2420920708590413, "x5": 0.26724585711762233}}, null] +[[8, 0, 10], 27.0, {"submitted": 1558193663.378972, "started": 1558193663.3793871, "finished": 1558193663.3892803}, {"loss": 0.031909999330639836, "info": {"x0": -3.2792787781996093, "x1": 6.7141242409733675, "x2": 5.648038296793004, "x3": -1.9739623038990706, "x4": 2.114359618112507, "x5": 0.2067160546998772}}, null] +[[8, 0, 13], 27.0, {"submitted": 1558193663.3908238, "started": 1558193663.3912506, "finished": 1558193663.398928}, {"loss": 0.14516999557055532, "info": {"x0": -2.110387042688963, "x1": 4.127243627184816, "x2": 5.749685009077991, "x3": -2.4562146721620532, "x4": 4.687879431325013, "x5": 0.04092579865766882}}, null] +[[8, 0, 16], 27.0, {"submitted": 1558193663.400618, "started": 1558193663.401097, "finished": 1558193663.4152799}, {"loss": 0.058669997626543034, "info": {"x0": -2.4208520784896677, "x1": 6.352577325904455, "x2": 5.105168121254062, "x3": -0.3687853292249863, "x4": 2.9465520331038295, "x5": 0.3435877075243593}}, null] +[[8, 0, 17], 27.0, {"submitted": 1558193663.417462, "started": 1558193663.417916, "finished": 1558193663.4242682}, {"loss": 0.07189000075757504, "info": {"x0": -3.783731386054822, "x1": 4.316955306987335, "x2": 4.440709356993502, "x3": -0.11667452605241513, "x4": 1.2863391318505237, "x5": 0.08143903544144843}}, null] +[[8, 0, 18], 27.0, {"submitted": 1558193663.4260123, "started": 1558193663.4267566, "finished": 1558193663.4368312}, {"loss": 0.057410005538463614, "info": {"x0": -3.8790280924133884, "x1": 7.6521823563112825, "x2": 6.5096084388148325, "x3": -0.0038828225091349644, "x4": 3.564649700776939, "x5": 0.24576466209713677}}, null] +[[8, 0, 19], 27.0, {"submitted": 1558193663.4399617, "started": 1558193663.440395, "finished": 1558193663.450669}, {"loss": 0.031740001324415214, "info": {"x0": -2.1997445002568794, "x1": 5.40456218099455, "x2": 7.125702109190812, "x3": -1.552972298687615, "x4": 2.202046804315369, "x5": 0.09079016092228215}}, null] +[[8, 0, 9], 81.0, {"submitted": 1558193663.4525604, "started": 1558193663.4529896, "finished": 1558193663.4590867}, {"loss": 0.026239999575614938, "info": {"x0": -3.5414338176719293, "x1": 5.278612934993472, "x2": 6.83149641676932, "x3": -1.3956271334741799, "x4": 3.2420920708590413, "x5": 0.26724585711762233}}, null] +[[8, 0, 10], 81.0, {"submitted": 1558193663.4607275, "started": 1558193663.461051, "finished": 1558193663.4735098}, {"loss": 0.029289999256730058, "info": {"x0": -3.2792787781996093, "x1": 6.7141242409733675, "x2": 5.648038296793004, "x3": -1.9739623038990706, "x4": 2.114359618112507, "x5": 0.2067160546998772}}, null] +[[8, 0, 19], 81.0, {"submitted": 1558193663.476426, "started": 1558193663.4772377, "finished": 1558193663.4866457}, {"loss": 0.022380001863837252, "info": {"x0": -2.1997445002568794, "x1": 5.40456218099455, "x2": 7.125702109190812, "x3": -1.552972298687615, "x4": 2.202046804315369, "x5": 0.09079016092228215}}, null] +[[8, 0, 19], 243.0, {"submitted": 1558193663.4885256, "started": 1558193663.4888926, "finished": 1558193663.4965706}, {"loss": 0.019150001842975616, "info": {"x0": -2.1997445002568794, "x1": 5.40456218099455, "x2": 7.125702109190812, "x3": -1.552972298687615, "x4": 2.202046804315369, "x5": 0.09079016092228215}}, null] +[[9, 0, 0], 27.0, {"submitted": 1558193663.504316, "started": 1558193663.504836, "finished": 1558193663.5150685}, {"loss": 0.1362899962353706, "info": {"x0": -4.654469863864071, "x1": 5.217295873189009, "x2": 6.088040137164635, "x3": -3.194612435063768, "x4": 4.148669546258041, "x5": 0.01174482384727532}}, null] +[[9, 0, 1], 27.0, {"submitted": 1558193663.5177686, "started": 1558193663.5182364, "finished": 1558193663.5249228}, {"loss": 0.1809600011241436, "info": {"x0": -4.129476780222786, "x1": 4.748279320654197, "x2": 5.588740263383567, "x3": -0.601261500927583, "x4": 3.8749982194031114, "x5": 0.4559714627259356}}, null] +[[9, 0, 2], 27.0, {"submitted": 1558193663.5272408, "started": 1558193663.5276613, "finished": 1558193663.5373616}, {"loss": 0.0316300011640787, "info": {"x0": -2.484180559932916, "x1": 4.08275891981752, "x2": 5.845172920941448, "x3": -2.082930971082567, "x4": 2.119923725791733, "x5": 0.04396715922568989}}, null] +[[9, 0, 3], 27.0, {"submitted": 1558193663.5437167, "started": 1558193663.5444498, "finished": 1558193663.5542526}, {"loss": 0.07970999979496005, "info": {"x0": -2.482118477348497, "x1": 3.109916118959852, "x2": 4.197153654702947, "x3": -0.574131753245323, "x4": 2.0133455146201045, "x5": 0.30348621477946536}}, null] +[[9, 0, 4], 27.0, {"submitted": 1558193663.5566318, "started": 1558193663.5570838, "finished": 1558193663.566405}, {"loss": 0.0501999982982874, "info": {"x0": -3.439733746527008, "x1": 5.302274999753989, "x2": 7.806459992814731, "x3": -2.618936593336737, "x4": 2.9319069861707083, "x5": 0.3443225190991326}}, null] +[[9, 0, 5], 27.0, {"submitted": 1558193663.5688818, "started": 1558193663.5693367, "finished": 1558193663.5802934}, {"loss": 0.04875000073631604, "info": {"x0": -3.3441707725581575, "x1": 3.8050324954947383, "x2": 6.970957944056357, "x3": -2.7156352542116804, "x4": 2.2747225879729784, "x5": 0.10902721027563667}}, null] +[[9, 0, 6], 27.0, {"submitted": 1558193663.5832667, "started": 1558193663.5836873, "finished": 1558193663.5902624}, {"loss": 0.035660000791549684, "info": {"x0": -2.707144596085528, "x1": 5.322031474825859, "x2": 7.601243559396408, "x3": -0.8097364057586924, "x4": 1.6072334373588961, "x5": 0.459544108816873}}, null] +[[9, 0, 7], 27.0, {"submitted": 1558193663.5923312, "started": 1558193663.593082, "finished": 1558193663.6021252}, {"loss": 0.0566699996930361, "info": {"x0": -3.286809194055589, "x1": 4.325596224676087, "x2": 4.654318168444124, "x3": -0.7254008109826673, "x4": 2.707744449841772, "x5": 0.11886044878422225}}, null] +[[9, 0, 8], 27.0, {"submitted": 1558193663.6054242, "started": 1558193663.6058288, "finished": 1558193663.6150274}, {"loss": 0.033739998811483374, "info": {"x0": -2.738895867247304, "x1": 7.916703079114954, "x2": 6.420735656778538, "x3": -2.4399937219096266, "x4": 2.3273338867755666, "x5": 0.3731389786366825}}, null] +[[9, 0, 2], 81.0, {"submitted": 1558193663.6172395, "started": 1558193663.6177151, "finished": 1558193663.625019}, {"loss": 0.023650001311302182, "info": {"x0": -2.484180559932916, "x1": 4.08275891981752, "x2": 5.845172920941448, "x3": -2.082930971082567, "x4": 2.119923725791733, "x5": 0.04396715922568989}}, null] +[[9, 0, 6], 81.0, {"submitted": 1558193663.6267178, "started": 1558193663.6270788, "finished": 1558193663.6383746}, {"loss": 0.024280000787377364, "info": {"x0": -2.707144596085528, "x1": 5.322031474825859, "x2": 7.601243559396408, "x3": -0.8097364057586924, "x4": 1.6072334373588961, "x5": 0.459544108816873}}, null] +[[9, 0, 8], 81.0, {"submitted": 1558193663.6404493, "started": 1558193663.6407242, "finished": 1558193663.6486223}, {"loss": 0.028919999219775193, "info": {"x0": -2.738895867247304, "x1": 7.916703079114954, "x2": 6.420735656778538, "x3": -2.4399937219096266, "x4": 2.3273338867755666, "x5": 0.3731389786366825}}, null] +[[9, 0, 2], 243.0, {"submitted": 1558193663.6507924, "started": 1558193663.651451, "finished": 1558193663.662126}, {"loss": 0.022270001432895682, "info": {"x0": -2.484180559932916, "x1": 4.08275891981752, "x2": 5.845172920941448, "x3": -2.082930971082567, "x4": 2.119923725791733, "x5": 0.04396715922568989}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/randomsearch/configs.json new file mode 100644 index 0000000..cb4df1e --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/randomsearch/configs.json @@ -0,0 +1,40 @@ +[[0, 0, 0], {"x0": -3.0526325317770904, "x1": 5.469294138394237, "x2": 4.51043286766049, "x3": -2.1137714488404926, "x4": 1.2213544116000845, "x5": 0.199256946150569}, {}] +[[0, 0, 1], {"x0": -3.538853867032083, "x1": 6.3701949130965305, "x2": 6.772288535429472, "x3": -1.32529030898473, "x4": 4.003379250150683, "x5": 0.49488168157305823}, {}] +[[0, 0, 2], {"x0": -3.915912057330418, "x1": 6.39544351327247, "x2": 6.05575509183816, "x3": -1.2439903825217842, "x4": 2.4153227682720964, "x5": 0.02704128550223356}, {}] +[[0, 0, 3], {"x0": -5.126849402020497, "x1": 5.416188697173773, "x2": 6.774386894867289, "x3": -0.5891078607109037, "x4": 2.032489345183594, "x5": 0.3806640358498912}, {}] +[[1, 0, 0], {"x0": -2.2484577441039986, "x1": 5.291884446210071, "x2": 7.785614408672131, "x3": -0.9456408242505718, "x4": 1.0915602913910387, "x5": 0.009532316791329543}, {}] +[[1, 0, 1], {"x0": -3.1296598101926394, "x1": 4.800229370338717, "x2": 4.0010805325016925, "x3": -2.8150562688277785, "x4": 2.0673138605269306, "x5": 0.42344548393819675}, {}] +[[1, 0, 2], {"x0": -2.9650049926571618, "x1": 6.846245276043167, "x2": 6.712757482207218, "x3": -0.9523448704849797, "x4": 1.9088087029766592, "x5": 0.03811809169976815}, {}] +[[1, 0, 3], {"x0": -4.109411420222968, "x1": 7.583195988751144, "x2": 7.658358765724453, "x3": -1.3264503042413587, "x4": 2.6294997008372323, "x5": 0.35550095767377143}, {}] +[[2, 0, 0], {"x0": -4.43326547779149, "x1": 4.7714060661624575, "x2": 4.1900594758093055, "x3": -3.819476700146721, "x4": 3.3874063806585477, "x5": 0.40086955532413043}, {}] +[[2, 0, 1], {"x0": -4.420562817128524, "x1": 7.734424169760179, "x2": 7.515024516440686, "x3": -2.2717141057195644, "x4": 2.1477744430781196, "x5": 0.08383449607584631}, {}] +[[2, 0, 2], {"x0": -3.0586743768905924, "x1": 3.39094240786263, "x2": 7.126709779380963, "x3": -2.977547443660348, "x4": 1.1421128540270127, "x5": 0.38869195875736434}, {}] +[[2, 0, 3], {"x0": -5.706003182627407, "x1": 5.941541594077534, "x2": 6.656301905254788, "x3": -0.6535833388286907, "x4": 4.952806921485181, "x5": 0.3856533907153539}, {}] +[[3, 0, 0], {"x0": -5.524296867606921, "x1": 5.974230151528305, "x2": 6.18137173718312, "x3": -3.1054618759261094, "x4": 3.3100341297347864, "x5": 0.3355152153590145}, {}] +[[3, 0, 1], {"x0": -4.090501219788274, "x1": 3.256527071239619, "x2": 5.793052036225582, "x3": -1.4067981872969808, "x4": 4.775235382333637, "x5": 0.3997179681925937}, {}] +[[3, 0, 2], {"x0": -2.2090324213252983, "x1": 3.0907201788465386, "x2": 4.476867137233071, "x3": -0.33654288176893665, "x4": 2.1597692923024194, "x5": 0.242730973448667}, {}] +[[3, 0, 3], {"x0": -2.0587478402546546, "x1": 5.6919921458700475, "x2": 6.164228995314394, "x3": -0.4662876950243495, "x4": 2.9440968933721994, "x5": 0.4752640392370219}, {}] +[[4, 0, 0], {"x0": -3.1342995091015498, "x1": 5.743765334857836, "x2": 4.821768908332298, "x3": -0.7735792830750281, "x4": 4.654818923278424, "x5": 0.10971420610107202}, {}] +[[4, 0, 1], {"x0": -4.439885102080294, "x1": 7.4892100931074035, "x2": 7.040723982109156, "x3": -2.3350495377502645, "x4": 3.392449886133689, "x5": 0.3463397578794544}, {}] +[[4, 0, 2], {"x0": -2.3862363448236663, "x1": 5.810438824866965, "x2": 6.2596610390290195, "x3": -2.8359067823484247, "x4": 2.969437937628778, "x5": 0.11491950938702017}, {}] +[[4, 0, 3], {"x0": -3.3120656059814353, "x1": 4.5379160706276025, "x2": 4.741246633768329, "x3": -1.5135750816835394, "x4": 2.5805256417645768, "x5": 0.32726499974207723}, {}] +[[5, 0, 0], {"x0": -3.8370231225006406, "x1": 5.104456741927999, "x2": 6.7244460338943135, "x3": -0.08019964748273845, "x4": 1.7480001665873521, "x5": 0.2058026283662422}, {}] +[[5, 0, 1], {"x0": -2.023249944476815, "x1": 5.836596799221476, "x2": 4.736161729420741, "x3": -0.19579565782193642, "x4": 1.0759724098022319, "x5": 0.2895762296578929}, {}] +[[5, 0, 2], {"x0": -2.7423450196302945, "x1": 7.114274394106918, "x2": 6.646146146409303, "x3": -2.157210155319094, "x4": 1.8828308496183954, "x5": 0.43205198689920626}, {}] +[[5, 0, 3], {"x0": -5.53607321227944, "x1": 4.02178975690882, "x2": 7.482000565193083, "x3": -3.611698519311799, "x4": 3.4143965453474237, "x5": 0.122197957816572}, {}] +[[6, 0, 0], {"x0": -3.4568007072408524, "x1": 4.90213434677468, "x2": 4.0048825539597885, "x3": -3.040647998577944, "x4": 4.780843933335028, "x5": 0.07542998049697125}, {}] +[[6, 0, 1], {"x0": -5.956674131297037, "x1": 7.127915969293442, "x2": 4.433238155045359, "x3": -1.4023654404897723, "x4": 3.71952849335202, "x5": 0.2609795866838975}, {}] +[[6, 0, 2], {"x0": -4.744954965039678, "x1": 5.769574722525929, "x2": 6.1460977588597405, "x3": -0.2530223586383342, "x4": 1.1486348316016013, "x5": 0.23495382099691103}, {}] +[[6, 0, 3], {"x0": -4.849952993739806, "x1": 7.992441491746123, "x2": 4.0755168484543285, "x3": -2.4289144854415365, "x4": 1.8593092256822867, "x5": 0.378324035910048}, {}] +[[7, 0, 0], {"x0": -4.904872838467375, "x1": 5.920752370300805, "x2": 6.144893049357886, "x3": -1.037806459119758, "x4": 3.626320494253044, "x5": 0.31202673947972154}, {}] +[[7, 0, 1], {"x0": -4.035927390729074, "x1": 3.880322231308953, "x2": 4.0383601360931465, "x3": -0.8052163051419536, "x4": 3.8336364872379387, "x5": 0.15376479669010829}, {}] +[[7, 0, 2], {"x0": -5.74723181680022, "x1": 4.234235520672273, "x2": 5.823737069789805, "x3": -0.9328069808089321, "x4": 3.219807814574909, "x5": 0.44870091649192184}, {}] +[[7, 0, 3], {"x0": -5.5760887828597365, "x1": 6.077700277737483, "x2": 6.028397580321048, "x3": -0.24199154835277437, "x4": 4.7662155642603, "x5": 0.4214929702612878}, {}] +[[8, 0, 0], {"x0": -3.418786981568184, "x1": 7.903817297823268, "x2": 5.5708296522867276, "x3": -3.3968093226373863, "x4": 3.759567671974083, "x5": 0.005934386930641633}, {}] +[[8, 0, 1], {"x0": -5.587163874144544, "x1": 4.5847503772979685, "x2": 7.590085473491749, "x3": -0.679323237887016, "x4": 1.5898238143498697, "x5": 0.07907583324628481}, {}] +[[8, 0, 2], {"x0": -4.572223111246011, "x1": 7.438514089983185, "x2": 4.449911895486096, "x3": -3.5794141460802487, "x4": 4.368077466648425, "x5": 0.12672862792840123}, {}] +[[8, 0, 3], {"x0": -5.728176183036904, "x1": 6.962168018550027, "x2": 5.361683752995173, "x3": -3.6759977869606515, "x4": 2.870742135872713, "x5": 0.3860887410752743}, {}] +[[9, 0, 0], {"x0": -2.568641211054439, "x1": 5.386822668670406, "x2": 6.937144385044565, "x3": -2.044189855858595, "x4": 4.124551962231642, "x5": 0.43272500836148714}, {}] +[[9, 0, 1], {"x0": -5.5299743567257025, "x1": 4.801126522231513, "x2": 7.124287935147306, "x3": -3.445562007369165, "x4": 4.604060527135381, "x5": 0.23132589756320338}, {}] +[[9, 0, 2], {"x0": -4.888028990096576, "x1": 3.2125436279306574, "x2": 7.990589410961743, "x3": -2.8679394245397973, "x4": 4.730161640206376, "x5": 0.09612606856437589}, {}] +[[9, 0, 3], {"x0": -3.242351171978582, "x1": 5.818913965932182, "x2": 7.471462735904904, "x3": -3.915941947951137, "x4": 2.7771285059667346, "x5": 0.05874540019788471}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/randomsearch/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/randomsearch/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/randomsearch/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/randomsearch/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/randomsearch/results.json new file mode 100644 index 0000000..0a63b57 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/randomsearch/results.json @@ -0,0 +1,40 @@ +[[0, 0, 0], 243, {"submitted": 1558193639.543361, "started": 1558193639.543853, "finished": 1558193639.5527022}, {"loss": 0.04440000082075597, "info": {"x0": -3.0526325317770904, "x1": 5.469294138394237, "x2": 4.51043286766049, "x3": -2.1137714488404926, "x4": 1.2213544116000845, "x5": 0.199256946150569}}, null] +[[0, 0, 1], 243, {"submitted": 1558193639.5590742, "started": 1558193639.5595803, "finished": 1558193639.567695}, {"loss": 0.11422999809265137, "info": {"x0": -3.538853867032083, "x1": 6.3701949130965305, "x2": 6.772288535429472, "x3": -1.32529030898473, "x4": 4.003379250150683, "x5": 0.49488168157305823}}, null] +[[0, 0, 2], 243, {"submitted": 1558193639.570158, "started": 1558193639.570653, "finished": 1558193639.58373}, {"loss": 0.042080003533959395, "info": {"x0": -3.915912057330418, "x1": 6.39544351327247, "x2": 6.05575509183816, "x3": -1.2439903825217842, "x4": 2.4153227682720964, "x5": 0.02704128550223356}}, null] +[[0, 0, 3], 243, {"submitted": 1558193639.5857515, "started": 1558193639.5866876, "finished": 1558193639.5952878}, {"loss": 0.084409998755455, "info": {"x0": -5.126849402020497, "x1": 5.416188697173773, "x2": 6.774386894867289, "x3": -0.5891078607109037, "x4": 2.032489345183594, "x5": 0.3806640358498912}}, null] +[[1, 0, 0], 243, {"submitted": 1558193639.597519, "started": 1558193639.5982313, "finished": 1558193639.6077313}, {"loss": 0.0193399998307228, "info": {"x0": -2.2484577441039986, "x1": 5.291884446210071, "x2": 7.785614408672131, "x3": -0.9456408242505718, "x4": 1.0915602913910387, "x5": 0.009532316791329543}}, null] +[[1, 0, 1], 243, {"submitted": 1558193639.6101918, "started": 1558193639.610907, "finished": 1558193639.6241004}, {"loss": 0.08193999910712241, "info": {"x0": -3.1296598101926394, "x1": 4.800229370338717, "x2": 4.0010805325016925, "x3": -2.8150562688277785, "x4": 2.0673138605269306, "x5": 0.42344548393819675}}, null] +[[1, 0, 2], 243, {"submitted": 1558193639.6274424, "started": 1558193639.6278315, "finished": 1558193639.636448}, {"loss": 0.018689999858736994, "info": {"x0": -2.9650049926571618, "x1": 6.846245276043167, "x2": 6.712757482207218, "x3": -0.9523448704849797, "x4": 1.9088087029766592, "x5": 0.03811809169976815}}, null] +[[1, 0, 3], 243, {"submitted": 1558193639.6384528, "started": 1558193639.6387844, "finished": 1558193639.6472764}, {"loss": 0.039809996474385254, "info": {"x0": -4.109411420222968, "x1": 7.583195988751144, "x2": 7.658358765724453, "x3": -1.3264503042413587, "x4": 2.6294997008372323, "x5": 0.35550095767377143}}, null] +[[2, 0, 0], 243, {"submitted": 1558193639.6522849, "started": 1558193639.6527812, "finished": 1558193639.6604843}, {"loss": 0.23705999958366158, "info": {"x0": -4.43326547779149, "x1": 4.7714060661624575, "x2": 4.1900594758093055, "x3": -3.819476700146721, "x4": 3.3874063806585477, "x5": 0.40086955532413043}}, null] +[[2, 0, 1], 243, {"submitted": 1558193639.6625144, "started": 1558193639.6630924, "finished": 1558193639.673241}, {"loss": 0.08058000160217285, "info": {"x0": -4.420562817128524, "x1": 7.734424169760179, "x2": 7.515024516440686, "x3": -2.2717141057195644, "x4": 2.1477744430781196, "x5": 0.08383449607584631}}, null] +[[2, 0, 2], 243, {"submitted": 1558193639.6751502, "started": 1558193639.6756904, "finished": 1558193639.6901462}, {"loss": 0.025459998441338515, "info": {"x0": -3.0586743768905924, "x1": 3.39094240786263, "x2": 7.126709779380963, "x3": -2.977547443660348, "x4": 1.1421128540270127, "x5": 0.38869195875736434}}, null] +[[2, 0, 3], 243, {"submitted": 1558193639.6930707, "started": 1558193639.6937547, "finished": 1558193639.7039332}, {"loss": 0.3858799964546412, "info": {"x0": -5.706003182627407, "x1": 5.941541594077534, "x2": 6.656301905254788, "x3": -0.6535833388286907, "x4": 4.952806921485181, "x5": 0.3856533907153539}}, null] +[[3, 0, 0], 243, {"submitted": 1558193639.7059107, "started": 1558193639.7063804, "finished": 1558193639.7196267}, {"loss": 0.5443499966567755, "info": {"x0": -5.524296867606921, "x1": 5.974230151528305, "x2": 6.18137173718312, "x3": -3.1054618759261094, "x4": 3.3100341297347864, "x5": 0.3355152153590145}}, null] +[[3, 0, 1], 243, {"submitted": 1558193639.7258508, "started": 1558193639.7265909, "finished": 1558193639.7357688}, {"loss": 0.15974000029027463, "info": {"x0": -4.090501219788274, "x1": 3.256527071239619, "x2": 5.793052036225582, "x3": -1.4067981872969808, "x4": 4.775235382333637, "x5": 0.3997179681925937}}, null] +[[3, 0, 2], 243, {"submitted": 1558193639.7376437, "started": 1558193639.7380805, "finished": 1558193639.7507937}, {"loss": 0.0586800000667572, "info": {"x0": -2.2090324213252983, "x1": 3.0907201788465386, "x2": 4.476867137233071, "x3": -0.33654288176893665, "x4": 2.1597692923024194, "x5": 0.242730973448667}}, null] +[[3, 0, 3], 243, {"submitted": 1558193639.7539947, "started": 1558193639.7550397, "finished": 1558193639.7670474}, {"loss": 0.15941999634817244, "info": {"x0": -2.0587478402546546, "x1": 5.6919921458700475, "x2": 6.164228995314394, "x3": -0.4662876950243495, "x4": 2.9440968933721994, "x5": 0.4752640392370219}}, null] +[[4, 0, 0], 243, {"submitted": 1558193639.7693882, "started": 1558193639.7698865, "finished": 1558193639.780135}, {"loss": 0.03762999980211259, "info": {"x0": -3.1342995091015498, "x1": 5.743765334857836, "x2": 4.821768908332298, "x3": -0.7735792830750281, "x4": 4.654818923278424, "x5": 0.10971420610107202}}, null] +[[4, 0, 1], 243, {"submitted": 1558193639.7896302, "started": 1558193639.7900493, "finished": 1558193639.7990334}, {"loss": 0.09290000409305096, "info": {"x0": -4.439885102080294, "x1": 7.4892100931074035, "x2": 7.040723982109156, "x3": -2.3350495377502645, "x4": 3.392449886133689, "x5": 0.3463397578794544}}, null] +[[4, 0, 2], 243, {"submitted": 1558193639.8022566, "started": 1558193639.8028364, "finished": 1558193639.8146045}, {"loss": 0.020259997255206108, "info": {"x0": -2.3862363448236663, "x1": 5.810438824866965, "x2": 6.2596610390290195, "x3": -2.8359067823484247, "x4": 2.969437937628778, "x5": 0.11491950938702017}}, null] +[[4, 0, 3], 243, {"submitted": 1558193639.8211813, "started": 1558193639.8219593, "finished": 1558193639.8330727}, {"loss": 0.05429000048577785, "info": {"x0": -3.3120656059814353, "x1": 4.5379160706276025, "x2": 4.741246633768329, "x3": -1.5135750816835394, "x4": 2.5805256417645768, "x5": 0.32726499974207723}}, null] +[[5, 0, 0], 243, {"submitted": 1558193639.8353155, "started": 1558193639.8357759, "finished": 1558193639.8448198}, {"loss": 0.023240000896453873, "info": {"x0": -3.8370231225006406, "x1": 5.104456741927999, "x2": 6.7244460338943135, "x3": -0.08019964748273845, "x4": 1.7480001665873521, "x5": 0.2058026283662422}}, null] +[[5, 0, 1], 243, {"submitted": 1558193639.8511422, "started": 1558193639.8524175, "finished": 1558193639.8612857}, {"loss": 0.055870003182291975, "info": {"x0": -2.023249944476815, "x1": 5.836596799221476, "x2": 4.736161729420741, "x3": -0.19579565782193642, "x4": 1.0759724098022319, "x5": 0.2895762296578929}}, null] +[[5, 0, 2], 243, {"submitted": 1558193639.8630826, "started": 1558193639.863438, "finished": 1558193639.871352}, {"loss": 0.031029998234510435, "info": {"x0": -2.7423450196302945, "x1": 7.114274394106918, "x2": 6.646146146409303, "x3": -2.157210155319094, "x4": 1.8828308496183954, "x5": 0.43205198689920626}}, null] +[[5, 0, 3], 243, {"submitted": 1558193639.873246, "started": 1558193639.873566, "finished": 1558193639.8861742}, {"loss": 0.1456199958464503, "info": {"x0": -5.53607321227944, "x1": 4.02178975690882, "x2": 7.482000565193083, "x3": -3.611698519311799, "x4": 3.4143965453474237, "x5": 0.122197957816572}}, null] +[[6, 0, 0], 243, {"submitted": 1558193639.889379, "started": 1558193639.8898268, "finished": 1558193639.8967166}, {"loss": 0.053249999806284906, "info": {"x0": -3.4568007072408524, "x1": 4.90213434677468, "x2": 4.0048825539597885, "x3": -3.040647998577944, "x4": 4.780843933335028, "x5": 0.07542998049697125}}, null] +[[6, 0, 1], 243, {"submitted": 1558193639.9000955, "started": 1558193639.900779, "finished": 1558193639.9118125}, {"loss": 0.771629997587614, "info": {"x0": -5.956674131297037, "x1": 7.127915969293442, "x2": 4.433238155045359, "x3": -1.4023654404897723, "x4": 3.71952849335202, "x5": 0.2609795866838975}}, null] +[[6, 0, 2], 243, {"submitted": 1558193639.9149384, "started": 1558193639.9155035, "finished": 1558193639.9256446}, {"loss": 0.07580000125706196, "info": {"x0": -4.744954965039678, "x1": 5.769574722525929, "x2": 6.1460977588597405, "x3": -0.2530223586383342, "x4": 1.1486348316016013, "x5": 0.23495382099691103}}, null] +[[6, 0, 3], 243, {"submitted": 1558193639.9294164, "started": 1558193639.9298456, "finished": 1558193639.9382126}, {"loss": 0.5454699997659027, "info": {"x0": -4.849952993739806, "x1": 7.992441491746123, "x2": 4.0755168484543285, "x3": -2.4289144854415365, "x4": 1.8593092256822867, "x5": 0.378324035910048}}, null] +[[7, 0, 0], 243, {"submitted": 1558193639.940755, "started": 1558193639.941137, "finished": 1558193639.95097}, {"loss": 0.24441999324977398, "info": {"x0": -4.904872838467375, "x1": 5.920752370300805, "x2": 6.144893049357886, "x3": -1.037806459119758, "x4": 3.626320494253044, "x5": 0.31202673947972154}}, null] +[[7, 0, 1], 243, {"submitted": 1558193639.9551866, "started": 1558193639.956341, "finished": 1558193639.9673846}, {"loss": 0.08453999966561793, "info": {"x0": -4.035927390729074, "x1": 3.880322231308953, "x2": 4.0383601360931465, "x3": -0.8052163051419536, "x4": 3.8336364872379387, "x5": 0.15376479669010829}}, null] +[[7, 0, 2], 243, {"submitted": 1558193639.9698834, "started": 1558193639.9703798, "finished": 1558193639.9822674}, {"loss": 0.43185999779552214, "info": {"x0": -5.74723181680022, "x1": 4.234235520672273, "x2": 5.823737069789805, "x3": -0.9328069808089321, "x4": 3.219807814574909, "x5": 0.44870091649192184}}, null] +[[7, 0, 3], 243, {"submitted": 1558193639.98459, "started": 1558193639.985088, "finished": 1558193639.9918764}, {"loss": 0.35018999604701995, "info": {"x0": -5.5760887828597365, "x1": 6.077700277737483, "x2": 6.028397580321048, "x3": -0.24199154835277437, "x4": 4.7662155642603, "x5": 0.4214929702612878}}, null] +[[8, 0, 0], 243, {"submitted": 1558193639.9940941, "started": 1558193639.994584, "finished": 1558193640.0042982}, {"loss": 0.03859999722421169, "info": {"x0": -3.418786981568184, "x1": 7.903817297823268, "x2": 5.5708296522867276, "x3": -3.3968093226373863, "x4": 3.759567671974083, "x5": 0.005934386930641633}}, null] +[[8, 0, 1], 243, {"submitted": 1558193640.0069077, "started": 1558193640.007448, "finished": 1558193640.019411}, {"loss": 0.11654000278174874, "info": {"x0": -5.587163874144544, "x1": 4.5847503772979685, "x2": 7.590085473491749, "x3": -0.679323237887016, "x4": 1.5898238143498697, "x5": 0.07907583324628481}}, null] +[[8, 0, 2], 243, {"submitted": 1558193640.0215232, "started": 1558193640.0219357, "finished": 1558193640.034818}, {"loss": 0.35125000139296053, "info": {"x0": -4.572223111246011, "x1": 7.438514089983185, "x2": 4.449911895486096, "x3": -3.5794141460802487, "x4": 4.368077466648425, "x5": 0.12672862792840123}}, null] +[[8, 0, 3], 243, {"submitted": 1558193640.0390823, "started": 1558193640.0395555, "finished": 1558193640.054575}, {"loss": 0.7757600000675022, "info": {"x0": -5.728176183036904, "x1": 6.962168018550027, "x2": 5.361683752995173, "x3": -3.6759977869606515, "x4": 2.870742135872713, "x5": 0.3860887410752743}}, null] +[[9, 0, 0], 243, {"submitted": 1558193640.0572443, "started": 1558193640.0577555, "finished": 1558193640.0700707}, {"loss": 0.027659999896287934, "info": {"x0": -2.568641211054439, "x1": 5.386822668670406, "x2": 6.937144385044565, "x3": -2.044189855858595, "x4": 4.124551962231642, "x5": 0.43272500836148714}}, null] +[[9, 0, 1], 243, {"submitted": 1558193640.0737321, "started": 1558193640.0743084, "finished": 1558193640.0869105}, {"loss": 0.31361999709337945, "info": {"x0": -5.5299743567257025, "x1": 4.801126522231513, "x2": 7.124287935147306, "x3": -3.445562007369165, "x4": 4.604060527135381, "x5": 0.23132589756320338}}, null] +[[9, 0, 2], 243, {"submitted": 1558193640.089089, "started": 1558193640.0895038, "finished": 1558193640.1003604}, {"loss": 0.09623000035226345, "info": {"x0": -4.888028990096576, "x1": 3.2125436279306574, "x2": 7.990589410961743, "x3": -2.8679394245397973, "x4": 4.730161640206376, "x5": 0.09612606856437589}}, null] +[[9, 0, 3], 243, {"submitted": 1558193640.103301, "started": 1558193640.10399, "finished": 1558193640.1134903}, {"loss": 0.017419999511241922, "info": {"x0": -3.242351171978582, "x1": 5.818913965932182, "x2": 7.471462735904904, "x3": -3.915941947951137, "x4": 2.7771285059667346, "x5": 0.05874540019788471}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/configspace.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/configspace.json similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/configspace.json rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/mnist/smac/run_1720134895/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/runhistory.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/runhistory.json new file mode 100644 index 0000000..4017e9b --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/runhistory.json @@ -0,0 +1,944 @@ +{ + "data": [ + [ + [ + 1, + null, + 0 + ], + [ + 0.03080000223398207, + 0.015165567398071289, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 2, + null, + 0 + ], + [ + 0.02095000512361528, + 0.0180971622467041, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 3, + null, + 0 + ], + [ + 0.0726600019776821, + 0.018665552139282227, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 4, + null, + 0 + ], + [ + 0.05202999911904336, + 0.016694307327270508, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 5, + null, + 0 + ], + [ + 0.07761999822586776, + 0.018031597137451172, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 6, + null, + 0 + ], + [ + 0.3964399972064793, + 0.019709348678588867, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 7, + null, + 0 + ], + [ + 0.029529999658465388, + 0.018037080764770508, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 8, + null, + 0 + ], + [ + 0.03315000705599784, + 0.018362998962402344, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 9, + null, + 0 + ], + [ + 0.0687199973165989, + 0.01966118812561035, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 10, + null, + 0 + ], + [ + 0.6454699982855469, + 0.017920970916748047, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 11, + null, + 0 + ], + [ + 0.05198999677538872, + 0.017137527465820312, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 12, + null, + 0 + ], + [ + 0.5480899987798928, + 0.018619537353515625, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 13, + null, + 0 + ], + [ + 0.056310002136230455, + 0.1580965518951416, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 14, + null, + 0 + ], + [ + 0.16677999707363547, + 0.018617630004882812, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 15, + null, + 0 + ], + [ + 0.10293000046730043, + 0.017911434173583984, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 16, + null, + 0 + ], + [ + 0.021399999843835827, + 0.019313812255859375, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 17, + null, + 0 + ], + [ + 0.03113000346779825, + 0.022893667221069336, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 18, + null, + 0 + ], + [ + 0.021280003900527956, + 0.02055644989013672, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 19, + null, + 0 + ], + [ + 0.021109998823404297, + 0.019585847854614258, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 20, + null, + 0 + ], + [ + 0.026100000419020664, + 0.021210670471191406, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 21, + null, + 0 + ], + [ + 0.04945000392794611, + 0.019789934158325195, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 22, + null, + 0 + ], + [ + 0.019880000931024544, + 0.024231672286987305, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 23, + null, + 0 + ], + [ + 0.019679999596476573, + 0.020873546600341797, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 24, + null, + 0 + ], + [ + 0.04382000029265881, + 0.02341151237487793, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 25, + null, + 0 + ], + [ + 0.0450399990016222, + 0.024723529815673828, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 26, + null, + 0 + ], + [ + 0.15023000095486636, + 0.024448871612548828, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 27, + null, + 0 + ], + [ + 0.14124000347256657, + 0.023995161056518555, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 28, + null, + 0 + ], + [ + 0.12223000110685822, + 0.018137693405151367, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 29, + null, + 0 + ], + [ + 0.21741999694287775, + 0.020534038543701172, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 30, + null, + 0 + ], + [ + 0.019659999843835808, + 0.022760629653930664, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 31, + null, + 0 + ], + [ + 0.029549999101758005, + 0.02190995216369629, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 32, + null, + 0 + ], + [ + 0.4331599940368533, + 0.02363109588623047, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 33, + null, + 0 + ], + [ + 0.06184000175416469, + 0.02163076400756836, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 34, + null, + 0 + ], + [ + 0.05969000027120114, + 0.020987987518310547, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 35, + null, + 0 + ], + [ + 0.0593699989169836, + 0.021732568740844727, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 36, + null, + 0 + ], + [ + 0.11595000026643276, + 0.024614572525024414, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 37, + null, + 0 + ], + [ + 0.03936000126302243, + 0.0235595703125, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 38, + null, + 0 + ], + [ + 0.16602999826014042, + 0.026677608489990234, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 39, + null, + 0 + ], + [ + 0.07382999973118307, + 0.021982908248901367, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ] + ], + "config_origins": { + "1": "Random initial design.", + "2": "Random Search (sorted)", + "3": "Random Search (sorted)", + "4": "Random Search", + "5": "Random Search (sorted)", + "6": "Random Search (sorted)", + "7": "Random Search", + "8": "Random Search", + "9": "Random Search (sorted)", + "10": "Random Search", + "11": "Random Search", + "12": "Random Search", + "13": "Random Search (sorted)", + "14": "Random Search", + "15": "Random Search", + "16": "Random Search", + "17": "Random Search (sorted)", + "18": "Random Search (sorted)", + "19": "Random Search (sorted)", + "20": "Random Search", + "21": "Local Search", + "22": "Random Search (sorted)", + "23": "Random Search (sorted)", + "24": "Random Search (sorted)", + "25": "Local Search", + "26": "Random Search (sorted)", + "27": "Random Search (sorted)", + "28": "Random Search", + "29": "Random Search", + "30": "Random Search", + "31": "Random Search (sorted)", + "32": "Random Search", + "33": "Random Search (sorted)", + "34": "Random Search", + "35": "Local Search", + "36": "Random Search (sorted)", + "37": "Random Search", + "38": "Random Search", + "39": "Random Search" + }, + "configs": { + "1": { + "x0": -2.680037398569014, + "x1": 7.104944615374214, + "x2": 5.291855763284372, + "x3": -3.6164697336704057, + "x4": 3.9699774206883713, + "x5": 0.15765586728812586 + }, + "2": { + "x0": -3.350619453760151, + "x1": 6.28234639957985, + "x2": 7.523416363908132, + "x3": -1.2234671481602377, + "x4": 1.2427417727578125, + "x5": 0.35054808115153135 + }, + "3": { + "x0": -4.160410199613326, + "x1": 7.68923051846375, + "x2": 5.814099977629791, + "x3": -3.0572869862584233, + "x4": 2.7446020025873965, + "x5": 0.0673953758878908 + }, + "4": { + "x0": -4.744827971457463, + "x1": 3.8960112192220544, + "x2": 7.681573162266228, + "x3": -0.2535107638124483, + "x4": 2.706982895241888, + "x5": 0.17489898555272793 + }, + "5": { + "x0": -2.3099809999465255, + "x1": 6.831118784331529, + "x2": 4.95370412265374, + "x3": -1.7490310869422196, + "x4": 4.96500758329244, + "x5": 0.19913996454829452 + }, + "6": { + "x0": -5.2893009063542635, + "x1": 6.731763542782183, + "x2": 7.384643215762231, + "x3": -2.2278063940951105, + "x4": 3.9156309672210208, + "x5": 0.4414996820593474 + }, + "7": { + "x0": -3.6248843125393857, + "x1": 4.523746577401085, + "x2": 5.762978114542827, + "x3": -3.355554169544906, + "x4": 3.527154249259203, + "x5": 0.09832246823400637 + }, + "8": { + "x0": -3.568947808278792, + "x1": 7.053703107921464, + "x2": 7.51411851173307, + "x3": -3.391732685296999, + "x4": 1.110698922244453, + "x5": 0.08968938938061927 + }, + "9": { + "x0": -3.0912895826224194, + "x1": 4.882784040540566, + "x2": 5.4574115461275765, + "x3": -1.7088184037639005, + "x4": 3.5663657540450537, + "x5": 0.4813858794813066 + }, + "10": { + "x0": -5.476825076339899, + "x1": 6.656807789633166, + "x2": 5.091475635214751, + "x3": -2.681458465698992, + "x4": 4.346585056800157, + "x5": 0.06944174984057766 + }, + "11": { + "x0": -4.637168718678916, + "x1": 3.1817979510687224, + "x2": 7.230127315426334, + "x3": -1.8871320221105536, + "x4": 2.071655190750318, + "x5": 0.22503952678751532 + }, + "12": { + "x0": -5.530013442985409, + "x1": 7.8689954970922384, + "x2": 5.108207293807126, + "x3": -0.7651001939873745, + "x4": 3.2802768138047176, + "x5": 0.11001597731219642 + }, + "13": { + "x0": -3.8430994276270223, + "x1": 7.294319078918731, + "x2": 5.591786819019574, + "x3": -0.8083450178789842, + "x4": 1.3772139802567622, + "x5": 0.130648787186596 + }, + "14": { + "x0": -2.1880227585626284, + "x1": 6.573398321793509, + "x2": 6.354267625149477, + "x3": -0.4300171666184056, + "x4": 4.133414954983383, + "x5": 0.46746336546615935 + }, + "15": { + "x0": -3.3489738201509787, + "x1": 3.2794478272649497, + "x2": 5.195136666600796, + "x3": -3.8900368446884492, + "x4": 3.077302792520015, + "x5": 0.4911529775029425 + }, + "16": { + "x0": -2.7617801400098743, + "x1": 4.082108890388651, + "x2": 6.1320788553629955, + "x3": -2.1462594751000807, + "x4": 2.1827907995204883, + "x5": 0.17071260416048262 + }, + "17": { + "x0": -3.9943906519092214, + "x1": 6.181416855459034, + "x2": 7.39028968252421, + "x3": -1.903507831274743, + "x4": 4.559789747160821, + "x5": 0.1630143340025733 + }, + "18": { + "x0": -3.2563631096066405, + "x1": 6.091117733215081, + "x2": 6.9777135771326195, + "x3": -2.1424121211806866, + "x4": 4.122872411962552, + "x5": 0.03809260356773381 + }, + "19": { + "x0": -2.682861951268186, + "x1": 5.804893143241856, + "x2": 6.618200616791751, + "x3": -3.437896134180118, + "x4": 3.988905730972651, + "x5": 0.18131161680754598 + }, + "20": { + "x0": -3.457043101495602, + "x1": 6.461528512486292, + "x2": 6.6609864306885385, + "x3": -1.4910830236470596, + "x4": 1.6245072705496115, + "x5": 0.02663755340713908 + }, + "21": { + "x0": -4.449109309258883, + "x1": 6.460625449904905, + "x2": 7.337531117641347, + "x3": -1.9798611172658571, + "x4": 4.0157323666487255, + "x5": 0.1630143340025733 + }, + "22": { + "x0": -3.363406167420284, + "x1": 3.1847719969803885, + "x2": 7.1538943396554515, + "x3": -3.822179828964913, + "x4": 1.0900530657752872, + "x5": 0.12801727321259682 + }, + "23": { + "x0": -3.0625193163807376, + "x1": 4.188859373392755, + "x2": 6.651683755882928, + "x3": -3.2232680901657504, + "x4": 2.9504999828406016, + "x5": 0.1408310033391113 + }, + "24": { + "x0": -4.737679375592338, + "x1": 4.674621931470224, + "x2": 6.554351378912304, + "x3": -1.0426859863185989, + "x4": 1.4078519989103606, + "x5": 0.14676619984161765 + }, + "25": { + "x0": -4.736075196674702, + "x1": 4.349148413699019, + "x2": 7.848107238749707, + "x3": -1.0833202600287883, + "x4": 2.1525305419373524, + "x5": 0.09404557125940821 + }, + "26": { + "x0": -5.215910926427315, + "x1": 5.713000292857569, + "x2": 7.129050595977551, + "x3": -3.690597850669756, + "x4": 3.0369178980793237, + "x5": 0.15852428425554171 + }, + "27": { + "x0": -5.034433294722577, + "x1": 6.490814001625798, + "x2": 6.5380346638249165, + "x3": -2.8001257666838617, + "x4": 1.7628265626350759, + "x5": 0.05646006784957075 + }, + "28": { + "x0": -3.821994810565155, + "x1": 4.7512369968406345, + "x2": 7.985042220274095, + "x3": -3.160947219284923, + "x4": 2.560241066204362, + "x5": 0.4893646795971125 + }, + "29": { + "x0": -5.087265987057258, + "x1": 6.56117238982122, + "x2": 5.603977787232724, + "x3": -2.724344412780962, + "x4": 1.497136271094032, + "x5": 0.25727675170117004 + }, + "30": { + "x0": -3.164055905466697, + "x1": 7.096104975348439, + "x2": 7.775828954617282, + "x3": -3.9285833348833252, + "x4": 1.3143931240853832, + "x5": 0.17958073153625176 + }, + "31": { + "x0": -2.9492049860205687, + "x1": 3.3032946864864834, + "x2": 5.150476741322466, + "x3": -3.284357285696256, + "x4": 2.8229784889025673, + "x5": 0.18030832508093364 + }, + "32": { + "x0": -5.503798716041567, + "x1": 3.913884011110195, + "x2": 5.716889905221217, + "x3": -3.5737941660149515, + "x4": 2.0979999118552937, + "x5": 0.27286376472255247 + }, + "33": { + "x0": -2.5819331464080157, + "x1": 5.481295958082162, + "x2": 4.694288331888055, + "x3": -3.8506763456064497, + "x4": 4.206204225295514, + "x5": 0.18037339100205857 + }, + "34": { + "x0": -3.4147617544048234, + "x1": 6.1489667275814766, + "x2": 4.413823643663591, + "x3": -3.633224430563027, + "x4": 1.962642260023102, + "x5": 0.22418838592223683 + }, + "35": { + "x0": -4.148770581702292, + "x1": 6.722762292348745, + "x2": 6.879599393300579, + "x3": -3.5801263219089168, + "x4": 1.8968461920683435, + "x5": 0.008707353853880157 + }, + "36": { + "x0": -4.604138268601102, + "x1": 4.5522965283645105, + "x2": 5.7107488914827895, + "x3": -2.6976758690187985, + "x4": 4.094008407047889, + "x5": 0.08666019754765392 + }, + "37": { + "x0": -3.882496287011144, + "x1": 5.573520829506241, + "x2": 5.438448532343957, + "x3": -2.3927163906728257, + "x4": 3.170517771376555, + "x5": 0.05654121887976016 + }, + "38": { + "x0": -5.054905048115384, + "x1": 4.730460971320187, + "x2": 6.037206966300268, + "x3": -3.887102506309387, + "x4": 1.411627572928312, + "x5": 0.4808827908278738 + }, + "39": { + "x0": -4.332062970634229, + "x1": 5.793397031706768, + "x2": 5.297680198472734, + "x3": -1.6329220562902762, + "x4": 2.2607144712824816, + "x5": 0.02090245754731712 + } + } +} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/scenario.txt b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/scenario.txt new file mode 100644 index 0000000..1ec3f1f --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/scenario.txt @@ -0,0 +1,12 @@ +execdir = . +deterministic = True +run_obj = quality +overall_obj = par10 +par_factor = 10 +cost_for_crash = 2147483647.0 +algo_runs_timelimit = inf +wallclock_limit = inf +always_race_default = False +ta_run_limit = 39.0 +initial_incumbent = RANDOM +pcs_fn = ../opt_results/paramnet_surrogates/mnist/smac/run_1765023969/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/stats.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/stats.json new file mode 100644 index 0000000..7140837 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/stats.json @@ -0,0 +1 @@ +{"ta_runs": 39, "n_configs": 39, "wallclock_time_used": 43.50497221946716, "ta_time_used": 0.9439225196838379, "inc_changed": 5, "_n_configs_per_intensify": 38, "_n_calls_of_intensify": 19, "_ema_n_configs_per_intensifiy": 2.0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/traj_aclib2.json new file mode 100644 index 0000000..6c46472 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/traj_aclib2.json @@ -0,0 +1,6 @@ +{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 0.00010132789611816406, "evaluations": 0, "cost": 2147483648, "incumbent": ["x0='-2.680037398569014'", "x1='7.104944615374214'", "x2='5.291855763284372'", "x3='-3.6164697336704057'", "x4='3.9699774206883713'", "x5='0.15765586728812586'"], "origin": "Random initial design."} +{"cpu_time": 0.015165567398071289, "total_cpu_time": null, "wallclock_time": 0.03575706481933594, "evaluations": 1, "cost": 0.03080000223398207, "incumbent": ["x0='-2.680037398569014'", "x1='7.104944615374214'", "x2='5.291855763284372'", "x3='-3.6164697336704057'", "x4='3.9699774206883713'", "x5='0.15765586728812586'"], "origin": "Random initial design."} +{"cpu_time": 0.03326272964477539, "total_cpu_time": null, "wallclock_time": 0.3760969638824463, "evaluations": 2, "cost": 0.02095000512361528, "incumbent": ["x0='-3.350619453760151'", "x1='6.28234639957985'", "x2='7.523416363908132'", "x3='-1.2234671481602377'", "x4='1.2427417727578125'", "x5='0.35054808115153135'"], "origin": "Random Search (sorted)"} +{"cpu_time": 0.5583105087280273, "total_cpu_time": null, "wallclock_time": 22.344090461730957, "evaluations": 22, "cost": 0.019880000931024544, "incumbent": ["x0='-3.363406167420284'", "x1='3.1847719969803885'", "x2='7.1538943396554515'", "x3='-3.822179828964913'", "x4='1.0900530657752872'", "x5='0.12801727321259682'"], "origin": "Random Search (sorted)"} +{"cpu_time": 0.5791840553283691, "total_cpu_time": null, "wallclock_time": 22.385263681411743, "evaluations": 23, "cost": 0.019679999596476573, "incumbent": ["x0='-3.0625193163807376'", "x1='4.188859373392755'", "x2='6.651683755882928'", "x3='-3.2232680901657504'", "x4='2.9504999828406016'", "x5='0.1408310033391113'"], "origin": "Random Search (sorted)"} +{"cpu_time": 0.7371954917907715, "total_cpu_time": null, "wallclock_time": 33.71429228782654, "evaluations": 30, "cost": 0.019659999843835808, "incumbent": ["x0='-3.164055905466697'", "x1='7.096104975348439'", "x2='7.775828954617282'", "x3='-3.9285833348833252'", "x4='1.3143931240853832'", "x5='0.17958073153625176'"], "origin": "Random Search"} diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/traj_old.csv b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/traj_old.csv new file mode 100644 index 0000000..c4b8911 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/mnist/smac/run_1765023969/traj_old.csv @@ -0,0 +1,7 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." +0.000000, 2147483648.000000, 0.000101, 1, 0.000101, x0='-2.680037398569014', x1='7.104944615374214', x2='5.291855763284372', x3='-3.6164697336704057', x4='3.9699774206883713', x5='0.15765586728812586' +0.015166, 0.030800, 0.035757, 1, 0.020591, x0='-2.680037398569014', x1='7.104944615374214', x2='5.291855763284372', x3='-3.6164697336704057', x4='3.9699774206883713', x5='0.15765586728812586' +0.033263, 0.020950, 0.376097, 2, 0.342834, x0='-3.350619453760151', x1='6.28234639957985', x2='7.523416363908132', x3='-1.2234671481602377', x4='1.2427417727578125', x5='0.35054808115153135' +0.558311, 0.019880, 22.344090, 3, 21.785780, x0='-3.363406167420284', x1='3.1847719969803885', x2='7.1538943396554515', x3='-3.822179828964913', x4='1.0900530657752872', x5='0.12801727321259682' +0.579184, 0.019680, 22.385264, 4, 21.806080, x0='-3.0625193163807376', x1='4.188859373392755', x2='6.651683755882928', x3='-3.2232680901657504', x4='2.9504999828406016', x5='0.1408310033391113' +0.737195, 0.019660, 33.714292, 5, 32.977097, x0='-3.164055905466697', x1='7.096104975348439', x2='7.775828954617282', x3='-3.9285833348833252', x4='1.3143931240853832', x5='0.17958073153625176' diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/bohb/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/bohb/configs.json new file mode 100644 index 0000000..dd1dc4f --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/bohb/configs.json @@ -0,0 +1,128 @@ +[[0, 0, 0], {"x0": -5.547148304261728, "x1": 5.417313576779607, "x2": 7.50460310985922, "x3": -2.4120099203297394, "x4": 1.268514919160972, "x5": 0.08288931254426629}, {"model_based_pick": false}] +[[0, 0, 1], {"x0": -5.961551447784883, "x1": 5.983982308215694, "x2": 4.316959627886952, "x3": -0.41517552691025017, "x4": 3.6789252667609937, "x5": 0.16495912668870627}, {"model_based_pick": false}] +[[0, 0, 2], {"x0": -3.126555252838653, "x1": 6.284010396832116, "x2": 6.481420943233189, "x3": -1.8734471011864433, "x4": 3.3560509112879546, "x5": 0.03293704321547919}, {"model_based_pick": false}] +[[0, 0, 3], {"x0": -3.815188338388289, "x1": 5.310754401586235, "x2": 6.082739391120333, "x3": -3.894456608866774, "x4": 4.435830033523954, "x5": 0.2378964031342441}, {"model_based_pick": false}] +[[0, 0, 4], {"x0": -2.168492312061879, "x1": 7.313823965281902, "x2": 5.340228845503274, "x3": -3.1295300731094358, "x4": 3.338973791408174, "x5": 0.137818849214208}, {"model_based_pick": false}] +[[0, 0, 5], {"x0": -4.588801696926199, "x1": 5.352905380036449, "x2": 7.574026141294929, "x3": -1.420862765558947, "x4": 4.493949960736361, "x5": 0.3160508046674595}, {"model_based_pick": false}] +[[0, 0, 6], {"x0": -5.448080591096875, "x1": 7.291021716878106, "x2": 7.523401782547067, "x3": -2.3114223189391203, "x4": 2.9401149591617344, "x5": 0.11505316639885343}, {"model_based_pick": false}] +[[0, 0, 7], {"x0": -3.4479736748170575, "x1": 4.448697164731483, "x2": 6.6173556647308995, "x3": -2.584880244451706, "x4": 3.060179091121771, "x5": 0.042647244545164664}, {"model_based_pick": false}] +[[0, 0, 8], {"x0": -5.455437054090877, "x1": 5.248282054287429, "x2": 4.092316260035814, "x3": -2.889942308831342, "x4": 4.205343197237287, "x5": 0.33638685682978325}, {"model_based_pick": false}] +[[0, 0, 9], {"x0": -5.975199942176532, "x1": 3.290027308945921, "x2": 6.241494290964826, "x3": -0.3740704798669867, "x4": 1.2670680197175685, "x5": 0.35028525707231206}, {"model_based_pick": false}] +[[0, 0, 10], {"x0": -5.4356852595987, "x1": 4.954101587953113, "x2": 6.441390712044436, "x3": -1.5210589446935314, "x4": 2.812886824244358, "x5": 0.18929372500833058}, {"model_based_pick": false}] +[[0, 0, 11], {"x0": -3.914468451300172, "x1": 3.221385275859918, "x2": 5.586825889033587, "x3": -3.1257387300686323, "x4": 2.730891368804578, "x5": 0.12657680468859478}, {"model_based_pick": false}] +[[0, 0, 12], {"x0": -4.607763313510313, "x1": 5.970743812922665, "x2": 5.314379222059916, "x3": -3.0447765118652788, "x4": 3.482344602128493, "x5": 0.12155893689297964}, {"model_based_pick": false}] +[[0, 0, 13], {"x0": -4.666461062620623, "x1": 7.731935501028113, "x2": 6.528941252855035, "x3": -0.49884306491749175, "x4": 3.9389681068980593, "x5": 0.36810105071486515}, {"model_based_pick": false}] +[[0, 0, 14], {"x0": -2.005428706221053, "x1": 5.974154313888225, "x2": 6.117301183176403, "x3": -3.2964919522024694, "x4": 2.7369388371893093, "x5": 0.19989813423592784}, {"model_based_pick": true}] +[[0, 0, 15], {"x0": -2.034313165374151, "x1": 3.8842726175316584, "x2": 6.141376554498244, "x3": -3.124711764748001, "x4": 2.1600867038150025, "x5": 0.3190232668284335}, {"model_based_pick": true}] +[[0, 0, 16], {"x0": -3.381062932256578, "x1": 7.223241666869095, "x2": 4.856002429779972, "x3": -0.6441481801935707, "x4": 4.512592321959893, "x5": 0.06239643196071604}, {"model_based_pick": false}] +[[0, 0, 17], {"x0": -5.117701905418318, "x1": 5.208804008509132, "x2": 4.856737883140557, "x3": -2.483115137972754, "x4": 2.9078097626946984, "x5": 0.4491333617260327}, {"model_based_pick": false}] +[[0, 0, 18], {"x0": -2.1930545789917373, "x1": 7.686371853584175, "x2": 5.5301897819877786, "x3": -1.6232297579893573, "x4": 2.956753636682407, "x5": 0.219816355776209}, {"model_based_pick": true}] +[[0, 0, 19], {"x0": -2.3338895044951067, "x1": 6.569691560635093, "x2": 4.672200881457807, "x3": -0.7466943998816449, "x4": 4.2764400891730965, "x5": 0.05060955012030454}, {"model_based_pick": true}] +[[0, 0, 20], {"x0": -4.656362170623136, "x1": 3.963985657054626, "x2": 4.957678886243736, "x3": -0.6044692540806089, "x4": 3.40602557090067, "x5": 0.07424581325652374}, {"model_based_pick": false}] +[[0, 0, 21], {"x0": -2.2960432684968164, "x1": 3.2582083690730097, "x2": 6.802409123726491, "x3": -2.6738323928274363, "x4": 1.274151146747446, "x5": 0.3973275679786866}, {"model_based_pick": true}] +[[0, 0, 22], {"x0": -2.1868489914465217, "x1": 7.514799574177698, "x2": 5.677695160309841, "x3": -3.4738822236473674, "x4": 1.398747762707064, "x5": 0.3792321059067254}, {"model_based_pick": true}] +[[0, 0, 23], {"x0": -3.6239509205606115, "x1": 5.980649187272979, "x2": 5.903866701844328, "x3": -3.626506132463042, "x4": 2.617643027346062, "x5": 0.37655746470557727}, {"model_based_pick": false}] +[[0, 0, 24], {"x0": -2.1165210198742006, "x1": 6.570258922707408, "x2": 6.553464211925023, "x3": -3.349854277667672, "x4": 1.3024303762680955, "x5": 0.15889223486558063}, {"model_based_pick": true}] +[[0, 0, 25], {"x0": -2.034424301894005, "x1": 6.352497111688169, "x2": 6.832381507654757, "x3": -3.470602025824446, "x4": 1.592277481067919, "x5": 0.12405769672836633}, {"model_based_pick": true}] +[[0, 0, 26], {"x0": -2.168282289128914, "x1": 7.858532127568152, "x2": 7.040184457638883, "x3": -3.5165208609435776, "x4": 1.1909671434504792, "x5": 0.2873378207111953}, {"model_based_pick": true}] +[[1, 0, 0], {"x0": -2.212169045126088, "x1": 7.644999773372921, "x2": 5.360209631964927, "x3": -3.0342987570481554, "x4": 3.1484710140737353, "x5": 0.13702570434980937}, {"model_based_pick": true}] +[[1, 0, 1], {"x0": -2.080574201366052, "x1": 5.349519718117698, "x2": 7.261324763894741, "x3": -3.2227245591106755, "x4": 1.2126514926524115, "x5": 0.024283970124103965}, {"model_based_pick": true}] +[[1, 0, 2], {"x0": -2.150409618845554, "x1": 7.262852337647364, "x2": 5.11951904896377, "x3": -1.8376993348109232, "x4": 3.04211260331809, "x5": 0.36656687297898194}, {"model_based_pick": true}] +[[1, 0, 3], {"x0": -2.132785435368115, "x1": 5.155684893095273, "x2": 7.041137491259574, "x3": -3.293730848100382, "x4": 1.1563299644951488, "x5": 0.15359816338756552}, {"model_based_pick": true}] +[[1, 0, 4], {"x0": -2.0645198357177685, "x1": 7.645923274917146, "x2": 7.745706739673688, "x3": -3.7273225600812245, "x4": 2.5789193888209603, "x5": 0.20062054773019233}, {"model_based_pick": true}] +[[1, 0, 5], {"x0": -2.4979299569519395, "x1": 3.274389558491188, "x2": 7.043559723606826, "x3": -3.4322320496275456, "x4": 2.4336789441032782, "x5": 0.2565868045293178}, {"model_based_pick": true}] +[[1, 0, 6], {"x0": -3.085374915969328, "x1": 3.057885011147909, "x2": 7.033896258939555, "x3": -3.709363917955663, "x4": 1.5467528800147885, "x5": 0.3687969959888757}, {"model_based_pick": true}] +[[1, 0, 7], {"x0": -2.5165951694708926, "x1": 3.294844559499739, "x2": 7.032130039425676, "x3": -3.1333151786548754, "x4": 2.255729191306026, "x5": 0.08347856970308698}, {"model_based_pick": true}] +[[1, 0, 8], {"x0": -2.482587252686961, "x1": 3.307040951900066, "x2": 7.0005533111197495, "x3": -3.6048383388959016, "x4": 1.8656241070576614, "x5": 0.14781810883945742}, {"model_based_pick": true}] +[[2, 0, 0], {"x0": -2.214469949315732, "x1": 5.764120300584673, "x2": 7.001805297233631, "x3": -3.480993102312573, "x4": 1.5714972396242852, "x5": 0.034247709771366125}, {"model_based_pick": true}] +[[2, 0, 1], {"x0": -2.2975815757934805, "x1": 6.474176985025732, "x2": 6.456533680092074, "x3": -3.073430255155634, "x4": 1.0687072643011293, "x5": 0.024431973358633244}, {"model_based_pick": true}] +[[2, 0, 2], {"x0": -2.0225367682156237, "x1": 5.081741357150399, "x2": 7.241554612730663, "x3": -2.7975116117989174, "x4": 1.6735192649604342, "x5": 0.024136003737947113}, {"model_based_pick": true}] +[[2, 0, 3], {"x0": -2.4603336244190466, "x1": 4.648094950768946, "x2": 7.116356963302556, "x3": -3.30363180721191, "x4": 1.772187582848816, "x5": 0.039944316008535846}, {"model_based_pick": true}] +[[2, 0, 4], {"x0": -2.062031101674786, "x1": 5.03637759092406, "x2": 6.332464894208597, "x3": -3.8648407229762323, "x4": 1.1188577024466007, "x5": 0.02467544292811255}, {"model_based_pick": true}] +[[2, 0, 5], {"x0": -4.270980438431501, "x1": 4.054699139368449, "x2": 4.702317921419553, "x3": -3.0222782837006963, "x4": 3.9073074347259977, "x5": 0.3264090537158878}, {"model_based_pick": false}] +[[3, 0, 0], {"x0": -2.273873837076822, "x1": 4.40417957401142, "x2": 7.351491859273695, "x3": -3.3430534064278854, "x4": 1.2917452370299989, "x5": 0.03877653569150552}, {"model_based_pick": true}] +[[3, 0, 1], {"x0": -2.212077508121376, "x1": 5.351929940202856, "x2": 6.541778744430543, "x3": -3.269075368024531, "x4": 1.061349159355482, "x5": 0.10921604106345553}, {"model_based_pick": true}] +[[3, 0, 2], {"x0": -2.2594670519291298, "x1": 4.13525200838458, "x2": 7.303157187480762, "x3": -3.5348216412673477, "x4": 1.345537924726635, "x5": 0.08526762572367913}, {"model_based_pick": true}] +[[3, 0, 3], {"x0": -4.892051710284753, "x1": 6.644813643000486, "x2": 5.5457581234250934, "x3": -1.5992585430142223, "x4": 1.1346707971287868, "x5": 0.3451579845574335}, {"model_based_pick": false}] +[[4, 0, 0], {"x0": -2.0087335491343477, "x1": 4.442532271885824, "x2": 7.0871508283173075, "x3": -3.0772997645257716, "x4": 1.2608862106599448, "x5": 0.01590290257190293}, {"model_based_pick": true}] +[[4, 0, 1], {"x0": -2.2701802468996783, "x1": 4.720070378460385, "x2": 7.787894291283339, "x3": -3.2577947814746917, "x4": 1.040183924521965, "x5": 0.02428127331049218}, {"model_based_pick": true}] +[[4, 0, 2], {"x0": -2.233717291111337, "x1": 6.360339329121331, "x2": 7.089082788125472, "x3": -3.4972785200601684, "x4": 1.0808280969236006, "x5": 0.03230204735125149}, {"model_based_pick": true}] +[[4, 0, 3], {"x0": -2.0528371728853623, "x1": 5.570382539343363, "x2": 6.989657697078064, "x3": -2.853077157415094, "x4": 1.0374501674509167, "x5": 0.13283122714364923}, {"model_based_pick": true}] +[[4, 0, 4], {"x0": -2.2044853311503028, "x1": 4.423870666806173, "x2": 7.065233642364387, "x3": -3.0944615035839016, "x4": 1.1514284182524317, "x5": 0.0772048543865487}, {"model_based_pick": true}] +[[4, 0, 5], {"x0": -2.216112589552222, "x1": 6.438635721078735, "x2": 7.1829114903863385, "x3": -3.4045119347256465, "x4": 1.4435728724399848, "x5": 0.020332662055948705}, {"model_based_pick": true}] +[[4, 0, 6], {"x0": -2.0245843669563333, "x1": 6.075800147199616, "x2": 7.1670784280503215, "x3": -3.6076128488171784, "x4": 1.0797893814909205, "x5": 0.0035812861704328236}, {"model_based_pick": true}] +[[4, 0, 7], {"x0": -2.3847149553693785, "x1": 3.221398392999892, "x2": 6.879441354798319, "x3": -2.9553199095531526, "x4": 1.5707653438214748, "x5": 0.019178339953122195}, {"model_based_pick": true}] +[[4, 0, 8], {"x0": -3.5523330566191342, "x1": 4.62189553784274, "x2": 5.692407176155685, "x3": -2.1188986862767902, "x4": 1.6256749920223799, "x5": 0.01928784942936862}, {"model_based_pick": false}] +[[4, 0, 9], {"x0": -2.0122928482474083, "x1": 6.222717802326328, "x2": 7.134180233138525, "x3": -2.7985180403426986, "x4": 1.0555177971261682, "x5": 0.040791290611948805}, {"model_based_pick": true}] +[[4, 0, 10], {"x0": -3.479380452693997, "x1": 7.623859290091326, "x2": 5.258061126560074, "x3": -2.2708226092148234, "x4": 1.3812910598733494, "x5": 0.13706470218070943}, {"model_based_pick": false}] +[[4, 0, 11], {"x0": -2.04761886458157, "x1": 4.4640160149554315, "x2": 7.55546919252976, "x3": -2.7802506331468337, "x4": 1.7279828112233204, "x5": 0.021004314660816842}, {"model_based_pick": true}] +[[4, 0, 12], {"x0": -4.677473590830132, "x1": 3.524870611499415, "x2": 6.562863251977429, "x3": -2.7473678479071504, "x4": 2.4087052086153586, "x5": 0.25685299632032516}, {"model_based_pick": false}] +[[4, 0, 13], {"x0": -4.000760723895331, "x1": 3.366016560246689, "x2": 5.355895107001089, "x3": -1.8179339726623702, "x4": 1.147402300859388, "x5": 0.05911892132941965}, {"model_based_pick": false}] +[[4, 0, 14], {"x0": -2.122529246982423, "x1": 4.373139046298935, "x2": 7.7656264819003695, "x3": -3.2001427389952997, "x4": 1.1816927176553615, "x5": 0.0494046241791849}, {"model_based_pick": true}] +[[4, 0, 15], {"x0": -2.962587460548452, "x1": 6.074691619515655, "x2": 4.397760795645757, "x3": -1.1866516159615594, "x4": 2.6489991722709045, "x5": 0.09185490526932455}, {"model_based_pick": false}] +[[4, 0, 16], {"x0": -2.0081777751629755, "x1": 6.026411515772329, "x2": 7.438213428677669, "x3": -3.181951415198214, "x4": 1.4515186083239584, "x5": 0.07466343812161888}, {"model_based_pick": true}] +[[4, 0, 17], {"x0": -2.050982042146626, "x1": 7.2043966797964085, "x2": 6.336444413468539, "x3": -3.2324801192037014, "x4": 1.2716712296307344, "x5": 0.017691431578227765}, {"model_based_pick": true}] +[[4, 0, 18], {"x0": -2.6418540208071932, "x1": 4.1534084371804445, "x2": 7.336830345980433, "x3": -2.9490789537840443, "x4": 2.3830140938795523, "x5": 0.0322913988717972}, {"model_based_pick": true}] +[[4, 0, 19], {"x0": -2.475943323468034, "x1": 3.9277526932937654, "x2": 7.020449947277434, "x3": -3.2276166542808036, "x4": 1.3494227304747874, "x5": 0.061495927936022377}, {"model_based_pick": true}] +[[4, 0, 20], {"x0": -2.2652548863755815, "x1": 5.353157784860192, "x2": 7.20013433663196, "x3": -3.318807473414785, "x4": 1.159094431420665, "x5": 0.11861041292456274}, {"model_based_pick": true}] +[[4, 0, 21], {"x0": -2.1992474750871875, "x1": 4.6799366031887395, "x2": 6.8952915962518855, "x3": -3.6460227044399836, "x4": 1.5170026751327752, "x5": 0.018992269906294865}, {"model_based_pick": true}] +[[4, 0, 22], {"x0": -2.1001919169181114, "x1": 4.530441694799821, "x2": 7.688461297737937, "x3": -3.2300644987491585, "x4": 1.0765923917824187, "x5": 0.032835401608366496}, {"model_based_pick": true}] +[[4, 0, 23], {"x0": -4.492316121678108, "x1": 6.34539891586345, "x2": 6.652999778626596, "x3": -1.5856590462007087, "x4": 2.5328822119186105, "x5": 0.24375201371232386}, {"model_based_pick": false}] +[[4, 0, 24], {"x0": -2.4340669405524125, "x1": 7.675411664337606, "x2": 5.951964672840601, "x3": -2.6090103669701223, "x4": 3.2212942050601088, "x5": 0.38380082578016494}, {"model_based_pick": false}] +[[4, 0, 25], {"x0": -2.3180219195254272, "x1": 4.670628179449053, "x2": 7.277594455433425, "x3": -3.0710542592980525, "x4": 1.6673753121463482, "x5": 0.03687532648115728}, {"model_based_pick": true}] +[[4, 0, 26], {"x0": -2.161829696122215, "x1": 6.791255739624155, "x2": 7.142250754321436, "x3": -3.3334523952831816, "x4": 1.1086580884278263, "x5": 0.11508012975439107}, {"model_based_pick": true}] +[[5, 0, 0], {"x0": -3.9205006626920413, "x1": 5.756771903725219, "x2": 4.869368275078397, "x3": -0.8924901829031437, "x4": 1.6136200045279852, "x5": 0.40499287999989825}, {"model_based_pick": false}] +[[5, 0, 1], {"x0": -4.94362083112904, "x1": 3.7472608733062858, "x2": 7.284651516370168, "x3": -0.9605282388770298, "x4": 4.936755277041147, "x5": 0.19473728980826926}, {"model_based_pick": false}] +[[5, 0, 2], {"x0": -3.294863419261408, "x1": 4.559305241578789, "x2": 4.498649665387386, "x3": -1.9294151617470177, "x4": 3.309362201794816, "x5": 0.10924974495778272}, {"model_based_pick": false}] +[[5, 0, 3], {"x0": -2.54804380438071, "x1": 3.2016990055583854, "x2": 7.176832603672842, "x3": -2.494215408691816, "x4": 1.4369239397128921, "x5": 0.47346197416201186}, {"model_based_pick": true}] +[[5, 0, 4], {"x0": -2.3929595619265704, "x1": 3.4900145764053954, "x2": 6.912163027831536, "x3": -2.071947255227931, "x4": 1.3867711897390411, "x5": 0.3310690562184921}, {"model_based_pick": true}] +[[5, 0, 5], {"x0": -2.0392304642848558, "x1": 3.401067422051366, "x2": 6.6376699271822845, "x3": -2.554308472130555, "x4": 1.0006542865025785, "x5": 0.30782447043466765}, {"model_based_pick": true}] +[[5, 0, 6], {"x0": -3.2745951969984084, "x1": 5.974866526342818, "x2": 5.84152562470519, "x3": -0.30843301043397053, "x4": 3.994107016729175, "x5": 0.14097227791530637}, {"model_based_pick": false}] +[[5, 0, 7], {"x0": -2.010596849600894, "x1": 3.1795767467852265, "x2": 6.862196178705987, "x3": -2.8404739877356575, "x4": 1.64137288514132, "x5": 0.352000749315623}, {"model_based_pick": true}] +[[5, 0, 8], {"x0": -2.174614851458361, "x1": 4.68195905785014, "x2": 7.54175814544353, "x3": -2.0411675681553287, "x4": 1.053267846050604, "x5": 0.49973509924128334}, {"model_based_pick": true}] +[[6, 0, 0], {"x0": -2.2442743535729215, "x1": 4.382631598112064, "x2": 6.04360882433798, "x3": -1.0454401012894698, "x4": 1.978696249949326, "x5": 0.37682103550880586}, {"model_based_pick": false}] +[[6, 0, 1], {"x0": -2.0340195508343792, "x1": 6.268659688804842, "x2": 7.386653926102761, "x3": -3.6716493590167967, "x4": 1.3207642031217255, "x5": 0.07062322163700853}, {"model_based_pick": true}] +[[6, 0, 2], {"x0": -2.31711564630823, "x1": 3.021661219036202, "x2": 7.093847053807567, "x3": -2.045167399634719, "x4": 1.368579052462792, "x5": 0.3431400945819885}, {"model_based_pick": true}] +[[6, 0, 3], {"x0": -2.346301452680032, "x1": 3.8423687528698407, "x2": 7.4970599710294135, "x3": -1.1132445797826835, "x4": 1.272890193103318, "x5": 0.25663496391326573}, {"model_based_pick": true}] +[[6, 0, 4], {"x0": -2.2527777061789056, "x1": 3.2061376228110348, "x2": 7.895422298110054, "x3": -3.4315757157425204, "x4": 1.0068214922206435, "x5": 0.11668440174594523}, {"model_based_pick": true}] +[[6, 0, 5], {"x0": -2.0997590238334785, "x1": 5.184823716176572, "x2": 7.173565667462658, "x3": -2.8859677362652696, "x4": 2.3845012302615087, "x5": 0.0638498850785384}, {"model_based_pick": false}] +[[7, 0, 0], {"x0": -4.719282783950565, "x1": 7.5358702295642, "x2": 4.560987167046123, "x3": -1.257405483182919, "x4": 2.609839946188622, "x5": 0.028700751569309124}, {"model_based_pick": false}] +[[7, 0, 1], {"x0": -2.3021916236828255, "x1": 3.169659707571367, "x2": 6.695848772729429, "x3": -2.8948486542288774, "x4": 1.2626478060342685, "x5": 0.3191344345600217}, {"model_based_pick": true}] +[[7, 0, 2], {"x0": -2.7932585351852484, "x1": 5.930904410697141, "x2": 4.67786613779257, "x3": -2.1453474214955217, "x4": 2.0115279405038735, "x5": 0.28165072152177795}, {"model_based_pick": false}] +[[7, 0, 3], {"x0": -2.433798536949912, "x1": 3.420294492012524, "x2": 6.446768599455935, "x3": -3.741026217676792, "x4": 1.3424632970512247, "x5": 0.4564223646063651}, {"model_based_pick": true}] +[[8, 0, 0], {"x0": -2.1298044286736957, "x1": 3.670633097332758, "x2": 7.031010103282238, "x3": -2.2923125641714757, "x4": 1.4067029011516088, "x5": 0.38288659404181885}, {"model_based_pick": true}] +[[8, 0, 1], {"x0": -2.3590221019383826, "x1": 4.86695353699277, "x2": 6.985119429218819, "x3": -2.060966527363486, "x4": 1.4667693957485022, "x5": 0.47082918220128867}, {"model_based_pick": true}] +[[8, 0, 2], {"x0": -4.46970584823727, "x1": 7.2469242571033785, "x2": 6.228396216052795, "x3": -2.572578579409124, "x4": 2.5576647183451384, "x5": 0.19361947863660428}, {"model_based_pick": false}] +[[8, 0, 3], {"x0": -2.3636654623482785, "x1": 3.058971699672891, "x2": 6.693117177385674, "x3": -2.6908787761317168, "x4": 1.3942813802793654, "x5": 0.4123512943960284}, {"model_based_pick": true}] +[[8, 0, 4], {"x0": -2.307373095819419, "x1": 5.3612927084351, "x2": 7.166962918448927, "x3": -2.1319742743534533, "x4": 1.3368386542784727, "x5": 0.36519980942377206}, {"model_based_pick": true}] +[[8, 0, 5], {"x0": -2.4068207939917206, "x1": 3.5994031055257136, "x2": 5.49262059222045, "x3": -3.5709564200767048, "x4": 4.976674148676276, "x5": 0.3556745033430046}, {"model_based_pick": false}] +[[8, 0, 6], {"x0": -2.036127524810445, "x1": 3.2877771974716277, "x2": 6.219452367759153, "x3": -3.9664245366999267, "x4": 3.8927529911311263, "x5": 0.09695008874714561}, {"model_based_pick": false}] +[[8, 0, 7], {"x0": -2.375933511410664, "x1": 3.3984247556801126, "x2": 7.224087942423143, "x3": -3.062884671398991, "x4": 1.3125255037964947, "x5": 0.3157527698513613}, {"model_based_pick": true}] +[[8, 0, 8], {"x0": -2.6532335359958834, "x1": 6.797991269483795, "x2": 6.8604659389040705, "x3": -2.657837673706631, "x4": 4.919796698308448, "x5": 0.46886086789390724}, {"model_based_pick": false}] +[[8, 0, 9], {"x0": -2.2311849417649565, "x1": 4.4100883334865735, "x2": 7.125531530320582, "x3": -1.1476262937486883, "x4": 4.459987498881224, "x5": 0.2447723034385732}, {"model_based_pick": false}] +[[8, 0, 10], {"x0": -4.3072367732517804, "x1": 6.6628232623386205, "x2": 5.912780295927329, "x3": -2.937967038612935, "x4": 2.4827499897316767, "x5": 0.025340655876139262}, {"model_based_pick": false}] +[[8, 0, 11], {"x0": -2.0038746603450153, "x1": 6.872966387343056, "x2": 7.098845519487662, "x3": -2.9651461935053263, "x4": 1.5909770727540782, "x5": 0.4378445098760766}, {"model_based_pick": true}] +[[8, 0, 12], {"x0": -2.4324774376091542, "x1": 3.6388606968789663, "x2": 6.459004880091742, "x3": -2.375805254153211, "x4": 1.400118754775212, "x5": 0.36360757970417806}, {"model_based_pick": true}] +[[8, 0, 13], {"x0": -4.031560944459173, "x1": 3.0704645348056374, "x2": 6.009960941266117, "x3": -1.8115866294272944, "x4": 1.1960510740938664, "x5": 0.23154630960189243}, {"model_based_pick": false}] +[[8, 0, 14], {"x0": -2.420701293739088, "x1": 3.7652992798789104, "x2": 6.739793565948383, "x3": -2.224583621957462, "x4": 1.2820559500716693, "x5": 0.3418483231076888}, {"model_based_pick": true}] +[[8, 0, 15], {"x0": -4.966359207114904, "x1": 6.3641811889737605, "x2": 5.860416779848361, "x3": -3.3940746020910555, "x4": 2.7532720234936945, "x5": 0.09177199689121729}, {"model_based_pick": false}] +[[8, 0, 16], {"x0": -2.2062769426966575, "x1": 4.153484298047036, "x2": 7.3779150408977365, "x3": -2.8875532873540273, "x4": 1.3737814972381275, "x5": 0.08028105248142527}, {"model_based_pick": true}] +[[8, 0, 17], {"x0": -4.499922246022661, "x1": 7.180998543521754, "x2": 7.9465769896853296, "x3": -3.0717229182620027, "x4": 4.713029741760925, "x5": 0.388017469739253}, {"model_based_pick": false}] +[[8, 0, 18], {"x0": -2.3702536367544327, "x1": 4.483867803653296, "x2": 6.80045336861101, "x3": -2.4447444486629824, "x4": 1.4270657726046065, "x5": 0.4934787994369676}, {"model_based_pick": true}] +[[8, 0, 19], {"x0": -3.371931195442095, "x1": 4.583126544813702, "x2": 4.085168586901034, "x3": -0.2246001519071652, "x4": 4.812033011538262, "x5": 0.15256512330891459}, {"model_based_pick": false}] +[[8, 0, 20], {"x0": -3.776037740672992, "x1": 3.5298097412853187, "x2": 6.221878375274707, "x3": -0.3202233326297508, "x4": 1.553903739247021, "x5": 0.38559987168439747}, {"model_based_pick": false}] +[[8, 0, 21], {"x0": -2.360748518165469, "x1": 3.6372179648490044, "x2": 7.52814917395348, "x3": -3.763338639963921, "x4": 1.2213758679725946, "x5": 0.1368268061389377}, {"model_based_pick": true}] +[[8, 0, 22], {"x0": -3.3999632798872663, "x1": 4.760488367047667, "x2": 4.316347651402116, "x3": -1.0676259396035603, "x4": 4.64047252589354, "x5": 0.15480650706778476}, {"model_based_pick": false}] +[[8, 0, 23], {"x0": -3.4214869389819706, "x1": 6.763553472967061, "x2": 4.03782615807143, "x3": -1.4077963919653054, "x4": 3.159927858648185, "x5": 0.0023744707047752}, {"model_based_pick": false}] +[[8, 0, 24], {"x0": -2.097983001698869, "x1": 5.469383906570386, "x2": 6.5385450395211215, "x3": -3.442654168477087, "x4": 1.5640425603570989, "x5": 0.21420490001010842}, {"model_based_pick": true}] +[[8, 0, 25], {"x0": -2.1038049269881176, "x1": 7.179480548454612, "x2": 7.443925722805974, "x3": -2.9232759769521195, "x4": 1.4456213647453264, "x5": 0.11159833560734506}, {"model_based_pick": true}] +[[8, 0, 26], {"x0": -2.331245478007352, "x1": 4.255973933602528, "x2": 6.679098240848425, "x3": -2.741823908409042, "x4": 1.3899078315434472, "x5": 0.3826698858366958}, {"model_based_pick": true}] +[[9, 0, 0], {"x0": -2.236096206930765, "x1": 3.7183178751065364, "x2": 6.706095622510873, "x3": -1.641240520422043, "x4": 1.3919872490628724, "x5": 0.4479147474411821}, {"model_based_pick": true}] +[[9, 0, 1], {"x0": -2.2103337953869184, "x1": 3.162338549608063, "x2": 7.634566234734862, "x3": -3.267495393635193, "x4": 1.3114225271966025, "x5": 0.07185826517032443}, {"model_based_pick": true}] +[[9, 0, 2], {"x0": -2.3766174413801386, "x1": 3.602195205098199, "x2": 6.712854673794874, "x3": -2.3109618023361618, "x4": 1.4086110319609388, "x5": 0.3491011748199327}, {"model_based_pick": true}] +[[9, 0, 3], {"x0": -4.32553626077053, "x1": 3.367951802378519, "x2": 4.88653523160224, "x3": -1.5261374613029357, "x4": 1.888459592458807, "x5": 0.42288787225410884}, {"model_based_pick": false}] +[[9, 0, 4], {"x0": -5.762298160518499, "x1": 5.011371143181442, "x2": 6.147675143588374, "x3": -3.977002119092416, "x4": 3.619466090426699, "x5": 0.1729835514844451}, {"model_based_pick": false}] +[[9, 0, 5], {"x0": -4.377590021238859, "x1": 4.640066265838553, "x2": 6.15947922118397, "x3": -3.932374248915275, "x4": 2.4455833162055036, "x5": 0.27303045078457905}, {"model_based_pick": false}] +[[9, 0, 6], {"x0": -2.217431904619031, "x1": 3.7514401717357644, "x2": 7.40543444625604, "x3": -2.406487737595708, "x4": 1.0636282572986642, "x5": 0.19697926896131351}, {"model_based_pick": false}] +[[9, 0, 7], {"x0": -3.111289646451794, "x1": 4.991363883374433, "x2": 4.917402933366928, "x3": -1.115419110129427, "x4": 1.422947869096058, "x5": 0.24624549296114018}, {"model_based_pick": false}] +[[9, 0, 8], {"x0": -5.661918905988147, "x1": 4.144256655144675, "x2": 5.999825233606048, "x3": -0.45250073716572814, "x4": 4.264917479780959, "x5": 0.07545240404054643}, {"model_based_pick": false}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/bohb/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/bohb/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/bohb/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/bohb/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/bohb/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/bohb/results.json new file mode 100644 index 0000000..578eeeb --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/bohb/results.json @@ -0,0 +1,183 @@ +[[0, 0, 0], 1.0, {"submitted": 1558193735.8521147, "started": 1558193735.8524437, "finished": 1558193735.8586848}, {"loss": 0.854625903054988, "info": {"x0": -5.547148304261728, "x1": 5.417313576779607, "x2": 7.50460310985922, "x3": -2.4120099203297394, "x4": 1.268514919160972, "x5": 0.08288931254426629}}, null] +[[0, 0, 1], 1.0, {"submitted": 1558193735.862123, "started": 1558193735.8626955, "finished": 1558193735.871721}, {"loss": 0.8874497174705684, "info": {"x0": -5.961551447784883, "x1": 5.983982308215694, "x2": 4.316959627886952, "x3": -0.41517552691025017, "x4": 3.6789252667609937, "x5": 0.16495912668870627}}, null] +[[0, 0, 2], 1.0, {"submitted": 1558193735.8753672, "started": 1558193735.8759308, "finished": 1558193735.8826416}, {"loss": 0.04440869288106937, "info": {"x0": -3.126555252838653, "x1": 6.284010396832116, "x2": 6.481420943233189, "x3": -1.8734471011864433, "x4": 3.3560509112879546, "x5": 0.03293704321547919}}, null] +[[0, 0, 3], 1.0, {"submitted": 1558193735.8849618, "started": 1558193735.8854716, "finished": 1558193735.8915904}, {"loss": 0.44111021452629073, "info": {"x0": -3.815188338388289, "x1": 5.310754401586235, "x2": 6.082739391120333, "x3": -3.894456608866774, "x4": 4.435830033523954, "x5": 0.2378964031342441}}, null] +[[0, 0, 4], 1.0, {"submitted": 1558193735.8943484, "started": 1558193735.894735, "finished": 1558193735.9005246}, {"loss": 0.03757039320536036, "info": {"x0": -2.168492312061879, "x1": 7.313823965281902, "x2": 5.340228845503274, "x3": -3.1295300731094358, "x4": 3.338973791408174, "x5": 0.137818849214208}}, null] +[[0, 0, 5], 1.0, {"submitted": 1558193735.9027581, "started": 1558193735.9030688, "finished": 1558193735.9090097}, {"loss": 0.7732904257002561, "info": {"x0": -4.588801696926199, "x1": 5.352905380036449, "x2": 7.574026141294929, "x3": -1.420862765558947, "x4": 4.493949960736361, "x5": 0.3160508046674595}}, null] +[[0, 0, 6], 1.0, {"submitted": 1558193735.9126115, "started": 1558193735.9129906, "finished": 1558193735.9188237}, {"loss": 0.9019308127549778, "info": {"x0": -5.448080591096875, "x1": 7.291021716878106, "x2": 7.523401782547067, "x3": -2.3114223189391203, "x4": 2.9401149591617344, "x5": 0.11505316639885343}}, null] +[[0, 0, 7], 1.0, {"submitted": 1558193735.9214513, "started": 1558193735.9217656, "finished": 1558193735.9277008}, {"loss": 0.10120675395979387, "info": {"x0": -3.4479736748170575, "x1": 4.448697164731483, "x2": 6.6173556647308995, "x3": -2.584880244451706, "x4": 3.060179091121771, "x5": 0.042647244545164664}}, null] +[[0, 0, 8], 1.0, {"submitted": 1558193735.9305413, "started": 1558193735.9309034, "finished": 1558193735.9367309}, {"loss": 0.8847948506086881, "info": {"x0": -5.455437054090877, "x1": 5.248282054287429, "x2": 4.092316260035814, "x3": -2.889942308831342, "x4": 4.205343197237287, "x5": 0.33638685682978325}}, null] +[[0, 0, 9], 1.0, {"submitted": 1558193735.9396214, "started": 1558193735.9400802, "finished": 1558193735.9480958}, {"loss": 0.8773129503508658, "info": {"x0": -5.975199942176532, "x1": 3.290027308945921, "x2": 6.241494290964826, "x3": -0.3740704798669867, "x4": 1.2670680197175685, "x5": 0.35028525707231206}}, null] +[[0, 0, 10], 1.0, {"submitted": 1558193735.9505296, "started": 1558193735.9508483, "finished": 1558193735.9575114}, {"loss": 0.8953338687956236, "info": {"x0": -5.4356852595987, "x1": 4.954101587953113, "x2": 6.441390712044436, "x3": -1.5210589446935314, "x4": 2.812886824244358, "x5": 0.18929372500833058}}, null] +[[0, 0, 11], 1.0, {"submitted": 1558193735.9603505, "started": 1558193735.9608643, "finished": 1558193735.9696074}, {"loss": 0.6127916283372037, "info": {"x0": -3.914468451300172, "x1": 3.221385275859918, "x2": 5.586825889033587, "x3": -3.1257387300686323, "x4": 2.730891368804578, "x5": 0.12657680468859478}}, null] +[[0, 0, 12], 1.0, {"submitted": 1558193735.9737694, "started": 1558193735.974112, "finished": 1558193735.981587}, {"loss": 0.8530973426641015, "info": {"x0": -4.607763313510313, "x1": 5.970743812922665, "x2": 5.314379222059916, "x3": -3.0447765118652788, "x4": 3.482344602128493, "x5": 0.12155893689297964}}, null] +[[0, 0, 13], 1.0, {"submitted": 1558193735.9841065, "started": 1558193735.984533, "finished": 1558193735.9910378}, {"loss": 0.7067578405693281, "info": {"x0": -4.666461062620623, "x1": 7.731935501028113, "x2": 6.528941252855035, "x3": -0.49884306491749175, "x4": 3.9389681068980593, "x5": 0.36810105071486515}}, null] +[[0, 0, 14], 1.0, {"submitted": 1558193736.0455499, "started": 1558193736.0459561, "finished": 1558193736.0519297}, {"loss": 0.03169750805257887, "info": {"x0": -2.005428706221053, "x1": 5.974154313888225, "x2": 6.117301183176403, "x3": -3.2964919522024694, "x4": 2.7369388371893093, "x5": 0.19989813423592784}}, null] +[[0, 0, 15], 1.0, {"submitted": 1558193736.108465, "started": 1558193736.1088715, "finished": 1558193736.115005}, {"loss": 0.04215607100787511, "info": {"x0": -2.034313165374151, "x1": 3.8842726175316584, "x2": 6.141376554498244, "x3": -3.124711764748001, "x4": 2.1600867038150025, "x5": 0.3190232668284335}}, null] +[[0, 0, 16], 1.0, {"submitted": 1558193736.1179109, "started": 1558193736.1182923, "finished": 1558193736.1255624}, {"loss": 0.3924376491568114, "info": {"x0": -3.381062932256578, "x1": 7.223241666869095, "x2": 4.856002429779972, "x3": -0.6441481801935707, "x4": 4.512592321959893, "x5": 0.06239643196071604}}, null] +[[0, 0, 17], 1.0, {"submitted": 1558193736.1295207, "started": 1558193736.129921, "finished": 1558193736.136291}, {"loss": 0.883668542761964, "info": {"x0": -5.117701905418318, "x1": 5.208804008509132, "x2": 4.856737883140557, "x3": -2.483115137972754, "x4": 2.9078097626946984, "x5": 0.4491333617260327}}, null] +[[0, 0, 18], 1.0, {"submitted": 1558193736.190601, "started": 1558193736.191082, "finished": 1558193736.1969151}, {"loss": 0.031617055343027944, "info": {"x0": -2.1930545789917373, "x1": 7.686371853584175, "x2": 5.5301897819877786, "x3": -1.6232297579893573, "x4": 2.956753636682407, "x5": 0.219816355776209}}, null] +[[0, 0, 19], 1.0, {"submitted": 1558193736.2537246, "started": 1558193736.2541199, "finished": 1558193736.2622561}, {"loss": 0.05872887773851376, "info": {"x0": -2.3338895044951067, "x1": 6.569691560635093, "x2": 4.672200881457807, "x3": -0.7466943998816449, "x4": 4.2764400891730965, "x5": 0.05060955012030454}}, null] +[[0, 0, 20], 1.0, {"submitted": 1558193736.265783, "started": 1558193736.266128, "finished": 1558193736.2714972}, {"loss": 0.8726468209746688, "info": {"x0": -4.656362170623136, "x1": 3.963985657054626, "x2": 4.957678886243736, "x3": -0.6044692540806089, "x4": 3.40602557090067, "x5": 0.07424581325652374}}, null] +[[0, 0, 21], 1.0, {"submitted": 1558193736.3281755, "started": 1558193736.328547, "finished": 1558193736.3348277}, {"loss": 0.0392598563063461, "info": {"x0": -2.2960432684968164, "x1": 3.2582083690730097, "x2": 6.802409123726491, "x3": -2.6738323928274363, "x4": 1.274151146747446, "x5": 0.3973275679786866}}, null] +[[0, 0, 22], 1.0, {"submitted": 1558193736.3908527, "started": 1558193736.3912752, "finished": 1558193736.3983495}, {"loss": 0.039903457612638416, "info": {"x0": -2.1868489914465217, "x1": 7.514799574177698, "x2": 5.677695160309841, "x3": -3.4738822236473674, "x4": 1.398747762707064, "x5": 0.3792321059067254}}, null] +[[0, 0, 23], 1.0, {"submitted": 1558193736.4013417, "started": 1558193736.4017959, "finished": 1558193736.4114199}, {"loss": 0.43966210689620444, "info": {"x0": -3.6239509205606115, "x1": 5.980649187272979, "x2": 5.903866701844328, "x3": -3.626506132463042, "x4": 2.617643027346062, "x5": 0.37655746470557727}}, null] +[[0, 0, 24], 1.0, {"submitted": 1558193736.4660473, "started": 1558193736.466418, "finished": 1558193736.4719875}, {"loss": 0.02534191320715463, "info": {"x0": -2.1165210198742006, "x1": 6.570258922707408, "x2": 6.553464211925023, "x3": -3.349854277667672, "x4": 1.3024303762680955, "x5": 0.15889223486558063}}, null] +[[0, 0, 25], 1.0, {"submitted": 1558193736.527505, "started": 1558193736.527912, "finished": 1558193736.5338755}, {"loss": 0.02518101345600856, "info": {"x0": -2.034424301894005, "x1": 6.352497111688169, "x2": 6.832381507654757, "x3": -3.470602025824446, "x4": 1.592277481067919, "x5": 0.12405769672836633}}, null] +[[0, 0, 26], 1.0, {"submitted": 1558193736.5935078, "started": 1558193736.5939155, "finished": 1558193736.5998116}, {"loss": 0.027272725776617112, "info": {"x0": -2.168282289128914, "x1": 7.858532127568152, "x2": 7.040184457638883, "x3": -3.5165208609435776, "x4": 1.1909671434504792, "x5": 0.2873378207111953}}, null] +[[0, 0, 4], 3.0, {"submitted": 1558193736.602807, "started": 1558193736.60318, "finished": 1558193736.6112466}, {"loss": 0.03419147167393781, "info": {"x0": -2.168492312061879, "x1": 7.313823965281902, "x2": 5.340228845503274, "x3": -3.1295300731094358, "x4": 3.338973791408174, "x5": 0.137818849214208}}, null] +[[0, 0, 14], 3.0, {"submitted": 1558193736.6129093, "started": 1558193736.6132765, "finished": 1558193736.6190348}, {"loss": 0.025261464400916755, "info": {"x0": -2.005428706221053, "x1": 5.974154313888225, "x2": 6.117301183176403, "x3": -3.2964919522024694, "x4": 2.7369388371893093, "x5": 0.19989813423592784}}, null] +[[0, 0, 15], 3.0, {"submitted": 1558193736.6204984, "started": 1558193736.6208951, "finished": 1558193736.629}, {"loss": 0.03081254855529588, "info": {"x0": -2.034313165374151, "x1": 3.8842726175316584, "x2": 6.141376554498244, "x3": -3.124711764748001, "x4": 2.1600867038150025, "x5": 0.3190232668284335}}, null] +[[0, 0, 18], 3.0, {"submitted": 1558193736.6308951, "started": 1558193736.631365, "finished": 1558193736.6378324}, {"loss": 0.028479485639332745, "info": {"x0": -2.1930545789917373, "x1": 7.686371853584175, "x2": 5.5301897819877786, "x3": -1.6232297579893573, "x4": 2.956753636682407, "x5": 0.219816355776209}}, null] +[[0, 0, 21], 3.0, {"submitted": 1558193736.6397283, "started": 1558193736.6402571, "finished": 1558193736.6467752}, {"loss": 0.023813355371823542, "info": {"x0": -2.2960432684968164, "x1": 3.2582083690730097, "x2": 6.802409123726491, "x3": -2.6738323928274363, "x4": 1.274151146747446, "x5": 0.3973275679786866}}, null] +[[0, 0, 22], 3.0, {"submitted": 1558193736.648457, "started": 1558193736.6487894, "finished": 1558193736.6557105}, {"loss": 0.038777148972954, "info": {"x0": -2.1868489914465217, "x1": 7.514799574177698, "x2": 5.677695160309841, "x3": -3.4738822236473674, "x4": 1.398747762707064, "x5": 0.3792321059067254}}, null] +[[0, 0, 24], 3.0, {"submitted": 1558193736.657425, "started": 1558193736.6577582, "finished": 1558193736.6645072}, {"loss": 0.023813353549638105, "info": {"x0": -2.1165210198742006, "x1": 6.570258922707408, "x2": 6.553464211925023, "x3": -3.349854277667672, "x4": 1.3024303762680955, "x5": 0.15889223486558063}}, null] +[[0, 0, 25], 3.0, {"submitted": 1558193736.6665473, "started": 1558193736.6669056, "finished": 1558193736.6727202}, {"loss": 0.019951727470849077, "info": {"x0": -2.034424301894005, "x1": 6.352497111688169, "x2": 6.832381507654757, "x3": -3.470602025824446, "x4": 1.592277481067919, "x5": 0.12405769672836633}}, null] +[[0, 0, 26], 3.0, {"submitted": 1558193736.6747806, "started": 1558193736.6752152, "finished": 1558193736.6813192}, {"loss": 0.025341912080276807, "info": {"x0": -2.168282289128914, "x1": 7.858532127568152, "x2": 7.040184457638883, "x3": -3.5165208609435776, "x4": 1.1909671434504792, "x5": 0.2873378207111953}}, null] +[[0, 0, 21], 9.0, {"submitted": 1558193736.6832378, "started": 1558193736.6835535, "finished": 1558193736.6903818}, {"loss": 0.019308126375546696, "info": {"x0": -2.2960432684968164, "x1": 3.2582083690730097, "x2": 6.802409123726491, "x3": -2.6738323928274363, "x4": 1.274151146747446, "x5": 0.3973275679786866}}, null] +[[0, 0, 24], 9.0, {"submitted": 1558193736.6921017, "started": 1558193736.6924813, "finished": 1558193736.6984198}, {"loss": 0.02365245063364363, "info": {"x0": -2.1165210198742006, "x1": 6.570258922707408, "x2": 6.553464211925023, "x3": -3.349854277667672, "x4": 1.3024303762680955, "x5": 0.15889223486558063}}, null] +[[0, 0, 25], 9.0, {"submitted": 1558193736.6998305, "started": 1558193736.7001548, "finished": 1558193736.7060368}, {"loss": 0.019066772150206922, "info": {"x0": -2.034424301894005, "x1": 6.352497111688169, "x2": 6.832381507654757, "x3": -3.470602025824446, "x4": 1.592277481067919, "x5": 0.12405769672836633}}, null] +[[0, 0, 25], 27.0, {"submitted": 1558193736.7080784, "started": 1558193736.708394, "finished": 1558193736.7143323}, {"loss": 0.019066772150206922, "info": {"x0": -2.034424301894005, "x1": 6.352497111688169, "x2": 6.832381507654757, "x3": -3.470602025824446, "x4": 1.592277481067919, "x5": 0.12405769672836633}}, null] +[[1, 0, 0], 3.0, {"submitted": 1558193736.77136, "started": 1558193736.7717395, "finished": 1558193736.7779448}, {"loss": 0.03716814279652177, "info": {"x0": -2.212169045126088, "x1": 7.644999773372921, "x2": 5.360209631964927, "x3": -3.0342987570481554, "x4": 3.1484710140737353, "x5": 0.13702570434980937}}, null] +[[1, 0, 1], 3.0, {"submitted": 1558193736.8369164, "started": 1558193736.8373315, "finished": 1558193736.8436368}, {"loss": 0.019629926894426532, "info": {"x0": -2.080574201366052, "x1": 5.349519718117698, "x2": 7.261324763894741, "x3": -3.2227245591106755, "x4": 1.2126514926524115, "x5": 0.024283970124103965}}, null] +[[1, 0, 2], 3.0, {"submitted": 1558193736.899569, "started": 1558193736.8999772, "finished": 1558193736.9063847}, {"loss": 0.03716813826503431, "info": {"x0": -2.150409618845554, "x1": 7.262852337647364, "x2": 5.11951904896377, "x3": -1.8376993348109232, "x4": 3.04211260331809, "x5": 0.36656687297898194}}, null] +[[1, 0, 3], 3.0, {"submitted": 1558193736.9653547, "started": 1558193736.9657452, "finished": 1558193736.97465}, {"loss": 0.020514884569524085, "info": {"x0": -2.132785435368115, "x1": 5.155684893095273, "x2": 7.041137491259574, "x3": -3.293730848100382, "x4": 1.1563299644951488, "x5": 0.15359816338756552}}, null] +[[1, 0, 4], 3.0, {"submitted": 1558193737.0313618, "started": 1558193737.0317924, "finished": 1558193737.037839}, {"loss": 0.025020109705644944, "info": {"x0": -2.0645198357177685, "x1": 7.645923274917146, "x2": 7.745706739673688, "x3": -3.7273225600812245, "x4": 2.5789193888209603, "x5": 0.20062054773019233}}, null] +[[1, 0, 5], 3.0, {"submitted": 1558193737.094091, "started": 1558193737.0944848, "finished": 1558193737.100533}, {"loss": 0.02413515750669417, "info": {"x0": -2.4979299569519395, "x1": 3.274389558491188, "x2": 7.043559723606826, "x3": -3.4322320496275456, "x4": 2.4336789441032782, "x5": 0.2565868045293178}}, null] +[[1, 0, 6], 3.0, {"submitted": 1558193737.1571512, "started": 1558193737.1576402, "finished": 1558193737.1633587}, {"loss": 0.037489941843267593, "info": {"x0": -3.085374915969328, "x1": 3.057885011147909, "x2": 7.033896258939555, "x3": -3.709363917955663, "x4": 1.5467528800147885, "x5": 0.3687969959888757}}, null] +[[1, 0, 7], 3.0, {"submitted": 1558193737.216916, "started": 1558193737.2172887, "finished": 1558193737.2233076}, {"loss": 0.02139984095950139, "info": {"x0": -2.5165951694708926, "x1": 3.294844559499739, "x2": 7.032130039425676, "x3": -3.1333151786548754, "x4": 2.255729191306026, "x5": 0.08347856970308698}}, null] +[[1, 0, 8], 3.0, {"submitted": 1558193737.2798736, "started": 1558193737.2803411, "finished": 1558193737.2862992}, {"loss": 0.019951732467473383, "info": {"x0": -2.482587252686961, "x1": 3.307040951900066, "x2": 7.0005533111197495, "x3": -3.6048383388959016, "x4": 1.8656241070576614, "x5": 0.14781810883945742}}, null] +[[1, 0, 1], 9.0, {"submitted": 1558193737.2892463, "started": 1558193737.2897847, "finished": 1558193737.2979734}, {"loss": 0.0199517285162081, "info": {"x0": -2.080574201366052, "x1": 5.349519718117698, "x2": 7.261324763894741, "x3": -3.2227245591106755, "x4": 1.2126514926524115, "x5": 0.024283970124103965}}, null] +[[1, 0, 3], 9.0, {"submitted": 1558193737.2995172, "started": 1558193737.3001513, "finished": 1558193737.3084238}, {"loss": 0.020514884507186158, "info": {"x0": -2.132785435368115, "x1": 5.155684893095273, "x2": 7.041137491259574, "x3": -3.293730848100382, "x4": 1.1563299644951488, "x5": 0.15359816338756552}}, null] +[[1, 0, 8], 9.0, {"submitted": 1558193737.3101647, "started": 1558193737.3105278, "finished": 1558193737.317157}, {"loss": 0.020112633244797607, "info": {"x0": -2.482587252686961, "x1": 3.307040951900066, "x2": 7.0005533111197495, "x3": -3.6048383388959016, "x4": 1.8656241070576614, "x5": 0.14781810883945742}}, null] +[[1, 0, 1], 27.0, {"submitted": 1558193737.3188856, "started": 1558193737.3203795, "finished": 1558193737.33009}, {"loss": 0.0199517285162081, "info": {"x0": -2.080574201366052, "x1": 5.349519718117698, "x2": 7.261324763894741, "x3": -3.2227245591106755, "x4": 1.2126514926524115, "x5": 0.024283970124103965}}, null] +[[2, 0, 0], 9.0, {"submitted": 1558193737.3859556, "started": 1558193737.386488, "finished": 1558193737.3925126}, {"loss": 0.02236524320185811, "info": {"x0": -2.214469949315732, "x1": 5.764120300584673, "x2": 7.001805297233631, "x3": -3.480993102312573, "x4": 1.5714972396242852, "x5": 0.034247709771366125}}, null] +[[2, 0, 1], 9.0, {"submitted": 1558193737.4469154, "started": 1558193737.4473417, "finished": 1558193737.452775}, {"loss": 0.021078034667170842, "info": {"x0": -2.2975815757934805, "x1": 6.474176985025732, "x2": 6.456533680092074, "x3": -3.073430255155634, "x4": 1.0687072643011293, "x5": 0.024431973358633244}}, null] +[[2, 0, 2], 9.0, {"submitted": 1558193737.5077202, "started": 1558193737.5081553, "finished": 1558193737.5141304}, {"loss": 0.022767498132593666, "info": {"x0": -2.0225367682156237, "x1": 5.081741357150399, "x2": 7.241554612730663, "x3": -2.7975116117989174, "x4": 1.6735192649604342, "x5": 0.024136003737947113}}, null] +[[2, 0, 3], 9.0, {"submitted": 1558193737.5740743, "started": 1558193737.5745227, "finished": 1558193737.5803208}, {"loss": 0.02035398489989685, "info": {"x0": -2.4603336244190466, "x1": 4.648094950768946, "x2": 7.116356963302556, "x3": -3.30363180721191, "x4": 1.772187582848816, "x5": 0.039944316008535846}}, null] +[[2, 0, 4], 9.0, {"submitted": 1558193737.6413393, "started": 1558193737.6417418, "finished": 1558193737.647932}, {"loss": 0.022043443200862534, "info": {"x0": -2.062031101674786, "x1": 5.03637759092406, "x2": 6.332464894208597, "x3": -3.8648407229762323, "x4": 1.1188577024466007, "x5": 0.02467544292811255}}, null] +[[2, 0, 5], 9.0, {"submitted": 1558193737.6507769, "started": 1558193737.6511426, "finished": 1558193737.6581519}, {"loss": 0.7255832609250745, "info": {"x0": -4.270980438431501, "x1": 4.054699139368449, "x2": 4.702317921419553, "x3": -3.0222782837006963, "x4": 3.9073074347259977, "x5": 0.3264090537158878}}, null] +[[2, 0, 1], 27.0, {"submitted": 1558193737.6606088, "started": 1558193737.6610122, "finished": 1558193737.669912}, {"loss": 0.021078034667170842, "info": {"x0": -2.2975815757934805, "x1": 6.474176985025732, "x2": 6.456533680092074, "x3": -3.073430255155634, "x4": 1.0687072643011293, "x5": 0.024431973358633244}}, null] +[[2, 0, 3], 27.0, {"submitted": 1558193737.6718614, "started": 1558193737.672181, "finished": 1558193737.6790085}, {"loss": 0.020514886156743527, "info": {"x0": -2.4603336244190466, "x1": 4.648094950768946, "x2": 7.116356963302556, "x3": -3.30363180721191, "x4": 1.772187582848816, "x5": 0.039944316008535846}}, null] +[[3, 0, 0], 27.0, {"submitted": 1558193737.736231, "started": 1558193737.7366157, "finished": 1558193737.741864}, {"loss": 0.018020918584119295, "info": {"x0": -2.273873837076822, "x1": 4.40417957401142, "x2": 7.351491859273695, "x3": -3.3430534064278854, "x4": 1.2917452370299989, "x5": 0.03877653569150552}}, null] +[[3, 0, 1], 27.0, {"submitted": 1558193737.7952328, "started": 1558193737.795616, "finished": 1558193737.8028154}, {"loss": 0.02381335462376848, "info": {"x0": -2.212077508121376, "x1": 5.351929940202856, "x2": 6.541778744430543, "x3": -3.269075368024531, "x4": 1.061349159355482, "x5": 0.10921604106345553}}, null] +[[3, 0, 2], 27.0, {"submitted": 1558193737.8632247, "started": 1558193737.863604, "finished": 1558193737.869748}, {"loss": 0.0191472279143161, "info": {"x0": -2.2594670519291298, "x1": 4.13525200838458, "x2": 7.303157187480762, "x3": -3.5348216412673477, "x4": 1.345537924726635, "x5": 0.08526762572367913}}, null] +[[3, 0, 3], 27.0, {"submitted": 1558193737.8724322, "started": 1558193737.8729043, "finished": 1558193737.8819835}, {"loss": 0.8703942070429663, "info": {"x0": -4.892051710284753, "x1": 6.644813643000486, "x2": 5.5457581234250934, "x3": -1.5992585430142223, "x4": 1.1346707971287868, "x5": 0.3451579845574335}}, null] +[[4, 0, 0], 1.0, {"submitted": 1558193737.9381158, "started": 1558193737.9385478, "finished": 1558193737.9440863}, {"loss": 0.03757039814923717, "info": {"x0": -2.0087335491343477, "x1": 4.442532271885824, "x2": 7.0871508283173075, "x3": -3.0772997645257716, "x4": 1.2608862106599448, "x5": 0.01590290257190293}}, null] +[[4, 0, 1], 1.0, {"submitted": 1558193737.9987864, "started": 1558193737.999156, "finished": 1558193738.0047536}, {"loss": 0.027031377248004484, "info": {"x0": -2.2701802468996783, "x1": 4.720070378460385, "x2": 7.787894291283339, "x3": -3.2577947814746917, "x4": 1.040183924521965, "x5": 0.02428127331049218}}, null] +[[4, 0, 2], 1.0, {"submitted": 1558193738.0650077, "started": 1558193738.0653849, "finished": 1558193738.0717688}, {"loss": 0.02493965758111144, "info": {"x0": -2.233717291111337, "x1": 6.360339329121331, "x2": 7.089082788125472, "x3": -3.4972785200601684, "x4": 1.0808280969236006, "x5": 0.03230204735125149}}, null] +[[4, 0, 3], 1.0, {"submitted": 1558193738.129859, "started": 1558193738.1302853, "finished": 1558193738.1362321}, {"loss": 0.02405470834560961, "info": {"x0": -2.0528371728853623, "x1": 5.570382539343363, "x2": 6.989657697078064, "x3": -2.853077157415094, "x4": 1.0374501674509167, "x5": 0.13283122714364923}}, null] +[[4, 0, 4], 1.0, {"submitted": 1558193738.191866, "started": 1558193738.1923041, "finished": 1558193738.1980247}, {"loss": 0.026950926422976897, "info": {"x0": -2.2044853311503028, "x1": 4.423870666806173, "x2": 7.065233642364387, "x3": -3.0944615035839016, "x4": 1.1514284182524317, "x5": 0.0772048543865487}}, null] +[[4, 0, 5], 1.0, {"submitted": 1558193738.257603, "started": 1558193738.2580311, "finished": 1558193738.2637045}, {"loss": 0.02614641631215403, "info": {"x0": -2.216112589552222, "x1": 6.438635721078735, "x2": 7.1829114903863385, "x3": -3.4045119347256465, "x4": 1.4435728724399848, "x5": 0.020332662055948705}}, null] +[[4, 0, 6], 1.0, {"submitted": 1558193738.3209279, "started": 1558193738.3213887, "finished": 1558193738.3267357}, {"loss": 0.02662912294544334, "info": {"x0": -2.0245843669563333, "x1": 6.075800147199616, "x2": 7.1670784280503215, "x3": -3.6076128488171784, "x4": 1.0797893814909205, "x5": 0.0035812861704328236}}, null] +[[4, 0, 7], 1.0, {"submitted": 1558193738.3834996, "started": 1558193738.3838685, "finished": 1558193738.3896592}, {"loss": 0.046419952300318014, "info": {"x0": -2.3847149553693785, "x1": 3.221398392999892, "x2": 6.879441354798319, "x3": -2.9553199095531526, "x4": 1.5707653438214748, "x5": 0.019178339953122195}}, null] +[[4, 0, 8], 1.0, {"submitted": 1558193738.3923144, "started": 1558193738.392693, "finished": 1558193738.3991728}, {"loss": 0.18576025552837866, "info": {"x0": -3.5523330566191342, "x1": 4.62189553784274, "x2": 5.692407176155685, "x3": -2.1188986862767902, "x4": 1.6256749920223799, "x5": 0.01928784942936862}}, null] +[[4, 0, 9], 1.0, {"submitted": 1558193738.455446, "started": 1558193738.4558053, "finished": 1558193738.4620605}, {"loss": 0.03169750407733749, "info": {"x0": -2.0122928482474083, "x1": 6.222717802326328, "x2": 7.134180233138525, "x3": -2.7985180403426986, "x4": 1.0555177971261682, "x5": 0.040791290611948805}}, null] +[[4, 0, 10], 1.0, {"submitted": 1558193738.4647517, "started": 1558193738.465253, "finished": 1558193738.4748595}, {"loss": 0.41287208348272886, "info": {"x0": -3.479380452693997, "x1": 7.623859290091326, "x2": 5.258061126560074, "x3": -2.2708226092148234, "x4": 1.3812910598733494, "x5": 0.13706470218070943}}, null] +[[4, 0, 11], 1.0, {"submitted": 1558193738.5311198, "started": 1558193738.5315535, "finished": 1558193738.5376012}, {"loss": 0.04191472022071159, "info": {"x0": -2.04761886458157, "x1": 4.4640160149554315, "x2": 7.55546919252976, "x3": -2.7802506331468337, "x4": 1.7279828112233204, "x5": 0.021004314660816842}}, null] +[[4, 0, 12], 1.0, {"submitted": 1558193738.5397391, "started": 1558193738.5400631, "finished": 1558193738.5467007}, {"loss": 0.7929203497655001, "info": {"x0": -4.677473590830132, "x1": 3.524870611499415, "x2": 6.562863251977429, "x3": -2.7473678479071504, "x4": 2.4087052086153586, "x5": 0.25685299632032516}}, null] +[[4, 0, 13], 1.0, {"submitted": 1558193738.5492504, "started": 1558193738.5495858, "finished": 1558193738.555437}, {"loss": 0.641190665000068, "info": {"x0": -4.000760723895331, "x1": 3.366016560246689, "x2": 5.355895107001089, "x3": -1.8179339726623702, "x4": 1.147402300859388, "x5": 0.05911892132941965}}, null] +[[4, 0, 14], 1.0, {"submitted": 1558193738.6120102, "started": 1558193738.6123962, "finished": 1558193738.6181748}, {"loss": 0.02719227806369049, "info": {"x0": -2.122529246982423, "x1": 4.373139046298935, "x2": 7.7656264819003695, "x3": -3.2001427389952997, "x4": 1.1816927176553615, "x5": 0.0494046241791849}}, null] +[[4, 0, 15], 1.0, {"submitted": 1558193738.62071, "started": 1558193738.6211374, "finished": 1558193738.6274834}, {"loss": 0.12670957145917253, "info": {"x0": -2.962587460548452, "x1": 6.074691619515655, "x2": 4.397760795645757, "x3": -1.1866516159615594, "x4": 2.6489991722709045, "x5": 0.09185490526932455}}, null] +[[4, 0, 16], 1.0, {"submitted": 1558193738.6836495, "started": 1558193738.6840136, "finished": 1558193738.6893787}, {"loss": 0.02308930307267083, "info": {"x0": -2.0081777751629755, "x1": 6.026411515772329, "x2": 7.438213428677669, "x3": -3.181951415198214, "x4": 1.4515186083239584, "x5": 0.07466343812161888}}, null] +[[4, 0, 17], 1.0, {"submitted": 1558193738.7427967, "started": 1558193738.7431555, "finished": 1558193738.7494218}, {"loss": 0.022767498103822326, "info": {"x0": -2.050982042146626, "x1": 7.2043966797964085, "x2": 6.336444413468539, "x3": -3.2324801192037014, "x4": 1.2716712296307344, "x5": 0.017691431578227765}}, null] +[[4, 0, 18], 1.0, {"submitted": 1558193738.8079295, "started": 1558193738.8083827, "finished": 1558193738.8142557}, {"loss": 0.03483507941062665, "info": {"x0": -2.6418540208071932, "x1": 4.1534084371804445, "x2": 7.336830345980433, "x3": -2.9490789537840443, "x4": 2.3830140938795523, "x5": 0.0322913988717972}}, null] +[[4, 0, 19], 1.0, {"submitted": 1558193738.871328, "started": 1558193738.8717234, "finished": 1558193738.8776422}, {"loss": 0.029042641558382452, "info": {"x0": -2.475943323468034, "x1": 3.9277526932937654, "x2": 7.020449947277434, "x3": -3.2276166542808036, "x4": 1.3494227304747874, "x5": 0.061495927936022377}}, null] +[[4, 0, 20], 1.0, {"submitted": 1558193738.93113, "started": 1558193738.931505, "finished": 1558193738.937893}, {"loss": 0.026629127467340374, "info": {"x0": -2.2652548863755815, "x1": 5.353157784860192, "x2": 7.20013433663196, "x3": -3.318807473414785, "x4": 1.159094431420665, "x5": 0.11861041292456274}}, null] +[[4, 0, 21], 1.0, {"submitted": 1558193738.9935172, "started": 1558193738.993906, "finished": 1558193739.0001867}, {"loss": 0.033306515921725434, "info": {"x0": -2.1992474750871875, "x1": 4.6799366031887395, "x2": 6.8952915962518855, "x3": -3.6460227044399836, "x4": 1.5170026751327752, "x5": 0.018992269906294865}}, null] +[[4, 0, 22], 1.0, {"submitted": 1558193739.0541737, "started": 1558193739.054603, "finished": 1558193739.060308}, {"loss": 0.025824616268001442, "info": {"x0": -2.1001919169181114, "x1": 4.530441694799821, "x2": 7.688461297737937, "x3": -3.2300644987491585, "x4": 1.0765923917824187, "x5": 0.032835401608366496}}, null] +[[4, 0, 23], 1.0, {"submitted": 1558193739.0623937, "started": 1558193739.062793, "finished": 1558193739.0697649}, {"loss": 0.7553499602069083, "info": {"x0": -4.492316121678108, "x1": 6.34539891586345, "x2": 6.652999778626596, "x3": -1.5856590462007087, "x4": 2.5328822119186105, "x5": 0.24375201371232386}}, null] +[[4, 0, 24], 1.0, {"submitted": 1558193739.072843, "started": 1558193739.0731936, "finished": 1558193739.080312}, {"loss": 0.03757039795263295, "info": {"x0": -2.4340669405524125, "x1": 7.675411664337606, "x2": 5.951964672840601, "x3": -2.6090103669701223, "x4": 3.2212942050601088, "x5": 0.38380082578016494}}, null] +[[4, 0, 25], 1.0, {"submitted": 1558193739.137655, "started": 1558193739.1380653, "finished": 1558193739.1445296}, {"loss": 0.038616253005240284, "info": {"x0": -2.3180219195254272, "x1": 4.670628179449053, "x2": 7.277594455433425, "x3": -3.0710542592980525, "x4": 1.6673753121463482, "x5": 0.03687532648115728}}, null] +[[4, 0, 26], 1.0, {"submitted": 1558193739.1991756, "started": 1558193739.199554, "finished": 1558193739.2048948}, {"loss": 0.02566371788828965, "info": {"x0": -2.161829696122215, "x1": 6.791255739624155, "x2": 7.142250754321436, "x3": -3.3334523952831816, "x4": 1.1086580884278263, "x5": 0.11508012975439107}}, null] +[[4, 0, 2], 3.0, {"submitted": 1558193739.2068372, "started": 1558193739.2072012, "finished": 1558193739.2147014}, {"loss": 0.023089296460055763, "info": {"x0": -2.233717291111337, "x1": 6.360339329121331, "x2": 7.089082788125472, "x3": -3.4972785200601684, "x4": 1.0808280969236006, "x5": 0.03230204735125149}}, null] +[[4, 0, 3], 3.0, {"submitted": 1558193739.2172348, "started": 1558193739.2175841, "finished": 1558193739.2236176}, {"loss": 0.02156074254721859, "info": {"x0": -2.0528371728853623, "x1": 5.570382539343363, "x2": 6.989657697078064, "x3": -2.853077157415094, "x4": 1.0374501674509167, "x5": 0.13283122714364923}}, null] +[[4, 0, 5], 3.0, {"submitted": 1558193739.2262046, "started": 1558193739.2265387, "finished": 1558193739.2323527}, {"loss": 0.023572000264162406, "info": {"x0": -2.216112589552222, "x1": 6.438635721078735, "x2": 7.1829114903863385, "x3": -3.4045119347256465, "x4": 1.4435728724399848, "x5": 0.020332662055948705}}, null] +[[4, 0, 6], 3.0, {"submitted": 1558193739.234592, "started": 1558193739.2350729, "finished": 1558193739.2422297}, {"loss": 0.022847949182996798, "info": {"x0": -2.0245843669563333, "x1": 6.075800147199616, "x2": 7.1670784280503215, "x3": -3.6076128488171784, "x4": 1.0797893814909205, "x5": 0.0035812861704328236}}, null] +[[4, 0, 16], 3.0, {"submitted": 1558193739.2447681, "started": 1558193739.245106, "finished": 1558193739.2520719}, {"loss": 0.020112631676759064, "info": {"x0": -2.0081777751629755, "x1": 6.026411515772329, "x2": 7.438213428677669, "x3": -3.181951415198214, "x4": 1.4515186083239584, "x5": 0.07466343812161888}}, null] +[[4, 0, 17], 3.0, {"submitted": 1558193739.2542844, "started": 1558193739.2546334, "finished": 1558193739.2606673}, {"loss": 0.021319387616980788, "info": {"x0": -2.050982042146626, "x1": 7.2043966797964085, "x2": 6.336444413468539, "x3": -3.2324801192037014, "x4": 1.2716712296307344, "x5": 0.017691431578227765}}, null] +[[4, 0, 20], 3.0, {"submitted": 1558193739.2633433, "started": 1558193739.2636962, "finished": 1558193739.2729716}, {"loss": 0.022365249675411612, "info": {"x0": -2.2652548863755815, "x1": 5.353157784860192, "x2": 7.20013433663196, "x3": -3.318807473414785, "x4": 1.159094431420665, "x5": 0.11861041292456274}}, null] +[[4, 0, 22], 3.0, {"submitted": 1558193739.2756677, "started": 1558193739.2760468, "finished": 1558193739.2822928}, {"loss": 0.021560737042300472, "info": {"x0": -2.1001919169181114, "x1": 4.530441694799821, "x2": 7.688461297737937, "x3": -3.2300644987491585, "x4": 1.0765923917824187, "x5": 0.032835401608366496}}, null] +[[4, 0, 26], 3.0, {"submitted": 1558193739.2846234, "started": 1558193739.2849298, "finished": 1558193739.2907274}, {"loss": 0.02405471190366647, "info": {"x0": -2.161829696122215, "x1": 6.791255739624155, "x2": 7.142250754321436, "x3": -3.3334523952831816, "x4": 1.1086580884278263, "x5": 0.11508012975439107}}, null] +[[4, 0, 16], 9.0, {"submitted": 1558193739.2937274, "started": 1558193739.2940996, "finished": 1558193739.3003495}, {"loss": 0.019147225603017716, "info": {"x0": -2.0081777751629755, "x1": 6.026411515772329, "x2": 7.438213428677669, "x3": -3.181951415198214, "x4": 1.4515186083239584, "x5": 0.07466343812161888}}, null] +[[4, 0, 17], 9.0, {"submitted": 1558193739.3023844, "started": 1558193739.3040414, "finished": 1558193739.31009}, {"loss": 0.021319387616980788, "info": {"x0": -2.050982042146626, "x1": 7.2043966797964085, "x2": 6.336444413468539, "x3": -3.2324801192037014, "x4": 1.2716712296307344, "x5": 0.017691431578227765}}, null] +[[4, 0, 22], 9.0, {"submitted": 1558193739.3120067, "started": 1558193739.3124757, "finished": 1558193739.318359}, {"loss": 0.01938857359456516, "info": {"x0": -2.1001919169181114, "x1": 4.530441694799821, "x2": 7.688461297737937, "x3": -3.2300644987491585, "x4": 1.0765923917824187, "x5": 0.032835401608366496}}, null] +[[4, 0, 16], 27.0, {"submitted": 1558193739.320479, "started": 1558193739.320814, "finished": 1558193739.3270485}, {"loss": 0.019147225603017716, "info": {"x0": -2.0081777751629755, "x1": 6.026411515772329, "x2": 7.438213428677669, "x3": -3.181951415198214, "x4": 1.4515186083239584, "x5": 0.07466343812161888}}, null] +[[5, 0, 0], 3.0, {"submitted": 1558193739.3295088, "started": 1558193739.3298423, "finished": 1558193739.337355}, {"loss": 0.3287208356376818, "info": {"x0": -3.9205006626920413, "x1": 5.756771903725219, "x2": 4.869368275078397, "x3": -0.8924901829031437, "x4": 1.6136200045279852, "x5": 0.40499287999989825}}, null] +[[5, 0, 1], 3.0, {"submitted": 1558193739.3401163, "started": 1558193739.3404686, "finished": 1558193739.3469942}, {"loss": 0.6377312879251167, "info": {"x0": -4.94362083112904, "x1": 3.7472608733062858, "x2": 7.284651516370168, "x3": -0.9605282388770298, "x4": 4.936755277041147, "x5": 0.19473728980826926}}, null] +[[5, 0, 2], 3.0, {"submitted": 1558193739.3490152, "started": 1558193739.3493767, "finished": 1558193739.3548732}, {"loss": 0.08857602574416733, "info": {"x0": -3.294863419261408, "x1": 4.559305241578789, "x2": 4.498649665387386, "x3": -1.9294151617470177, "x4": 3.309362201794816, "x5": 0.10924974495778272}}, null] +[[5, 0, 3], 3.0, {"submitted": 1558193739.409324, "started": 1558193739.4097402, "finished": 1558193739.4152942}, {"loss": 0.02759453009331503, "info": {"x0": -2.54804380438071, "x1": 3.2016990055583854, "x2": 7.176832603672842, "x3": -2.494215408691816, "x4": 1.4369239397128921, "x5": 0.47346197416201186}}, null] +[[5, 0, 4], 3.0, {"submitted": 1558193739.4710667, "started": 1558193739.4714415, "finished": 1558193739.477665}, {"loss": 0.022928398766061155, "info": {"x0": -2.3929595619265704, "x1": 3.4900145764053954, "x2": 6.912163027831536, "x3": -2.071947255227931, "x4": 1.3867711897390411, "x5": 0.3310690562184921}}, null] +[[5, 0, 5], 3.0, {"submitted": 1558193739.5333877, "started": 1558193739.5338454, "finished": 1558193739.539766}, {"loss": 0.030088496361638118, "info": {"x0": -2.0392304642848558, "x1": 3.401067422051366, "x2": 6.6376699271822845, "x3": -2.554308472130555, "x4": 1.0006542865025785, "x5": 0.30782447043466765}}, null] +[[5, 0, 6], 3.0, {"submitted": 1558193739.5417635, "started": 1558193739.5421176, "finished": 1558193739.549424}, {"loss": 0.05969428421984926, "info": {"x0": -3.2745951969984084, "x1": 5.974866526342818, "x2": 5.84152562470519, "x3": -0.30843301043397053, "x4": 3.994107016729175, "x5": 0.14097227791530637}}, null] +[[5, 0, 7], 3.0, {"submitted": 1558193739.6024168, "started": 1558193739.6029103, "finished": 1558193739.608507}, {"loss": 0.04151246897750388, "info": {"x0": -2.010596849600894, "x1": 3.1795767467852265, "x2": 6.862196178705987, "x3": -2.8404739877356575, "x4": 1.64137288514132, "x5": 0.352000749315623}}, null] +[[5, 0, 8], 3.0, {"submitted": 1558193739.6627297, "started": 1558193739.6630626, "finished": 1558193739.6687484}, {"loss": 0.02912309126612265, "info": {"x0": -2.174614851458361, "x1": 4.68195905785014, "x2": 7.54175814544353, "x3": -2.0411675681553287, "x4": 1.053267846050604, "x5": 0.49973509924128334}}, null] +[[5, 0, 3], 9.0, {"submitted": 1558193739.6704314, "started": 1558193739.6708446, "finished": 1558193739.6779633}, {"loss": 0.022606596851770855, "info": {"x0": -2.54804380438071, "x1": 3.2016990055583854, "x2": 7.176832603672842, "x3": -2.494215408691816, "x4": 1.4369239397128921, "x5": 0.47346197416201186}}, null] +[[5, 0, 4], 9.0, {"submitted": 1558193739.6815689, "started": 1558193739.6818967, "finished": 1558193739.687815}, {"loss": 0.018423169357394943, "info": {"x0": -2.3929595619265704, "x1": 3.4900145764053954, "x2": 6.912163027831536, "x3": -2.071947255227931, "x4": 1.3867711897390411, "x5": 0.3310690562184921}}, null] +[[5, 0, 8], 9.0, {"submitted": 1558193739.6904373, "started": 1558193739.69139, "finished": 1558193739.698339}, {"loss": 0.026870476696055867, "info": {"x0": -2.174614851458361, "x1": 4.68195905785014, "x2": 7.54175814544353, "x3": -2.0411675681553287, "x4": 1.053267846050604, "x5": 0.49973509924128334}}, null] +[[5, 0, 4], 27.0, {"submitted": 1558193739.7018092, "started": 1558193739.7022202, "finished": 1558193739.708689}, {"loss": 0.01850362000979443, "info": {"x0": -2.3929595619265704, "x1": 3.4900145764053954, "x2": 6.912163027831536, "x3": -2.071947255227931, "x4": 1.3867711897390411, "x5": 0.3310690562184921}}, null] +[[6, 0, 0], 9.0, {"submitted": 1558193739.711277, "started": 1558193739.7117162, "finished": 1558193739.7177098}, {"loss": 0.02300884824842575, "info": {"x0": -2.2442743535729215, "x1": 4.382631598112064, "x2": 6.04360882433798, "x3": -1.0454401012894698, "x4": 1.978696249949326, "x5": 0.37682103550880586}}, null] +[[6, 0, 1], 9.0, {"submitted": 1558193739.776073, "started": 1558193739.7765462, "finished": 1558193739.7829852}, {"loss": 0.09855189266841641, "info": {"x0": -2.0340195508343792, "x1": 6.268659688804842, "x2": 7.386653926102761, "x3": -3.6716493590167967, "x4": 1.3207642031217255, "x5": 0.07062322163700853}}, null] +[[6, 0, 2], 9.0, {"submitted": 1558193739.8378646, "started": 1558193739.8382826, "finished": 1558193739.8443887}, {"loss": 0.017940466747299277, "info": {"x0": -2.31711564630823, "x1": 3.021661219036202, "x2": 7.093847053807567, "x3": -2.045167399634719, "x4": 1.368579052462792, "x5": 0.3431400945819885}}, null] +[[6, 0, 3], 9.0, {"submitted": 1558193739.9022367, "started": 1558193739.902891, "finished": 1558193739.9090054}, {"loss": 0.02115848745344535, "info": {"x0": -2.346301452680032, "x1": 3.8423687528698407, "x2": 7.4970599710294135, "x3": -1.1132445797826835, "x4": 1.272890193103318, "x5": 0.25663496391326573}}, null] +[[6, 0, 4], 9.0, {"submitted": 1558193739.9641442, "started": 1558193739.9646087, "finished": 1558193739.9703882}, {"loss": 0.02172164268198269, "info": {"x0": -2.2527777061789056, "x1": 3.2061376228110348, "x2": 7.895422298110054, "x3": -3.4315757157425204, "x4": 1.0068214922206435, "x5": 0.11668440174594523}}, null] +[[6, 0, 5], 9.0, {"submitted": 1558193739.9739425, "started": 1558193739.9743414, "finished": 1558193739.9818032}, {"loss": 0.022928397078142017, "info": {"x0": -2.0997590238334785, "x1": 5.184823716176572, "x2": 7.173565667462658, "x3": -2.8859677362652696, "x4": 2.3845012302615087, "x5": 0.0638498850785384}}, null] +[[6, 0, 2], 27.0, {"submitted": 1558193739.9845595, "started": 1558193739.9849124, "finished": 1558193739.99102}, {"loss": 0.01769911547102282, "info": {"x0": -2.31711564630823, "x1": 3.021661219036202, "x2": 7.093847053807567, "x3": -2.045167399634719, "x4": 1.368579052462792, "x5": 0.3431400945819885}}, null] +[[6, 0, 3], 27.0, {"submitted": 1558193739.9930568, "started": 1558193739.9934642, "finished": 1558193739.9998956}, {"loss": 0.019388575829139942, "info": {"x0": -2.346301452680032, "x1": 3.8423687528698407, "x2": 7.4970599710294135, "x3": -1.1132445797826835, "x4": 1.272890193103318, "x5": 0.25663496391326573}}, null] +[[7, 0, 0], 27.0, {"submitted": 1558193740.0029533, "started": 1558193740.0032828, "finished": 1558193740.0098681}, {"loss": 0.835076427940438, "info": {"x0": -4.719282783950565, "x1": 7.5358702295642, "x2": 4.560987167046123, "x3": -1.257405483182919, "x4": 2.609839946188622, "x5": 0.028700751569309124}}, null] +[[7, 0, 1], 27.0, {"submitted": 1558193740.0644102, "started": 1558193740.0649111, "finished": 1558193740.0719013}, {"loss": 0.0185036205037026, "info": {"x0": -2.3021916236828255, "x1": 3.169659707571367, "x2": 6.695848772729429, "x3": -2.8948486542288774, "x4": 1.2626478060342685, "x5": 0.3191344345600217}}, null] +[[7, 0, 2], 27.0, {"submitted": 1558193740.075383, "started": 1558193740.0757673, "finished": 1558193740.0817764}, {"loss": 0.053821402255892256, "info": {"x0": -2.7932585351852484, "x1": 5.930904410697141, "x2": 4.67786613779257, "x3": -2.1453474214955217, "x4": 2.0115279405038735, "x5": 0.28165072152177795}}, null] +[[7, 0, 3], 27.0, {"submitted": 1558193740.1354408, "started": 1558193740.135829, "finished": 1558193740.1415403}, {"loss": 0.021158489026279113, "info": {"x0": -2.433798536949912, "x1": 3.420294492012524, "x2": 6.446768599455935, "x3": -3.741026217676792, "x4": 1.3424632970512247, "x5": 0.4564223646063651}}, null] +[[8, 0, 0], 1.0, {"submitted": 1558193740.1976762, "started": 1558193740.1981194, "finished": 1558193740.203637}, {"loss": 0.04810941337292364, "info": {"x0": -2.1298044286736957, "x1": 3.670633097332758, "x2": 7.031010103282238, "x3": -2.2923125641714757, "x4": 1.4067029011516088, "x5": 0.38288659404181885}}, null] +[[8, 0, 1], 1.0, {"submitted": 1558193740.2598894, "started": 1558193740.2602935, "finished": 1558193740.2657583}, {"loss": 0.027433628438464686, "info": {"x0": -2.3590221019383826, "x1": 4.86695353699277, "x2": 6.985119429218819, "x3": -2.060966527363486, "x4": 1.4667693957485022, "x5": 0.47082918220128867}}, null] +[[8, 0, 2], 1.0, {"submitted": 1558193740.2681274, "started": 1558193740.2686877, "finished": 1558193740.276085}, {"loss": 0.8034593718613431, "info": {"x0": -4.46970584823727, "x1": 7.2469242571033785, "x2": 6.228396216052795, "x3": -2.572578579409124, "x4": 2.5576647183451384, "x5": 0.19361947863660428}}, null] +[[8, 0, 3], 1.0, {"submitted": 1558193740.3305776, "started": 1558193740.331047, "finished": 1558193740.3375976}, {"loss": 0.03354786757682469, "info": {"x0": -2.3636654623482785, "x1": 3.058971699672891, "x2": 6.693117177385674, "x3": -2.6908787761317168, "x4": 1.3942813802793654, "x5": 0.4123512943960284}}, null] +[[8, 0, 4], 1.0, {"submitted": 1558193740.3924422, "started": 1558193740.3928518, "finished": 1558193740.3993673}, {"loss": 0.024778763032784312, "info": {"x0": -2.307373095819419, "x1": 5.3612927084351, "x2": 7.166962918448927, "x3": -2.1319742743534533, "x4": 1.3368386542784727, "x5": 0.36519980942377206}}, null] +[[8, 0, 5], 1.0, {"submitted": 1558193740.4017413, "started": 1558193740.402193, "finished": 1558193740.4091718}, {"loss": 0.14867256114968158, "info": {"x0": -2.4068207939917206, "x1": 3.5994031055257136, "x2": 5.49262059222045, "x3": -3.5709564200767048, "x4": 4.976674148676276, "x5": 0.3556745033430046}}, null] +[[8, 0, 6], 1.0, {"submitted": 1558193740.4111235, "started": 1558193740.4114568, "finished": 1558193740.4185212}, {"loss": 0.07586484246453448, "info": {"x0": -2.036127524810445, "x1": 3.2877771974716277, "x2": 6.219452367759153, "x3": -3.9664245366999267, "x4": 3.8927529911311263, "x5": 0.09695008874714561}}, null] +[[8, 0, 7], 1.0, {"submitted": 1558193740.4800253, "started": 1558193740.4819415, "finished": 1558193740.4937387}, {"loss": 0.034271925121953414, "info": {"x0": -2.375933511410664, "x1": 3.3984247556801126, "x2": 7.224087942423143, "x3": -3.062884671398991, "x4": 1.3125255037964947, "x5": 0.3157527698513613}}, null] +[[8, 0, 8], 1.0, {"submitted": 1558193740.495979, "started": 1558193740.4963992, "finished": 1558193740.509884}, {"loss": 0.2233306472807859, "info": {"x0": -2.6532335359958834, "x1": 6.797991269483795, "x2": 6.8604659389040705, "x3": -2.657837673706631, "x4": 4.919796698308448, "x5": 0.46886086789390724}}, null] +[[8, 0, 9], 1.0, {"submitted": 1558193740.5120418, "started": 1558193740.51248, "finished": 1558193740.5288742}, {"loss": 0.04979886862892156, "info": {"x0": -2.2311849417649565, "x1": 4.4100883334865735, "x2": 7.125531530320582, "x3": -1.1476262937486883, "x4": 4.459987498881224, "x5": 0.2447723034385732}}, null] +[[8, 0, 10], 1.0, {"submitted": 1558193740.5323634, "started": 1558193740.5328891, "finished": 1558193740.5444362}, {"loss": 0.6694288042734347, "info": {"x0": -4.3072367732517804, "x1": 6.6628232623386205, "x2": 5.912780295927329, "x3": -2.937967038612935, "x4": 2.4827499897316767, "x5": 0.025340655876139262}}, null] +[[8, 0, 11], 1.0, {"submitted": 1558193740.638962, "started": 1558193740.6395957, "finished": 1558193740.6473649}, {"loss": 0.04183427234474729, "info": {"x0": -2.0038746603450153, "x1": 6.872966387343056, "x2": 7.098845519487662, "x3": -2.9651461935053263, "x4": 1.5909770727540782, "x5": 0.4378445098760766}}, null] +[[8, 0, 12], 1.0, {"submitted": 1558193740.749682, "started": 1558193740.7504487, "finished": 1558193740.7579272}, {"loss": 0.0380530983617204, "info": {"x0": -2.4324774376091542, "x1": 3.6388606968789663, "x2": 6.459004880091742, "x3": -2.375805254153211, "x4": 1.400118754775212, "x5": 0.36360757970417806}}, null] +[[8, 0, 13], 1.0, {"submitted": 1558193740.7600036, "started": 1558193740.7603753, "finished": 1558193740.7723012}, {"loss": 0.4696701471328928, "info": {"x0": -4.031560944459173, "x1": 3.0704645348056374, "x2": 6.009960941266117, "x3": -1.8115866294272944, "x4": 1.1960510740938664, "x5": 0.23154630960189243}}, null] +[[8, 0, 14], 1.0, {"submitted": 1558193740.8780146, "started": 1558193740.8784254, "finished": 1558193740.8881307}, {"loss": 0.03403057170700663, "info": {"x0": -2.420701293739088, "x1": 3.7652992798789104, "x2": 6.739793565948383, "x3": -2.224583621957462, "x4": 1.2820559500716693, "x5": 0.3418483231076888}}, null] +[[8, 0, 15], 1.0, {"submitted": 1558193740.890447, "started": 1558193740.8909957, "finished": 1558193740.9066107}, {"loss": 0.8834271921697564, "info": {"x0": -4.966359207114904, "x1": 6.3641811889737605, "x2": 5.860416779848361, "x3": -3.3940746020910555, "x4": 2.7532720234936945, "x5": 0.09177199689121729}}, null] +[[8, 0, 16], 1.0, {"submitted": 1558193740.9789853, "started": 1558193740.9794111, "finished": 1558193740.9855645}, {"loss": 0.02815768643434453, "info": {"x0": -2.2062769426966575, "x1": 4.153484298047036, "x2": 7.3779150408977365, "x3": -2.8875532873540273, "x4": 1.3737814972381275, "x5": 0.08028105248142527}}, null] +[[8, 0, 17], 1.0, {"submitted": 1558193740.9881408, "started": 1558193740.9885561, "finished": 1558193740.99593}, {"loss": 0.8576830240327652, "info": {"x0": -4.499922246022661, "x1": 7.180998543521754, "x2": 7.9465769896853296, "x3": -3.0717229182620027, "x4": 4.713029741760925, "x5": 0.388017469739253}}, null] +[[8, 0, 18], 1.0, {"submitted": 1558193741.0617156, "started": 1558193741.0620794, "finished": 1558193741.0692708}, {"loss": 0.02847948774923168, "info": {"x0": -2.3702536367544327, "x1": 4.483867803653296, "x2": 6.80045336861101, "x3": -2.4447444486629824, "x4": 1.4270657726046065, "x5": 0.4934787994369676}}, null] +[[8, 0, 19], 1.0, {"submitted": 1558193741.0719926, "started": 1558193741.0723488, "finished": 1558193741.0799143}, {"loss": 0.6154464969137265, "info": {"x0": -3.371931195442095, "x1": 4.583126544813702, "x2": 4.085168586901034, "x3": -0.2246001519071652, "x4": 4.812033011538262, "x5": 0.15256512330891459}}, null] +[[8, 0, 20], 1.0, {"submitted": 1558193741.0844486, "started": 1558193741.0854897, "finished": 1558193741.0975363}, {"loss": 0.40056314300131335, "info": {"x0": -3.776037740672992, "x1": 3.5298097412853187, "x2": 6.221878375274707, "x3": -0.3202233326297508, "x4": 1.553903739247021, "x5": 0.38559987168439747}}, null] +[[8, 0, 21], 1.0, {"submitted": 1558193741.1654823, "started": 1558193741.1658816, "finished": 1558193741.1745324}, {"loss": 0.02864038995073768, "info": {"x0": -2.360748518165469, "x1": 3.6372179648490044, "x2": 7.52814917395348, "x3": -3.763338639963921, "x4": 1.2213758679725946, "x5": 0.1368268061389377}}, null] +[[8, 0, 22], 1.0, {"submitted": 1558193741.1787164, "started": 1558193741.1792867, "finished": 1558193741.1886501}, {"loss": 0.560740141973367, "info": {"x0": -3.3999632798872663, "x1": 4.760488367047667, "x2": 4.316347651402116, "x3": -1.0676259396035603, "x4": 4.64047252589354, "x5": 0.15480650706778476}}, null] +[[8, 0, 23], 1.0, {"submitted": 1558193741.1955457, "started": 1558193741.1963863, "finished": 1558193741.205641}, {"loss": 0.5012872038185835, "info": {"x0": -3.4214869389819706, "x1": 6.763553472967061, "x2": 4.03782615807143, "x3": -1.4077963919653054, "x4": 3.159927858648185, "x5": 0.0023744707047752}}, null] +[[8, 0, 24], 1.0, {"submitted": 1558193741.27892, "started": 1558193741.2793548, "finished": 1558193741.2875102}, {"loss": 0.027755426919373972, "info": {"x0": -2.097983001698869, "x1": 5.469383906570386, "x2": 6.5385450395211215, "x3": -3.442654168477087, "x4": 1.5640425603570989, "x5": 0.21420490001010842}}, null] +[[8, 0, 25], 1.0, {"submitted": 1558193741.3615668, "started": 1558193741.3619857, "finished": 1558193741.3702748}, {"loss": 0.02260659711550822, "info": {"x0": -2.1038049269881176, "x1": 7.179480548454612, "x2": 7.443925722805974, "x3": -2.9232759769521195, "x4": 1.4456213647453264, "x5": 0.11159833560734506}}, null] +[[8, 0, 26], 1.0, {"submitted": 1558193741.456228, "started": 1558193741.456752, "finished": 1558193741.464684}, {"loss": 0.030410302754668384, "info": {"x0": -2.331245478007352, "x1": 4.255973933602528, "x2": 6.679098240848425, "x3": -2.741823908409042, "x4": 1.3899078315434472, "x5": 0.3826698858366958}}, null] +[[8, 0, 1], 3.0, {"submitted": 1558193741.469802, "started": 1558193741.4703982, "finished": 1558193741.4783037}, {"loss": 0.02244569532639159, "info": {"x0": -2.3590221019383826, "x1": 4.86695353699277, "x2": 6.985119429218819, "x3": -2.060966527363486, "x4": 1.4667693957485022, "x5": 0.47082918220128867}}, null] +[[8, 0, 3], 3.0, {"submitted": 1558193741.479819, "started": 1558193741.4801805, "finished": 1558193741.4951084}, {"loss": 0.024456958682519826, "info": {"x0": -2.3636654623482785, "x1": 3.058971699672891, "x2": 6.693117177385674, "x3": -2.6908787761317168, "x4": 1.3942813802793654, "x5": 0.4123512943960284}}, null] +[[8, 0, 4], 3.0, {"submitted": 1558193741.4967117, "started": 1558193741.497206, "finished": 1558193741.5067718}, {"loss": 0.02099758739060966, "info": {"x0": -2.307373095819419, "x1": 5.3612927084351, "x2": 7.166962918448927, "x3": -2.1319742743534533, "x4": 1.3368386542784727, "x5": 0.36519980942377206}}, null] +[[8, 0, 16], 3.0, {"submitted": 1558193741.508093, "started": 1558193741.5084083, "finished": 1558193741.5153823}, {"loss": 0.02075623864621189, "info": {"x0": -2.2062769426966575, "x1": 4.153484298047036, "x2": 7.3779150408977365, "x3": -2.8875532873540273, "x4": 1.3737814972381275, "x5": 0.08028105248142527}}, null] +[[8, 0, 18], 3.0, {"submitted": 1558193741.517115, "started": 1558193741.5177853, "finished": 1558193741.5252945}, {"loss": 0.024939663105210473, "info": {"x0": -2.3702536367544327, "x1": 4.483867803653296, "x2": 6.80045336861101, "x3": -2.4447444486629824, "x4": 1.4270657726046065, "x5": 0.4934787994369676}}, null] +[[8, 0, 21], 3.0, {"submitted": 1558193741.5269778, "started": 1558193741.5273354, "finished": 1558193741.5353475}, {"loss": 0.022204348111670547, "info": {"x0": -2.360748518165469, "x1": 3.6372179648490044, "x2": 7.52814917395348, "x3": -3.763338639963921, "x4": 1.2213758679725946, "x5": 0.1368268061389377}}, null] +[[8, 0, 24], 3.0, {"submitted": 1558193741.537281, "started": 1558193741.5376048, "finished": 1558193741.5435147}, {"loss": 0.02188254053901494, "info": {"x0": -2.097983001698869, "x1": 5.469383906570386, "x2": 6.5385450395211215, "x3": -3.442654168477087, "x4": 1.5640425603570989, "x5": 0.21420490001010842}}, null] +[[8, 0, 25], 3.0, {"submitted": 1558193741.5451193, "started": 1558193741.5455153, "finished": 1558193741.5536482}, {"loss": 0.020836687744958504, "info": {"x0": -2.1038049269881176, "x1": 7.179480548454612, "x2": 7.443925722805974, "x3": -2.9232759769521195, "x4": 1.4456213647453264, "x5": 0.11159833560734506}}, null] +[[8, 0, 26], 3.0, {"submitted": 1558193741.5551865, "started": 1558193741.5556388, "finished": 1558193741.5615273}, {"loss": 0.02485921571835912, "info": {"x0": -2.331245478007352, "x1": 4.255973933602528, "x2": 6.679098240848425, "x3": -2.741823908409042, "x4": 1.3899078315434472, "x5": 0.3826698858366958}}, null] +[[8, 0, 4], 9.0, {"submitted": 1558193741.5629303, "started": 1558193741.5632412, "finished": 1558193741.5713098}, {"loss": 0.020917136910838276, "info": {"x0": -2.307373095819419, "x1": 5.3612927084351, "x2": 7.166962918448927, "x3": -2.1319742743534533, "x4": 1.3368386542784727, "x5": 0.36519980942377206}}, null] +[[8, 0, 16], 9.0, {"submitted": 1558193741.5727599, "started": 1558193741.5731237, "finished": 1558193741.58188}, {"loss": 0.019388578922059974, "info": {"x0": -2.2062769426966575, "x1": 4.153484298047036, "x2": 7.3779150408977365, "x3": -2.8875532873540273, "x4": 1.3737814972381275, "x5": 0.08028105248142527}}, null] +[[8, 0, 25], 9.0, {"submitted": 1558193741.5840375, "started": 1558193741.5845077, "finished": 1558193741.5910654}, {"loss": 0.02115848964486311, "info": {"x0": -2.1038049269881176, "x1": 7.179480548454612, "x2": 7.443925722805974, "x3": -2.9232759769521195, "x4": 1.4456213647453264, "x5": 0.11159833560734506}}, null] +[[8, 0, 16], 27.0, {"submitted": 1558193741.593065, "started": 1558193741.5935812, "finished": 1558193741.6014743}, {"loss": 0.0189863262690562, "info": {"x0": -2.2062769426966575, "x1": 4.153484298047036, "x2": 7.3779150408977365, "x3": -2.8875532873540273, "x4": 1.3737814972381275, "x5": 0.08028105248142527}}, null] +[[9, 0, 0], 3.0, {"submitted": 1558193741.6767912, "started": 1558193741.6771998, "finished": 1558193741.6840093}, {"loss": 0.02590506760132283, "info": {"x0": -2.236096206930765, "x1": 3.7183178751065364, "x2": 6.706095622510873, "x3": -1.641240520422043, "x4": 1.3919872490628724, "x5": 0.4479147474411821}}, null] +[[9, 0, 1], 3.0, {"submitted": 1558193741.7449393, "started": 1558193741.745319, "finished": 1558193741.753148}, {"loss": 0.021399841621242432, "info": {"x0": -2.2103337953869184, "x1": 3.162338549608063, "x2": 7.634566234734862, "x3": -3.267495393635193, "x4": 1.3114225271966025, "x5": 0.07185826517032443}}, null] +[[9, 0, 2], 3.0, {"submitted": 1558193741.816474, "started": 1558193741.8169374, "finished": 1558193741.8251424}, {"loss": 0.023572004834011707, "info": {"x0": -2.3766174413801386, "x1": 3.602195205098199, "x2": 6.712854673794874, "x3": -2.3109618023361618, "x4": 1.4086110319609388, "x5": 0.3491011748199327}}, null] +[[9, 0, 3], 3.0, {"submitted": 1558193741.8273003, "started": 1558193741.8293703, "finished": 1558193741.837207}, {"loss": 0.7403861592493034, "info": {"x0": -4.32553626077053, "x1": 3.367951802378519, "x2": 4.88653523160224, "x3": -1.5261374613029357, "x4": 1.888459592458807, "x5": 0.42288787225410884}}, null] +[[9, 0, 4], 3.0, {"submitted": 1558193741.8398216, "started": 1558193741.8402014, "finished": 1558193741.8485818}, {"loss": 0.8839098941296495, "info": {"x0": -5.762298160518499, "x1": 5.011371143181442, "x2": 6.147675143588374, "x3": -3.977002119092416, "x4": 3.619466090426699, "x5": 0.1729835514844451}}, null] +[[9, 0, 5], 3.0, {"submitted": 1558193741.852055, "started": 1558193741.8525908, "finished": 1558193741.8591385}, {"loss": 0.5242156043753615, "info": {"x0": -4.377590021238859, "x1": 4.640066265838553, "x2": 6.15947922118397, "x3": -3.932374248915275, "x4": 2.4455833162055036, "x5": 0.27303045078457905}}, null] +[[9, 0, 6], 3.0, {"submitted": 1558193741.8619297, "started": 1558193741.862257, "finished": 1558193741.8693638}, {"loss": 0.024054706883066056, "info": {"x0": -2.217431904619031, "x1": 3.7514401717357644, "x2": 7.40543444625604, "x3": -2.406487737595708, "x4": 1.0636282572986642, "x5": 0.19697926896131351}}, null] +[[9, 0, 7], 3.0, {"submitted": 1558193741.8713763, "started": 1558193741.8717227, "finished": 1558193741.8781798}, {"loss": 0.04062751295675894, "info": {"x0": -3.111289646451794, "x1": 4.991363883374433, "x2": 4.917402933366928, "x3": -1.115419110129427, "x4": 1.422947869096058, "x5": 0.24624549296114018}}, null] +[[9, 0, 8], 3.0, {"submitted": 1558193741.8811934, "started": 1558193741.8816867, "finished": 1558193741.8920202}, {"loss": 0.8946902637142907, "info": {"x0": -5.661918905988147, "x1": 4.144256655144675, "x2": 5.999825233606048, "x3": -0.45250073716572814, "x4": 4.264917479780959, "x5": 0.07545240404054643}}, null] +[[9, 0, 1], 9.0, {"submitted": 1558193741.8937478, "started": 1558193741.8941174, "finished": 1558193741.9011536}, {"loss": 0.0185036225944206, "info": {"x0": -2.2103337953869184, "x1": 3.162338549608063, "x2": 7.634566234734862, "x3": -3.267495393635193, "x4": 1.3114225271966025, "x5": 0.07185826517032443}}, null] +[[9, 0, 2], 9.0, {"submitted": 1558193741.902816, "started": 1558193741.903155, "finished": 1558193741.910385}, {"loss": 0.01979083000223002, "info": {"x0": -2.3766174413801386, "x1": 3.602195205098199, "x2": 6.712854673794874, "x3": -2.3109618023361618, "x4": 1.4086110319609388, "x5": 0.3491011748199327}}, null] +[[9, 0, 6], 9.0, {"submitted": 1558193741.9119253, "started": 1558193741.9124784, "finished": 1558193741.9249377}, {"loss": 0.020595335126019056, "info": {"x0": -2.217431904619031, "x1": 3.7514401717357644, "x2": 7.40543444625604, "x3": -2.406487737595708, "x4": 1.0636282572986642, "x5": 0.19697926896131351}}, null] +[[9, 0, 1], 27.0, {"submitted": 1558193741.9267416, "started": 1558193741.927135, "finished": 1558193741.9383874}, {"loss": 0.01745776556138543, "info": {"x0": -2.2103337953869184, "x1": 3.162338549608063, "x2": 7.634566234734862, "x3": -3.267495393635193, "x4": 1.3114225271966025, "x5": 0.07185826517032443}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/hyperband/configs.json new file mode 100644 index 0000000..38f519c --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/hyperband/configs.json @@ -0,0 +1,128 @@ +[[0, 0, 0], {"x0": -5.907164916547581, "x1": 3.012587711721168, "x2": 5.329338404443453, "x3": -3.694538870761341, "x4": 2.067440050828876, "x5": 0.04479776333592467}, {}] +[[0, 0, 1], {"x0": -2.337521059967979, "x1": 5.693663866825011, "x2": 6.487006471052461, "x3": -0.3570644601980817, "x4": 3.718696900102624, "x5": 0.09554532289856194}, {}] +[[0, 0, 2], {"x0": -4.774768112994153, "x1": 5.987414681042857, "x2": 4.292866966972667, "x3": -3.0846444751450752, "x4": 4.941090516349877, "x5": 0.1341497548038919}, {}] +[[0, 0, 3], {"x0": -2.4176781672924172, "x1": 3.9248820638840276, "x2": 5.559438643397724, "x3": -3.793531553356361, "x4": 4.67041052735572, "x5": 0.19045903361383404}, {}] +[[0, 0, 4], {"x0": -3.3271411244788145, "x1": 3.0846143003633433, "x2": 6.2264796596500975, "x3": -2.042332135448614, "x4": 4.039503635309541, "x5": 0.22778419048621595}, {}] +[[0, 0, 5], {"x0": -4.059752421194538, "x1": 3.370375134279921, "x2": 6.878129928864732, "x3": -1.6919848685539978, "x4": 3.3919248502178183, "x5": 0.16396709389623515}, {}] +[[0, 0, 6], {"x0": -2.517457022748764, "x1": 6.5686312159343885, "x2": 7.577044014682766, "x3": -0.6055383711026177, "x4": 1.8953914926542246, "x5": 0.4886081351666572}, {}] +[[0, 0, 7], {"x0": -2.7760216363089154, "x1": 6.811188003790331, "x2": 4.145416963892231, "x3": -2.4285815823696417, "x4": 4.041279493736642, "x5": 0.04577518913437528}, {}] +[[0, 0, 8], {"x0": -5.372019002766174, "x1": 4.061242821195563, "x2": 6.827433950485053, "x3": -0.8783473823953192, "x4": 3.97322716872017, "x5": 0.055986511048564114}, {}] +[[0, 0, 9], {"x0": -5.158919588696982, "x1": 6.541685219743728, "x2": 7.3257814751962265, "x3": -1.257578386011287, "x4": 1.8616736739290194, "x5": 0.3218280273063098}, {}] +[[0, 0, 10], {"x0": -4.3712133959528465, "x1": 3.5735083977793787, "x2": 4.12479472272436, "x3": -3.799317378768959, "x4": 2.2333736047556396, "x5": 0.1886327004797444}, {}] +[[0, 0, 11], {"x0": -2.695190923369731, "x1": 5.76279467642829, "x2": 7.670772253079106, "x3": -0.4485286600681815, "x4": 2.164424269991231, "x5": 0.2957607923596307}, {}] +[[0, 0, 12], {"x0": -3.635620094174538, "x1": 5.300826467550021, "x2": 7.3196963502901085, "x3": -3.256047408979675, "x4": 4.098973103593457, "x5": 0.25580286107688044}, {}] +[[0, 0, 13], {"x0": -4.1327867415711275, "x1": 4.857724661242351, "x2": 6.024049727323213, "x3": -2.988545175577942, "x4": 2.318652998767027, "x5": 0.4423187220697012}, {}] +[[0, 0, 14], {"x0": -2.4470966550644415, "x1": 4.5858830115290585, "x2": 5.615193204110437, "x3": -2.786570676871828, "x4": 4.151589481101671, "x5": 0.29800873572923814}, {}] +[[0, 0, 15], {"x0": -4.3455810740695675, "x1": 4.317309737762532, "x2": 5.137290384718105, "x3": -1.4167014527712607, "x4": 1.9779039087009935, "x5": 0.10109754671660515}, {}] +[[0, 0, 16], {"x0": -2.508104952833063, "x1": 5.071731970836464, "x2": 5.8669945884766825, "x3": -1.0091835496152362, "x4": 2.02888129774103, "x5": 0.3494271135091462}, {}] +[[0, 0, 17], {"x0": -5.54099034960292, "x1": 5.342865897399733, "x2": 5.033362751586235, "x3": -1.2338715111127452, "x4": 4.053149894391979, "x5": 0.06475703978782332}, {}] +[[0, 0, 18], {"x0": -4.853104720208203, "x1": 3.750155596685364, "x2": 4.96205768934063, "x3": -2.253699147553935, "x4": 1.9212275137889505, "x5": 0.4744373815962315}, {}] +[[0, 0, 19], {"x0": -2.1228418761281187, "x1": 6.210728362319026, "x2": 4.230219148733148, "x3": -3.9705033160007495, "x4": 4.5009865961138065, "x5": 0.43127804992903085}, {}] +[[0, 0, 20], {"x0": -5.903020255938026, "x1": 6.056668540481294, "x2": 5.862792986796549, "x3": -3.7398672576643026, "x4": 1.4208752509909428, "x5": 0.07985755064246358}, {}] +[[0, 0, 21], {"x0": -5.42240043446516, "x1": 3.4156495691792172, "x2": 6.341000925946763, "x3": -2.9359489133781875, "x4": 3.30179031240321, "x5": 0.18121530164511812}, {}] +[[0, 0, 22], {"x0": -5.810320346101154, "x1": 3.2053419854320273, "x2": 6.382756274354556, "x3": -0.8140781244518798, "x4": 1.8473129634801446, "x5": 0.20723714433629142}, {}] +[[0, 0, 23], {"x0": -3.1880495025025977, "x1": 3.8970144286569774, "x2": 5.978170655563706, "x3": -2.8053280718178844, "x4": 2.2534000900229088, "x5": 0.018931446725162726}, {}] +[[0, 0, 24], {"x0": -4.03671233204577, "x1": 6.992173203678061, "x2": 4.875062884887007, "x3": -1.027736973891546, "x4": 3.893521291938143, "x5": 0.48741087690843476}, {}] +[[0, 0, 25], {"x0": -5.221740551514749, "x1": 3.6328235067352006, "x2": 7.6928138403601025, "x3": -2.3016194647713286, "x4": 1.2411166148130834, "x5": 0.4343283693895245}, {}] +[[0, 0, 26], {"x0": -5.909261090760644, "x1": 7.180842591017942, "x2": 6.623323461844936, "x3": -3.93197537995038, "x4": 2.7336468368177465, "x5": 0.2183996310271139}, {}] +[[1, 0, 0], {"x0": -3.7654592168121463, "x1": 3.824621325081752, "x2": 4.294410323643927, "x3": -1.6899550556571725, "x4": 3.7135350376142395, "x5": 0.08111630587141594}, {}] +[[1, 0, 1], {"x0": -4.511759484629741, "x1": 6.007403054439775, "x2": 5.5526023075917434, "x3": -1.8494959901061088, "x4": 1.2406232870798863, "x5": 0.2714533739770754}, {}] +[[1, 0, 2], {"x0": -3.3623555613432, "x1": 7.227729061175098, "x2": 4.279456843527834, "x3": -0.1827738059806574, "x4": 2.6273747838111143, "x5": 0.3842930350537312}, {}] +[[1, 0, 3], {"x0": -5.901180975535116, "x1": 5.238045516543851, "x2": 4.688718581602742, "x3": -3.156606440689844, "x4": 1.0169043547990264, "x5": 0.003636953762041928}, {}] +[[1, 0, 4], {"x0": -5.610113358006831, "x1": 5.171395919537423, "x2": 6.431225148520527, "x3": -2.7846176700033625, "x4": 4.566594995186373, "x5": 0.1627045108029445}, {}] +[[1, 0, 5], {"x0": -4.750008126694509, "x1": 5.5271729866542945, "x2": 6.430910747844696, "x3": -0.016379728769283286, "x4": 4.229997646777319, "x5": 0.49207777498425764}, {}] +[[1, 0, 6], {"x0": -2.1301540989820547, "x1": 3.744197029496343, "x2": 4.238186941663056, "x3": -1.2851246740760236, "x4": 1.685747135900073, "x5": 0.09430690434034661}, {}] +[[1, 0, 7], {"x0": -5.9445454196180325, "x1": 4.963049779600166, "x2": 6.259303695297344, "x3": -2.5981679302285343, "x4": 1.9629300567902574, "x5": 0.4249721719669007}, {}] +[[1, 0, 8], {"x0": -4.855374732542892, "x1": 7.619807211866467, "x2": 4.5290654446959415, "x3": -3.5119330317080606, "x4": 2.832791628863171, "x5": 0.06391131782497234}, {}] +[[2, 0, 0], {"x0": -2.6247973394515234, "x1": 3.125760945494953, "x2": 6.497747805715555, "x3": -3.2141578744673516, "x4": 3.1855879448851083, "x5": 0.31351982888338864}, {}] +[[2, 0, 1], {"x0": -5.988586613067095, "x1": 7.50950304888817, "x2": 5.880636235709908, "x3": -2.301111419636633, "x4": 3.6267279436737043, "x5": 0.07587214421021798}, {}] +[[2, 0, 2], {"x0": -5.328359849474763, "x1": 4.6447244158336725, "x2": 5.299478148104775, "x3": -0.3021726914162741, "x4": 3.0718459206109894, "x5": 0.005902938608420227}, {}] +[[2, 0, 3], {"x0": -3.8757255738567573, "x1": 5.097122015566341, "x2": 4.874316514147159, "x3": -1.8344391912478595, "x4": 3.3992133222655316, "x5": 0.26607748140966464}, {}] +[[2, 0, 4], {"x0": -4.0884059029812345, "x1": 6.051702657923309, "x2": 6.866905657203804, "x3": -2.3976891447535555, "x4": 2.0494092163883226, "x5": 0.1455632595301164}, {}] +[[2, 0, 5], {"x0": -4.902477964816382, "x1": 3.463388300941811, "x2": 7.040749783160484, "x3": -1.215436183530953, "x4": 2.2379075286774075, "x5": 0.3327558759536472}, {}] +[[3, 0, 0], {"x0": -4.17012335548967, "x1": 3.0618718735076627, "x2": 7.014696453644638, "x3": -3.983020467120313, "x4": 2.755392433444747, "x5": 0.3732928031463163}, {}] +[[3, 0, 1], {"x0": -4.916015738200347, "x1": 6.1240302782481, "x2": 7.565153601764176, "x3": -1.558067815697226, "x4": 3.08591518726781, "x5": 0.24068078431496287}, {}] +[[3, 0, 2], {"x0": -4.611688464017787, "x1": 4.6687585592865, "x2": 4.159685543213225, "x3": -1.492372893809888, "x4": 1.6852057717140188, "x5": 0.4685746498605942}, {}] +[[3, 0, 3], {"x0": -4.313507249779139, "x1": 5.114895408756475, "x2": 4.281809185606173, "x3": -3.956783100235523, "x4": 4.1692845293420175, "x5": 0.36488229769973946}, {}] +[[4, 0, 0], {"x0": -5.438158066470399, "x1": 5.175332374528912, "x2": 5.703660043348613, "x3": -0.7172951720633001, "x4": 2.0560361640336366, "x5": 0.43372207494021553}, {}] +[[4, 0, 1], {"x0": -2.123446608633106, "x1": 5.862271136952997, "x2": 4.236216297488646, "x3": -2.186190688398806, "x4": 3.550538946468391, "x5": 0.25544573427890527}, {}] +[[4, 0, 2], {"x0": -5.893649481937504, "x1": 3.633386685001013, "x2": 7.707094527337013, "x3": -0.05180063496738052, "x4": 1.7906433896573928, "x5": 0.17388720892930892}, {}] +[[4, 0, 3], {"x0": -3.2386583305488683, "x1": 3.454940705438809, "x2": 5.069361272513589, "x3": -1.2750424928625295, "x4": 4.16236218250394, "x5": 0.3463810312133069}, {}] +[[4, 0, 4], {"x0": -3.292002747395182, "x1": 7.830971820672916, "x2": 7.1954752995521005, "x3": -1.0132223313216335, "x4": 3.70726489610284, "x5": 0.2440744420480725}, {}] +[[4, 0, 5], {"x0": -4.004845066593584, "x1": 5.2977435915449345, "x2": 6.545644905881961, "x3": -0.9597833280115333, "x4": 4.663360108875496, "x5": 0.09224762807402292}, {}] +[[4, 0, 6], {"x0": -2.6445970510615786, "x1": 4.785623180258756, "x2": 4.752918948678593, "x3": -2.4490652417433045, "x4": 2.5570870381307746, "x5": 0.3199672625419437}, {}] +[[4, 0, 7], {"x0": -4.645568904904447, "x1": 6.960129645157174, "x2": 6.0365845219130705, "x3": -1.2351840283809152, "x4": 2.685981412122626, "x5": 0.4908480128004062}, {}] +[[4, 0, 8], {"x0": -2.3919817949589883, "x1": 5.561345846697439, "x2": 7.803747446926196, "x3": -2.5587104035557724, "x4": 4.058182430695123, "x5": 0.4001358092823865}, {}] +[[4, 0, 9], {"x0": -5.2329279662213795, "x1": 5.442132485380924, "x2": 7.3187540964179085, "x3": -3.172646671230326, "x4": 4.532583181551015, "x5": 0.26616113789646517}, {}] +[[4, 0, 10], {"x0": -4.774088916158659, "x1": 7.443960523509336, "x2": 6.615945608509831, "x3": -1.3698692571587552, "x4": 3.8113773484508333, "x5": 0.30218657091188234}, {}] +[[4, 0, 11], {"x0": -4.3430434305974455, "x1": 7.28062219865324, "x2": 6.9422028686344674, "x3": -1.9703265018224614, "x4": 2.6902007515810094, "x5": 0.017901944549458038}, {}] +[[4, 0, 12], {"x0": -2.160259394439993, "x1": 7.80566602542717, "x2": 7.741312624133895, "x3": -1.6957132777350474, "x4": 4.7807332366305175, "x5": 0.20725121558936216}, {}] +[[4, 0, 13], {"x0": -5.803313738564272, "x1": 4.69844941938222, "x2": 5.910868737022559, "x3": -0.03592486697983688, "x4": 3.381052405735786, "x5": 0.1579659856112573}, {}] +[[4, 0, 14], {"x0": -5.007631218489252, "x1": 5.537126414966833, "x2": 4.307616182282045, "x3": -3.085669137990395, "x4": 3.808201189790106, "x5": 0.3761368845736803}, {}] +[[4, 0, 15], {"x0": -2.3902811889703037, "x1": 4.284952509132864, "x2": 6.558777199649649, "x3": -2.2706917840370444, "x4": 2.2862231224717116, "x5": 0.4853782475080315}, {}] +[[4, 0, 16], {"x0": -3.9937755780494064, "x1": 5.7197036289051155, "x2": 7.705481222391674, "x3": -1.2701723209245448, "x4": 1.4850301309179845, "x5": 0.019421620359063974}, {}] +[[4, 0, 17], {"x0": -5.3486588980759535, "x1": 7.998537581185826, "x2": 7.357154129185126, "x3": -3.497983006747709, "x4": 2.7282723279027308, "x5": 0.028514534165015037}, {}] +[[4, 0, 18], {"x0": -4.859136346659572, "x1": 6.479362086209313, "x2": 5.464735414144505, "x3": -1.669480713123272, "x4": 1.3472581650504014, "x5": 0.0653414382220267}, {}] +[[4, 0, 19], {"x0": -3.2610364470700226, "x1": 3.254369911727724, "x2": 5.817806299044777, "x3": -0.22445291342257656, "x4": 1.7488143311035986, "x5": 0.007583998319328045}, {}] +[[4, 0, 20], {"x0": -2.5491376849975795, "x1": 6.6455326214579085, "x2": 5.115187444606411, "x3": -2.488004453886234, "x4": 4.669836216270617, "x5": 0.15706654380846613}, {}] +[[4, 0, 21], {"x0": -2.006887034430723, "x1": 6.15753696375382, "x2": 4.6082597342570875, "x3": -1.8923953340828907, "x4": 4.14705001033105, "x5": 0.0660510953238479}, {}] +[[4, 0, 22], {"x0": -5.2783756009119305, "x1": 7.43248995132288, "x2": 5.970933683828897, "x3": -1.664434340639073, "x4": 2.6815933756984176, "x5": 0.3030135091125568}, {}] +[[4, 0, 23], {"x0": -4.135552716725888, "x1": 6.072500221515243, "x2": 7.291561116965518, "x3": -0.5560352793788641, "x4": 2.397686303323488, "x5": 0.2920491709903958}, {}] +[[4, 0, 24], {"x0": -4.386771040689647, "x1": 3.7568265289895932, "x2": 5.499123735253243, "x3": -0.15724018752225621, "x4": 1.919672724776054, "x5": 0.14881253356532853}, {}] +[[4, 0, 25], {"x0": -5.616623694480855, "x1": 3.813126843490771, "x2": 7.019453513199928, "x3": -0.3821341193485721, "x4": 2.196582684615663, "x5": 0.36861667900104206}, {}] +[[4, 0, 26], {"x0": -4.583277577281528, "x1": 7.056447250109092, "x2": 6.724532709225017, "x3": -3.983652843512973, "x4": 4.781297442103088, "x5": 0.49667562490891554}, {}] +[[5, 0, 0], {"x0": -3.525685702305275, "x1": 5.124482742557305, "x2": 7.259056819877767, "x3": -0.8223558747458846, "x4": 2.6938993583734674, "x5": 0.4112674534433585}, {}] +[[5, 0, 1], {"x0": -4.482838821162499, "x1": 5.3916108807396546, "x2": 6.207782373509113, "x3": -1.2941331066643134, "x4": 3.6576100627367305, "x5": 0.23603199482058285}, {}] +[[5, 0, 2], {"x0": -2.9159783057898783, "x1": 3.1754441261211266, "x2": 4.891527262236211, "x3": -2.5683348312914216, "x4": 4.757707343768841, "x5": 0.24570296951976656}, {}] +[[5, 0, 3], {"x0": -3.977036223367414, "x1": 4.815769761558523, "x2": 7.909122689140786, "x3": -0.5315023266803287, "x4": 1.7312675180543042, "x5": 0.3024613060473038}, {}] +[[5, 0, 4], {"x0": -2.657136562365808, "x1": 4.9972985009973305, "x2": 4.544558908782248, "x3": -3.226434035502383, "x4": 3.2263225558253046, "x5": 0.3076454003051158}, {}] +[[5, 0, 5], {"x0": -2.114556664544848, "x1": 5.985774164757983, "x2": 6.657851556263633, "x3": -0.01884383075677487, "x4": 4.051448247722323, "x5": 0.42972811280580625}, {}] +[[5, 0, 6], {"x0": -2.481660465791103, "x1": 5.789445926431373, "x2": 7.751949571306097, "x3": -1.5943732825245918, "x4": 3.947678861926527, "x5": 0.46214640410704455}, {}] +[[5, 0, 7], {"x0": -2.5256725155271216, "x1": 6.47949250779034, "x2": 7.912587499912027, "x3": -1.6159981358088271, "x4": 4.550430322563351, "x5": 0.19355315316657545}, {}] +[[5, 0, 8], {"x0": -5.705514554100446, "x1": 7.4713993233908536, "x2": 4.466283736441749, "x3": -1.0196851905188526, "x4": 3.916485383406379, "x5": 0.248078992836486}, {}] +[[6, 0, 0], {"x0": -2.04187431182727, "x1": 6.261287078166566, "x2": 4.896932540448574, "x3": -3.1066687025715614, "x4": 2.5573920279777944, "x5": 0.2845276591812279}, {}] +[[6, 0, 1], {"x0": -5.1287553655548495, "x1": 6.24920520744109, "x2": 7.272476375307687, "x3": -2.0547947306495864, "x4": 3.091023092410096, "x5": 0.13871090749678527}, {}] +[[6, 0, 2], {"x0": -3.3930256060026855, "x1": 4.923985890725794, "x2": 5.701936070029309, "x3": -0.9444039643422855, "x4": 1.5262796659376603, "x5": 0.2180804948512971}, {}] +[[6, 0, 3], {"x0": -3.9115188318365437, "x1": 6.985690282235401, "x2": 4.286179012357706, "x3": -3.5660481422740875, "x4": 3.6931328003746082, "x5": 0.18592564965730424}, {}] +[[6, 0, 4], {"x0": -4.1398227751250385, "x1": 6.354403201963902, "x2": 4.322837669655511, "x3": -0.4274395439707437, "x4": 3.6026988082189155, "x5": 0.06888107081488298}, {}] +[[6, 0, 5], {"x0": -5.910306502806936, "x1": 7.67642997061174, "x2": 5.524425920250907, "x3": -1.6496321603034962, "x4": 3.3108660481142187, "x5": 0.30710879434710886}, {}] +[[7, 0, 0], {"x0": -4.958826397179148, "x1": 5.870707411174923, "x2": 7.630720983007166, "x3": -1.6742981487728654, "x4": 3.29972990550137, "x5": 0.38134285472575175}, {}] +[[7, 0, 1], {"x0": -3.282422819219259, "x1": 4.421095920933759, "x2": 5.31420028160862, "x3": -0.22757629224650477, "x4": 3.712900322221337, "x5": 0.4532445040347985}, {}] +[[7, 0, 2], {"x0": -3.9758207642530143, "x1": 7.703002462181405, "x2": 4.637950429451185, "x3": -0.8692738089433054, "x4": 3.8620847191272714, "x5": 0.07888283052103084}, {}] +[[7, 0, 3], {"x0": -4.690766582840869, "x1": 5.497256700215855, "x2": 4.535453965170007, "x3": -3.356792255024408, "x4": 2.1000024312221384, "x5": 0.1716776173058132}, {}] +[[8, 0, 0], {"x0": -5.6429662638229034, "x1": 6.156424349615591, "x2": 4.619389906912948, "x3": -2.7850927494339883, "x4": 4.008117877840927, "x5": 0.2826978536617121}, {}] +[[8, 0, 1], {"x0": -2.6746581241666667, "x1": 5.864771444274403, "x2": 4.111656871073347, "x3": -3.8769199809945025, "x4": 1.1620454254127282, "x5": 0.0537219578646117}, {}] +[[8, 0, 2], {"x0": -4.2145836502478895, "x1": 5.747181420462408, "x2": 5.826310501598517, "x3": -2.5862680901199386, "x4": 3.3805605578082734, "x5": 0.32191163503393766}, {}] +[[8, 0, 3], {"x0": -5.336724634547257, "x1": 3.1918928972599447, "x2": 5.584110783630215, "x3": -3.9403499485040037, "x4": 1.1482925520809806, "x5": 0.014361328557955744}, {}] +[[8, 0, 4], {"x0": -2.3725886700630148, "x1": 4.640901642898202, "x2": 5.3247092018139615, "x3": -2.560577188385805, "x4": 2.5474015310859226, "x5": 0.3136794307719155}, {}] +[[8, 0, 5], {"x0": -2.84566209855539, "x1": 4.280175729826195, "x2": 5.6960543509018535, "x3": -1.7155944872579272, "x4": 2.0763291822680268, "x5": 0.2962023263508337}, {}] +[[8, 0, 6], {"x0": -2.838918303934485, "x1": 3.358681361502562, "x2": 5.453269466001837, "x3": -1.1265641925291638, "x4": 3.4648310368819604, "x5": 0.49121271295147545}, {}] +[[8, 0, 7], {"x0": -5.939513900894108, "x1": 6.750834971360015, "x2": 5.713029908301943, "x3": -3.532591456844824, "x4": 2.185507478954816, "x5": 0.4391626310073996}, {}] +[[8, 0, 8], {"x0": -2.632186997656502, "x1": 3.690745480370029, "x2": 4.324008249907591, "x3": -1.4785478628438455, "x4": 2.683891706209569, "x5": 0.03573788902785968}, {}] +[[8, 0, 9], {"x0": -2.64531852850133, "x1": 6.438859618806895, "x2": 7.135913716200761, "x3": -2.9975068878695117, "x4": 4.086941855032254, "x5": 0.30265519784713807}, {}] +[[8, 0, 10], {"x0": -4.464125423009763, "x1": 7.997215222886436, "x2": 4.247926065345117, "x3": -3.2322782410857913, "x4": 4.042684637961184, "x5": 0.13688413960338547}, {}] +[[8, 0, 11], {"x0": -5.402015248997014, "x1": 5.17770456507114, "x2": 7.211148336869589, "x3": -2.2871052925957036, "x4": 4.274522204434593, "x5": 0.010618636532892911}, {}] +[[8, 0, 12], {"x0": -4.1568214235331755, "x1": 7.283098801280886, "x2": 7.084856440109906, "x3": -1.762593042319272, "x4": 1.5996484609669426, "x5": 0.3752913681228927}, {}] +[[8, 0, 13], {"x0": -5.011972145773489, "x1": 5.312826855853218, "x2": 5.9048755625000595, "x3": -3.112265998122912, "x4": 1.002299965419926, "x5": 0.44432420069048306}, {}] +[[8, 0, 14], {"x0": -3.314170497123635, "x1": 3.2319790341037815, "x2": 6.1834054057389825, "x3": -2.827802223659776, "x4": 1.9577627632660999, "x5": 0.16554355730641324}, {}] +[[8, 0, 15], {"x0": -5.419277537682568, "x1": 4.443439846556535, "x2": 5.70548780191262, "x3": -2.2746616994787723, "x4": 1.003721149463615, "x5": 0.10311659600259865}, {}] +[[8, 0, 16], {"x0": -4.122621769870459, "x1": 4.4207303819672115, "x2": 4.1275733409852275, "x3": -2.7894758625995904, "x4": 3.575797568521228, "x5": 0.09821282581387258}, {}] +[[8, 0, 17], {"x0": -5.404741949784974, "x1": 7.5942298561065265, "x2": 7.098429496838189, "x3": -1.823031840690287, "x4": 2.6988011683602706, "x5": 0.3851833472545143}, {}] +[[8, 0, 18], {"x0": -5.6993309562824095, "x1": 5.538616049246513, "x2": 4.889931421689528, "x3": -0.7667081431369862, "x4": 1.09637818398661, "x5": 0.42665191846139633}, {}] +[[8, 0, 19], {"x0": -4.375181821161933, "x1": 7.31641311735002, "x2": 4.401072212586286, "x3": -1.70900447930586, "x4": 2.6935545700628754, "x5": 0.14940515476409005}, {}] +[[8, 0, 20], {"x0": -2.3236382323265254, "x1": 6.201019448873771, "x2": 7.404658530595896, "x3": -3.0342445125426996, "x4": 3.11754430823625, "x5": 0.08550590841799777}, {}] +[[8, 0, 21], {"x0": -5.790346447393116, "x1": 7.358050843093614, "x2": 7.760677950019062, "x3": -3.088010265272129, "x4": 4.567231099184322, "x5": 0.050707764802863264}, {}] +[[8, 0, 22], {"x0": -3.2932240125940364, "x1": 6.180444302159447, "x2": 4.106405468972241, "x3": -1.2247424927755648, "x4": 4.936460845651329, "x5": 0.030303264457280377}, {}] +[[8, 0, 23], {"x0": -5.946331955922972, "x1": 5.817636744847194, "x2": 5.794302263605312, "x3": -3.5632008291624526, "x4": 2.8647736780723974, "x5": 0.28260825247239835}, {}] +[[8, 0, 24], {"x0": -4.468901745026734, "x1": 3.1924687370257128, "x2": 6.471946984208563, "x3": -0.06665867344839915, "x4": 2.4594921053197925, "x5": 0.04264841060282948}, {}] +[[8, 0, 25], {"x0": -3.7395548525162043, "x1": 7.238677199623829, "x2": 6.516234836077185, "x3": -3.8753334951033467, "x4": 1.2942283027172623, "x5": 0.36476730173151095}, {}] +[[8, 0, 26], {"x0": -5.579055279117153, "x1": 6.8340984121435815, "x2": 4.755901794772678, "x3": -3.366250526185505, "x4": 2.57765353638224, "x5": 0.43055208734248596}, {}] +[[9, 0, 0], {"x0": -4.710695098079148, "x1": 5.109268292168097, "x2": 7.866746901892705, "x3": -3.8326583499795523, "x4": 4.184957552450051, "x5": 0.46254883600390695}, {}] +[[9, 0, 1], {"x0": -5.683435746241797, "x1": 7.783276187829507, "x2": 5.033323464903498, "x3": -1.4134102057912323, "x4": 1.709907822594133, "x5": 0.35645908908883356}, {}] +[[9, 0, 2], {"x0": -5.801586608178875, "x1": 3.7287692135902377, "x2": 5.143077012225355, "x3": -1.6350407655450372, "x4": 1.6189546374200963, "x5": 0.3000854466118104}, {}] +[[9, 0, 3], {"x0": -2.486793275872983, "x1": 3.712936461860079, "x2": 5.164723331726909, "x3": -0.963196502227734, "x4": 1.8283667777045216, "x5": 0.32752791723850416}, {}] +[[9, 0, 4], {"x0": -3.093027359124948, "x1": 7.394304857325085, "x2": 5.612718668541293, "x3": -3.372291177232041, "x4": 3.4860086674678787, "x5": 0.3442761649424736}, {}] +[[9, 0, 5], {"x0": -4.336488921001747, "x1": 3.7993965592803516, "x2": 6.795277736446396, "x3": -1.3487622712836473, "x4": 3.103048349109454, "x5": 0.12076982373972212}, {}] +[[9, 0, 6], {"x0": -4.00174887946403, "x1": 3.7462756302819518, "x2": 6.78563983077742, "x3": -3.584122301259935, "x4": 4.756166418918145, "x5": 0.189965604038979}, {}] +[[9, 0, 7], {"x0": -2.3894821901725565, "x1": 6.77476892409507, "x2": 7.982701002041276, "x3": -1.9966580506437603, "x4": 2.272237468841194, "x5": 0.3935084734158767}, {}] +[[9, 0, 8], {"x0": -2.541203573366711, "x1": 4.645836904291689, "x2": 5.905593753237043, "x3": -0.5936108020127713, "x4": 3.910226879113566, "x5": 0.48983978247457904}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/hyperband/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/hyperband/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/hyperband/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/hyperband/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/hyperband/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/hyperband/results.json new file mode 100644 index 0000000..fe69d3a --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/hyperband/results.json @@ -0,0 +1,183 @@ +[[0, 0, 0], 1.0, {"submitted": 1558193746.8686326, "started": 1558193746.8692384, "finished": 1558193746.8757663}, {"loss": 0.9301689447932491, "info": {"x0": -5.907164916547581, "x1": 3.012587711721168, "x2": 5.329338404443453, "x3": -3.694538870761341, "x4": 2.067440050828876, "x5": 0.04479776333592467}}, null] +[[0, 0, 1], 1.0, {"submitted": 1558193746.8785238, "started": 1558193746.8790333, "finished": 1558193746.8872752}, {"loss": 0.03797264747915015, "info": {"x0": -2.337521059967979, "x1": 5.693663866825011, "x2": 6.487006471052461, "x3": -0.3570644601980817, "x4": 3.718696900102624, "x5": 0.09554532289856194}}, null] +[[0, 0, 2], 1.0, {"submitted": 1558193746.8892927, "started": 1558193746.889888, "finished": 1558193746.8963196}, {"loss": 0.8591311325264417, "info": {"x0": -4.774768112994153, "x1": 5.987414681042857, "x2": 4.292866966972667, "x3": -3.0846444751450752, "x4": 4.941090516349877, "x5": 0.1341497548038919}}, null] +[[0, 0, 3], 1.0, {"submitted": 1558193746.8983014, "started": 1558193746.898639, "finished": 1558193746.9045973}, {"loss": 0.06275140869933947, "info": {"x0": -2.4176781672924172, "x1": 3.9248820638840276, "x2": 5.559438643397724, "x3": -3.793531553356361, "x4": 4.67041052735572, "x5": 0.19045903361383404}}, null] +[[0, 0, 4], 1.0, {"submitted": 1558193746.9063215, "started": 1558193746.906704, "finished": 1558193746.9164617}, {"loss": 0.2888978253531533, "info": {"x0": -3.3271411244788145, "x1": 3.0846143003633433, "x2": 6.2264796596500975, "x3": -2.042332135448614, "x4": 4.039503635309541, "x5": 0.22778419048621595}}, null] +[[0, 0, 5], 1.0, {"submitted": 1558193746.9193654, "started": 1558193746.9198358, "finished": 1558193746.9262736}, {"loss": 0.5967819754846473, "info": {"x0": -4.059752421194538, "x1": 3.370375134279921, "x2": 6.878129928864732, "x3": -1.6919848685539978, "x4": 3.3919248502178183, "x5": 0.16396709389623515}}, null] +[[0, 0, 6], 1.0, {"submitted": 1558193746.928031, "started": 1558193746.9283962, "finished": 1558193746.9340906}, {"loss": 0.02823813026793428, "info": {"x0": -2.517457022748764, "x1": 6.5686312159343885, "x2": 7.577044014682766, "x3": -0.6055383711026177, "x4": 1.8953914926542246, "x5": 0.4886081351666572}}, null] +[[0, 0, 7], 1.0, {"submitted": 1558193746.9365494, "started": 1558193746.936967, "finished": 1558193746.942741}, {"loss": 0.16210780177783893, "info": {"x0": -2.7760216363089154, "x1": 6.811188003790331, "x2": 4.145416963892231, "x3": -2.4285815823696417, "x4": 4.041279493736642, "x5": 0.04577518913437528}}, null] +[[0, 0, 8], 1.0, {"submitted": 1558193746.9448223, "started": 1558193746.945163, "finished": 1558193746.9531617}, {"loss": 0.8621882530080629, "info": {"x0": -5.372019002766174, "x1": 4.061242821195563, "x2": 6.827433950485053, "x3": -0.8783473823953192, "x4": 3.97322716872017, "x5": 0.055986511048564114}}, null] +[[0, 0, 9], 1.0, {"submitted": 1558193746.9551146, "started": 1558193746.9554532, "finished": 1558193746.9611838}, {"loss": 0.8693483508107338, "info": {"x0": -5.158919588696982, "x1": 6.541685219743728, "x2": 7.3257814751962265, "x3": -1.257578386011287, "x4": 1.8616736739290194, "x5": 0.3218280273063098}}, null] +[[0, 0, 10], 1.0, {"submitted": 1558193746.9629521, "started": 1558193746.9632952, "finished": 1558193746.9701679}, {"loss": 0.8645213182739859, "info": {"x0": -4.3712133959528465, "x1": 3.5735083977793787, "x2": 4.12479472272436, "x3": -3.799317378768959, "x4": 2.2333736047556396, "x5": 0.1886327004797444}}, null] +[[0, 0, 11], 1.0, {"submitted": 1558193746.9725273, "started": 1558193746.9730608, "finished": 1558193746.9825087}, {"loss": 0.033869669150654, "info": {"x0": -2.695190923369731, "x1": 5.76279467642829, "x2": 7.670772253079106, "x3": -0.4485286600681815, "x4": 2.164424269991231, "x5": 0.2957607923596307}}, null] +[[0, 0, 12], 1.0, {"submitted": 1558193746.9850268, "started": 1558193746.9858003, "finished": 1558193746.992675}, {"loss": 0.11681415758493538, "info": {"x0": -3.635620094174538, "x1": 5.300826467550021, "x2": 7.3196963502901085, "x3": -3.256047408979675, "x4": 4.098973103593457, "x5": 0.25580286107688044}}, null] +[[0, 0, 13], 1.0, {"submitted": 1558193746.9946623, "started": 1558193746.9950736, "finished": 1558193747.000683}, {"loss": 0.6601769900865019, "info": {"x0": -4.1327867415711275, "x1": 4.857724661242351, "x2": 6.024049727323213, "x3": -2.988545175577942, "x4": 2.318652998767027, "x5": 0.4423187220697012}}, null] +[[0, 0, 14], 1.0, {"submitted": 1558193747.00266, "started": 1558193747.0031655, "finished": 1558193747.011227}, {"loss": 0.046098148525480484, "info": {"x0": -2.4470966550644415, "x1": 4.5858830115290585, "x2": 5.615193204110437, "x3": -2.786570676871828, "x4": 4.151589481101671, "x5": 0.29800873572923814}}, null] +[[0, 0, 15], 1.0, {"submitted": 1558193747.0133088, "started": 1558193747.0138392, "finished": 1558193747.0202906}, {"loss": 0.7978278334323715, "info": {"x0": -4.3455810740695675, "x1": 4.317309737762532, "x2": 5.137290384718105, "x3": -1.4167014527712607, "x4": 1.9779039087009935, "x5": 0.10109754671660515}}, null] +[[0, 0, 16], 1.0, {"submitted": 1558193747.0221014, "started": 1558193747.0224202, "finished": 1558193747.0280685}, {"loss": 0.03700724024975961, "info": {"x0": -2.508104952833063, "x1": 5.071731970836464, "x2": 5.8669945884766825, "x3": -1.0091835496152362, "x4": 2.02888129774103, "x5": 0.3494271135091462}}, null] +[[0, 0, 17], 1.0, {"submitted": 1558193747.0298922, "started": 1558193747.0305402, "finished": 1558193747.0363057}, {"loss": 0.9019308119940355, "info": {"x0": -5.54099034960292, "x1": 5.342865897399733, "x2": 5.033362751586235, "x3": -1.2338715111127452, "x4": 4.053149894391979, "x5": 0.06475703978782332}}, null] +[[0, 0, 18], 1.0, {"submitted": 1558193747.038223, "started": 1558193747.039053, "finished": 1558193747.0503507}, {"loss": 0.8857602556326748, "info": {"x0": -4.853104720208203, "x1": 3.750155596685364, "x2": 4.96205768934063, "x3": -2.253699147553935, "x4": 1.9212275137889505, "x5": 0.4744373815962315}}, null] +[[0, 0, 19], 1.0, {"submitted": 1558193747.0531492, "started": 1558193747.0538025, "finished": 1558193747.06018}, {"loss": 0.3894609779742871, "info": {"x0": -2.1228418761281187, "x1": 6.210728362319026, "x2": 4.230219148733148, "x3": -3.9705033160007495, "x4": 4.5009865961138065, "x5": 0.43127804992903085}}, null] +[[0, 0, 20], 1.0, {"submitted": 1558193747.0618968, "started": 1558193747.0623505, "finished": 1558193747.0682037}, {"loss": 0.8856596933082136, "info": {"x0": -5.903020255938026, "x1": 6.056668540481294, "x2": 5.862792986796549, "x3": -3.7398672576643026, "x4": 1.4208752509909428, "x5": 0.07985755064246358}}, null] +[[0, 0, 21], 1.0, {"submitted": 1558193747.0697718, "started": 1558193747.0701282, "finished": 1558193747.0779414}, {"loss": 0.8748189847550728, "info": {"x0": -5.42240043446516, "x1": 3.4156495691792172, "x2": 6.341000925946763, "x3": -2.9359489133781875, "x4": 3.30179031240321, "x5": 0.18121530164511812}}, null] +[[0, 0, 22], 1.0, {"submitted": 1558193747.0798295, "started": 1558193747.080243, "finished": 1558193747.0869465}, {"loss": 0.8843925964039295, "info": {"x0": -5.810320346101154, "x1": 3.2053419854320273, "x2": 6.382756274354556, "x3": -0.8140781244518798, "x4": 1.8473129634801446, "x5": 0.20723714433629142}}, null] +[[0, 0, 23], 1.0, {"submitted": 1558193747.088863, "started": 1558193747.0892746, "finished": 1558193747.095476}, {"loss": 0.07007240371558324, "info": {"x0": -3.1880495025025977, "x1": 3.8970144286569774, "x2": 5.978170655563706, "x3": -2.8053280718178844, "x4": 2.2534000900229088, "x5": 0.018931446725162726}}, null] +[[0, 0, 24], 1.0, {"submitted": 1558193747.0974548, "started": 1558193747.0977738, "finished": 1558193747.103497}, {"loss": 0.8226065962331868, "info": {"x0": -4.03671233204577, "x1": 6.992173203678061, "x2": 4.875062884887007, "x3": -1.027736973891546, "x4": 3.893521291938143, "x5": 0.48741087690843476}}, null] +[[0, 0, 25], 1.0, {"submitted": 1558193747.1053133, "started": 1558193747.1056154, "finished": 1558193747.1125484}, {"loss": 0.8654062722189979, "info": {"x0": -5.221740551514749, "x1": 3.6328235067352006, "x2": 7.6928138403601025, "x3": -2.3016194647713286, "x4": 1.2411166148130834, "x5": 0.4343283693895245}}, null] +[[0, 0, 26], 1.0, {"submitted": 1558193747.1145492, "started": 1558193747.1149287, "finished": 1558193747.1232016}, {"loss": 0.9036873155969554, "info": {"x0": -5.909261090760644, "x1": 7.180842591017942, "x2": 6.623323461844936, "x3": -3.93197537995038, "x4": 2.7336468368177465, "x5": 0.2183996310271139}}, null] +[[0, 0, 1], 3.0, {"submitted": 1558193747.1254652, "started": 1558193747.1258473, "finished": 1558193747.1325772}, {"loss": 0.024939663814903756, "info": {"x0": -2.337521059967979, "x1": 5.693663866825011, "x2": 6.487006471052461, "x3": -0.3570644601980817, "x4": 3.718696900102624, "x5": 0.09554532289856194}}, null] +[[0, 0, 3], 3.0, {"submitted": 1558193747.1340225, "started": 1558193747.1343708, "finished": 1558193747.141535}, {"loss": 0.03395012169716728, "info": {"x0": -2.4176781672924172, "x1": 3.9248820638840276, "x2": 5.559438643397724, "x3": -3.793531553356361, "x4": 4.67041052735572, "x5": 0.19045903361383404}}, null] +[[0, 0, 6], 3.0, {"submitted": 1558193747.1428132, "started": 1558193747.1432784, "finished": 1558193747.150013}, {"loss": 0.02212389077952287, "info": {"x0": -2.517457022748764, "x1": 6.5686312159343885, "x2": 7.577044014682766, "x3": -0.6055383711026177, "x4": 1.8953914926542246, "x5": 0.4886081351666572}}, null] +[[0, 0, 7], 3.0, {"submitted": 1558193747.1514482, "started": 1558193747.151896, "finished": 1558193747.1583946}, {"loss": 0.10941270887132429, "info": {"x0": -2.7760216363089154, "x1": 6.811188003790331, "x2": 4.145416963892231, "x3": -2.4285815823696417, "x4": 4.041279493736642, "x5": 0.04577518913437528}}, null] +[[0, 0, 11], 3.0, {"submitted": 1558193747.1597311, "started": 1558193747.1600778, "finished": 1558193747.1666112}, {"loss": 0.024859211882179256, "info": {"x0": -2.695190923369731, "x1": 5.76279467642829, "x2": 7.670772253079106, "x3": -0.4485286600681815, "x4": 2.164424269991231, "x5": 0.2957607923596307}}, null] +[[0, 0, 12], 3.0, {"submitted": 1558193747.1697571, "started": 1558193747.1701612, "finished": 1558193747.176398}, {"loss": 0.061946902554167536, "info": {"x0": -3.635620094174538, "x1": 5.300826467550021, "x2": 7.3196963502901085, "x3": -3.256047408979675, "x4": 4.098973103593457, "x5": 0.25580286107688044}}, null] +[[0, 0, 14], 3.0, {"submitted": 1558193747.1783028, "started": 1558193747.1787813, "finished": 1558193747.1853027}, {"loss": 0.03049074692392386, "info": {"x0": -2.4470966550644415, "x1": 4.5858830115290585, "x2": 5.615193204110437, "x3": -2.786570676871828, "x4": 4.151589481101671, "x5": 0.29800873572923814}}, null] +[[0, 0, 16], 3.0, {"submitted": 1558193747.1876023, "started": 1558193747.1879818, "finished": 1558193747.19342}, {"loss": 0.026387771563671926, "info": {"x0": -2.508104952833063, "x1": 5.071731970836464, "x2": 5.8669945884766825, "x3": -1.0091835496152362, "x4": 2.02888129774103, "x5": 0.3494271135091462}}, null] +[[0, 0, 23], 3.0, {"submitted": 1558193747.1947303, "started": 1558193747.1950617, "finished": 1558193747.2021892}, {"loss": 0.043362829676579784, "info": {"x0": -3.1880495025025977, "x1": 3.8970144286569774, "x2": 5.978170655563706, "x3": -2.8053280718178844, "x4": 2.2534000900229088, "x5": 0.018931446725162726}}, null] +[[0, 0, 1], 9.0, {"submitted": 1558193747.2040207, "started": 1558193747.2045507, "finished": 1558193747.211965}, {"loss": 0.021560741530630922, "info": {"x0": -2.337521059967979, "x1": 5.693663866825011, "x2": 6.487006471052461, "x3": -0.3570644601980817, "x4": 3.718696900102624, "x5": 0.09554532289856194}}, null] +[[0, 0, 6], 9.0, {"submitted": 1558193747.2133226, "started": 1558193747.2137454, "finished": 1558193747.2202964}, {"loss": 0.02027352838773261, "info": {"x0": -2.517457022748764, "x1": 6.5686312159343885, "x2": 7.577044014682766, "x3": -0.6055383711026177, "x4": 1.8953914926542246, "x5": 0.4886081351666572}}, null] +[[0, 0, 11], 9.0, {"submitted": 1558193747.2218778, "started": 1558193747.2222571, "finished": 1558193747.2275624}, {"loss": 0.021962992653958003, "info": {"x0": -2.695190923369731, "x1": 5.76279467642829, "x2": 7.670772253079106, "x3": -0.4485286600681815, "x4": 2.164424269991231, "x5": 0.2957607923596307}}, null] +[[0, 0, 6], 27.0, {"submitted": 1558193747.2289853, "started": 1558193747.2293534, "finished": 1558193747.236371}, {"loss": 0.02027352838773261, "info": {"x0": -2.517457022748764, "x1": 6.5686312159343885, "x2": 7.577044014682766, "x3": -0.6055383711026177, "x4": 1.8953914926542246, "x5": 0.4886081351666572}}, null] +[[1, 0, 0], 3.0, {"submitted": 1558193747.239149, "started": 1558193747.2395015, "finished": 1558193747.245727}, {"loss": 0.5166532531620416, "info": {"x0": -3.7654592168121463, "x1": 3.824621325081752, "x2": 4.294410323643927, "x3": -1.6899550556571725, "x4": 3.7135350376142395, "x5": 0.08111630587141594}}, null] +[[1, 0, 1], 3.0, {"submitted": 1558193747.2474818, "started": 1558193747.2481136, "finished": 1558193747.2560878}, {"loss": 0.8156878507821219, "info": {"x0": -4.511759484629741, "x1": 6.007403054439775, "x2": 5.5526023075917434, "x3": -1.8494959901061088, "x4": 1.2406232870798863, "x5": 0.2714533739770754}}, null] +[[1, 0, 2], 3.0, {"submitted": 1558193747.2578232, "started": 1558193747.2581792, "finished": 1558193747.2647095}, {"loss": 0.4564762651141095, "info": {"x0": -3.3623555613432, "x1": 7.227729061175098, "x2": 4.279456843527834, "x3": -0.1827738059806574, "x4": 2.6273747838111143, "x5": 0.3842930350537312}}, null] +[[1, 0, 3], 3.0, {"submitted": 1558193747.2667136, "started": 1558193747.2672298, "finished": 1558193747.274014}, {"loss": 0.8387771516271109, "info": {"x0": -5.901180975535116, "x1": 5.238045516543851, "x2": 4.688718581602742, "x3": -3.156606440689844, "x4": 1.0169043547990264, "x5": 0.003636953762041928}}, null] +[[1, 0, 4], 3.0, {"submitted": 1558193747.2758753, "started": 1558193747.2762477, "finished": 1558193747.2837615}, {"loss": 0.8831053881992137, "info": {"x0": -5.610113358006831, "x1": 5.171395919537423, "x2": 6.431225148520527, "x3": -2.7846176700033625, "x4": 4.566594995186373, "x5": 0.1627045108029445}}, null] +[[1, 0, 5], 3.0, {"submitted": 1558193747.2859871, "started": 1558193747.2865222, "finished": 1558193747.2932084}, {"loss": 0.6656476249862896, "info": {"x0": -4.750008126694509, "x1": 5.5271729866542945, "x2": 6.430910747844696, "x3": -0.016379728769283286, "x4": 4.229997646777319, "x5": 0.49207777498425764}}, null] +[[1, 0, 6], 3.0, {"submitted": 1558193747.295046, "started": 1558193747.295395, "finished": 1558193747.3026054}, {"loss": 0.03491552763664231, "info": {"x0": -2.1301540989820547, "x1": 3.744197029496343, "x2": 4.238186941663056, "x3": -1.2851246740760236, "x4": 1.685747135900073, "x5": 0.09430690434034661}}, null] +[[1, 0, 7], 3.0, {"submitted": 1558193747.3044558, "started": 1558193747.3048728, "finished": 1558193747.3111892}, {"loss": 0.8947707160764876, "info": {"x0": -5.9445454196180325, "x1": 4.963049779600166, "x2": 6.259303695297344, "x3": -2.5981679302285343, "x4": 1.9629300567902574, "x5": 0.4249721719669007}}, null] +[[1, 0, 8], 3.0, {"submitted": 1558193747.3132238, "started": 1558193747.313625, "finished": 1558193747.320376}, {"loss": 0.9152051490540479, "info": {"x0": -4.855374732542892, "x1": 7.619807211866467, "x2": 4.5290654446959415, "x3": -3.5119330317080606, "x4": 2.832791628863171, "x5": 0.06391131782497234}}, null] +[[1, 0, 0], 9.0, {"submitted": 1558193747.3222349, "started": 1558193747.3226123, "finished": 1558193747.3307817}, {"loss": 0.3858407007094266, "info": {"x0": -3.7654592168121463, "x1": 3.824621325081752, "x2": 4.294410323643927, "x3": -1.6899550556571725, "x4": 3.7135350376142395, "x5": 0.08111630587141594}}, null] +[[1, 0, 2], 9.0, {"submitted": 1558193747.3323088, "started": 1558193747.3326397, "finished": 1558193747.3384435}, {"loss": 0.4564762651141095, "info": {"x0": -3.3623555613432, "x1": 7.227729061175098, "x2": 4.279456843527834, "x3": -0.1827738059806574, "x4": 2.6273747838111143, "x5": 0.3842930350537312}}, null] +[[1, 0, 6], 9.0, {"submitted": 1558193747.3397949, "started": 1558193747.3401346, "finished": 1558193747.3473883}, {"loss": 0.029364441871067636, "info": {"x0": -2.1301540989820547, "x1": 3.744197029496343, "x2": 4.238186941663056, "x3": -1.2851246740760236, "x4": 1.685747135900073, "x5": 0.09430690434034661}}, null] +[[1, 0, 6], 27.0, {"submitted": 1558193747.3491583, "started": 1558193747.3495376, "finished": 1558193747.3560343}, {"loss": 0.028318585825848775, "info": {"x0": -2.1301540989820547, "x1": 3.744197029496343, "x2": 4.238186941663056, "x3": -1.2851246740760236, "x4": 1.685747135900073, "x5": 0.09430690434034661}}, null] +[[2, 0, 0], 9.0, {"submitted": 1558193747.3578594, "started": 1558193747.3582253, "finished": 1558193747.3667128}, {"loss": 0.026146421908181405, "info": {"x0": -2.6247973394515234, "x1": 3.125760945494953, "x2": 6.497747805715555, "x3": -3.2141578744673516, "x4": 3.1855879448851083, "x5": 0.31351982888338864}}, null] +[[2, 0, 1], 9.0, {"submitted": 1558193747.3684075, "started": 1558193747.3687956, "finished": 1558193747.3749459}, {"loss": 0.9114239742159723, "info": {"x0": -5.988586613067095, "x1": 7.50950304888817, "x2": 5.880636235709908, "x3": -2.301111419636633, "x4": 3.6267279436737043, "x5": 0.07587214421021798}}, null] +[[2, 0, 2], 9.0, {"submitted": 1558193747.376741, "started": 1558193747.3771849, "finished": 1558193747.3833158}, {"loss": 0.8406275127559588, "info": {"x0": -5.328359849474763, "x1": 4.6447244158336725, "x2": 5.299478148104775, "x3": -0.3021726914162741, "x4": 3.0718459206109894, "x5": 0.005902938608420227}}, null] +[[2, 0, 3], 9.0, {"submitted": 1558193747.3850245, "started": 1558193747.3854682, "finished": 1558193747.3928304}, {"loss": 0.36999195164619486, "info": {"x0": -3.8757255738567573, "x1": 5.097122015566341, "x2": 4.874316514147159, "x3": -1.8344391912478595, "x4": 3.3992133222655316, "x5": 0.26607748140966464}}, null] +[[2, 0, 4], 9.0, {"submitted": 1558193747.3949041, "started": 1558193747.3952272, "finished": 1558193747.4010348}, {"loss": 0.3011263016194753, "info": {"x0": -4.0884059029812345, "x1": 6.051702657923309, "x2": 6.866905657203804, "x3": -2.3976891447535555, "x4": 2.0494092163883226, "x5": 0.1455632595301164}}, null] +[[2, 0, 5], 9.0, {"submitted": 1558193747.4037302, "started": 1558193747.404178, "finished": 1558193747.4100473}, {"loss": 0.34215606701105516, "info": {"x0": -4.902477964816382, "x1": 3.463388300941811, "x2": 7.040749783160484, "x3": -1.215436183530953, "x4": 2.2379075286774075, "x5": 0.3327558759536472}}, null] +[[2, 0, 0], 27.0, {"submitted": 1558193747.4116013, "started": 1558193747.4120154, "finished": 1558193747.418086}, {"loss": 0.025583268262068314, "info": {"x0": -2.6247973394515234, "x1": 3.125760945494953, "x2": 6.497747805715555, "x3": -3.2141578744673516, "x4": 3.1855879448851083, "x5": 0.31351982888338864}}, null] +[[2, 0, 4], 27.0, {"submitted": 1558193747.4210334, "started": 1558193747.421535, "finished": 1558193747.4281414}, {"loss": 0.3011263016194753, "info": {"x0": -4.0884059029812345, "x1": 6.051702657923309, "x2": 6.866905657203804, "x3": -2.3976891447535555, "x4": 2.0494092163883226, "x5": 0.1455632595301164}}, null] +[[3, 0, 0], 27.0, {"submitted": 1558193747.4300544, "started": 1558193747.4304297, "finished": 1558193747.438506}, {"loss": 0.3012872046241814, "info": {"x0": -4.17012335548967, "x1": 3.0618718735076627, "x2": 7.014696453644638, "x3": -3.983020467120313, "x4": 2.755392433444747, "x5": 0.3732928031463163}}, null] +[[3, 0, 1], 27.0, {"submitted": 1558193747.4406161, "started": 1558193747.4411097, "finished": 1558193747.4478137}, {"loss": 0.5216411890127873, "info": {"x0": -4.916015738200347, "x1": 6.1240302782481, "x2": 7.565153601764176, "x3": -1.558067815697226, "x4": 3.08591518726781, "x5": 0.24068078431496287}}, null] +[[3, 0, 2], 27.0, {"submitted": 1558193747.4495585, "started": 1558193747.4499638, "finished": 1558193747.4583552}, {"loss": 0.7806114231819948, "info": {"x0": -4.611688464017787, "x1": 4.6687585592865, "x2": 4.159685543213225, "x3": -1.492372893809888, "x4": 1.6852057717140188, "x5": 0.4685746498605942}}, null] +[[3, 0, 3], 27.0, {"submitted": 1558193747.4606788, "started": 1558193747.4610643, "finished": 1558193747.4678795}, {"loss": 0.7683024900820786, "info": {"x0": -4.313507249779139, "x1": 5.114895408756475, "x2": 4.281809185606173, "x3": -3.956783100235523, "x4": 4.1692845293420175, "x5": 0.36488229769973946}}, null] +[[4, 0, 0], 1.0, {"submitted": 1558193747.4717934, "started": 1558193747.4721317, "finished": 1558193747.4782953}, {"loss": 0.9152051483560429, "info": {"x0": -5.438158066470399, "x1": 5.175332374528912, "x2": 5.703660043348613, "x3": -0.7172951720633001, "x4": 2.0560361640336366, "x5": 0.43372207494021553}}, null] +[[4, 0, 1], 1.0, {"submitted": 1558193747.4799843, "started": 1558193747.480618, "finished": 1558193747.4884381}, {"loss": 0.13797264738564324, "info": {"x0": -2.123446608633106, "x1": 5.862271136952997, "x2": 4.236216297488646, "x3": -2.186190688398806, "x4": 3.550538946468391, "x5": 0.25544573427890527}}, null] +[[4, 0, 2], 1.0, {"submitted": 1558193747.4909458, "started": 1558193747.4913027, "finished": 1558193747.4971924}, {"loss": 0.8711182609176502, "info": {"x0": -5.893649481937504, "x1": 3.633386685001013, "x2": 7.707094527337013, "x3": -0.05180063496738052, "x4": 1.7906433896573928, "x5": 0.17388720892930892}}, null] +[[4, 0, 3], 1.0, {"submitted": 1558193747.4991627, "started": 1558193747.4996605, "finished": 1558193747.5063646}, {"loss": 0.5166532524835172, "info": {"x0": -3.2386583305488683, "x1": 3.454940705438809, "x2": 5.069361272513589, "x3": -1.2750424928625295, "x4": 4.16236218250394, "x5": 0.3463810312133069}}, null] +[[4, 0, 4], 1.0, {"submitted": 1558193747.5082023, "started": 1558193747.5085423, "finished": 1558193747.5153525}, {"loss": 0.0983105402892382, "info": {"x0": -3.292002747395182, "x1": 7.830971820672916, "x2": 7.1954752995521005, "x3": -1.0132223313216335, "x4": 3.70726489610284, "x5": 0.2440744420480725}}, null] +[[4, 0, 5], 1.0, {"submitted": 1558193747.5171158, "started": 1558193747.5174882, "finished": 1558193747.525099}, {"loss": 0.40643604128641747, "info": {"x0": -4.004845066593584, "x1": 5.2977435915449345, "x2": 6.545644905881961, "x3": -0.9597833280115333, "x4": 4.663360108875496, "x5": 0.09224762807402292}}, null] +[[4, 0, 6], 1.0, {"submitted": 1558193747.5267248, "started": 1558193747.527047, "finished": 1558193747.5329561}, {"loss": 0.09219629877724192, "info": {"x0": -2.6445970510615786, "x1": 4.785623180258756, "x2": 4.752918948678593, "x3": -2.4490652417433045, "x4": 2.5570870381307746, "x5": 0.3199672625419437}}, null] +[[4, 0, 7], 1.0, {"submitted": 1558193747.5347037, "started": 1558193747.535076, "finished": 1558193747.5411098}, {"loss": 0.8403861613412202, "info": {"x0": -4.645568904904447, "x1": 6.960129645157174, "x2": 6.0365845219130705, "x3": -1.2351840283809152, "x4": 2.685981412122626, "x5": 0.4908480128004062}}, null] +[[4, 0, 8], 1.0, {"submitted": 1558193747.5441015, "started": 1558193747.5446448, "finished": 1558193747.5516737}, {"loss": 0.04312147640548976, "info": {"x0": -2.3919817949589883, "x1": 5.561345846697439, "x2": 7.803747446926196, "x3": -2.5587104035557724, "x4": 4.058182430695123, "x5": 0.4001358092823865}}, null] +[[4, 0, 9], 1.0, {"submitted": 1558193747.5538263, "started": 1558193747.5542216, "finished": 1558193747.5613868}, {"loss": 0.8798873681858279, "info": {"x0": -5.2329279662213795, "x1": 5.442132485380924, "x2": 7.3187540964179085, "x3": -3.172646671230326, "x4": 4.532583181551015, "x5": 0.26616113789646517}}, null] +[[4, 0, 10], 1.0, {"submitted": 1558193747.56364, "started": 1558193747.5640125, "finished": 1558193747.569832}, {"loss": 0.8110217226859502, "info": {"x0": -4.774088916158659, "x1": 7.443960523509336, "x2": 6.615945608509831, "x3": -1.3698692571587552, "x4": 3.8113773484508333, "x5": 0.30218657091188234}}, null] +[[4, 0, 11], 1.0, {"submitted": 1558193747.5722013, "started": 1558193747.572643, "finished": 1558193747.5790834}, {"loss": 0.7057119845390945, "info": {"x0": -4.3430434305974455, "x1": 7.28062219865324, "x2": 6.9422028686344674, "x3": -1.9703265018224614, "x4": 2.6902007515810094, "x5": 0.017901944549458038}}, null] +[[4, 0, 12], 1.0, {"submitted": 1558193747.5810382, "started": 1558193747.5814269, "finished": 1558193747.590729}, {"loss": 0.7368463389555501, "info": {"x0": -2.160259394439993, "x1": 7.80566602542717, "x2": 7.741312624133895, "x3": -1.6957132777350474, "x4": 4.7807332366305175, "x5": 0.20725121558936216}}, null] +[[4, 0, 13], 1.0, {"submitted": 1558193747.5925515, "started": 1558193747.5928962, "finished": 1558193747.5993183}, {"loss": 0.8855189055815782, "info": {"x0": -5.803313738564272, "x1": 4.69844941938222, "x2": 5.910868737022559, "x3": -0.03592486697983688, "x4": 3.381052405735786, "x5": 0.1579659856112573}}, null] +[[4, 0, 14], 1.0, {"submitted": 1558193747.6010473, "started": 1558193747.6013849, "finished": 1558193747.6069672}, {"loss": 0.8958165724879418, "info": {"x0": -5.007631218489252, "x1": 5.537126414966833, "x2": 4.307616182282045, "x3": -3.085669137990395, "x4": 3.808201189790106, "x5": 0.3761368845736803}}, null] +[[4, 0, 15], 1.0, {"submitted": 1558193747.6089253, "started": 1558193747.6093683, "finished": 1558193747.616267}, {"loss": 0.034513275213809334, "info": {"x0": -2.3902811889703037, "x1": 4.284952509132864, "x2": 6.558777199649649, "x3": -2.2706917840370444, "x4": 2.2862231224717116, "x5": 0.4853782475080315}}, null] +[[4, 0, 16], 1.0, {"submitted": 1558193747.6182058, "started": 1558193747.6188993, "finished": 1558193747.6251523}, {"loss": 0.08881737527498199, "info": {"x0": -3.9937755780494064, "x1": 5.7197036289051155, "x2": 7.705481222391674, "x3": -1.2701723209245448, "x4": 1.4850301309179845, "x5": 0.019421620359063974}}, null] +[[4, 0, 17], 1.0, {"submitted": 1558193747.6268833, "started": 1558193747.6272492, "finished": 1558193747.6334548}, {"loss": 0.8853580049094493, "info": {"x0": -5.3486588980759535, "x1": 7.998537581185826, "x2": 7.357154129185126, "x3": -3.497983006747709, "x4": 2.7282723279027308, "x5": 0.028514534165015037}}, null] +[[4, 0, 18], 1.0, {"submitted": 1558193747.6354644, "started": 1558193747.6358333, "finished": 1558193747.641132}, {"loss": 0.871520513545479, "info": {"x0": -4.859136346659572, "x1": 6.479362086209313, "x2": 5.464735414144505, "x3": -1.669480713123272, "x4": 1.3472581650504014, "x5": 0.0653414382220267}}, null] +[[4, 0, 19], 1.0, {"submitted": 1558193747.642882, "started": 1558193747.6432223, "finished": 1558193747.650956}, {"loss": 0.13419146856423453, "info": {"x0": -3.2610364470700226, "x1": 3.254369911727724, "x2": 5.817806299044777, "x3": -0.22445291342257656, "x4": 1.7488143311035986, "x5": 0.007583998319328045}}, null] +[[4, 0, 20], 1.0, {"submitted": 1558193747.653203, "started": 1558193747.6537235, "finished": 1558193747.6599154}, {"loss": 0.07393403210087543, "info": {"x0": -2.5491376849975795, "x1": 6.6455326214579085, "x2": 5.115187444606411, "x3": -2.488004453886234, "x4": 4.669836216270617, "x5": 0.15706654380846613}}, null] +[[4, 0, 21], 1.0, {"submitted": 1558193747.6616855, "started": 1558193747.6620743, "finished": 1558193747.6686213}, {"loss": 0.06074014573162444, "info": {"x0": -2.006887034430723, "x1": 6.15753696375382, "x2": 4.6082597342570875, "x3": -1.8923953340828907, "x4": 4.14705001033105, "x5": 0.0660510953238479}}, null] +[[4, 0, 22], 1.0, {"submitted": 1558193747.6707313, "started": 1558193747.6711664, "finished": 1558193747.6779535}, {"loss": 0.8757039428000022, "info": {"x0": -5.2783756009119305, "x1": 7.43248995132288, "x2": 5.970933683828897, "x3": -1.664434340639073, "x4": 2.6815933756984176, "x5": 0.3030135091125568}}, null] +[[4, 0, 23], 1.0, {"submitted": 1558193747.6798909, "started": 1558193747.6804523, "finished": 1558193747.6881459}, {"loss": 0.3642799670237835, "info": {"x0": -4.135552716725888, "x1": 6.072500221515243, "x2": 7.291561116965518, "x3": -0.5560352793788641, "x4": 2.397686303323488, "x5": 0.2920491709903958}}, null] +[[4, 0, 24], 1.0, {"submitted": 1558193747.6900406, "started": 1558193747.690375, "finished": 1558193747.6957827}, {"loss": 0.7020917080768345, "info": {"x0": -4.386771040689647, "x1": 3.7568265289895932, "x2": 5.499123735253243, "x3": -0.15724018752225621, "x4": 1.919672724776054, "x5": 0.14881253356532853}}, null] +[[4, 0, 25], 1.0, {"submitted": 1558193747.6975324, "started": 1558193747.6980107, "finished": 1558193747.7052069}, {"loss": 0.9048270292735971, "info": {"x0": -5.616623694480855, "x1": 3.813126843490771, "x2": 7.019453513199928, "x3": -0.3821341193485721, "x4": 2.196582684615663, "x5": 0.36861667900104206}}, null] +[[4, 0, 26], 1.0, {"submitted": 1558193747.7069468, "started": 1558193747.7072756, "finished": 1558193747.7146168}, {"loss": 0.8225261451180483, "info": {"x0": -4.583277577281528, "x1": 7.056447250109092, "x2": 6.724532709225017, "x3": -3.983652843512973, "x4": 4.781297442103088, "x5": 0.49667562490891554}}, null] +[[4, 0, 1], 3.0, {"submitted": 1558193747.7164302, "started": 1558193747.7167866, "finished": 1558193747.7233918}, {"loss": 0.12437650131440794, "info": {"x0": -2.123446608633106, "x1": 5.862271136952997, "x2": 4.236216297488646, "x3": -2.186190688398806, "x4": 3.550538946468391, "x5": 0.25544573427890527}}, null] +[[4, 0, 4], 3.0, {"submitted": 1558193747.724885, "started": 1558193747.7253098, "finished": 1558193747.7310345}, {"loss": 0.047948510759028326, "info": {"x0": -3.292002747395182, "x1": 7.830971820672916, "x2": 7.1954752995521005, "x3": -1.0132223313216335, "x4": 3.70726489610284, "x5": 0.2440744420480725}}, null] +[[4, 0, 6], 3.0, {"submitted": 1558193747.7326093, "started": 1558193747.7330549, "finished": 1558193747.7416258}, {"loss": 0.05534995916094977, "info": {"x0": -2.6445970510615786, "x1": 4.785623180258756, "x2": 4.752918948678593, "x3": -2.4490652417433045, "x4": 2.5570870381307746, "x5": 0.3199672625419437}}, null] +[[4, 0, 8], 3.0, {"submitted": 1558193747.7437592, "started": 1558193747.7442052, "finished": 1558193747.7506843}, {"loss": 0.02775542553834922, "info": {"x0": -2.3919817949589883, "x1": 5.561345846697439, "x2": 7.803747446926196, "x3": -2.5587104035557724, "x4": 4.058182430695123, "x5": 0.4001358092823865}}, null] +[[4, 0, 15], 3.0, {"submitted": 1558193747.7523248, "started": 1558193747.7527719, "finished": 1558193747.759319}, {"loss": 0.02695092509949487, "info": {"x0": -2.3902811889703037, "x1": 4.284952509132864, "x2": 6.558777199649649, "x3": -2.2706917840370444, "x4": 2.2862231224717116, "x5": 0.4853782475080315}}, null] +[[4, 0, 16], 3.0, {"submitted": 1558193747.7605767, "started": 1558193747.7608771, "finished": 1558193747.7665577}, {"loss": 0.05004022367904, "info": {"x0": -3.9937755780494064, "x1": 5.7197036289051155, "x2": 7.705481222391674, "x3": -1.2701723209245448, "x4": 1.4850301309179845, "x5": 0.019421620359063974}}, null] +[[4, 0, 19], 3.0, {"submitted": 1558193747.767865, "started": 1558193747.7681735, "finished": 1558193747.774258}, {"loss": 0.059855187898284465, "info": {"x0": -3.2610364470700226, "x1": 3.254369911727724, "x2": 5.817806299044777, "x3": -0.22445291342257656, "x4": 1.7488143311035986, "x5": 0.007583998319328045}}, null] +[[4, 0, 20], 3.0, {"submitted": 1558193747.775866, "started": 1558193747.7762885, "finished": 1558193747.7827723}, {"loss": 0.05446500015757492, "info": {"x0": -2.5491376849975795, "x1": 6.6455326214579085, "x2": 5.115187444606411, "x3": -2.488004453886234, "x4": 4.669836216270617, "x5": 0.15706654380846613}}, null] +[[4, 0, 21], 3.0, {"submitted": 1558193747.784059, "started": 1558193747.7844129, "finished": 1558193747.7905383}, {"loss": 0.04666129952462948, "info": {"x0": -2.006887034430723, "x1": 6.15753696375382, "x2": 4.6082597342570875, "x3": -1.8923953340828907, "x4": 4.14705001033105, "x5": 0.0660510953238479}}, null] +[[4, 0, 8], 9.0, {"submitted": 1558193747.7920582, "started": 1558193747.7924745, "finished": 1558193747.798417}, {"loss": 0.020273527865053077, "info": {"x0": -2.3919817949589883, "x1": 5.561345846697439, "x2": 7.803747446926196, "x3": -2.5587104035557724, "x4": 4.058182430695123, "x5": 0.4001358092823865}}, null] +[[4, 0, 15], 9.0, {"submitted": 1558193747.800111, "started": 1558193747.8005478, "finished": 1558193747.80764}, {"loss": 0.02373290446048195, "info": {"x0": -2.3902811889703037, "x1": 4.284952509132864, "x2": 6.558777199649649, "x3": -2.2706917840370444, "x4": 2.2862231224717116, "x5": 0.4853782475080315}}, null] +[[4, 0, 21], 9.0, {"submitted": 1558193747.8089643, "started": 1558193747.8093145, "finished": 1558193747.8169887}, {"loss": 0.04312147708161644, "info": {"x0": -2.006887034430723, "x1": 6.15753696375382, "x2": 4.6082597342570875, "x3": -1.8923953340828907, "x4": 4.14705001033105, "x5": 0.0660510953238479}}, null] +[[4, 0, 8], 27.0, {"submitted": 1558193747.8189447, "started": 1558193747.8193867, "finished": 1558193747.8258832}, {"loss": 0.01890586876907564, "info": {"x0": -2.3919817949589883, "x1": 5.561345846697439, "x2": 7.803747446926196, "x3": -2.5587104035557724, "x4": 4.058182430695123, "x5": 0.4001358092823865}}, null] +[[5, 0, 0], 3.0, {"submitted": 1558193747.8281326, "started": 1558193747.828603, "finished": 1558193747.8351865}, {"loss": 0.0461785961329122, "info": {"x0": -3.525685702305275, "x1": 5.124482742557305, "x2": 7.259056819877767, "x3": -0.8223558747458846, "x4": 2.6938993583734674, "x5": 0.4112674534433585}}, null] +[[5, 0, 1], 3.0, {"submitted": 1558193747.8369465, "started": 1558193747.8373215, "finished": 1558193747.843943}, {"loss": 0.63684633682667, "info": {"x0": -4.482838821162499, "x1": 5.3916108807396546, "x2": 6.207782373509113, "x3": -1.2941331066643134, "x4": 3.6576100627367305, "x5": 0.23603199482058285}}, null] +[[5, 0, 2], 3.0, {"submitted": 1558193747.846069, "started": 1558193747.8465674, "finished": 1558193747.8533611}, {"loss": 0.19629927132389574, "info": {"x0": -2.9159783057898783, "x1": 3.1754441261211266, "x2": 4.891527262236211, "x3": -2.5683348312914216, "x4": 4.757707343768841, "x5": 0.24570296951976656}}, null] +[[5, 0, 3], 3.0, {"submitted": 1558193747.8561587, "started": 1558193747.8565743, "finished": 1558193747.8619952}, {"loss": 0.05953338692385827, "info": {"x0": -3.977036223367414, "x1": 4.815769761558523, "x2": 7.909122689140786, "x3": -0.5315023266803287, "x4": 1.7312675180543042, "x5": 0.3024613060473038}}, null] +[[5, 0, 4], 3.0, {"submitted": 1558193747.8643687, "started": 1558193747.8647122, "finished": 1558193747.8710444}, {"loss": 0.05132743327347193, "info": {"x0": -2.657136562365808, "x1": 4.9972985009973305, "x2": 4.544558908782248, "x3": -3.226434035502383, "x4": 3.2263225558253046, "x5": 0.3076454003051158}}, null] +[[5, 0, 5], 3.0, {"submitted": 1558193747.8730416, "started": 1558193747.8734264, "finished": 1558193747.8795214}, {"loss": 0.03370877355217261, "info": {"x0": -2.114556664544848, "x1": 5.985774164757983, "x2": 6.657851556263633, "x3": -0.01884383075677487, "x4": 4.051448247722323, "x5": 0.42972811280580625}}, null] +[[5, 0, 6], 3.0, {"submitted": 1558193747.8822315, "started": 1558193747.8827522, "finished": 1558193747.8916643}, {"loss": 0.0361222845934517, "info": {"x0": -2.481660465791103, "x1": 5.789445926431373, "x2": 7.751949571306097, "x3": -1.5943732825245918, "x4": 3.947678861926527, "x5": 0.46214640410704455}}, null] +[[5, 0, 7], 3.0, {"submitted": 1558193747.8935199, "started": 1558193747.8938909, "finished": 1558193747.8997884}, {"loss": 0.037168142427289476, "info": {"x0": -2.5256725155271216, "x1": 6.47949250779034, "x2": 7.912587499912027, "x3": -1.6159981358088271, "x4": 4.550430322563351, "x5": 0.19355315316657545}}, null] +[[5, 0, 8], 3.0, {"submitted": 1558193747.9019182, "started": 1558193747.9024038, "finished": 1558193747.9088223}, {"loss": 0.895977473328353, "info": {"x0": -5.705514554100446, "x1": 7.4713993233908536, "x2": 4.466283736441749, "x3": -1.0196851905188526, "x4": 3.916485383406379, "x5": 0.248078992836486}}, null] +[[5, 0, 5], 9.0, {"submitted": 1558193747.9111776, "started": 1558193747.911584, "finished": 1558193747.9179044}, {"loss": 0.031938861601791935, "info": {"x0": -2.114556664544848, "x1": 5.985774164757983, "x2": 6.657851556263633, "x3": -0.01884383075677487, "x4": 4.051448247722323, "x5": 0.42972811280580625}}, null] +[[5, 0, 6], 9.0, {"submitted": 1558193747.9199004, "started": 1558193747.9205515, "finished": 1558193747.9271798}, {"loss": 0.025181013724541144, "info": {"x0": -2.481660465791103, "x1": 5.789445926431373, "x2": 7.751949571306097, "x3": -1.5943732825245918, "x4": 3.947678861926527, "x5": 0.46214640410704455}}, null] +[[5, 0, 7], 9.0, {"submitted": 1558193747.9285374, "started": 1558193747.9288685, "finished": 1558193747.9352694}, {"loss": 0.025100562156253725, "info": {"x0": -2.5256725155271216, "x1": 6.47949250779034, "x2": 7.912587499912027, "x3": -1.6159981358088271, "x4": 4.550430322563351, "x5": 0.19355315316657545}}, null] +[[5, 0, 7], 27.0, {"submitted": 1558193747.9375327, "started": 1558193747.9379952, "finished": 1558193747.944202}, {"loss": 0.02148028820729122, "info": {"x0": -2.5256725155271216, "x1": 6.47949250779034, "x2": 7.912587499912027, "x3": -1.6159981358088271, "x4": 4.550430322563351, "x5": 0.19355315316657545}}, null] +[[6, 0, 0], 9.0, {"submitted": 1558193747.9459739, "started": 1558193747.9462905, "finished": 1558193747.9539044}, {"loss": 0.0346741711047994, "info": {"x0": -2.04187431182727, "x1": 6.261287078166566, "x2": 4.896932540448574, "x3": -3.1066687025715614, "x4": 2.5573920279777944, "x5": 0.2845276591812279}}, null] +[[6, 0, 1], 9.0, {"submitted": 1558193747.955883, "started": 1558193747.9562016, "finished": 1558193747.961606}, {"loss": 0.7903459367918471, "info": {"x0": -5.1287553655548495, "x1": 6.24920520744109, "x2": 7.272476375307687, "x3": -2.0547947306495864, "x4": 3.091023092410096, "x5": 0.13871090749678527}}, null] +[[6, 0, 2], 9.0, {"submitted": 1558193747.9634233, "started": 1558193747.963758, "finished": 1558193747.9720635}, {"loss": 0.06524537480942012, "info": {"x0": -3.3930256060026855, "x1": 4.923985890725794, "x2": 5.701936070029309, "x3": -0.9444039643422855, "x4": 1.5262796659376603, "x5": 0.2180804948512971}}, null] +[[6, 0, 3], 9.0, {"submitted": 1558193747.9737694, "started": 1558193747.974181, "finished": 1558193747.9808836}, {"loss": 0.7733708762723356, "info": {"x0": -3.9115188318365437, "x1": 6.985690282235401, "x2": 4.286179012357706, "x3": -3.5660481422740875, "x4": 3.6931328003746082, "x5": 0.18592564965730424}}, null] +[[6, 0, 4], 9.0, {"submitted": 1558193747.9826846, "started": 1558193747.9830606, "finished": 1558193747.9906282}, {"loss": 0.5466612978218751, "info": {"x0": -4.1398227751250385, "x1": 6.354403201963902, "x2": 4.322837669655511, "x3": -0.4274395439707437, "x4": 3.6026988082189155, "x5": 0.06888107081488298}}, null] +[[6, 0, 5], 9.0, {"submitted": 1558193747.9929893, "started": 1558193747.9933727, "finished": 1558193748.0017118}, {"loss": 0.9087691061709702, "info": {"x0": -5.910306502806936, "x1": 7.67642997061174, "x2": 5.524425920250907, "x3": -1.6496321603034962, "x4": 3.3108660481142187, "x5": 0.30710879434710886}}, null] +[[6, 0, 0], 27.0, {"submitted": 1558193748.0039487, "started": 1558193748.0043561, "finished": 1558193748.0108898}, {"loss": 0.0346741711047994, "info": {"x0": -2.04187431182727, "x1": 6.261287078166566, "x2": 4.896932540448574, "x3": -3.1066687025715614, "x4": 2.5573920279777944, "x5": 0.2845276591812279}}, null] +[[6, 0, 2], 27.0, {"submitted": 1558193748.012389, "started": 1558193748.0127025, "finished": 1558193748.0184953}, {"loss": 0.06524537480942012, "info": {"x0": -3.3930256060026855, "x1": 4.923985890725794, "x2": 5.701936070029309, "x3": -0.9444039643422855, "x4": 1.5262796659376603, "x5": 0.2180804948512971}}, null] +[[7, 0, 0], 27.0, {"submitted": 1558193748.0207925, "started": 1558193748.0211687, "finished": 1558193748.0272136}, {"loss": 0.474175381917006, "info": {"x0": -4.958826397179148, "x1": 5.870707411174923, "x2": 7.630720983007166, "x3": -1.6742981487728654, "x4": 3.29972990550137, "x5": 0.38134285472575175}}, null] +[[7, 0, 1], 27.0, {"submitted": 1558193748.0294087, "started": 1558193748.0299008, "finished": 1558193748.0373635}, {"loss": 0.19203539447782503, "info": {"x0": -3.282422819219259, "x1": 4.421095920933759, "x2": 5.31420028160862, "x3": -0.22757629224650477, "x4": 3.712900322221337, "x5": 0.4532445040347985}}, null] +[[7, 0, 2], 27.0, {"submitted": 1558193748.039363, "started": 1558193748.0397992, "finished": 1558193748.0459812}, {"loss": 0.5114239720236554, "info": {"x0": -3.9758207642530143, "x1": 7.703002462181405, "x2": 4.637950429451185, "x3": -0.8692738089433054, "x4": 3.8620847191272714, "x5": 0.07888283052103084}}, null] +[[7, 0, 3], 27.0, {"submitted": 1558193748.0484602, "started": 1558193748.0488098, "finished": 1558193748.0557287}, {"loss": 0.8549477048102865, "info": {"x0": -4.690766582840869, "x1": 5.497256700215855, "x2": 4.535453965170007, "x3": -3.356792255024408, "x4": 2.1000024312221384, "x5": 0.1716776173058132}}, null] +[[8, 0, 0], 1.0, {"submitted": 1558193748.057887, "started": 1558193748.0583627, "finished": 1558193748.0658188}, {"loss": 0.8869401981547119, "info": {"x0": -5.6429662638229034, "x1": 6.156424349615591, "x2": 4.619389906912948, "x3": -2.7850927494339883, "x4": 4.008117877840927, "x5": 0.2826978536617121}}, null] +[[8, 0, 1], 1.0, {"submitted": 1558193748.067823, "started": 1558193748.0681849, "finished": 1558193748.0752804}, {"loss": 0.07280772848179141, "info": {"x0": -2.6746581241666667, "x1": 5.864771444274403, "x2": 4.111656871073347, "x3": -3.8769199809945025, "x4": 1.1620454254127282, "x5": 0.0537219578646117}}, null] +[[8, 0, 2], 1.0, {"submitted": 1558193748.077579, "started": 1558193748.077966, "finished": 1558193748.0847986}, {"loss": 0.796299273437391, "info": {"x0": -4.2145836502478895, "x1": 5.747181420462408, "x2": 5.826310501598517, "x3": -2.5862680901199386, "x4": 3.3805605578082734, "x5": 0.32191163503393766}}, null] +[[8, 0, 3], 1.0, {"submitted": 1558193748.0880306, "started": 1558193748.0887716, "finished": 1558193748.0964036}, {"loss": 0.8709573590955664, "info": {"x0": -5.336724634547257, "x1": 3.1918928972599447, "x2": 5.584110783630215, "x3": -3.9403499485040037, "x4": 1.1482925520809806, "x5": 0.014361328557955744}}, null] +[[8, 0, 4], 1.0, {"submitted": 1558193748.0982687, "started": 1558193748.0986633, "finished": 1558193748.1059852}, {"loss": 0.039501205089105686, "info": {"x0": -2.3725886700630148, "x1": 4.640901642898202, "x2": 5.3247092018139615, "x3": -2.560577188385805, "x4": 2.5474015310859226, "x5": 0.3136794307719155}}, null] +[[8, 0, 5], 1.0, {"submitted": 1558193748.1079333, "started": 1558193748.1082964, "finished": 1558193748.113981}, {"loss": 0.05261464079636674, "info": {"x0": -2.84566209855539, "x1": 4.280175729826195, "x2": 5.6960543509018535, "x3": -1.7155944872579272, "x4": 2.0763291822680268, "x5": 0.2962023263508337}}, null] +[[8, 0, 6], 1.0, {"submitted": 1558193748.1162918, "started": 1558193748.1166475, "finished": 1558193748.124997}, {"loss": 0.17658889155148597, "info": {"x0": -2.838918303934485, "x1": 3.358681361502562, "x2": 5.453269466001837, "x3": -1.1265641925291638, "x4": 3.4648310368819604, "x5": 0.49121271295147545}}, null] +[[8, 0, 7], 1.0, {"submitted": 1558193748.126956, "started": 1558193748.1273732, "finished": 1558193748.13359}, {"loss": 0.9057924378904559, "info": {"x0": -5.939513900894108, "x1": 6.750834971360015, "x2": 5.713029908301943, "x3": -3.532591456844824, "x4": 2.185507478954816, "x5": 0.4391626310073996}}, null] +[[8, 0, 8], 1.0, {"submitted": 1558193748.1356745, "started": 1558193748.136114, "finished": 1558193748.1423979}, {"loss": 0.1024939642063764, "info": {"x0": -2.632186997656502, "x1": 3.690745480370029, "x2": 4.324008249907591, "x3": -1.4785478628438455, "x4": 2.683891706209569, "x5": 0.03573788902785968}}, null] +[[8, 0, 9], 1.0, {"submitted": 1558193748.14458, "started": 1558193748.1448903, "finished": 1558193748.1513238}, {"loss": 0.036926792234733795, "info": {"x0": -2.64531852850133, "x1": 6.438859618806895, "x2": 7.135913716200761, "x3": -2.9975068878695117, "x4": 4.086941855032254, "x5": 0.30265519784713807}}, null] +[[8, 0, 10], 1.0, {"submitted": 1558193748.1542656, "started": 1558193748.1547682, "finished": 1558193748.1622112}, {"loss": 0.8845534988642278, "info": {"x0": -4.464125423009763, "x1": 7.997215222886436, "x2": 4.247926065345117, "x3": -3.2322782410857913, "x4": 4.042684637961184, "x5": 0.13688413960338547}}, null] +[[8, 0, 11], 1.0, {"submitted": 1558193748.164292, "started": 1558193748.1646314, "finished": 1558193748.171398}, {"loss": 0.8579243745163312, "info": {"x0": -5.402015248997014, "x1": 5.17770456507114, "x2": 7.211148336869589, "x3": -2.2871052925957036, "x4": 4.274522204434593, "x5": 0.010618636532892911}}, null] +[[8, 0, 12], 1.0, {"submitted": 1558193748.1731668, "started": 1558193748.1735806, "finished": 1558193748.17998}, {"loss": 0.45615446234267276, "info": {"x0": -4.1568214235331755, "x1": 7.283098801280886, "x2": 7.084856440109906, "x3": -1.762593042319272, "x4": 1.5996484609669426, "x5": 0.3752913681228927}}, null] +[[8, 0, 13], 1.0, {"submitted": 1558193748.1820369, "started": 1558193748.182514, "finished": 1558193748.1893067}, {"loss": 0.8920353973143504, "info": {"x0": -5.011972145773489, "x1": 5.312826855853218, "x2": 5.9048755625000595, "x3": -3.112265998122912, "x4": 1.002299965419926, "x5": 0.44432420069048306}}, null] +[[8, 0, 14], 1.0, {"submitted": 1558193748.192846, "started": 1558193748.1932387, "finished": 1558193748.198897}, {"loss": 0.093403052698674, "info": {"x0": -3.314170497123635, "x1": 3.2319790341037815, "x2": 6.1834054057389825, "x3": -2.827802223659776, "x4": 1.9577627632660999, "x5": 0.16554355730641324}}, null] +[[8, 0, 15], 1.0, {"submitted": 1558193748.2007334, "started": 1558193748.201157, "finished": 1558193748.2074819}, {"loss": 0.8878519698662783, "info": {"x0": -5.419277537682568, "x1": 4.443439846556535, "x2": 5.70548780191262, "x3": -2.2746616994787723, "x4": 1.003721149463615, "x5": 0.10311659600259865}}, null] +[[8, 0, 16], 1.0, {"submitted": 1558193748.2112846, "started": 1558193748.2116578, "finished": 1558193748.2181976}, {"loss": 0.800563149443698, "info": {"x0": -4.122621769870459, "x1": 4.4207303819672115, "x2": 4.1275733409852275, "x3": -2.7894758625995904, "x4": 3.575797568521228, "x5": 0.09821282581387258}}, null] +[[8, 0, 17], 1.0, {"submitted": 1558193748.2207584, "started": 1558193748.2215323, "finished": 1558193748.228807}, {"loss": 0.8854384559008113, "info": {"x0": -5.404741949784974, "x1": 7.5942298561065265, "x2": 7.098429496838189, "x3": -1.823031840690287, "x4": 2.6988011683602706, "x5": 0.3851833472545143}}, null] +[[8, 0, 18], 1.0, {"submitted": 1558193748.230652, "started": 1558193748.2311366, "finished": 1558193748.236688}, {"loss": 0.905229282500829, "info": {"x0": -5.6993309562824095, "x1": 5.538616049246513, "x2": 4.889931421689528, "x3": -0.7667081431369862, "x4": 1.09637818398661, "x5": 0.42665191846139633}}, null] +[[8, 0, 19], 1.0, {"submitted": 1558193748.2387455, "started": 1558193748.2392223, "finished": 1558193748.2462275}, {"loss": 0.8593724859855945, "info": {"x0": -4.375181821161933, "x1": 7.31641311735002, "x2": 4.401072212586286, "x3": -1.70900447930586, "x4": 2.6935545700628754, "x5": 0.14940515476409005}}, null] +[[8, 0, 20], 1.0, {"submitted": 1558193748.248807, "started": 1558193748.2492416, "finished": 1558193748.257721}, {"loss": 0.031214805524002055, "info": {"x0": -2.3236382323265254, "x1": 6.201019448873771, "x2": 7.404658530595896, "x3": -3.0342445125426996, "x4": 3.11754430823625, "x5": 0.08550590841799777}}, null] +[[8, 0, 21], 1.0, {"submitted": 1558193748.259684, "started": 1558193748.2600935, "finished": 1558193748.2662117}, {"loss": 0.9134352367898796, "info": {"x0": -5.790346447393116, "x1": 7.358050843093614, "x2": 7.760677950019062, "x3": -3.088010265272129, "x4": 4.567231099184322, "x5": 0.050707764802863264}}, null] +[[8, 0, 22], 1.0, {"submitted": 1558193748.26821, "started": 1558193748.2686222, "finished": 1558193748.274014}, {"loss": 0.45068382230600046, "info": {"x0": -3.2932240125940364, "x1": 6.180444302159447, "x2": 4.106405468972241, "x3": -1.2247424927755648, "x4": 4.936460845651329, "x5": 0.030303264457280377}}, null] +[[8, 0, 23], 1.0, {"submitted": 1558193748.2757397, "started": 1558193748.276082, "finished": 1558193748.282829}, {"loss": 0.8957361215535231, "info": {"x0": -5.946331955922972, "x1": 5.817636744847194, "x2": 5.794302263605312, "x3": -3.5632008291624526, "x4": 2.8647736780723974, "x5": 0.28260825247239835}}, null] +[[8, 0, 24], 1.0, {"submitted": 1558193748.2852395, "started": 1558193748.2856236, "finished": 1558193748.2930295}, {"loss": 0.6946098094978403, "info": {"x0": -4.468901745026734, "x1": 3.1924687370257128, "x2": 6.471946984208563, "x3": -0.06665867344839915, "x4": 2.4594921053197925, "x5": 0.04264841060282948}}, null] +[[8, 0, 25], 1.0, {"submitted": 1558193748.2949564, "started": 1558193748.295404, "finished": 1558193748.3021662}, {"loss": 0.331214801855655, "info": {"x0": -3.7395548525162043, "x1": 7.238677199623829, "x2": 6.516234836077185, "x3": -3.8753334951033467, "x4": 1.2942283027172623, "x5": 0.36476730173151095}}, null] +[[8, 0, 26], 1.0, {"submitted": 1558193748.30427, "started": 1558193748.3046274, "finished": 1558193748.3099275}, {"loss": 0.902091712972909, "info": {"x0": -5.579055279117153, "x1": 6.8340984121435815, "x2": 4.755901794772678, "x3": -3.366250526185505, "x4": 2.57765353638224, "x5": 0.43055208734248596}}, null] +[[8, 0, 1], 3.0, {"submitted": 1558193748.3118782, "started": 1558193748.3122094, "finished": 1558193748.320403}, {"loss": 0.06299276404196662, "info": {"x0": -2.6746581241666667, "x1": 5.864771444274403, "x2": 4.111656871073347, "x3": -3.8769199809945025, "x4": 1.1620454254127282, "x5": 0.0537219578646117}}, null] +[[8, 0, 4], 3.0, {"submitted": 1558193748.3224294, "started": 1558193748.3227978, "finished": 1558193748.328825}, {"loss": 0.031536604292624816, "info": {"x0": -2.3725886700630148, "x1": 4.640901642898202, "x2": 5.3247092018139615, "x3": -2.560577188385805, "x4": 2.5474015310859226, "x5": 0.3136794307719155}}, null] +[[8, 0, 5], 3.0, {"submitted": 1558193748.3304935, "started": 1558193748.3308358, "finished": 1558193748.3367543}, {"loss": 0.03620273427721578, "info": {"x0": -2.84566209855539, "x1": 4.280175729826195, "x2": 5.6960543509018535, "x3": -1.7155944872579272, "x4": 2.0763291822680268, "x5": 0.2962023263508337}}, null] +[[8, 0, 6], 3.0, {"submitted": 1558193748.3382287, "started": 1558193748.3386545, "finished": 1558193748.345731}, {"loss": 0.07288816928000384, "info": {"x0": -2.838918303934485, "x1": 3.358681361502562, "x2": 5.453269466001837, "x3": -1.1265641925291638, "x4": 3.4648310368819604, "x5": 0.49121271295147545}}, null] +[[8, 0, 8], 3.0, {"submitted": 1558193748.3471222, "started": 1558193748.3476906, "finished": 1558193748.3547044}, {"loss": 0.0595333858113661, "info": {"x0": -2.632186997656502, "x1": 3.690745480370029, "x2": 4.324008249907591, "x3": -1.4785478628438455, "x4": 2.683891706209569, "x5": 0.03573788902785968}}, null] +[[8, 0, 9], 3.0, {"submitted": 1558193748.356173, "started": 1558193748.3565347, "finished": 1558193748.3628259}, {"loss": 0.02333065451198495, "info": {"x0": -2.64531852850133, "x1": 6.438859618806895, "x2": 7.135913716200761, "x3": -2.9975068878695117, "x4": 4.086941855032254, "x5": 0.30265519784713807}}, null] +[[8, 0, 14], 3.0, {"submitted": 1558193748.364476, "started": 1558193748.3649216, "finished": 1558193748.3709307}, {"loss": 0.05277553984741003, "info": {"x0": -3.314170497123635, "x1": 3.2319790341037815, "x2": 6.1834054057389825, "x3": -2.827802223659776, "x4": 1.9577627632660999, "x5": 0.16554355730641324}}, null] +[[8, 0, 20], 3.0, {"submitted": 1558193748.3725255, "started": 1558193748.3729327, "finished": 1558193748.3808124}, {"loss": 0.022687047930945337, "info": {"x0": -2.3236382323265254, "x1": 6.201019448873771, "x2": 7.404658530595896, "x3": -3.0342445125426996, "x4": 3.11754430823625, "x5": 0.08550590841799777}}, null] +[[8, 0, 25], 3.0, {"submitted": 1558193748.3823605, "started": 1558193748.3829145, "finished": 1558193748.3899348}, {"loss": 0.30756235049073966, "info": {"x0": -3.7395548525162043, "x1": 7.238677199623829, "x2": 6.516234836077185, "x3": -3.8753334951033467, "x4": 1.2942283027172623, "x5": 0.36476730173151095}}, null] +[[8, 0, 4], 9.0, {"submitted": 1558193748.3918943, "started": 1558193748.3922713, "finished": 1558193748.3980594}, {"loss": 0.028881737270953667, "info": {"x0": -2.3725886700630148, "x1": 4.640901642898202, "x2": 5.3247092018139615, "x3": -2.560577188385805, "x4": 2.5474015310859226, "x5": 0.3136794307719155}}, null] +[[8, 0, 9], 9.0, {"submitted": 1558193748.3996937, "started": 1558193748.400052, "finished": 1558193748.405913}, {"loss": 0.020514886722580027, "info": {"x0": -2.64531852850133, "x1": 6.438859618806895, "x2": 7.135913716200761, "x3": -2.9975068878695117, "x4": 4.086941855032254, "x5": 0.30265519784713807}}, null] +[[8, 0, 20], 9.0, {"submitted": 1558193748.4076223, "started": 1558193748.4081771, "finished": 1558193748.4156184}, {"loss": 0.01946902765636952, "info": {"x0": -2.3236382323265254, "x1": 6.201019448873771, "x2": 7.404658530595896, "x3": -3.0342445125426996, "x4": 3.11754430823625, "x5": 0.08550590841799777}}, null] +[[8, 0, 20], 27.0, {"submitted": 1558193748.4171224, "started": 1558193748.4174845, "finished": 1558193748.4247313}, {"loss": 0.019227676677396964, "info": {"x0": -2.3236382323265254, "x1": 6.201019448873771, "x2": 7.404658530595896, "x3": -3.0342445125426996, "x4": 3.11754430823625, "x5": 0.08550590841799777}}, null] +[[9, 0, 0], 3.0, {"submitted": 1558193748.4266794, "started": 1558193748.4270515, "finished": 1558193748.4331264}, {"loss": 0.5632341095435935, "info": {"x0": -4.710695098079148, "x1": 5.109268292168097, "x2": 7.866746901892705, "x3": -3.8326583499795523, "x4": 4.184957552450051, "x5": 0.46254883600390695}}, null] +[[9, 0, 1], 3.0, {"submitted": 1558193748.4348693, "started": 1558193748.435243, "finished": 1558193748.4431367}, {"loss": 0.9131938862230715, "info": {"x0": -5.683435746241797, "x1": 7.783276187829507, "x2": 5.033323464903498, "x3": -1.4134102057912323, "x4": 1.709907822594133, "x5": 0.35645908908883356}}, null] +[[9, 0, 2], 3.0, {"submitted": 1558193748.4455945, "started": 1558193748.4460127, "finished": 1558193748.4521918}, {"loss": 0.8860820572454653, "info": {"x0": -5.801586608178875, "x1": 3.7287692135902377, "x2": 5.143077012225355, "x3": -1.6350407655450372, "x4": 1.6189546374200963, "x5": 0.3000854466118104}}, null] +[[9, 0, 3], 3.0, {"submitted": 1558193748.4549837, "started": 1558193748.4554276, "finished": 1558193748.4615798}, {"loss": 0.035156878783447754, "info": {"x0": -2.486793275872983, "x1": 3.712936461860079, "x2": 5.164723331726909, "x3": -0.963196502227734, "x4": 1.8283667777045216, "x5": 0.32752791723850416}}, null] +[[9, 0, 4], 3.0, {"submitted": 1558193748.4635704, "started": 1558193748.4639869, "finished": 1558193748.4703097}, {"loss": 0.10418342555230983, "info": {"x0": -3.093027359124948, "x1": 7.394304857325085, "x2": 5.612718668541293, "x3": -3.372291177232041, "x4": 3.4860086674678787, "x5": 0.3442761649424736}}, null] +[[9, 0, 5], 3.0, {"submitted": 1558193748.4721677, "started": 1558193748.4725676, "finished": 1558193748.4795074}, {"loss": 0.29098953587675136, "info": {"x0": -4.336488921001747, "x1": 3.7993965592803516, "x2": 6.795277736446396, "x3": -1.3487622712836473, "x4": 3.103048349109454, "x5": 0.12076982373972212}}, null] +[[9, 0, 6], 3.0, {"submitted": 1558193748.4814076, "started": 1558193748.4817433, "finished": 1558193748.4876392}, {"loss": 0.22944488452023687, "info": {"x0": -4.00174887946403, "x1": 3.7462756302819518, "x2": 6.78563983077742, "x3": -3.584122301259935, "x4": 4.756166418918145, "x5": 0.189965604038979}}, null] +[[9, 0, 7], 3.0, {"submitted": 1558193748.4898672, "started": 1558193748.4901881, "finished": 1558193748.4958477}, {"loss": 0.024135153910275542, "info": {"x0": -2.3894821901725565, "x1": 6.77476892409507, "x2": 7.982701002041276, "x3": -1.9966580506437603, "x4": 2.272237468841194, "x5": 0.3935084734158767}}, null] +[[9, 0, 8], 3.0, {"submitted": 1558193748.4976912, "started": 1558193748.4980617, "finished": 1558193748.5051048}, {"loss": 0.03507643086912164, "info": {"x0": -2.541203573366711, "x1": 4.645836904291689, "x2": 5.905593753237043, "x3": -0.5936108020127713, "x4": 3.910226879113566, "x5": 0.48983978247457904}}, null] +[[9, 0, 3], 9.0, {"submitted": 1558193748.507188, "started": 1558193748.5075328, "finished": 1558193748.515402}, {"loss": 0.03242156198210805, "info": {"x0": -2.486793275872983, "x1": 3.712936461860079, "x2": 5.164723331726909, "x3": -0.963196502227734, "x4": 1.8283667777045216, "x5": 0.32752791723850416}}, null] +[[9, 0, 7], 9.0, {"submitted": 1558193748.5170875, "started": 1558193748.5174918, "finished": 1558193748.5246596}, {"loss": 0.02180208898511319, "info": {"x0": -2.3894821901725565, "x1": 6.77476892409507, "x2": 7.982701002041276, "x3": -1.9966580506437603, "x4": 2.272237468841194, "x5": 0.3935084734158767}}, null] +[[9, 0, 8], 9.0, {"submitted": 1558193748.5262969, "started": 1558193748.526822, "finished": 1558193748.5342562}, {"loss": 0.0296057956360658, "info": {"x0": -2.541203573366711, "x1": 4.645836904291689, "x2": 5.905593753237043, "x3": -0.5936108020127713, "x4": 3.910226879113566, "x5": 0.48983978247457904}}, null] +[[9, 0, 7], 27.0, {"submitted": 1558193748.5359964, "started": 1558193748.5363784, "finished": 1558193748.543534}, {"loss": 0.02180208898511319, "info": {"x0": -2.3894821901725565, "x1": 6.77476892409507, "x2": 7.982701002041276, "x3": -1.9966580506437603, "x4": 2.272237468841194, "x5": 0.3935084734158767}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/randomsearch/configs.json new file mode 100644 index 0000000..1d8cad9 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/randomsearch/configs.json @@ -0,0 +1,40 @@ +[[0, 0, 0], {"x0": -4.764955688863881, "x1": 5.0641188933675085, "x2": 7.370896974403612, "x3": -3.3652884977462203, "x4": 1.135883325288909, "x5": 0.4636238524401035}, {}] +[[0, 0, 1], {"x0": -2.90677177681453, "x1": 5.614970238487132, "x2": 6.509351382528493, "x3": -3.347033283531907, "x4": 4.5353205178678735, "x5": 0.3893224524124038}, {}] +[[0, 0, 2], {"x0": -5.42462392187985, "x1": 7.0404312621312615, "x2": 6.793109569106306, "x3": -1.7930213417173877, "x4": 3.8330061601814758, "x5": 0.17920233584827855}, {}] +[[0, 0, 3], {"x0": -2.3405590465485933, "x1": 5.981368891239093, "x2": 7.311756902145907, "x3": -1.0495946532031897, "x4": 2.7379616417784276, "x5": 0.17887091190721577}, {}] +[[1, 0, 0], {"x0": -2.6159377010434, "x1": 5.066174748406604, "x2": 6.18596765396212, "x3": -1.7872108123716055, "x4": 3.370467186308384, "x5": 0.3459511707670377}, {}] +[[1, 0, 1], {"x0": -3.1474846000733456, "x1": 6.788949028672663, "x2": 6.179958955989752, "x3": -2.151075656587989, "x4": 3.8405045701048977, "x5": 0.07813055669798219}, {}] +[[1, 0, 2], {"x0": -2.5821641100705865, "x1": 4.631142699494113, "x2": 7.7500925124498465, "x3": -2.514758875864472, "x4": 1.0708861403624588, "x5": 0.4179888283448746}, {}] +[[1, 0, 3], {"x0": -4.919969002822518, "x1": 6.7687557731579595, "x2": 5.7100743160669225, "x3": -2.8959271722291122, "x4": 2.4597681494941317, "x5": 0.48211329238068434}, {}] +[[2, 0, 0], {"x0": -5.405757014497994, "x1": 4.868045533697877, "x2": 7.991013620278919, "x3": -2.6481212382842108, "x4": 1.0353147474791649, "x5": 0.24539780547283296}, {}] +[[2, 0, 1], {"x0": -3.7037403824188786, "x1": 7.230001889470823, "x2": 6.042361343346718, "x3": -1.3254644811389578, "x4": 1.9776490781998026, "x5": 0.14748125788922856}, {}] +[[2, 0, 2], {"x0": -4.2720410415903665, "x1": 6.44973326117282, "x2": 5.443332600516607, "x3": -1.2623775197785818, "x4": 3.4307765495155493, "x5": 0.3171470333113574}, {}] +[[2, 0, 3], {"x0": -4.030905956032594, "x1": 3.4748813473711886, "x2": 5.8225054735938215, "x3": -2.876930500692321, "x4": 1.4090757909462108, "x5": 0.47484061622439466}, {}] +[[3, 0, 0], {"x0": -3.7180563559483732, "x1": 6.155843220182598, "x2": 7.392820784184437, "x3": -0.7310706248642149, "x4": 1.8321131819106533, "x5": 0.021670110888789285}, {}] +[[3, 0, 1], {"x0": -5.6578810845525656, "x1": 7.329200314454516, "x2": 6.08679155932863, "x3": -2.0793652983038178, "x4": 1.1201500865253609, "x5": 0.36612349978106}, {}] +[[3, 0, 2], {"x0": -3.831126844342796, "x1": 6.29009176656511, "x2": 6.05310023958917, "x3": -3.719004453242679, "x4": 1.0092209120174949, "x5": 0.46625157062456435}, {}] +[[3, 0, 3], {"x0": -5.067775435540421, "x1": 6.463892453710096, "x2": 6.740117427603064, "x3": -1.1964677734565603, "x4": 1.303046578792869, "x5": 0.481992595891169}, {}] +[[4, 0, 0], {"x0": -3.5564787948323375, "x1": 6.185024820064337, "x2": 4.861625160004111, "x3": -0.9590597218967392, "x4": 2.343974642516022, "x5": 0.3350385251108208}, {}] +[[4, 0, 1], {"x0": -4.811816994981214, "x1": 6.057592639445472, "x2": 7.265474971450748, "x3": -3.9728170756555308, "x4": 4.694220725129761, "x5": 0.27290059675301537}, {}] +[[4, 0, 2], {"x0": -5.855481548825974, "x1": 5.10071338455492, "x2": 7.607157556280976, "x3": -1.3177743658617196, "x4": 1.1874062991119332, "x5": 0.020700921777399184}, {}] +[[4, 0, 3], {"x0": -5.537123176733704, "x1": 4.992915385827457, "x2": 5.035424196792359, "x3": -3.061075139149234, "x4": 2.7713823534656594, "x5": 0.22896342788260188}, {}] +[[5, 0, 0], {"x0": -3.7472104424189236, "x1": 4.418572954908316, "x2": 4.019530252726119, "x3": -2.3628480976052613, "x4": 1.0055806435291892, "x5": 0.30319950895985975}, {}] +[[5, 0, 1], {"x0": -2.3074069768170453, "x1": 3.335496288299342, "x2": 7.698663514365063, "x3": -1.6442048608062092, "x4": 3.577208684759095, "x5": 0.3411574256659703}, {}] +[[5, 0, 2], {"x0": -4.418550475355222, "x1": 7.708251360548461, "x2": 4.271363268392399, "x3": -1.4669210613544932, "x4": 3.2484451551033575, "x5": 0.04308887520616789}, {}] +[[5, 0, 3], {"x0": -4.5704678647659644, "x1": 5.704477610828673, "x2": 6.05646334552397, "x3": -1.433492967526485, "x4": 1.621687056960623, "x5": 0.03704261432900191}, {}] +[[6, 0, 0], {"x0": -5.033664993860512, "x1": 6.440910251704345, "x2": 5.715473826590487, "x3": -1.1807982834712112, "x4": 3.974246255408414, "x5": 0.207790829876892}, {}] +[[6, 0, 1], {"x0": -2.441326120720021, "x1": 3.661606272461766, "x2": 6.96933257599337, "x3": -1.3543060610290674, "x4": 4.174699441554594, "x5": 0.2975090982788271}, {}] +[[6, 0, 2], {"x0": -3.182029891948661, "x1": 4.4301828817141224, "x2": 5.701265165812728, "x3": -2.5189747192122414, "x4": 2.3897872306876735, "x5": 0.12487147590976455}, {}] +[[6, 0, 3], {"x0": -4.517976251278245, "x1": 5.426591199688921, "x2": 7.251290342523603, "x3": -1.1929510675214368, "x4": 3.5223055668227303, "x5": 0.10526489779927573}, {}] +[[7, 0, 0], {"x0": -2.4603661617767134, "x1": 5.275379983461291, "x2": 4.143581483994474, "x3": -0.8658500389347341, "x4": 1.2374873101728556, "x5": 0.23796664548776414}, {}] +[[7, 0, 1], {"x0": -5.123929304656566, "x1": 7.472441403091995, "x2": 5.555777110421356, "x3": -1.3085015989648903, "x4": 2.6187068884172464, "x5": 0.4501758618926634}, {}] +[[7, 0, 2], {"x0": -3.9995970625045847, "x1": 7.724730018632272, "x2": 6.691629351483668, "x3": -2.9094662902108652, "x4": 2.8270930534169194, "x5": 0.47318062500646335}, {}] +[[7, 0, 3], {"x0": -2.8434029456897085, "x1": 5.499487659043435, "x2": 4.448463117739175, "x3": -0.820811208350122, "x4": 4.852064772124938, "x5": 0.3914078317052214}, {}] +[[8, 0, 0], {"x0": -5.283125518370531, "x1": 5.979566595323632, "x2": 6.339857336451994, "x3": -3.7760773142898336, "x4": 3.3759781423093034, "x5": 0.3597027010106156}, {}] +[[8, 0, 1], {"x0": -2.2011948782705386, "x1": 6.913831016079428, "x2": 5.113615666521381, "x3": -3.015073652237816, "x4": 2.0557615154983053, "x5": 0.29609995037883435}, {}] +[[8, 0, 2], {"x0": -5.318987355003712, "x1": 3.9804251153940524, "x2": 4.527591231043706, "x3": -0.4183355592234719, "x4": 4.940932180723552, "x5": 0.02736821434188136}, {}] +[[8, 0, 3], {"x0": -3.70793079321069, "x1": 6.437043110321903, "x2": 6.297618855455107, "x3": -0.43579574253644227, "x4": 3.345769147485713, "x5": 0.340142078340533}, {}] +[[9, 0, 0], {"x0": -2.766650232000333, "x1": 6.4187754288874315, "x2": 7.840464853586358, "x3": -0.44319168396924047, "x4": 4.385476229899594, "x5": 0.12324165621629235}, {}] +[[9, 0, 1], {"x0": -2.9454652173445774, "x1": 5.471492937849006, "x2": 5.930068282508379, "x3": -2.5082690025453096, "x4": 4.841238004984049, "x5": 0.10823740047222963}, {}] +[[9, 0, 2], {"x0": -2.3481532771350984, "x1": 7.603634143286164, "x2": 7.749318212859326, "x3": -3.998949543558278, "x4": 1.39830684639392, "x5": 0.43247520794724575}, {}] +[[9, 0, 3], {"x0": -4.049750928530509, "x1": 6.0646473499776805, "x2": 7.963900588511186, "x3": -1.574254559954929, "x4": 1.7194968455828121, "x5": 0.012206159662043303}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/randomsearch/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/randomsearch/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/randomsearch/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/randomsearch/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/randomsearch/results.json new file mode 100644 index 0000000..1ed056e --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/randomsearch/results.json @@ -0,0 +1,40 @@ +[[0, 0, 0], 27, {"submitted": 1558193731.1280468, "started": 1558193731.1283674, "finished": 1558193731.137805}, {"loss": 0.49469026421479223, "info": {"x0": -4.764955688863881, "x1": 5.0641188933675085, "x2": 7.370896974403612, "x3": -3.3652884977462203, "x4": 1.135883325288909, "x5": 0.4636238524401035}}, null] +[[0, 0, 1], 27, {"submitted": 1558193731.141014, "started": 1558193731.1417596, "finished": 1558193731.1479733}, {"loss": 0.047626713975628635, "info": {"x0": -2.90677177681453, "x1": 5.614970238487132, "x2": 6.509351382528493, "x3": -3.347033283531907, "x4": 4.5353205178678735, "x5": 0.3893224524124038}}, null] +[[0, 0, 2], 27, {"submitted": 1558193731.1498094, "started": 1558193731.1501997, "finished": 1558193731.1568635}, {"loss": 0.8849557522422845, "info": {"x0": -5.42462392187985, "x1": 7.0404312621312615, "x2": 6.793109569106306, "x3": -1.7930213417173877, "x4": 3.8330061601814758, "x5": 0.17920233584827855}}, null] +[[0, 0, 3], 27, {"submitted": 1558193731.1585617, "started": 1558193731.1589816, "finished": 1558193731.1644435}, {"loss": 0.02091713475778232, "info": {"x0": -2.3405590465485933, "x1": 5.981368891239093, "x2": 7.311756902145907, "x3": -1.0495946532031897, "x4": 2.7379616417784276, "x5": 0.17887091190721577}}, null] +[[1, 0, 0], 27, {"submitted": 1558193731.166156, "started": 1558193731.1665027, "finished": 1558193731.1743329}, {"loss": 0.02534191743174774, "info": {"x0": -2.6159377010434, "x1": 5.066174748406604, "x2": 6.18596765396212, "x3": -1.7872108123716055, "x4": 3.370467186308384, "x5": 0.3459511707670377}}, null] +[[1, 0, 1], 27, {"submitted": 1558193731.1759033, "started": 1558193731.1762204, "finished": 1558193731.1819212}, {"loss": 0.046741747822573565, "info": {"x0": -3.1474846000733456, "x1": 6.788949028672663, "x2": 6.179958955989752, "x3": -2.151075656587989, "x4": 3.8405045701048977, "x5": 0.07813055669798219}}, null] +[[1, 0, 2], 27, {"submitted": 1558193731.1841514, "started": 1558193731.1846187, "finished": 1558193731.190497}, {"loss": 0.019629927728795682, "info": {"x0": -2.5821641100705865, "x1": 4.631142699494113, "x2": 7.7500925124498465, "x3": -2.514758875864472, "x4": 1.0708861403624588, "x5": 0.4179888283448746}}, null] +[[1, 0, 3], 27, {"submitted": 1558193731.1925118, "started": 1558193731.1929884, "finished": 1558193731.1990154}, {"loss": 0.888656475544815, "info": {"x0": -4.919969002822518, "x1": 6.7687557731579595, "x2": 5.7100743160669225, "x3": -2.8959271722291122, "x4": 2.4597681494941317, "x5": 0.48211329238068434}}, null] +[[2, 0, 0], 27, {"submitted": 1558193731.2010374, "started": 1558193731.201645, "finished": 1558193731.2091422}, {"loss": 0.7250201122069541, "info": {"x0": -5.405757014497994, "x1": 4.868045533697877, "x2": 7.991013620278919, "x3": -2.6481212382842108, "x4": 1.0353147474791649, "x5": 0.24539780547283296}}, null] +[[2, 0, 1], 27, {"submitted": 1558193731.211045, "started": 1558193731.2113988, "finished": 1558193731.2170737}, {"loss": 0.1354786816376021, "info": {"x0": -3.7037403824188786, "x1": 7.230001889470823, "x2": 6.042361343346718, "x3": -1.3254644811389578, "x4": 1.9776490781998026, "x5": 0.14748125788922856}}, null] +[[2, 0, 2], 27, {"submitted": 1558193731.2190132, "started": 1558193731.2194562, "finished": 1558193731.2256444}, {"loss": 0.7626709563167628, "info": {"x0": -4.2720410415903665, "x1": 6.44973326117282, "x2": 5.443332600516607, "x3": -1.2623775197785818, "x4": 3.4307765495155493, "x5": 0.3171470333113574}}, null] +[[2, 0, 3], 27, {"submitted": 1558193731.2275164, "started": 1558193731.2278569, "finished": 1558193731.2346685}, {"loss": 0.26604987708124916, "info": {"x0": -4.030905956032594, "x1": 3.4748813473711886, "x2": 5.8225054735938215, "x3": -2.876930500692321, "x4": 1.4090757909462108, "x5": 0.47484061622439466}}, null] +[[3, 0, 0], 27, {"submitted": 1558193731.2367542, "started": 1558193731.237123, "finished": 1558193731.243511}, {"loss": 0.05422365797304476, "info": {"x0": -3.7180563559483732, "x1": 6.155843220182598, "x2": 7.392820784184437, "x3": -0.7310706248642149, "x4": 1.8321131819106533, "x5": 0.021670110888789285}}, null] +[[3, 0, 1], 27, {"submitted": 1558193731.2452362, "started": 1558193731.2455873, "finished": 1558193731.2514386}, {"loss": 0.890667737836703, "info": {"x0": -5.6578810845525656, "x1": 7.329200314454516, "x2": 6.08679155932863, "x3": -2.0793652983038178, "x4": 1.1201500865253609, "x5": 0.36612349978106}}, null] +[[3, 0, 2], 27, {"submitted": 1558193731.2535536, "started": 1558193731.2540822, "finished": 1558193731.2603166}, {"loss": 0.470796459892874, "info": {"x0": -3.831126844342796, "x1": 6.29009176656511, "x2": 6.05310023958917, "x3": -3.719004453242679, "x4": 1.0092209120174949, "x5": 0.46625157062456435}}, null] +[[3, 0, 3], 27, {"submitted": 1558193731.2636578, "started": 1558193731.264089, "finished": 1558193731.271288}, {"loss": 0.8038616246664455, "info": {"x0": -5.067775435540421, "x1": 6.463892453710096, "x2": 6.740117427603064, "x3": -1.1964677734565603, "x4": 1.303046578792869, "x5": 0.481992595891169}}, null] +[[4, 0, 0], 27, {"submitted": 1558193731.2730744, "started": 1558193731.2735968, "finished": 1558193731.2803533}, {"loss": 0.22614641390854762, "info": {"x0": -3.5564787948323375, "x1": 6.185024820064337, "x2": 4.861625160004111, "x3": -0.9590597218967392, "x4": 2.343974642516022, "x5": 0.3350385251108208}}, null] +[[4, 0, 1], 27, {"submitted": 1558193731.2822952, "started": 1558193731.282769, "finished": 1558193731.2888386}, {"loss": 0.6947707149274317, "info": {"x0": -4.811816994981214, "x1": 6.057592639445472, "x2": 7.265474971450748, "x3": -3.9728170756555308, "x4": 4.694220725129761, "x5": 0.27290059675301537}}, null] +[[4, 0, 2], 27, {"submitted": 1558193731.2905016, "started": 1558193731.2908435, "finished": 1558193731.2977045}, {"loss": 0.6273531749568825, "info": {"x0": -5.855481548825974, "x1": 5.10071338455492, "x2": 7.607157556280976, "x3": -1.3177743658617196, "x4": 1.1874062991119332, "x5": 0.020700921777399184}}, null] +[[4, 0, 3], 27, {"submitted": 1558193731.2998981, "started": 1558193731.300252, "finished": 1558193731.3056297}, {"loss": 0.905470634799987, "info": {"x0": -5.537123176733704, "x1": 4.992915385827457, "x2": 5.035424196792359, "x3": -3.061075139149234, "x4": 2.7713823534656594, "x5": 0.22896342788260188}}, null] +[[5, 0, 0], 27, {"submitted": 1558193731.3079908, "started": 1558193731.3083546, "finished": 1558193731.3143098}, {"loss": 0.20313756851927467, "info": {"x0": -3.7472104424189236, "x1": 4.418572954908316, "x2": 4.019530252726119, "x3": -2.3628480976052613, "x4": 1.0055806435291892, "x5": 0.30319950895985975}}, null] +[[5, 0, 1], 27, {"submitted": 1558193731.3161478, "started": 1558193731.3164845, "finished": 1558193731.3225486}, {"loss": 0.030168945465179953, "info": {"x0": -2.3074069768170453, "x1": 3.335496288299342, "x2": 7.698663514365063, "x3": -1.6442048608062092, "x4": 3.577208684759095, "x5": 0.3411574256659703}}, null] +[[5, 0, 2], 27, {"submitted": 1558193731.324969, "started": 1558193731.3254032, "finished": 1558193731.3330348}, {"loss": 0.8333065157646817, "info": {"x0": -4.418550475355222, "x1": 7.708251360548461, "x2": 4.271363268392399, "x3": -1.4669210613544932, "x4": 3.2484451551033575, "x5": 0.04308887520616789}}, null] +[[5, 0, 3], 27, {"submitted": 1558193731.3350506, "started": 1558193731.3354948, "finished": 1558193731.3422928}, {"loss": 0.5041834264142515, "info": {"x0": -4.5704678647659644, "x1": 5.704477610828673, "x2": 6.05646334552397, "x3": -1.433492967526485, "x4": 1.621687056960623, "x5": 0.03704261432900191}}, null] +[[6, 0, 0], 27, {"submitted": 1558193731.3447666, "started": 1558193731.3451798, "finished": 1558193731.351124}, {"loss": 0.8837489938493803, "info": {"x0": -5.033664993860512, "x1": 6.440910251704345, "x2": 5.715473826590487, "x3": -1.1807982834712112, "x4": 3.974246255408414, "x5": 0.207790829876892}}, null] +[[6, 0, 1], 27, {"submitted": 1558193731.353372, "started": 1558193731.353842, "finished": 1558193731.3614671}, {"loss": 0.022767498103822326, "info": {"x0": -2.441326120720021, "x1": 3.661606272461766, "x2": 6.96933257599337, "x3": -1.3543060610290674, "x4": 4.174699441554594, "x5": 0.2975090982788271}}, null] +[[6, 0, 2], 27, {"submitted": 1558193731.3638415, "started": 1558193731.3643222, "finished": 1558193731.3701396}, {"loss": 0.03805309798289765, "info": {"x0": -3.182029891948661, "x1": 4.4301828817141224, "x2": 5.701265165812728, "x3": -2.5189747192122414, "x4": 2.3897872306876735, "x5": 0.12487147590976455}}, null] +[[6, 0, 3], 27, {"submitted": 1558193731.3722486, "started": 1558193731.3727727, "finished": 1558193731.379116}, {"loss": 0.17570394055553723, "info": {"x0": -4.517976251278245, "x1": 5.426591199688921, "x2": 7.251290342523603, "x3": -1.1929510675214368, "x4": 3.5223055668227303, "x5": 0.10526489779927573}}, null] +[[7, 0, 0], 27, {"submitted": 1558193731.3810282, "started": 1558193731.381462, "finished": 1558193731.3875065}, {"loss": 0.04674175545177628, "info": {"x0": -2.4603661617767134, "x1": 5.275379983461291, "x2": 4.143581483994474, "x3": -0.8658500389347341, "x4": 1.2374873101728556, "x5": 0.23796664548776414}}, null] +[[7, 0, 1], 27, {"submitted": 1558193731.389214, "started": 1558193731.389562, "finished": 1558193731.396608}, {"loss": 0.8942880117203306, "info": {"x0": -5.123929304656566, "x1": 7.472441403091995, "x2": 5.555777110421356, "x3": -1.3085015989648903, "x4": 2.6187068884172464, "x5": 0.4501758618926634}}, null] +[[7, 0, 2], 27, {"submitted": 1558193731.3987014, "started": 1558193731.3991714, "finished": 1558193731.404716}, {"loss": 0.5095736130029083, "info": {"x0": -3.9995970625045847, "x1": 7.724730018632272, "x2": 6.691629351483668, "x3": -2.9094662902108652, "x4": 2.8270930534169194, "x5": 0.47318062500646335}}, null] +[[7, 0, 3], 27, {"submitted": 1558193731.406479, "started": 1558193731.4067485, "finished": 1558193731.4128766}, {"loss": 0.24279967768122285, "info": {"x0": -2.8434029456897085, "x1": 5.499487659043435, "x2": 4.448463117739175, "x3": -0.820811208350122, "x4": 4.852064772124938, "x5": 0.3914078317052214}}, null] +[[8, 0, 0], 27, {"submitted": 1558193731.4148223, "started": 1558193731.4152446, "finished": 1558193731.4211879}, {"loss": 0.8841512460207637, "info": {"x0": -5.283125518370531, "x1": 5.979566595323632, "x2": 6.339857336451994, "x3": -3.7760773142898336, "x4": 3.3759781423093034, "x5": 0.3597027010106156}}, null] +[[8, 0, 1], 27, {"submitted": 1558193731.4234147, "started": 1558193731.4238229, "finished": 1558193731.4305902}, {"loss": 0.030410295202189276, "info": {"x0": -2.2011948782705386, "x1": 6.913831016079428, "x2": 5.113615666521381, "x3": -3.015073652237816, "x4": 2.0557615154983053, "x5": 0.29609995037883435}}, null] +[[8, 0, 2], 27, {"submitted": 1558193731.4323556, "started": 1558193731.432676, "finished": 1558193731.4382877}, {"loss": 0.7477876045885747, "info": {"x0": -5.318987355003712, "x1": 3.9804251153940524, "x2": 4.527591231043706, "x3": -0.4183355592234719, "x4": 4.940932180723552, "x5": 0.02736821434188136}}, null] +[[8, 0, 3], 27, {"submitted": 1558193731.4399397, "started": 1558193731.4405012, "finished": 1558193731.448411}, {"loss": 0.10909090883196695, "info": {"x0": -3.70793079321069, "x1": 6.437043110321903, "x2": 6.297618855455107, "x3": -0.43579574253644227, "x4": 3.345769147485713, "x5": 0.340142078340533}}, null] +[[9, 0, 0], 27, {"submitted": 1558193731.4507356, "started": 1558193731.45125, "finished": 1558193731.4593937}, {"loss": 0.021319389419985336, "info": {"x0": -2.766650232000333, "x1": 6.4187754288874315, "x2": 7.840464853586358, "x3": -0.44319168396924047, "x4": 4.385476229899594, "x5": 0.12324165621629235}}, null] +[[9, 0, 1], 27, {"submitted": 1558193731.4612803, "started": 1558193731.4616857, "finished": 1558193731.4681368}, {"loss": 0.03644408576927738, "info": {"x0": -2.9454652173445774, "x1": 5.471492937849006, "x2": 5.930068282508379, "x3": -2.5082690025453096, "x4": 4.841238004984049, "x5": 0.10823740047222963}}, null] +[[9, 0, 2], 27, {"submitted": 1558193731.4700828, "started": 1558193731.4704807, "finished": 1558193731.4766524}, {"loss": 0.023652450010264392, "info": {"x0": -2.3481532771350984, "x1": 7.603634143286164, "x2": 7.749318212859326, "x3": -3.998949543558278, "x4": 1.39830684639392, "x5": 0.43247520794724575}}, null] +[[9, 0, 3], 27, {"submitted": 1558193731.4784079, "started": 1558193731.4788089, "finished": 1558193731.4850059}, {"loss": 0.19267900006865074, "info": {"x0": -4.049750928530509, "x1": 6.0646473499776805, "x2": 7.963900588511186, "x3": -1.574254559954929, "x4": 1.7194968455828121, "x5": 0.012206159662043303}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/configspace.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/configspace.json similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/configspace.json rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/optdigits/smac/run_1726927288/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/runhistory.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/runhistory.json new file mode 100644 index 0000000..8d49302 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/runhistory.json @@ -0,0 +1,968 @@ +{ + "data": [ + [ + [ + 1, + null, + 0 + ], + [ + 0.45398229632110054, + 0.014675378799438477, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 2, + null, + 0 + ], + [ + 0.05551085800100314, + 0.015138387680053711, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 3, + null, + 0 + ], + [ + 0.25317779072618063, + 0.014786243438720703, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 4, + null, + 0 + ], + [ + 0.8837489927100648, + 0.017995119094848633, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 5, + null, + 0 + ], + [ + 0.03869670066062423, + 0.017675399780273438, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 6, + null, + 0 + ], + [ + 0.5251810111105442, + 0.015475034713745117, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 7, + null, + 0 + ], + [ + 0.04690265674218954, + 0.01775979995727539, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 8, + null, + 0 + ], + [ + 0.9287208361617101, + 0.016232967376708984, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 9, + null, + 0 + ], + [ + 0.8108608193114124, + 0.014824628829956055, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 10, + null, + 0 + ], + [ + 0.03073210054986055, + 0.019904136657714844, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 11, + null, + 0 + ], + [ + 0.21319388453028223, + 0.018140792846679688, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 12, + null, + 0 + ], + [ + 0.02711182522466845, + 0.018917322158813477, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 13, + null, + 0 + ], + [ + 0.7002413527544045, + 0.1646437644958496, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 14, + null, + 0 + ], + [ + 0.881979082692909, + 0.020768165588378906, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 15, + null, + 0 + ], + [ + 0.8867256608924269, + 0.017943859100341797, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 16, + null, + 0 + ], + [ + 0.6917940456668936, + 0.032105445861816406, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 17, + null, + 0 + ], + [ + 0.05486725686733892, + 0.026213884353637695, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 18, + null, + 0 + ], + [ + 0.0789219581351967, + 0.024585485458374023, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 19, + null, + 0 + ], + [ + 0.03813354602669481, + 0.020702362060546875, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 20, + null, + 0 + ], + [ + 0.060418343165183575, + 0.0236208438873291, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 21, + null, + 0 + ], + [ + 0.04424778876626867, + 0.029175519943237305, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 22, + null, + 0 + ], + [ + 0.060257449115559816, + 0.0230410099029541, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 23, + null, + 0 + ], + [ + 0.0534995992626764, + 0.018981456756591797, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 24, + null, + 0 + ], + [ + 0.6848753023437094, + 0.020397663116455078, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 25, + null, + 0 + ], + [ + 0.029364446258698374, + 0.021456241607666016, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 26, + null, + 0 + ], + [ + 0.8676588897743919, + 0.021279573440551758, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 27, + null, + 0 + ], + [ + 0.13483507494627228, + 0.023388385772705078, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 28, + null, + 0 + ], + [ + 0.1873692650279017, + 0.03364109992980957, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 29, + null, + 0 + ], + [ + 0.18318583981605277, + 0.02729034423828125, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 30, + null, + 0 + ], + [ + 0.025020113513053464, + 0.030479907989501953, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 31, + null, + 0 + ], + [ + 0.05317779454797483, + 0.04216814041137695, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 32, + null, + 0 + ], + [ + 0.038857601960627944, + 0.03397202491760254, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 33, + null, + 0 + ], + [ + 0.1903459340597676, + 0.023724079132080078, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 34, + null, + 0 + ], + [ + 0.02485921195890285, + 0.058303117752075195, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 35, + null, + 0 + ], + [ + 0.2512469807077778, + 0.04087233543395996, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 36, + null, + 0 + ], + [ + 0.07570394451879055, + 0.025015592575073242, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 37, + null, + 0 + ], + [ + 0.05760257767269138, + 0.02416682243347168, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 38, + null, + 0 + ], + [ + 0.8494770684543989, + 0.04422259330749512, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 39, + null, + 0 + ], + [ + 0.035237333967334694, + 0.03032398223876953, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 40, + null, + 0 + ], + [ + 0.02872084121692593, + 0.03004312515258789, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ] + ], + "config_origins": { + "1": "Random initial design.", + "2": "Random Search", + "3": "Random Search", + "4": "Random Search (sorted)", + "5": "Random Search (sorted)", + "6": "Random Search (sorted)", + "7": "Random Search (sorted)", + "8": "Random Search", + "9": "Random Search", + "10": "Random Search", + "11": "Random Search (sorted)", + "12": "Random Search (sorted)", + "13": "Random Search", + "14": "Random Search", + "15": "Random Search", + "16": "Random Search", + "17": "Random Search", + "18": "Random Search", + "19": "Random Search (sorted)", + "20": "Local Search", + "21": "Random Search", + "22": "Local Search", + "23": "Local Search", + "24": "Random Search", + "25": "Random Search (sorted)", + "26": "Random Search", + "27": "Local Search", + "28": "Local Search", + "29": "Local Search", + "30": "Random Search", + "31": "Random Search (sorted)", + "32": "Local Search", + "33": "Random Search", + "34": "Random Search", + "35": "Local Search", + "36": "Local Search", + "37": "Random Search (sorted)", + "38": "Random Search", + "39": "Local Search", + "40": "Random Search" + }, + "configs": { + "1": { + "x0": -5.901036752912455, + "x1": 3.221638046453227, + "x2": 7.617107551611429, + "x3": -0.1689250213983846, + "x4": 4.396231385345797, + "x5": 0.46455645166091974 + }, + "2": { + "x0": -2.988385430258473, + "x1": 5.569945694158359, + "x2": 5.897997928985314, + "x3": -2.2942176503281444, + "x4": 2.3002429780299942, + "x5": 0.47119457519131447 + }, + "3": { + "x0": -3.915389051610353, + "x1": 7.199295624263505, + "x2": 6.634792895919116, + "x3": -3.0891458959270954, + "x4": 1.218208963462295, + "x5": 0.1485859185023391 + }, + "4": { + "x0": -5.661364516452105, + "x1": 5.196777644842058, + "x2": 4.92718400461331, + "x3": -1.6727956712867145, + "x4": 2.057953389172855, + "x5": 0.0673587580033374 + }, + "5": { + "x0": -3.1914125169356584, + "x1": 7.214990125768712, + "x2": 7.696512969510755, + "x3": -3.948947265939128, + "x4": 2.2614500740521755, + "x5": 0.24197149060224105 + }, + "6": { + "x0": -5.038812005740577, + "x1": 6.241519647027179, + "x2": 7.58835059274926, + "x3": -0.856323133041573, + "x4": 1.7980656621407447, + "x5": 0.0971974856652949 + }, + "7": { + "x0": -3.1496138823359288, + "x1": 5.646237371557699, + "x2": 5.1490852264604285, + "x3": -0.07659690738688019, + "x4": 4.166601119770396, + "x5": 0.00783038484838372 + }, + "8": { + "x0": -4.2969073369754165, + "x1": 7.827003801896444, + "x2": 4.529617432873289, + "x3": -3.68468546182364, + "x4": 2.9357497455620294, + "x5": 0.4631799202653865 + }, + "9": { + "x0": -4.802666248336285, + "x1": 7.907032227603722, + "x2": 7.169564982135277, + "x3": -3.144169326801779, + "x4": 4.402300409391673, + "x5": 0.36800943164516847 + }, + "10": { + "x0": -3.1876370811293464, + "x1": 4.584445182076711, + "x2": 6.497718836440081, + "x3": -3.331887468467503, + "x4": 4.418498287838387, + "x5": 0.4024185653628192 + }, + "11": { + "x0": -2.3275235167297077, + "x1": 6.524960837536904, + "x2": 4.454092801124791, + "x3": -0.3183374786201649, + "x4": 4.296873112239439, + "x5": 0.43446526309676237 + }, + "12": { + "x0": -3.4402391368932332, + "x1": 7.351839158062646, + "x2": 7.571081862435461, + "x3": -0.8953586415165598, + "x4": 4.222120977175425, + "x5": 0.04183994613865588 + }, + "13": { + "x0": -4.539050608975997, + "x1": 7.904299765630019, + "x2": 7.507626994826962, + "x3": -2.9359007643911585, + "x4": 4.934380519477022, + "x5": 0.3690034488510199 + }, + "14": { + "x0": -5.62670013606288, + "x1": 7.81906054014291, + "x2": 6.7766069722423605, + "x3": -1.0407525026723774, + "x4": 1.099167660741561, + "x5": 0.3714152905222615 + }, + "15": { + "x0": -5.338893155873142, + "x1": 3.8499319989354124, + "x2": 4.866258769234442, + "x3": -2.5018321505937933, + "x4": 2.704509078319247, + "x5": 0.1089241008605733 + }, + "16": { + "x0": -4.722451383593073, + "x1": 5.534062561054339, + "x2": 6.010183663973592, + "x3": -0.8766933780231683, + "x4": 4.337895367114801, + "x5": 0.17211407740394186 + }, + "17": { + "x0": -4.2138435893742745, + "x1": 4.106328238598834, + "x2": 7.036756688353922, + "x3": -1.2087175367421539, + "x4": 4.190135573099416, + "x5": 0.04169177424946274 + }, + "18": { + "x0": -3.6285912608857673, + "x1": 7.113777515648534, + "x2": 7.875319940440967, + "x3": -1.2132999664246515, + "x4": 1.0464130676949894, + "x5": 0.10121796902110503 + }, + "19": { + "x0": -3.9563531258295117, + "x1": 3.7674129387911037, + "x2": 7.533837207167651, + "x3": -2.9105560935483554, + "x4": 3.3068110594565865, + "x5": 0.0030027392257752084 + }, + "20": { + "x0": -4.1031960532576575, + "x1": 4.869555130019398, + "x2": 7.279524328029798, + "x3": -1.2591204166813283, + "x4": 4.374019935066057, + "x5": 0.0827016367928367 + }, + "21": { + "x0": -3.114754794934408, + "x1": 3.801783899036636, + "x2": 4.489988439920196, + "x3": -0.2973134650617908, + "x4": 2.323972969798112, + "x5": 0.045162528601825014 + }, + "22": { + "x0": -4.184680253761255, + "x1": 4.839264169237936, + "x2": 7.202962938393663, + "x3": -1.3941187516522797, + "x4": 3.3012449773810637, + "x5": 0.0165293138770882 + }, + "23": { + "x0": -4.1865824026750795, + "x1": 3.973219470523122, + "x2": 7.227718167491462, + "x3": -1.2515439353044875, + "x4": 3.964350954722462, + "x5": 0.0443466307973544 + }, + "24": { + "x0": -4.148638902920092, + "x1": 6.069818885908526, + "x2": 4.869224140058788, + "x3": -1.1206611144102947, + "x4": 2.992012194086752, + "x5": 0.4590520898915387 + }, + "25": { + "x0": -3.2901991177319263, + "x1": 4.06382679971613, + "x2": 6.3537662772993215, + "x3": -2.463454057223989, + "x4": 3.847123359599192, + "x5": 0.29225226380804126 + }, + "26": { + "x0": -5.137345343748411, + "x1": 7.7286963981224055, + "x2": 5.273970837149999, + "x3": -0.7711523578421935, + "x4": 1.5805384870565944, + "x5": 0.24748684019070016 + }, + "27": { + "x0": -4.139214755030915, + "x1": 3.901503269964878, + "x2": 6.796043506707864, + "x3": -3.096582412369249, + "x4": 3.964350954722462, + "x5": 0.052256701848876125 + }, + "28": { + "x0": -4.216075289059303, + "x1": 4.159140037924004, + "x2": 7.066583455856836, + "x3": -2.9719879274982755, + "x4": 2.7479950984058004, + "x5": 0.0003551999151365547 + }, + "29": { + "x0": -4.212485770962183, + "x1": 4.6275777457250395, + "x2": 6.668893618785718, + "x3": -2.1599335753115323, + "x4": 2.8889192660287155, + "x5": 0.031723746131051285 + }, + "30": { + "x0": -2.7120469419112, + "x1": 3.3802476513269344, + "x2": 6.2838212996159974, + "x3": -2.385583625898922, + "x4": 4.681645973967414, + "x5": 0.24418913554775123 + }, + "31": { + "x0": -3.983607752718214, + "x1": 3.8667285553073336, + "x2": 7.827773147889815, + "x3": -2.629414399847632, + "x4": 3.4854487216218817, + "x5": 0.25721004216203525 + }, + "32": { + "x0": -3.4402391368932332, + "x1": 7.619412238929414, + "x2": 7.717116203740521, + "x3": -0.7851880916464848, + "x4": 4.572775385931347, + "x5": 0.020574797977181772 + }, + "33": { + "x0": -4.366059695785704, + "x1": 6.058879166067522, + "x2": 6.861840542856761, + "x3": -1.172297370037207, + "x4": 3.5241007347884357, + "x5": 0.24190145816366188 + }, + "34": { + "x0": -2.5877099479354286, + "x1": 5.590285720666181, + "x2": 6.45514174698543, + "x3": -1.322227612099546, + "x4": 2.212377975001813, + "x5": 0.39278208828980926 + }, + "35": { + "x0": -4.233401019090684, + "x1": 6.20133335004927, + "x2": 6.4611342760963275, + "x3": -1.1156620267899533, + "x4": 3.787963707334164, + "x5": 0.29012123442883486 + }, + "36": { + "x0": -4.24871138285485, + "x1": 4.045234774040267, + "x2": 7.415614311376303, + "x3": -3.2833895911275435, + "x4": 2.566189462347805, + "x5": 0.042524715317382 + }, + "37": { + "x0": -4.247334104210006, + "x1": 4.597792013850528, + "x2": 7.540119893593429, + "x3": -1.4009616510557592, + "x4": 1.4287752546418764, + "x5": 0.09715269464504711 + }, + "38": { + "x0": -5.161968648206411, + "x1": 4.013232648045033, + "x2": 6.1246181238237, + "x3": -3.85048776948972, + "x4": 1.5045318814698856, + "x5": 0.352573236334383 + }, + "39": { + "x0": -3.1176344305032244, + "x1": 7.947810294653763, + "x2": 7.5959205923893585, + "x3": -0.7211666428163128, + "x4": 4.020193624510368, + "x5": 0.030954391847130294 + }, + "40": { + "x0": -3.251664869273033, + "x1": 7.988511754946774, + "x2": 7.800077001544947, + "x3": -0.4177722169673248, + "x4": 4.144594411060202, + "x5": 0.39430480403608437 + } + } +} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/scenario.txt b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/scenario.txt new file mode 100644 index 0000000..6b5bea2 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/scenario.txt @@ -0,0 +1,12 @@ +execdir = . +deterministic = True +run_obj = quality +overall_obj = par10 +par_factor = 10 +cost_for_crash = 2147483647.0 +algo_runs_timelimit = inf +wallclock_limit = inf +always_race_default = False +ta_run_limit = 40.0 +initial_incumbent = RANDOM +pcs_fn = ../opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/stats.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/stats.json new file mode 100644 index 0000000..8713b29 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/stats.json @@ -0,0 +1 @@ +{"ta_runs": 40, "n_configs": 40, "wallclock_time_used": 48.67980408668518, "ta_time_used": 1.134052038192749, "inc_changed": 7, "_n_configs_per_intensify": 38, "_n_calls_of_intensify": 19, "_ema_n_configs_per_intensifiy": 2.0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/traj_aclib2.json new file mode 100644 index 0000000..3822308 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/traj_aclib2.json @@ -0,0 +1,8 @@ +{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 9.393692016601562e-05, "evaluations": 0, "cost": 2147483648, "incumbent": ["x0='-5.901036752912455'", "x1='3.221638046453227'", "x2='7.617107551611429'", "x3='-0.1689250213983846'", "x4='4.396231385345797'", "x5='0.46455645166091974'"], "origin": "Random initial design."} +{"cpu_time": 0.014675378799438477, "total_cpu_time": null, "wallclock_time": 0.03440260887145996, "evaluations": 1, "cost": 0.45398229632110054, "incumbent": ["x0='-5.901036752912455'", "x1='3.221638046453227'", "x2='7.617107551611429'", "x3='-0.1689250213983846'", "x4='4.396231385345797'", "x5='0.46455645166091974'"], "origin": "Random initial design."} +{"cpu_time": 0.029813766479492188, "total_cpu_time": null, "wallclock_time": 0.36567044258117676, "evaluations": 2, "cost": 0.05551085800100314, "incumbent": ["x0='-2.988385430258473'", "x1='5.569945694158359'", "x2='5.897997928985314'", "x3='-2.2942176503281444'", "x4='2.3002429780299942'", "x5='0.47119457519131447'"], "origin": "Random Search"} +{"cpu_time": 0.08027052879333496, "total_cpu_time": null, "wallclock_time": 1.307112693786621, "evaluations": 5, "cost": 0.03869670066062423, "incumbent": ["x0='-3.1914125169356584'", "x1='7.214990125768712'", "x2='7.696512969510755'", "x3='-3.948947265939128'", "x4='2.2614500740521755'", "x5='0.24197149060224105'"], "origin": "Random Search (sorted)"} +{"cpu_time": 0.16446709632873535, "total_cpu_time": null, "wallclock_time": 6.249393463134766, "evaluations": 10, "cost": 0.03073210054986055, "incumbent": ["x0='-3.1876370811293464'", "x1='4.584445182076711'", "x2='6.497718836440081'", "x3='-3.331887468467503'", "x4='4.418498287838387'", "x5='0.4024185653628192'"], "origin": "Random Search"} +{"cpu_time": 0.20152521133422852, "total_cpu_time": null, "wallclock_time": 8.716110706329346, "evaluations": 12, "cost": 0.02711182522466845, "incumbent": ["x0='-3.4402391368932332'", "x1='7.351839158062646'", "x2='7.571081862435461'", "x3='-0.8953586415165598'", "x4='4.222120977175425'", "x5='0.04183994613865588'"], "origin": "Random Search (sorted)"} +{"cpu_time": 0.7812402248382568, "total_cpu_time": null, "wallclock_time": 32.870060205459595, "evaluations": 30, "cost": 0.025020113513053464, "incumbent": ["x0='-2.7120469419112'", "x1='3.3802476513269344'", "x2='6.2838212996159974'", "x3='-2.385583625898922'", "x4='4.681645973967414'", "x5='0.24418913554775123'"], "origin": "Random Search"} +{"cpu_time": 0.9394075870513916, "total_cpu_time": null, "wallclock_time": 39.95304465293884, "evaluations": 34, "cost": 0.02485921195890285, "incumbent": ["x0='-2.5877099479354286'", "x1='5.590285720666181'", "x2='6.45514174698543'", "x3='-1.322227612099546'", "x4='2.212377975001813'", "x5='0.39278208828980926'"], "origin": "Random Search"} diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/traj_old.csv b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/traj_old.csv new file mode 100644 index 0000000..89cbe3f --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/optdigits/smac/run_1254519304/traj_old.csv @@ -0,0 +1,9 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." +0.000000, 2147483648.000000, 0.000094, 1, 0.000094, x0='-5.901036752912455', x1='3.221638046453227', x2='7.617107551611429', x3='-0.1689250213983846', x4='4.396231385345797', x5='0.46455645166091974' +0.014675, 0.453982, 0.034403, 1, 0.019727, x0='-5.901036752912455', x1='3.221638046453227', x2='7.617107551611429', x3='-0.1689250213983846', x4='4.396231385345797', x5='0.46455645166091974' +0.029814, 0.055511, 0.365670, 2, 0.335857, x0='-2.988385430258473', x1='5.569945694158359', x2='5.897997928985314', x3='-2.2942176503281444', x4='2.3002429780299942', x5='0.47119457519131447' +0.080271, 0.038697, 1.307113, 3, 1.226842, x0='-3.1914125169356584', x1='7.214990125768712', x2='7.696512969510755', x3='-3.948947265939128', x4='2.2614500740521755', x5='0.24197149060224105' +0.164467, 0.030732, 6.249393, 4, 6.084926, x0='-3.1876370811293464', x1='4.584445182076711', x2='6.497718836440081', x3='-3.331887468467503', x4='4.418498287838387', x5='0.4024185653628192' +0.201525, 0.027112, 8.716111, 5, 8.514585, x0='-3.4402391368932332', x1='7.351839158062646', x2='7.571081862435461', x3='-0.8953586415165598', x4='4.222120977175425', x5='0.04183994613865588' +0.781240, 0.025020, 32.870060, 6, 32.088820, x0='-2.7120469419112', x1='3.3802476513269344', x2='6.2838212996159974', x3='-2.385583625898922', x4='4.681645973967414', x5='0.24418913554775123' +0.939408, 0.024859, 39.953045, 7, 39.013637, x0='-2.5877099479354286', x1='5.590285720666181', x2='6.45514174698543', x3='-1.322227612099546', x4='2.212377975001813', x5='0.39278208828980926' diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/bohb/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/bohb/configs.json new file mode 100644 index 0000000..a16a14f --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/bohb/configs.json @@ -0,0 +1,128 @@ +[[0, 0, 0], {"x0": -3.6594518435285286, "x1": 7.586860726311347, "x2": 4.926336678648146, "x3": -3.589912974552172, "x4": 1.9097483199818805, "x5": 0.4132011184048546}, {"model_based_pick": false}] +[[0, 0, 1], {"x0": -4.993617491054247, "x1": 3.6447104375063715, "x2": 5.794635238612621, "x3": -1.048654012423596, "x4": 2.7187597441033047, "x5": 0.3403753124992193}, {"model_based_pick": false}] +[[0, 0, 2], {"x0": -5.832783636153964, "x1": 4.071395105489023, "x2": 6.102167158668369, "x3": -2.4091617271623518, "x4": 2.435356975244707, "x5": 0.1451714103771405}, {"model_based_pick": false}] +[[0, 0, 3], {"x0": -2.48938792364753, "x1": 3.6630313382804305, "x2": 7.585678298194688, "x3": -2.4388349351428222, "x4": 4.073576156160402, "x5": 0.24233805953250565}, {"model_based_pick": false}] +[[0, 0, 4], {"x0": -3.8987786663959154, "x1": 3.953622215326937, "x2": 4.114202284656725, "x3": -3.5342158587274946, "x4": 1.1969175216893855, "x5": 0.12486146708523305}, {"model_based_pick": false}] +[[0, 0, 5], {"x0": -3.012676508295022, "x1": 7.364951356852542, "x2": 7.443262845252002, "x3": -0.7014035595905379, "x4": 4.373599573746004, "x5": 0.07123071254964097}, {"model_based_pick": false}] +[[0, 0, 6], {"x0": -4.965922563995766, "x1": 6.712532018860723, "x2": 6.184499962353916, "x3": -2.3146244314399893, "x4": 3.9856241368026497, "x5": 0.10833087759268356}, {"model_based_pick": false}] +[[0, 0, 7], {"x0": -5.214674350417912, "x1": 3.850768441372347, "x2": 7.945418055904938, "x3": -1.4516318986562098, "x4": 2.0268414148220057, "x5": 0.01827274120601008}, {"model_based_pick": false}] +[[0, 0, 8], {"x0": -3.2326301199428196, "x1": 5.9346821809304835, "x2": 5.988591688343235, "x3": -2.650371166091893, "x4": 1.0796961368237827, "x5": 0.24937906382114494}, {"model_based_pick": false}] +[[0, 0, 9], {"x0": -3.8793360720987646, "x1": 5.554728763429555, "x2": 4.128418466132398, "x3": -1.4162001127282804, "x4": 3.513974630823696, "x5": 0.3626326801133063}, {"model_based_pick": false}] +[[0, 0, 10], {"x0": -4.422664691962622, "x1": 6.375924316587945, "x2": 4.365389480948876, "x3": -0.321330025650572, "x4": 3.578978396990428, "x5": 0.0573660218673297}, {"model_based_pick": false}] +[[0, 0, 11], {"x0": -2.181406047471682, "x1": 3.8622129465419244, "x2": 7.588576037892425, "x3": -0.895019113858726, "x4": 2.594754203638051, "x5": 0.4845672057458614}, {"model_based_pick": false}] +[[0, 0, 12], {"x0": -3.895234827991784, "x1": 7.111807344188562, "x2": 5.56510114542872, "x3": -3.216257990748764, "x4": 2.780590234079538, "x5": 0.11750766413878183}, {"model_based_pick": false}] +[[0, 0, 13], {"x0": -2.6234380760494234, "x1": 5.275959723701118, "x2": 5.995743907400056, "x3": -2.5474281062613775, "x4": 1.6625026015751576, "x5": 0.03943312373561986}, {"model_based_pick": false}] +[[0, 0, 14], {"x0": -4.956814097112991, "x1": 6.67935634702598, "x2": 5.6973222605906395, "x3": -0.9427754895675773, "x4": 4.895976442890892, "x5": 0.4308203631248099}, {"model_based_pick": false}] +[[0, 0, 15], {"x0": -3.7727014534479455, "x1": 7.569887979454924, "x2": 6.966095968423096, "x3": -3.2240146392500186, "x4": 1.9639489877386773, "x5": 0.49235098238985253}, {"model_based_pick": true}] +[[0, 0, 16], {"x0": -2.8861346620581667, "x1": 7.655410696303513, "x2": 4.073441787306748, "x3": -0.6392494826559223, "x4": 4.639300292499131, "x5": 0.08690185874272299}, {"model_based_pick": false}] +[[0, 0, 17], {"x0": -2.199246891900139, "x1": 3.7298356518726523, "x2": 5.128866829869106, "x3": -2.5642470026884303, "x4": 1.1163050739092422, "x5": 0.15889357745725768}, {"model_based_pick": true}] +[[0, 0, 18], {"x0": -5.624937939385031, "x1": 6.539941279420061, "x2": 6.88951611779758, "x3": -0.552499670894619, "x4": 3.46894155875087, "x5": 0.11826383598806495}, {"model_based_pick": false}] +[[0, 0, 19], {"x0": -3.3636298867696706, "x1": 6.8399910486438, "x2": 5.504566266703171, "x3": -1.828074170269523, "x4": 1.2284878871450116, "x5": 0.11066773805888899}, {"model_based_pick": true}] +[[0, 0, 20], {"x0": -5.749372434384406, "x1": 5.087484843219092, "x2": 4.8111858146177084, "x3": -3.1803569348819924, "x4": 3.795074060221729, "x5": 0.482090468810044}, {"model_based_pick": false}] +[[0, 0, 21], {"x0": -4.258133856020194, "x1": 6.911481586167646, "x2": 5.694327986778678, "x3": -2.384623710469655, "x4": 4.2615626126074355, "x5": 0.4857609070914061}, {"model_based_pick": false}] +[[0, 0, 22], {"x0": -3.0258008686328064, "x1": 5.8749987474205305, "x2": 6.183819484502827, "x3": -1.862475849055671, "x4": 1.160912269278671, "x5": 0.3423826795850136}, {"model_based_pick": true}] +[[0, 0, 23], {"x0": -3.2110308695219163, "x1": 3.3758111519584135, "x2": 5.641394662388887, "x3": -0.8220247615141782, "x4": 3.6516691314033594, "x5": 0.22325093716731936}, {"model_based_pick": false}] +[[0, 0, 24], {"x0": -5.678350413124041, "x1": 5.188738681742816, "x2": 6.431411289827648, "x3": -2.603021566646231, "x4": 4.225030464069384, "x5": 0.25632595774541744}, {"model_based_pick": false}] +[[0, 0, 25], {"x0": -2.642732702608869, "x1": 7.2372311820299995, "x2": 7.091092828565626, "x3": -0.6021483339644838, "x4": 3.4041242290505505, "x5": 0.0443418407274736}, {"model_based_pick": true}] +[[0, 0, 26], {"x0": -4.14798770764922, "x1": 7.093935849524835, "x2": 5.562804902410439, "x3": -2.780256543283661, "x4": 1.6937458309816176, "x5": 0.0049363746221807725}, {"model_based_pick": false}] +[[1, 0, 0], {"x0": -2.5154202330445026, "x1": 7.348461445628395, "x2": 6.991980105995884, "x3": -0.42311467068915976, "x4": 4.311234977746388, "x5": 0.13192016382956454}, {"model_based_pick": true}] +[[1, 0, 1], {"x0": -2.319188987515367, "x1": 7.08049165967622, "x2": 7.171926812125353, "x3": -0.6614512428860264, "x4": 1.1818855445705427, "x5": 0.006581511899675638}, {"model_based_pick": true}] +[[1, 0, 2], {"x0": -5.572048680613635, "x1": 4.162465610555712, "x2": 7.802514622582215, "x3": -2.3895231025695396, "x4": 3.4502285741441465, "x5": 0.1975547916661226}, {"model_based_pick": false}] +[[1, 0, 3], {"x0": -2.7101386383174817, "x1": 6.462907186053478, "x2": 6.439756094355185, "x3": -0.3522478322429037, "x4": 4.32498475848451, "x5": 0.07963963115558395}, {"model_based_pick": true}] +[[1, 0, 4], {"x0": -2.1361752380804258, "x1": 7.65904005036024, "x2": 7.5462472858399865, "x3": -0.07826492120892459, "x4": 3.214247194841612, "x5": 0.254935728029533}, {"model_based_pick": true}] +[[1, 0, 5], {"x0": -2.3010944250341434, "x1": 6.549716650054824, "x2": 6.829707378480524, "x3": -0.009240674764357415, "x4": 4.5037831427696595, "x5": 0.12553254503725275}, {"model_based_pick": true}] +[[1, 0, 6], {"x0": -3.4390330018199355, "x1": 4.648481990568314, "x2": 7.011434923325537, "x3": -0.4052094821019496, "x4": 3.680557386186944, "x5": 0.26449870902790706}, {"model_based_pick": false}] +[[1, 0, 7], {"x0": -5.14119500637611, "x1": 5.644115100402642, "x2": 7.175122579659252, "x3": -2.7532812923918133, "x4": 1.0686717493503166, "x5": 0.034693288430590774}, {"model_based_pick": false}] +[[1, 0, 8], {"x0": -3.682426532448489, "x1": 3.2413432487988416, "x2": 4.571274571938114, "x3": -1.2415247348543912, "x4": 3.1716191334389747, "x5": 0.24527471680031254}, {"model_based_pick": false}] +[[2, 0, 0], {"x0": -2.06643525244153, "x1": 7.703307211932594, "x2": 7.304718184780608, "x3": -0.6830267114767214, "x4": 4.342193564680159, "x5": 0.17615569148117383}, {"model_based_pick": true}] +[[2, 0, 1], {"x0": -2.3936135043429014, "x1": 6.114384063614412, "x2": 7.226144800718373, "x3": -0.3597056736805193, "x4": 4.956242955420074, "x5": 0.08139341169887182}, {"model_based_pick": true}] +[[2, 0, 2], {"x0": -3.5398217808327215, "x1": 3.368641901308272, "x2": 6.036610556655377, "x3": -2.6991652448365913, "x4": 1.005264858471727, "x5": 0.26452104253234743}, {"model_based_pick": false}] +[[2, 0, 3], {"x0": -2.3118446813434455, "x1": 7.243987088441111, "x2": 7.136915022341858, "x3": -0.0389766822710893, "x4": 4.380357101405169, "x5": 0.056466674758373}, {"model_based_pick": true}] +[[2, 0, 4], {"x0": -3.261608133135264, "x1": 7.531439805563294, "x2": 7.189685755300811, "x3": -1.220964518806352, "x4": 4.020967851962936, "x5": 0.09750893480317198}, {"model_based_pick": true}] +[[2, 0, 5], {"x0": -2.3998255686503183, "x1": 7.296062110143513, "x2": 7.442466963745885, "x3": -0.42138128844486866, "x4": 4.300264043833093, "x5": 0.13923665001073277}, {"model_based_pick": true}] +[[3, 0, 0], {"x0": -2.6920527715577363, "x1": 7.564515042033473, "x2": 7.420612973202173, "x3": -1.3648037994680227, "x4": 4.17649231399629, "x5": 0.12325137223518562}, {"model_based_pick": true}] +[[3, 0, 1], {"x0": -2.5856855653765014, "x1": 7.414069867549851, "x2": 6.310152299390722, "x3": -0.407201463552894, "x4": 4.300438813036347, "x5": 0.07746531018932519}, {"model_based_pick": true}] +[[3, 0, 2], {"x0": -2.4892809152819955, "x1": 7.396082618790995, "x2": 6.476765388341542, "x3": -1.027510957788659, "x4": 4.233869687709825, "x5": 0.10756677698459606}, {"model_based_pick": true}] +[[3, 0, 3], {"x0": -2.7422365750817326, "x1": 3.6789354176044555, "x2": 4.263878472377637, "x3": -3.3584144970363012, "x4": 3.0246843081478447, "x5": 0.15332882027988987}, {"model_based_pick": false}] +[[4, 0, 0], {"x0": -3.1562393387480805, "x1": 7.604209095542976, "x2": 7.929385898775403, "x3": -0.09201293461664983, "x4": 4.489927189315337, "x5": 0.04203315182656534}, {"model_based_pick": true}] +[[4, 0, 1], {"x0": -2.4680052250846094, "x1": 7.476304035224865, "x2": 6.688700636904371, "x3": -0.5746487543702901, "x4": 4.083517051635585, "x5": 0.05902359628751523}, {"model_based_pick": true}] +[[4, 0, 2], {"x0": -3.1187190626282404, "x1": 6.686289011615468, "x2": 7.162766287870744, "x3": -0.4709658887095314, "x4": 4.1902594723691795, "x5": 0.11731793220125321}, {"model_based_pick": true}] +[[4, 0, 3], {"x0": -2.66146884952869, "x1": 7.8422484057457105, "x2": 6.598444789453323, "x3": -0.15762096939449588, "x4": 4.608235252138213, "x5": 0.0701387675386967}, {"model_based_pick": true}] +[[4, 0, 4], {"x0": -2.640222181205047, "x1": 6.995197215420629, "x2": 7.020486857927464, "x3": -0.31830542490930247, "x4": 3.752557682855147, "x5": 0.2265578417046093}, {"model_based_pick": false}] +[[4, 0, 5], {"x0": -3.056039273518077, "x1": 7.599361213029389, "x2": 7.620308054928468, "x3": -0.4331666564832233, "x4": 3.974205688272273, "x5": 0.13343174500168373}, {"model_based_pick": true}] +[[4, 0, 6], {"x0": -2.327061614068422, "x1": 6.698984485695618, "x2": 6.56973621393485, "x3": -0.06200794609022697, "x4": 4.556745640519917, "x5": 0.2191798870548768}, {"model_based_pick": true}] +[[4, 0, 7], {"x0": -2.8223424999923026, "x1": 6.51952824080184, "x2": 6.2175856815281385, "x3": -0.7825993636050397, "x4": 3.891144335202344, "x5": 0.060350482672821906}, {"model_based_pick": true}] +[[4, 0, 8], {"x0": -3.5472927099548963, "x1": 6.22834314530982, "x2": 6.456354488734574, "x3": -2.3133945027915064, "x4": 4.764555926613296, "x5": 0.031154268475560576}, {"model_based_pick": false}] +[[4, 0, 9], {"x0": -4.448804006336314, "x1": 4.216192999975025, "x2": 6.352443530944328, "x3": -1.3155953918714633, "x4": 3.597703038624106, "x5": 0.12235424759306801}, {"model_based_pick": false}] +[[4, 0, 10], {"x0": -4.043846978404488, "x1": 4.039799384456428, "x2": 6.876081188207293, "x3": -3.269810948081138, "x4": 3.165164322468663, "x5": 0.31908562925889433}, {"model_based_pick": false}] +[[4, 0, 11], {"x0": -2.5129848552704117, "x1": 7.4722015970543785, "x2": 7.007799427917432, "x3": -1.0666159747476844, "x4": 4.8962122635032115, "x5": 0.11286831013298275}, {"model_based_pick": true}] +[[4, 0, 12], {"x0": -5.876055725120878, "x1": 6.906042334942689, "x2": 5.45856458162069, "x3": -0.1175540774799444, "x4": 3.492400146628646, "x5": 0.12545911302926216}, {"model_based_pick": false}] +[[4, 0, 13], {"x0": -2.7346051841650585, "x1": 6.703667718666916, "x2": 7.027350350612243, "x3": -0.6831233661325498, "x4": 3.6328157077530188, "x5": 0.16879710086151917}, {"model_based_pick": true}] +[[4, 0, 14], {"x0": -2.3654423602007175, "x1": 6.873916847648305, "x2": 6.2859835518609115, "x3": -0.3887107157990215, "x4": 4.983478644091923, "x5": 0.19008176088003434}, {"model_based_pick": true}] +[[4, 0, 15], {"x0": -2.1284613944400443, "x1": 7.621037639504602, "x2": 7.585988345370364, "x3": -1.0537272231816788, "x4": 4.381271338807907, "x5": 0.25923784426686997}, {"model_based_pick": true}] +[[4, 0, 16], {"x0": -2.5026943625525675, "x1": 6.936062502386514, "x2": 6.765570669027841, "x3": -0.5166771736699052, "x4": 4.718641966041972, "x5": 0.15033176623749642}, {"model_based_pick": true}] +[[4, 0, 17], {"x0": -5.063009529486438, "x1": 5.181140254884228, "x2": 6.237365274134472, "x3": -3.5331253489274377, "x4": 4.7413041706740255, "x5": 0.27697356925074834}, {"model_based_pick": false}] +[[4, 0, 18], {"x0": -2.792051498962156, "x1": 6.777797936167117, "x2": 7.564067266863323, "x3": -0.7824738702881047, "x4": 4.78677508330755, "x5": 0.11152604701882578}, {"model_based_pick": true}] +[[4, 0, 19], {"x0": -2.6615697024698837, "x1": 7.201246004672131, "x2": 7.320575245950389, "x3": -1.6933020551444695, "x4": 4.730700509507334, "x5": 0.10439305471634044}, {"model_based_pick": true}] +[[4, 0, 20], {"x0": -2.507850791007507, "x1": 6.844204900129406, "x2": 6.73278310490044, "x3": -0.7132241107638646, "x4": 4.409126829155775, "x5": 0.0007015759333564575}, {"model_based_pick": true}] +[[4, 0, 21], {"x0": -2.980595204394156, "x1": 7.655457452270828, "x2": 7.954015187997557, "x3": -0.3519389319074224, "x4": 4.537349898480152, "x5": 0.053397187756795014}, {"model_based_pick": true}] +[[4, 0, 22], {"x0": -3.18299824200473, "x1": 6.314605815427649, "x2": 7.501699249287636, "x3": -1.1382207139529483, "x4": 4.951017876662791, "x5": 0.04612794899698651}, {"model_based_pick": true}] +[[4, 0, 23], {"x0": -2.766666952108217, "x1": 7.849381802353753, "x2": 7.616441305382622, "x3": -1.0650916548422646, "x4": 4.023375268778116, "x5": 0.05053820406449658}, {"model_based_pick": true}] +[[4, 0, 24], {"x0": -2.9827112704318144, "x1": 7.086499960689406, "x2": 7.041856259074406, "x3": -0.4788559073564702, "x4": 3.711755005987101, "x5": 0.10821332380899233}, {"model_based_pick": true}] +[[4, 0, 25], {"x0": -4.073847122661653, "x1": 5.147410964864578, "x2": 7.553179101706291, "x3": -0.23374830660825374, "x4": 4.40039406668422, "x5": 0.39760786766856926}, {"model_based_pick": false}] +[[4, 0, 26], {"x0": -3.031696962067657, "x1": 7.25514180896112, "x2": 7.100572093640356, "x3": -0.21226471171694472, "x4": 3.2725434551455743, "x5": 0.0525651225970369}, {"model_based_pick": true}] +[[5, 0, 0], {"x0": -3.16429675135905, "x1": 7.344790363334365, "x2": 7.44167509064391, "x3": -0.7344470611157954, "x4": 4.6136244618440045, "x5": 0.03775440268529794}, {"model_based_pick": true}] +[[5, 0, 1], {"x0": -4.0386647189469915, "x1": 6.597761144991507, "x2": 5.485784053531768, "x3": -3.4308594075740846, "x4": 3.737252825672936, "x5": 0.4430149723328645}, {"model_based_pick": false}] +[[5, 0, 2], {"x0": -2.570199054276861, "x1": 7.663368319602513, "x2": 7.43860911566444, "x3": -0.797163842275443, "x4": 2.741899187773243, "x5": 0.3447410973005701}, {"model_based_pick": false}] +[[5, 0, 3], {"x0": -3.0754407029290816, "x1": 7.759816448082792, "x2": 4.080705068243754, "x3": -2.8031738204023555, "x4": 2.6316748424018983, "x5": 0.1726478524837321}, {"model_based_pick": false}] +[[5, 0, 4], {"x0": -2.379912250639325, "x1": 7.153228166078514, "x2": 7.43030423144638, "x3": -0.4252709443332421, "x4": 4.894275346131924, "x5": 0.14730828410210559}, {"model_based_pick": true}] +[[5, 0, 5], {"x0": -3.133152713160543, "x1": 7.264427007748855, "x2": 6.495586292102031, "x3": -0.23347004783286618, "x4": 2.7768647979173755, "x5": 0.034510625987113686}, {"model_based_pick": true}] +[[5, 0, 6], {"x0": -2.945454411353827, "x1": 5.522910524160745, "x2": 4.909661379175387, "x3": -2.3003643705134458, "x4": 2.493015309881574, "x5": 0.4258003747517478}, {"model_based_pick": false}] +[[5, 0, 7], {"x0": -2.5373414483994132, "x1": 7.250862331605921, "x2": 6.954760915601216, "x3": -0.618247236252436, "x4": 4.417119833559747, "x5": 0.09709702890458063}, {"model_based_pick": true}] +[[5, 0, 8], {"x0": -4.160719087638325, "x1": 3.460113659551691, "x2": 7.434045903537049, "x3": -1.8961905311594722, "x4": 3.918934635416472, "x5": 0.08660623821150099}, {"model_based_pick": false}] +[[6, 0, 0], {"x0": -2.8961698284273156, "x1": 7.146086733038144, "x2": 7.1892652016940755, "x3": -0.33937936058142837, "x4": 3.7583542859535544, "x5": 0.02001215742729301}, {"model_based_pick": true}] +[[6, 0, 1], {"x0": -2.740722959358189, "x1": 7.296762042093885, "x2": 7.169134592554194, "x3": -0.6172100935808031, "x4": 4.182029410719502, "x5": 0.0839611972165312}, {"model_based_pick": true}] +[[6, 0, 2], {"x0": -2.5114297055952184, "x1": 7.3609146404643, "x2": 7.0650004796225065, "x3": -0.5831857901733799, "x4": 2.927001301561568, "x5": 0.07192596339855413}, {"model_based_pick": true}] +[[6, 0, 3], {"x0": -3.0661321717683716, "x1": 7.183564027133063, "x2": 7.232667236457653, "x3": -0.04241720495275958, "x4": 3.6356528740623433, "x5": 0.004179771106796612}, {"model_based_pick": true}] +[[6, 0, 4], {"x0": -3.4423883628925256, "x1": 7.650611906358203, "x2": 4.627335317012847, "x3": -0.1691425140471594, "x4": 4.221122387053879, "x5": 0.4134418559170953}, {"model_based_pick": false}] +[[6, 0, 5], {"x0": -2.4857010450541766, "x1": 7.199198136969348, "x2": 7.266259386923773, "x3": -0.4397640042287905, "x4": 2.1236899582486517, "x5": 0.05041065399212365}, {"model_based_pick": true}] +[[7, 0, 0], {"x0": -3.032979400072807, "x1": 7.375139683284155, "x2": 7.166569063552895, "x3": -0.6593238480707813, "x4": 4.88559830525565, "x5": 0.06843188062323861}, {"model_based_pick": true}] +[[7, 0, 1], {"x0": -2.169701647113014, "x1": 7.354921059712514, "x2": 7.216549651666563, "x3": -0.7417308131447986, "x4": 3.653918122564566, "x5": 0.07156250471677238}, {"model_based_pick": true}] +[[7, 0, 2], {"x0": -3.8881647497154526, "x1": 7.353640067530961, "x2": 7.124170217661806, "x3": -0.04093915167046669, "x4": 3.1158733512828793, "x5": 0.012085392726193786}, {"model_based_pick": true}] +[[7, 0, 3], {"x0": -3.0170564942948706, "x1": 7.320463625720272, "x2": 7.1889441128697005, "x3": -0.4169070231707246, "x4": 1.4824012949837064, "x5": 0.08817513981420905}, {"model_based_pick": true}] +[[8, 0, 0], {"x0": -3.211895880057118, "x1": 7.306778140071855, "x2": 7.018153888521947, "x3": -0.2477429862587468, "x4": 2.3390683951329923, "x5": 0.010137707114184435}, {"model_based_pick": true}] +[[8, 0, 1], {"x0": -3.3159829302780826, "x1": 4.519023915002229, "x2": 6.254077664579477, "x3": -3.7917406363288486, "x4": 1.5731208982759002, "x5": 0.35039445894849736}, {"model_based_pick": false}] +[[8, 0, 2], {"x0": -3.150720724367774, "x1": 7.1524137026977455, "x2": 7.202708304146235, "x3": -0.2668748058680359, "x4": 2.2141313841086347, "x5": 0.003681388119403925}, {"model_based_pick": true}] +[[8, 0, 3], {"x0": -2.7187585587990473, "x1": 7.093832539493358, "x2": 7.158605682473901, "x3": -0.5571977738526179, "x4": 3.6597987727740624, "x5": 0.03776292316927525}, {"model_based_pick": true}] +[[8, 0, 4], {"x0": -2.9986838822057766, "x1": 7.228615886342717, "x2": 7.133845492331615, "x3": -0.45591531005758057, "x4": 2.9866453038081344, "x5": 0.022116120133047416}, {"model_based_pick": true}] +[[8, 0, 5], {"x0": -2.9993659895619187, "x1": 4.910415320519335, "x2": 7.2235728725354775, "x3": -3.130163002639883, "x4": 2.078111186907557, "x5": 0.4127283114765042}, {"model_based_pick": false}] +[[8, 0, 6], {"x0": -2.839404064273906, "x1": 5.580772838330287, "x2": 5.674893244814679, "x3": -1.4456294423485532, "x4": 4.3792900910407795, "x5": 0.0768261100283606}, {"model_based_pick": false}] +[[8, 0, 7], {"x0": -3.0125578203790973, "x1": 7.2428797056785506, "x2": 7.072778512065435, "x3": -0.5018067041711509, "x4": 3.597442157013567, "x5": 0.03289786134413493}, {"model_based_pick": true}] +[[8, 0, 8], {"x0": -4.62933975850534, "x1": 4.90639691544067, "x2": 6.5705101687133185, "x3": -0.049806395440834095, "x4": 1.282683861112687, "x5": 0.4431561511876521}, {"model_based_pick": false}] +[[8, 0, 9], {"x0": -3.032973487696299, "x1": 7.335425182585063, "x2": 7.0288317684578185, "x3": -0.38535926950174915, "x4": 2.5230288619196513, "x5": 0.04223473962547446}, {"model_based_pick": true}] +[[8, 0, 10], {"x0": -2.587244024587292, "x1": 7.222805652874509, "x2": 7.035041990056335, "x3": -0.22300210042231194, "x4": 3.306161348974626, "x5": 0.02818442514166208}, {"model_based_pick": true}] +[[8, 0, 11], {"x0": -3.101995373220582, "x1": 3.9997431375437427, "x2": 5.229155917644336, "x3": -2.505858698455966, "x4": 3.209056259174769, "x5": 0.4090598640560024}, {"model_based_pick": false}] +[[8, 0, 12], {"x0": -2.7828869378103533, "x1": 7.322853236944345, "x2": 7.145639819686029, "x3": -0.4388447384163281, "x4": 2.618415778567695, "x5": 0.04780317688411338}, {"model_based_pick": true}] +[[8, 0, 13], {"x0": -2.3629425097904755, "x1": 7.3847514897617454, "x2": 7.0385296157803925, "x3": -0.507757135613399, "x4": 2.888036017865234, "x5": 0.0004878900327684732}, {"model_based_pick": true}] +[[8, 0, 14], {"x0": -2.841195556070786, "x1": 7.134263403859567, "x2": 7.354228099091988, "x3": -0.38277803339219085, "x4": 4.352028116738699, "x5": 0.00039684802635066296}, {"model_based_pick": true}] +[[8, 0, 15], {"x0": -2.489607321061861, "x1": 7.4161641736664405, "x2": 6.9634484115714255, "x3": -0.5643028734968931, "x4": 4.263593208208727, "x5": 0.17881833216294762}, {"model_based_pick": true}] +[[8, 0, 16], {"x0": -2.6627971030746633, "x1": 7.379420375240341, "x2": 7.057969868510972, "x3": -0.39816384756167444, "x4": 3.0918551447630858, "x5": 0.10939180749891539}, {"model_based_pick": true}] +[[8, 0, 17], {"x0": -2.811621416484248, "x1": 7.299121391621679, "x2": 7.034378721271304, "x3": -0.624338322493859, "x4": 2.1739779394758667, "x5": 0.03577265402544655}, {"model_based_pick": true}] +[[8, 0, 18], {"x0": -2.4265775453905545, "x1": 7.412872980022458, "x2": 7.025333515935719, "x3": -0.4878249511770818, "x4": 2.906917282266126, "x5": 0.04075740297100249}, {"model_based_pick": true}] +[[8, 0, 19], {"x0": -3.4335199046146214, "x1": 6.818980682379736, "x2": 7.833188498119291, "x3": -0.8190915408579751, "x4": 3.787094699640243, "x5": 0.010536866067921702}, {"model_based_pick": false}] +[[8, 0, 20], {"x0": -2.741867770851931, "x1": 7.2260783706132505, "x2": 7.107879320205406, "x3": -0.2296231633411332, "x4": 3.264930560111065, "x5": 0.06684380242935628}, {"model_based_pick": true}] +[[8, 0, 21], {"x0": -2.4881840081705984, "x1": 7.169709664525754, "x2": 6.999513760852813, "x3": -0.5944127807109445, "x4": 2.9965656487391965, "x5": 0.011057216535299563}, {"model_based_pick": true}] +[[8, 0, 22], {"x0": -3.057307946773915, "x1": 7.1838589772206545, "x2": 7.064724785178733, "x3": -0.30198034535874063, "x4": 3.2311082262247717, "x5": 0.07620175163432405}, {"model_based_pick": true}] +[[8, 0, 23], {"x0": -2.526942980553505, "x1": 7.2516568863016175, "x2": 7.021548907884072, "x3": -0.6698372435325193, "x4": 4.291994704705893, "x5": 0.023865208570787416}, {"model_based_pick": true}] +[[8, 0, 24], {"x0": -3.1046329502236194, "x1": 7.077898147884865, "x2": 7.14620145851004, "x3": -0.37912787223089506, "x4": 2.981242202412906, "x5": 0.023449208004342297}, {"model_based_pick": true}] +[[8, 0, 25], {"x0": -4.523725590340903, "x1": 6.544190506985364, "x2": 5.613297952955208, "x3": -0.2441606452375944, "x4": 3.265304295232608, "x5": 0.1279200786639545}, {"model_based_pick": false}] +[[8, 0, 26], {"x0": -2.980465040403762, "x1": 7.173159795338616, "x2": 7.2448207403646325, "x3": -0.257504530469046, "x4": 4.120186064796884, "x5": 0.005572828197447283}, {"model_based_pick": true}] +[[9, 0, 0], {"x0": -2.7772376251227784, "x1": 7.220474816380712, "x2": 7.026904955124829, "x3": -0.3220508822095689, "x4": 2.4077217379429436, "x5": 0.040328545143228936}, {"model_based_pick": true}] +[[9, 0, 1], {"x0": -2.9431278761438078, "x1": 7.183078651545969, "x2": 7.1701635689938845, "x3": -0.2576393709796685, "x4": 3.5467503255463226, "x5": 0.04908116237382899}, {"model_based_pick": true}] +[[9, 0, 2], {"x0": -3.2418161968064827, "x1": 7.22091273757545, "x2": 7.152483578145237, "x3": -0.7588666470238805, "x4": 3.0877502676661996, "x5": 0.033901952999192755}, {"model_based_pick": true}] +[[9, 0, 3], {"x0": -2.5704793255874705, "x1": 7.360881847228487, "x2": 7.173873126557119, "x3": -0.7268774701243355, "x4": 3.031564665663025, "x5": 0.028467213249104947}, {"model_based_pick": true}] +[[9, 0, 4], {"x0": -3.1478955437354683, "x1": 7.233674614376156, "x2": 7.157984086599155, "x3": -0.5823234699925584, "x4": 2.7553905444881126, "x5": 0.04564076642244484}, {"model_based_pick": true}] +[[9, 0, 5], {"x0": -2.475831852429825, "x1": 5.513663932265471, "x2": 5.31767236921308, "x3": -1.5872464189754334, "x4": 3.699539578217119, "x5": 0.07964548867399185}, {"model_based_pick": false}] +[[9, 0, 6], {"x0": -3.939881858986038, "x1": 5.2742411846744215, "x2": 4.923511278820344, "x3": -0.4997555564339855, "x4": 4.520120414830369, "x5": 0.49332390634293116}, {"model_based_pick": false}] +[[9, 0, 7], {"x0": -2.986554699104452, "x1": 7.30667775211474, "x2": 7.193228964227942, "x3": -0.5131720155398631, "x4": 1.7716893673859553, "x5": 0.007028932768932012}, {"model_based_pick": true}] +[[9, 0, 8], {"x0": -2.8764076366262077, "x1": 7.159190544864432, "x2": 7.088104782680832, "x3": -0.41274262615642376, "x4": 3.4601143754676427, "x5": 0.06634776410446984}, {"model_based_pick": true}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/bohb/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/bohb/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/bohb/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/bohb/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/bohb/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/bohb/results.json new file mode 100644 index 0000000..2f4eccc --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/bohb/results.json @@ -0,0 +1,183 @@ +[[0, 0, 0], 81.0, {"submitted": 1558193827.4698596, "started": 1558193827.4703314, "finished": 1558193827.4762533}, {"loss": 0.4104377147885159, "info": {"x0": -3.6594518435285286, "x1": 7.586860726311347, "x2": 4.926336678648146, "x3": -3.589912974552172, "x4": 1.9097483199818805, "x5": 0.4132011184048546}}, null] +[[0, 0, 1], 81.0, {"submitted": 1558193827.4785616, "started": 1558193827.4789102, "finished": 1558193827.4856024}, {"loss": 0.4663142503523464, "info": {"x0": -4.993617491054247, "x1": 3.6447104375063715, "x2": 5.794635238612621, "x3": -1.048654012423596, "x4": 2.7187597441033047, "x5": 0.3403753124992193}}, null] +[[0, 0, 2], 81.0, {"submitted": 1558193827.488609, "started": 1558193827.4890819, "finished": 1558193827.4959686}, {"loss": 0.469644785617031, "info": {"x0": -5.832783636153964, "x1": 4.071395105489023, "x2": 6.102167158668369, "x3": -2.4091617271623518, "x4": 2.435356975244707, "x5": 0.1451714103771405}}, null] +[[0, 0, 3], 81.0, {"submitted": 1558193827.4997487, "started": 1558193827.500237, "finished": 1558193827.5059803}, {"loss": 1, "info": {"x0": -2.48938792364753, "x1": 3.6630313382804305, "x2": 7.585678298194688, "x3": -2.4388349351428222, "x4": 4.073576156160402, "x5": 0.24233805953250565}}, null] +[[0, 0, 4], 81.0, {"submitted": 1558193827.5082757, "started": 1558193827.5088947, "finished": 1558193827.5157535}, {"loss": 0.40965934971227214, "info": {"x0": -3.8987786663959154, "x1": 3.953622215326937, "x2": 4.114202284656725, "x3": -3.5342158587274946, "x4": 1.1969175216893855, "x5": 0.12486146708523305}}, null] +[[0, 0, 5], 81.0, {"submitted": 1558193827.5203137, "started": 1558193827.5210352, "finished": 1558193827.5285637}, {"loss": 0.14607245394720467, "info": {"x0": -3.012676508295022, "x1": 7.364951356852542, "x2": 7.443262845252002, "x3": -0.7014035595905379, "x4": 4.373599573746004, "x5": 0.07123071254964097}}, null] +[[0, 0, 6], 81.0, {"submitted": 1558193827.532131, "started": 1558193827.5324693, "finished": 1558193827.539829}, {"loss": 0.431773371455008, "info": {"x0": -4.965922563995766, "x1": 6.712532018860723, "x2": 6.184499962353916, "x3": -2.3146244314399893, "x4": 3.9856241368026497, "x5": 0.10833087759268356}}, null] +[[0, 0, 7], 81.0, {"submitted": 1558193827.5425513, "started": 1558193827.5429008, "finished": 1558193827.5491414}, {"loss": 0.42415169792295576, "info": {"x0": -5.214674350417912, "x1": 3.850768441372347, "x2": 7.945418055904938, "x3": -1.4516318986562098, "x4": 2.0268414148220057, "x5": 0.01827274120601008}}, null] +[[0, 0, 8], 81.0, {"submitted": 1558193827.5548081, "started": 1558193827.5552619, "finished": 1558193827.5619648}, {"loss": 0.3703194595870364, "info": {"x0": -3.2326301199428196, "x1": 5.9346821809304835, "x2": 5.988591688343235, "x3": -2.650371166091893, "x4": 1.0796961368237827, "x5": 0.24937906382114494}}, null] +[[0, 0, 9], 81.0, {"submitted": 1558193827.5683596, "started": 1558193827.5688493, "finished": 1558193827.575423}, {"loss": 0.4420028208766684, "info": {"x0": -3.8793360720987646, "x1": 5.554728763429555, "x2": 4.128418466132398, "x3": -1.4162001127282804, "x4": 3.513974630823696, "x5": 0.3626326801133063}}, null] +[[0, 0, 10], 81.0, {"submitted": 1558193827.5779443, "started": 1558193827.5782547, "finished": 1558193827.589375}, {"loss": 0.42405109847356764, "info": {"x0": -4.422664691962622, "x1": 6.375924316587945, "x2": 4.365389480948876, "x3": -0.321330025650572, "x4": 3.578978396990428, "x5": 0.0573660218673297}}, null] +[[0, 0, 11], 81.0, {"submitted": 1558193827.592992, "started": 1558193827.59372, "finished": 1558193827.603401}, {"loss": 1, "info": {"x0": -2.181406047471682, "x1": 3.8622129465419244, "x2": 7.588576037892425, "x3": -0.895019113858726, "x4": 2.594754203638051, "x5": 0.4845672057458614}}, null] +[[0, 0, 12], 81.0, {"submitted": 1558193827.6075554, "started": 1558193827.608068, "finished": 1558193827.6176422}, {"loss": 0.4010170749182924, "info": {"x0": -3.895234827991784, "x1": 7.111807344188562, "x2": 5.56510114542872, "x3": -3.216257990748764, "x4": 2.780590234079538, "x5": 0.11750766413878183}}, null] +[[0, 0, 13], 81.0, {"submitted": 1558193827.6215703, "started": 1558193827.6218987, "finished": 1558193827.6274672}, {"loss": 0.20138772448331776, "info": {"x0": -2.6234380760494234, "x1": 5.275959723701118, "x2": 5.995743907400056, "x3": -2.5474281062613775, "x4": 1.6625026015751576, "x5": 0.03943312373561986}}, null] +[[0, 0, 14], 81.0, {"submitted": 1558193827.6313803, "started": 1558193827.6317654, "finished": 1558193827.6379976}, {"loss": 0.4642108260581579, "info": {"x0": -4.956814097112991, "x1": 6.67935634702598, "x2": 5.6973222605906395, "x3": -0.9427754895675773, "x4": 4.895976442890892, "x5": 0.4308203631248099}}, null] +[[0, 0, 15], 81.0, {"submitted": 1558193827.700271, "started": 1558193827.7007914, "finished": 1558193827.706572}, {"loss": 0.32748268034500977, "info": {"x0": -3.7727014534479455, "x1": 7.569887979454924, "x2": 6.966095968423096, "x3": -3.2240146392500186, "x4": 1.9639489877386773, "x5": 0.49235098238985253}}, null] +[[0, 0, 16], 81.0, {"submitted": 1558193827.7093678, "started": 1558193827.7097373, "finished": 1558193827.7189138}, {"loss": 0.33955257519401716, "info": {"x0": -2.8861346620581667, "x1": 7.655410696303513, "x2": 4.073441787306748, "x3": -0.6392494826559223, "x4": 4.639300292499131, "x5": 0.08690185874272299}}, null] +[[0, 0, 17], 81.0, {"submitted": 1558193827.7918575, "started": 1558193827.792309, "finished": 1558193827.7994297}, {"loss": 0.40482503881029264, "info": {"x0": -2.199246891900139, "x1": 3.7298356518726523, "x2": 5.128866829869106, "x3": -2.5642470026884303, "x4": 1.1163050739092422, "x5": 0.15889357745725768}}, null] +[[0, 0, 18], 81.0, {"submitted": 1558193827.8026645, "started": 1558193827.8046076, "finished": 1558193827.8110936}, {"loss": 0.434816220713674, "info": {"x0": -5.624937939385031, "x1": 6.539941279420061, "x2": 6.88951611779758, "x3": -0.552499670894619, "x4": 3.46894155875087, "x5": 0.11826383598806495}}, null] +[[0, 0, 19], 81.0, {"submitted": 1558193827.8726377, "started": 1558193827.87305, "finished": 1558193827.8792589}, {"loss": 0.36690684473516394, "info": {"x0": -3.3636298867696706, "x1": 6.8399910486438, "x2": 5.504566266703171, "x3": -1.828074170269523, "x4": 1.2284878871450116, "x5": 0.11066773805888899}}, null] +[[0, 0, 20], 81.0, {"submitted": 1558193827.8823056, "started": 1558193827.8828378, "finished": 1558193827.8922675}, {"loss": 0.497061559947079, "info": {"x0": -5.749372434384406, "x1": 5.087484843219092, "x2": 4.8111858146177084, "x3": -3.1803569348819924, "x4": 3.795074060221729, "x5": 0.482090468810044}}, null] +[[0, 0, 21], 81.0, {"submitted": 1558193827.895293, "started": 1558193827.895696, "finished": 1558193827.9037058}, {"loss": 0.45235052600742953, "info": {"x0": -4.258133856020194, "x1": 6.911481586167646, "x2": 5.694327986778678, "x3": -2.384623710469655, "x4": 4.2615626126074355, "x5": 0.4857609070914061}}, null] +[[0, 0, 22], 81.0, {"submitted": 1558193827.9778047, "started": 1558193827.9782338, "finished": 1558193827.9842658}, {"loss": 0.3704077026487345, "info": {"x0": -3.0258008686328064, "x1": 5.8749987474205305, "x2": 6.183819484502827, "x3": -1.862475849055671, "x4": 1.160912269278671, "x5": 0.3423826795850136}}, null] +[[0, 0, 23], 81.0, {"submitted": 1558193827.9874237, "started": 1558193827.9877434, "finished": 1558193827.9950347}, {"loss": 0.4022737445323122, "info": {"x0": -3.2110308695219163, "x1": 3.3758111519584135, "x2": 5.641394662388887, "x3": -0.8220247615141782, "x4": 3.6516691314033594, "x5": 0.22325093716731936}}, null] +[[0, 0, 24], 81.0, {"submitted": 1558193827.99865, "started": 1558193827.9990726, "finished": 1558193828.0072756}, {"loss": 0.47660062182276997, "info": {"x0": -5.678350413124041, "x1": 5.188738681742816, "x2": 6.431411289827648, "x3": -2.603021566646231, "x4": 4.225030464069384, "x5": 0.25632595774541744}}, null] +[[0, 0, 25], 81.0, {"submitted": 1558193828.079121, "started": 1558193828.079571, "finished": 1558193828.0860069}, {"loss": 0.04225080762240133, "info": {"x0": -2.642732702608869, "x1": 7.2372311820299995, "x2": 7.091092828565626, "x3": -0.6021483339644838, "x4": 3.4041242290505505, "x5": 0.0443418407274736}}, null] +[[0, 0, 26], 81.0, {"submitted": 1558193828.0917227, "started": 1558193828.0925066, "finished": 1558193828.1001296}, {"loss": 0.3881502880717621, "info": {"x0": -4.14798770764922, "x1": 7.093935849524835, "x2": 5.562804902410439, "x3": -2.780256543283661, "x4": 1.6937458309816176, "x5": 0.0049363746221807725}}, null] +[[0, 0, 5], 243.0, {"submitted": 1558193828.1044478, "started": 1558193828.1049416, "finished": 1558193828.1126628}, {"loss": 0.013143008931486988, "info": {"x0": -3.012676508295022, "x1": 7.364951356852542, "x2": 7.443262845252002, "x3": -0.7014035595905379, "x4": 4.373599573746004, "x5": 0.07123071254964097}}, null] +[[0, 0, 8], 243.0, {"submitted": 1558193828.1150684, "started": 1558193828.11544, "finished": 1558193828.1239865}, {"loss": 0.3512756435808358, "info": {"x0": -3.2326301199428196, "x1": 5.9346821809304835, "x2": 5.988591688343235, "x3": -2.650371166091893, "x4": 1.0796961368237827, "x5": 0.24937906382114494}}, null] +[[0, 0, 13], 243.0, {"submitted": 1558193828.1258824, "started": 1558193828.1262164, "finished": 1558193828.1320455}, {"loss": 0.10805586070773074, "info": {"x0": -2.6234380760494234, "x1": 5.275959723701118, "x2": 5.995743907400056, "x3": -2.5474281062613775, "x4": 1.6625026015751576, "x5": 0.03943312373561986}}, null] +[[0, 0, 15], 243.0, {"submitted": 1558193828.133923, "started": 1558193828.1344337, "finished": 1558193828.1422477}, {"loss": 0.2815223037779176, "info": {"x0": -3.7727014534479455, "x1": 7.569887979454924, "x2": 6.966095968423096, "x3": -3.2240146392500186, "x4": 1.9639489877386773, "x5": 0.49235098238985253}}, null] +[[0, 0, 16], 243.0, {"submitted": 1558193828.1436548, "started": 1558193828.144003, "finished": 1558193828.1524224}, {"loss": 0.2945086685544719, "info": {"x0": -2.8861346620581667, "x1": 7.655410696303513, "x2": 4.073441787306748, "x3": -0.6392494826559223, "x4": 4.639300292499131, "x5": 0.08690185874272299}}, null] +[[0, 0, 19], 243.0, {"submitted": 1558193828.1540031, "started": 1558193828.154381, "finished": 1558193828.1614153}, {"loss": 0.35251334052198074, "info": {"x0": -3.3636298867696706, "x1": 6.8399910486438, "x2": 5.504566266703171, "x3": -1.828074170269523, "x4": 1.2284878871450116, "x5": 0.11066773805888899}}, null] +[[0, 0, 22], 243.0, {"submitted": 1558193828.1632416, "started": 1558193828.1635697, "finished": 1558193828.169759}, {"loss": 0.3435215891554918, "info": {"x0": -3.0258008686328064, "x1": 5.8749987474205305, "x2": 6.183819484502827, "x3": -1.862475849055671, "x4": 1.160912269278671, "x5": 0.3423826795850136}}, null] +[[0, 0, 25], 243.0, {"submitted": 1558193828.1717896, "started": 1558193828.1723523, "finished": 1558193828.1787543}, {"loss": 0.003692804361538504, "info": {"x0": -2.642732702608869, "x1": 7.2372311820299995, "x2": 7.091092828565626, "x3": -0.6021483339644838, "x4": 3.4041242290505505, "x5": 0.0443418407274736}}, null] +[[0, 0, 26], 243.0, {"submitted": 1558193828.181173, "started": 1558193828.1816704, "finished": 1558193828.1884937}, {"loss": 0.36924590675547486, "info": {"x0": -4.14798770764922, "x1": 7.093935849524835, "x2": 5.562804902410439, "x3": -2.780256543283661, "x4": 1.6937458309816176, "x5": 0.0049363746221807725}}, null] +[[0, 0, 5], 729.0, {"submitted": 1558193828.1905406, "started": 1558193828.1909006, "finished": 1558193828.1969147}, {"loss": 0.0021162264294370516, "info": {"x0": -3.012676508295022, "x1": 7.364951356852542, "x2": 7.443262845252002, "x3": -0.7014035595905379, "x4": 4.373599573746004, "x5": 0.07123071254964097}}, null] +[[0, 0, 13], 729.0, {"submitted": 1558193828.2028725, "started": 1558193828.2033043, "finished": 1558193828.2101543}, {"loss": 0.0728491363792524, "info": {"x0": -2.6234380760494234, "x1": 5.275959723701118, "x2": 5.995743907400056, "x3": -2.5474281062613775, "x4": 1.6625026015751576, "x5": 0.03943312373561986}}, null] +[[0, 0, 25], 729.0, {"submitted": 1558193828.211615, "started": 1558193828.2119536, "finished": 1558193828.2185035}, {"loss": 0.001719543206109475, "info": {"x0": -2.642732702608869, "x1": 7.2372311820299995, "x2": 7.091092828565626, "x3": -0.6021483339644838, "x4": 3.4041242290505505, "x5": 0.0443418407274736}}, null] +[[0, 0, 25], 2187.0, {"submitted": 1558193828.220473, "started": 1558193828.220808, "finished": 1558193828.227526}, {"loss": 0.0016211447678991298, "info": {"x0": -2.642732702608869, "x1": 7.2372311820299995, "x2": 7.091092828565626, "x3": -0.6021483339644838, "x4": 3.4041242290505505, "x5": 0.0443418407274736}}, null] +[[1, 0, 0], 243.0, {"submitted": 1558193828.295141, "started": 1558193828.2955663, "finished": 1558193828.3033993}, {"loss": 0.008065571987328601, "info": {"x0": -2.5154202330445026, "x1": 7.348461445628395, "x2": 6.991980105995884, "x3": -0.42311467068915976, "x4": 4.311234977746388, "x5": 0.13192016382956454}}, null] +[[1, 0, 1], 243.0, {"submitted": 1558193828.3751824, "started": 1558193828.375606, "finished": 1558193828.382236}, {"loss": 0.2611825326382943, "info": {"x0": -2.319188987515367, "x1": 7.08049165967622, "x2": 7.171926812125353, "x3": -0.6614512428860264, "x4": 1.1818855445705427, "x5": 0.006581511899675638}}, null] +[[1, 0, 2], 243.0, {"submitted": 1558193828.3858666, "started": 1558193828.3863854, "finished": 1558193828.3938365}, {"loss": 0.4162443062703417, "info": {"x0": -5.572048680613635, "x1": 4.162465610555712, "x2": 7.802514622582215, "x3": -2.3895231025695396, "x4": 3.4502285741441465, "x5": 0.1975547916661226}}, null] +[[1, 0, 3], 243.0, {"submitted": 1558193828.4562325, "started": 1558193828.4566467, "finished": 1558193828.4636016}, {"loss": 0.008622422204330937, "info": {"x0": -2.7101386383174817, "x1": 6.462907186053478, "x2": 6.439756094355185, "x3": -0.3522478322429037, "x4": 4.32498475848451, "x5": 0.07963963115558395}}, null] +[[1, 0, 4], 243.0, {"submitted": 1558193828.535662, "started": 1558193828.536156, "finished": 1558193828.5424888}, {"loss": 0.18852711464862396, "info": {"x0": -2.1361752380804258, "x1": 7.65904005036024, "x2": 7.5462472858399865, "x3": -0.07826492120892459, "x4": 3.214247194841612, "x5": 0.254935728029533}}, null] +[[1, 0, 5], 243.0, {"submitted": 1558193828.6144202, "started": 1558193828.6149857, "finished": 1558193828.6212459}, {"loss": 0.1694153468600598, "info": {"x0": -2.3010944250341434, "x1": 6.549716650054824, "x2": 6.829707378480524, "x3": -0.009240674764357415, "x4": 4.5037831427696595, "x5": 0.12553254503725275}}, null] +[[1, 0, 6], 243.0, {"submitted": 1558193828.6249208, "started": 1558193828.626947, "finished": 1558193828.6352658}, {"loss": 0.2871698347628261, "info": {"x0": -3.4390330018199355, "x1": 4.648481990568314, "x2": 7.011434923325537, "x3": -0.4052094821019496, "x4": 3.680557386186944, "x5": 0.26449870902790706}}, null] +[[1, 0, 7], 243.0, {"submitted": 1558193828.6391578, "started": 1558193828.639516, "finished": 1558193828.6487975}, {"loss": 0.4073644270874504, "info": {"x0": -5.14119500637611, "x1": 5.644115100402642, "x2": 7.175122579659252, "x3": -2.7532812923918133, "x4": 1.0686717493503166, "x5": 0.034693288430590774}}, null] +[[1, 0, 8], 243.0, {"submitted": 1558193828.6529393, "started": 1558193828.6535802, "finished": 1558193828.6605067}, {"loss": 0.42854079029569475, "info": {"x0": -3.682426532448489, "x1": 3.2413432487988416, "x2": 4.571274571938114, "x3": -1.2415247348543912, "x4": 3.1716191334389747, "x5": 0.24527471680031254}}, null] +[[1, 0, 0], 729.0, {"submitted": 1558193828.6630797, "started": 1558193828.663438, "finished": 1558193828.6747026}, {"loss": 0.002185062013067773, "info": {"x0": -2.5154202330445026, "x1": 7.348461445628395, "x2": 6.991980105995884, "x3": -0.42311467068915976, "x4": 4.311234977746388, "x5": 0.13192016382956454}}, null] +[[1, 0, 3], 729.0, {"submitted": 1558193828.6764228, "started": 1558193828.6768498, "finished": 1558193828.6852393}, {"loss": 0.0028301626850993356, "info": {"x0": -2.7101386383174817, "x1": 6.462907186053478, "x2": 6.439756094355185, "x3": -0.3522478322429037, "x4": 4.32498475848451, "x5": 0.07963963115558395}}, null] +[[1, 0, 5], 729.0, {"submitted": 1558193828.6873224, "started": 1558193828.6878006, "finished": 1558193828.6945434}, {"loss": 0.1524065667561513, "info": {"x0": -2.3010944250341434, "x1": 6.549716650054824, "x2": 6.829707378480524, "x3": -0.009240674764357415, "x4": 4.5037831427696595, "x5": 0.12553254503725275}}, null] +[[1, 0, 0], 2187.0, {"submitted": 1558193828.6962013, "started": 1558193828.6965332, "finished": 1558193828.7029545}, {"loss": 0.0019247254671015401, "info": {"x0": -2.5154202330445026, "x1": 7.348461445628395, "x2": 6.991980105995884, "x3": -0.42311467068915976, "x4": 4.311234977746388, "x5": 0.13192016382956454}}, null] +[[2, 0, 0], 729.0, {"submitted": 1558193828.7734084, "started": 1558193828.7738678, "finished": 1558193828.7801023}, {"loss": 0.31329009639535876, "info": {"x0": -2.06643525244153, "x1": 7.703307211932594, "x2": 7.304718184780608, "x3": -0.6830267114767214, "x4": 4.342193564680159, "x5": 0.17615569148117383}}, null] +[[2, 0, 1], 729.0, {"submitted": 1558193828.8587084, "started": 1558193828.8592594, "finished": 1558193828.8661392}, {"loss": 0.010635837336133169, "info": {"x0": -2.3936135043429014, "x1": 6.114384063614412, "x2": 7.226144800718373, "x3": -0.3597056736805193, "x4": 4.956242955420074, "x5": 0.08139341169887182}}, null] +[[2, 0, 2], 729.0, {"submitted": 1558193828.8694935, "started": 1558193828.8700101, "finished": 1558193828.8772392}, {"loss": 0.3725848230764245, "info": {"x0": -3.5398217808327215, "x1": 3.368641901308272, "x2": 6.036610556655377, "x3": -2.6991652448365913, "x4": 1.005264858471727, "x5": 0.26452104253234743}}, null] +[[2, 0, 3], 729.0, {"submitted": 1558193828.9436767, "started": 1558193828.9440374, "finished": 1558193828.9523792}, {"loss": 0.05327847029421874, "info": {"x0": -2.3118446813434455, "x1": 7.243987088441111, "x2": 7.136915022341858, "x3": -0.0389766822710893, "x4": 4.380357101405169, "x5": 0.056466674758373}}, null] +[[2, 0, 4], 729.0, {"submitted": 1558193829.0235343, "started": 1558193829.023943, "finished": 1558193829.030016}, {"loss": 0.04519128105954229, "info": {"x0": -3.261608133135264, "x1": 7.531439805563294, "x2": 7.189685755300811, "x3": -1.220964518806352, "x4": 4.020967851962936, "x5": 0.09750893480317198}}, null] +[[2, 0, 5], 729.0, {"submitted": 1558193829.095896, "started": 1558193829.096379, "finished": 1558193829.1053483}, {"loss": 0.003317300025127934, "info": {"x0": -2.3998255686503183, "x1": 7.296062110143513, "x2": 7.442466963745885, "x3": -0.42138128844486866, "x4": 4.300264043833093, "x5": 0.13923665001073277}}, null] +[[2, 0, 1], 2187.0, {"submitted": 1558193829.1073782, "started": 1558193829.1082022, "finished": 1558193829.1159756}, {"loss": 0.0033645146809824444, "info": {"x0": -2.3936135043429014, "x1": 6.114384063614412, "x2": 7.226144800718373, "x3": -0.3597056736805193, "x4": 4.956242955420074, "x5": 0.08139341169887182}}, null] +[[2, 0, 5], 2187.0, {"submitted": 1558193829.117577, "started": 1558193829.1180584, "finished": 1558193829.1260874}, {"loss": 0.0020747469838149567, "info": {"x0": -2.3998255686503183, "x1": 7.296062110143513, "x2": 7.442466963745885, "x3": -0.42138128844486866, "x4": 4.300264043833093, "x5": 0.13923665001073277}}, null] +[[3, 0, 0], 2187.0, {"submitted": 1558193829.1894755, "started": 1558193829.1900017, "finished": 1558193829.196782}, {"loss": 0.011314478152370433, "info": {"x0": -2.6920527715577363, "x1": 7.564515042033473, "x2": 7.420612973202173, "x3": -1.3648037994680227, "x4": 4.17649231399629, "x5": 0.12325137223518562}}, null] +[[3, 0, 1], 2187.0, {"submitted": 1558193829.2625146, "started": 1558193829.2629483, "finished": 1558193829.2695382}, {"loss": 0.00892644418028643, "info": {"x0": -2.5856855653765014, "x1": 7.414069867549851, "x2": 6.310152299390722, "x3": -0.407201463552894, "x4": 4.300438813036347, "x5": 0.07746531018932519}}, null] +[[3, 0, 2], 2187.0, {"submitted": 1558193829.3401678, "started": 1558193829.3405533, "finished": 1558193829.3471978}, {"loss": 0.07939284270500661, "info": {"x0": -2.4892809152819955, "x1": 7.396082618790995, "x2": 6.476765388341542, "x3": -1.027510957788659, "x4": 4.233869687709825, "x5": 0.10756677698459606}}, null] +[[3, 0, 3], 2187.0, {"submitted": 1558193829.349908, "started": 1558193829.3503094, "finished": 1558193829.3609955}, {"loss": 0.31650796165284395, "info": {"x0": -2.7422365750817326, "x1": 3.6789354176044555, "x2": 4.263878472377637, "x3": -3.3584144970363012, "x4": 3.0246843081478447, "x5": 0.15332882027988987}}, null] +[[4, 0, 0], 81.0, {"submitted": 1558193829.426379, "started": 1558193829.4268467, "finished": 1558193829.4343882}, {"loss": 0.3412509335239593, "info": {"x0": -3.1562393387480805, "x1": 7.604209095542976, "x2": 7.929385898775403, "x3": -0.09201293461664983, "x4": 4.489927189315337, "x5": 0.04203315182656534}}, null] +[[4, 0, 1], 81.0, {"submitted": 1558193829.517839, "started": 1558193829.5183809, "finished": 1558193829.5251703}, {"loss": 0.05967832680634966, "info": {"x0": -2.4680052250846094, "x1": 7.476304035224865, "x2": 6.688700636904371, "x3": -0.5746487543702901, "x4": 4.083517051635585, "x5": 0.05902359628751523}}, null] +[[4, 0, 2], 81.0, {"submitted": 1558193829.6003747, "started": 1558193829.600873, "finished": 1558193829.607356}, {"loss": 0.22471076094986656, "info": {"x0": -3.1187190626282404, "x1": 6.686289011615468, "x2": 7.162766287870744, "x3": -0.4709658887095314, "x4": 4.1902594723691795, "x5": 0.11731793220125321}}, null] +[[4, 0, 3], 81.0, {"submitted": 1558193829.6892843, "started": 1558193829.6897235, "finished": 1558193829.6956131}, {"loss": 0.06680315705336547, "info": {"x0": -2.66146884952869, "x1": 7.8422484057457105, "x2": 6.598444789453323, "x3": -0.15762096939449588, "x4": 4.608235252138213, "x5": 0.0701387675386967}}, null] +[[4, 0, 4], 81.0, {"submitted": 1558193829.6977882, "started": 1558193829.698274, "finished": 1558193829.7089498}, {"loss": 0.19007059879314656, "info": {"x0": -2.640222181205047, "x1": 6.995197215420629, "x2": 7.020486857927464, "x3": -0.31830542490930247, "x4": 3.752557682855147, "x5": 0.2265578417046093}}, null] +[[4, 0, 5], 81.0, {"submitted": 1558193829.7823927, "started": 1558193829.782933, "finished": 1558193829.790289}, {"loss": 0.37102016247033404, "info": {"x0": -3.056039273518077, "x1": 7.599361213029389, "x2": 7.620308054928468, "x3": -0.4331666564832233, "x4": 3.974205688272273, "x5": 0.13343174500168373}}, null] +[[4, 0, 6], 81.0, {"submitted": 1558193829.86873, "started": 1558193829.8692918, "finished": 1558193829.8763902}, {"loss": 0.3610828235415096, "info": {"x0": -2.327061614068422, "x1": 6.698984485695618, "x2": 6.56973621393485, "x3": -0.06200794609022697, "x4": 4.556745640519917, "x5": 0.2191798870548768}}, null] +[[4, 0, 7], 81.0, {"submitted": 1558193829.9439328, "started": 1558193829.9443305, "finished": 1558193829.9521313}, {"loss": 0.13882672084709693, "info": {"x0": -2.8223424999923026, "x1": 6.51952824080184, "x2": 6.2175856815281385, "x3": -0.7825993636050397, "x4": 3.891144335202344, "x5": 0.060350482672821906}}, null] +[[4, 0, 8], 81.0, {"submitted": 1558193829.957096, "started": 1558193829.957645, "finished": 1558193829.9652536}, {"loss": 0.2699501381338639, "info": {"x0": -3.5472927099548963, "x1": 6.22834314530982, "x2": 6.456354488734574, "x3": -2.3133945027915064, "x4": 4.764555926613296, "x5": 0.031154268475560576}}, null] +[[4, 0, 9], 81.0, {"submitted": 1558193829.9686315, "started": 1558193829.9690242, "finished": 1558193829.9772475}, {"loss": 0.41343378342063125, "info": {"x0": -4.448804006336314, "x1": 4.216192999975025, "x2": 6.352443530944328, "x3": -1.3155953918714633, "x4": 3.597703038624106, "x5": 0.12235424759306801}}, null] +[[4, 0, 10], 81.0, {"submitted": 1558193829.979769, "started": 1558193829.9801862, "finished": 1558193829.9881687}, {"loss": 0.41561046275457303, "info": {"x0": -4.043846978404488, "x1": 4.039799384456428, "x2": 6.876081188207293, "x3": -3.269810948081138, "x4": 3.165164322468663, "x5": 0.31908562925889433}}, null] +[[4, 0, 11], 81.0, {"submitted": 1558193830.0529752, "started": 1558193830.0535338, "finished": 1558193830.0592752}, {"loss": 0.12332877267751227, "info": {"x0": -2.5129848552704117, "x1": 7.4722015970543785, "x2": 7.007799427917432, "x3": -1.0666159747476844, "x4": 4.8962122635032115, "x5": 0.11286831013298275}}, null] +[[4, 0, 12], 81.0, {"submitted": 1558193830.062055, "started": 1558193830.0624037, "finished": 1558193830.0707166}, {"loss": 0.4793156133294145, "info": {"x0": -5.876055725120878, "x1": 6.906042334942689, "x2": 5.45856458162069, "x3": -0.1175540774799444, "x4": 3.492400146628646, "x5": 0.12545911302926216}}, null] +[[4, 0, 13], 81.0, {"submitted": 1558193830.1461918, "started": 1558193830.1466665, "finished": 1558193830.1531901}, {"loss": 0.20778272862647854, "info": {"x0": -2.7346051841650585, "x1": 6.703667718666916, "x2": 7.027350350612243, "x3": -0.6831233661325498, "x4": 3.6328157077530188, "x5": 0.16879710086151917}}, null] +[[4, 0, 14], 81.0, {"submitted": 1558193830.2234428, "started": 1558193830.223956, "finished": 1558193830.2296252}, {"loss": 0.26789215955662504, "info": {"x0": -2.3654423602007175, "x1": 6.873916847648305, "x2": 6.2859835518609115, "x3": -0.3887107157990215, "x4": 4.983478644091923, "x5": 0.19008176088003434}}, null] +[[4, 0, 15], 81.0, {"submitted": 1558193830.3122945, "started": 1558193830.3126547, "finished": 1558193830.3197343}, {"loss": 0.40241803813221566, "info": {"x0": -2.1284613944400443, "x1": 7.621037639504602, "x2": 7.585988345370364, "x3": -1.0537272231816788, "x4": 4.381271338807907, "x5": 0.25923784426686997}}, null] +[[4, 0, 16], 81.0, {"submitted": 1558193830.3841026, "started": 1558193830.3845797, "finished": 1558193830.391359}, {"loss": 0.18797246567523268, "info": {"x0": -2.5026943625525675, "x1": 6.936062502386514, "x2": 6.765570669027841, "x3": -0.5166771736699052, "x4": 4.718641966041972, "x5": 0.15033176623749642}}, null] +[[4, 0, 17], 81.0, {"submitted": 1558193830.3940656, "started": 1558193830.3947468, "finished": 1558193830.4052393}, {"loss": 0.45674976469278306, "info": {"x0": -5.063009529486438, "x1": 5.181140254884228, "x2": 6.237365274134472, "x3": -3.5331253489274377, "x4": 4.7413041706740255, "x5": 0.27697356925074834}}, null] +[[4, 0, 18], 81.0, {"submitted": 1558193830.4733694, "started": 1558193830.4738483, "finished": 1558193830.4802873}, {"loss": 0.2995084509960983, "info": {"x0": -2.792051498962156, "x1": 6.777797936167117, "x2": 7.564067266863323, "x3": -0.7824738702881047, "x4": 4.78677508330755, "x5": 0.11152604701882578}}, null] +[[4, 0, 19], 81.0, {"submitted": 1558193830.552548, "started": 1558193830.5530882, "finished": 1558193830.5591395}, {"loss": 0.10344790696891322, "info": {"x0": -2.6615697024698837, "x1": 7.201246004672131, "x2": 7.320575245950389, "x3": -1.6933020551444695, "x4": 4.730700509507334, "x5": 0.10439305471634044}}, null] +[[4, 0, 20], 81.0, {"submitted": 1558193830.6233635, "started": 1558193830.6237843, "finished": 1558193830.630644}, {"loss": 0.10313859721752476, "info": {"x0": -2.507850791007507, "x1": 6.844204900129406, "x2": 6.73278310490044, "x3": -0.7132241107638646, "x4": 4.409126829155775, "x5": 0.0007015759333564575}}, null] +[[4, 0, 21], 81.0, {"submitted": 1558193830.6972487, "started": 1558193830.6977715, "finished": 1558193830.7052867}, {"loss": 1, "info": {"x0": -2.980595204394156, "x1": 7.655457452270828, "x2": 7.954015187997557, "x3": -0.3519389319074224, "x4": 4.537349898480152, "x5": 0.053397187756795014}}, null] +[[4, 0, 22], 81.0, {"submitted": 1558193830.7730856, "started": 1558193830.7735555, "finished": 1558193830.78453}, {"loss": 0.34736685356710667, "info": {"x0": -3.18299824200473, "x1": 6.314605815427649, "x2": 7.501699249287636, "x3": -1.1382207139529483, "x4": 4.951017876662791, "x5": 0.04612794899698651}}, null] +[[4, 0, 23], 81.0, {"submitted": 1558193830.8501117, "started": 1558193830.850682, "finished": 1558193830.8576868}, {"loss": 0.3253474809547149, "info": {"x0": -2.766666952108217, "x1": 7.849381802353753, "x2": 7.616441305382622, "x3": -1.0650916548422646, "x4": 4.023375268778116, "x5": 0.05053820406449658}}, null] +[[4, 0, 24], 81.0, {"submitted": 1558193830.9298408, "started": 1558193830.930352, "finished": 1558193830.9365942}, {"loss": 0.08396902259427233, "info": {"x0": -2.9827112704318144, "x1": 7.086499960689406, "x2": 7.041856259074406, "x3": -0.4788559073564702, "x4": 3.711755005987101, "x5": 0.10821332380899233}}, null] +[[4, 0, 25], 81.0, {"submitted": 1558193830.9388735, "started": 1558193830.9392843, "finished": 1558193830.9460354}, {"loss": 0.41258350255982756, "info": {"x0": -4.073847122661653, "x1": 5.147410964864578, "x2": 7.553179101706291, "x3": -0.23374830660825374, "x4": 4.40039406668422, "x5": 0.39760786766856926}}, null] +[[4, 0, 26], 81.0, {"submitted": 1558193831.026828, "started": 1558193831.027237, "finished": 1558193831.0337527}, {"loss": 0.01614526186535692, "info": {"x0": -3.031696962067657, "x1": 7.25514180896112, "x2": 7.100572093640356, "x3": -0.21226471171694472, "x4": 3.2725434551455743, "x5": 0.0525651225970369}}, null] +[[4, 0, 1], 243.0, {"submitted": 1558193831.0366945, "started": 1558193831.0371783, "finished": 1558193831.044555}, {"loss": 0.009485947917146608, "info": {"x0": -2.4680052250846094, "x1": 7.476304035224865, "x2": 6.688700636904371, "x3": -0.5746487543702901, "x4": 4.083517051635585, "x5": 0.05902359628751523}}, null] +[[4, 0, 3], 243.0, {"submitted": 1558193831.0467558, "started": 1558193831.0472362, "finished": 1558193831.0563333}, {"loss": 0.03525526125330698, "info": {"x0": -2.66146884952869, "x1": 7.8422484057457105, "x2": 6.598444789453323, "x3": -0.15762096939449588, "x4": 4.608235252138213, "x5": 0.0701387675386967}}, null] +[[4, 0, 7], 243.0, {"submitted": 1558193831.0591767, "started": 1558193831.0595539, "finished": 1558193831.067013}, {"loss": 0.057630055533978555, "info": {"x0": -2.8223424999923026, "x1": 6.51952824080184, "x2": 6.2175856815281385, "x3": -0.7825993636050397, "x4": 3.891144335202344, "x5": 0.060350482672821906}}, null] +[[4, 0, 11], 243.0, {"submitted": 1558193831.0698433, "started": 1558193831.0702908, "finished": 1558193831.0761445}, {"loss": 0.020563031177886736, "info": {"x0": -2.5129848552704117, "x1": 7.4722015970543785, "x2": 7.007799427917432, "x3": -1.0666159747476844, "x4": 4.8962122635032115, "x5": 0.11286831013298275}}, null] +[[4, 0, 16], 243.0, {"submitted": 1558193831.078386, "started": 1558193831.0788193, "finished": 1558193831.0848439}, {"loss": 0.09196002122655011, "info": {"x0": -2.5026943625525675, "x1": 6.936062502386514, "x2": 6.765570669027841, "x3": -0.5166771736699052, "x4": 4.718641966041972, "x5": 0.15033176623749642}}, null] +[[4, 0, 19], 243.0, {"submitted": 1558193831.0892775, "started": 1558193831.0896971, "finished": 1558193831.096835}, {"loss": 0.02612672392243568, "info": {"x0": -2.6615697024698837, "x1": 7.201246004672131, "x2": 7.320575245950389, "x3": -1.6933020551444695, "x4": 4.730700509507334, "x5": 0.10439305471634044}}, null] +[[4, 0, 20], 243.0, {"submitted": 1558193831.1006887, "started": 1558193831.1010392, "finished": 1558193831.1072378}, {"loss": 0.023643385490861778, "info": {"x0": -2.507850791007507, "x1": 6.844204900129406, "x2": 6.73278310490044, "x3": -0.7132241107638646, "x4": 4.409126829155775, "x5": 0.0007015759333564575}}, null] +[[4, 0, 24], 243.0, {"submitted": 1558193831.1095746, "started": 1558193831.1098971, "finished": 1558193831.1170588}, {"loss": 0.008504169527774141, "info": {"x0": -2.9827112704318144, "x1": 7.086499960689406, "x2": 7.041856259074406, "x3": -0.4788559073564702, "x4": 3.711755005987101, "x5": 0.10821332380899233}}, null] +[[4, 0, 26], 243.0, {"submitted": 1558193831.1209242, "started": 1558193831.1212838, "finished": 1558193831.1281898}, {"loss": 0.0027317663434797135, "info": {"x0": -3.031696962067657, "x1": 7.25514180896112, "x2": 7.100572093640356, "x3": -0.21226471171694472, "x4": 3.2725434551455743, "x5": 0.0525651225970369}}, null] +[[4, 0, 1], 729.0, {"submitted": 1558193831.131542, "started": 1558193831.1321309, "finished": 1558193831.1391642}, {"loss": 0.003837975821979833, "info": {"x0": -2.4680052250846094, "x1": 7.476304035224865, "x2": 6.688700636904371, "x3": -0.5746487543702901, "x4": 4.083517051635585, "x5": 0.05902359628751523}}, null] +[[4, 0, 24], 729.0, {"submitted": 1558193831.1409948, "started": 1558193831.141342, "finished": 1558193831.147462}, {"loss": 0.0039421079407374274, "info": {"x0": -2.9827112704318144, "x1": 7.086499960689406, "x2": 7.041856259074406, "x3": -0.4788559073564702, "x4": 3.711755005987101, "x5": 0.10821332380899233}}, null] +[[4, 0, 26], 729.0, {"submitted": 1558193831.1495175, "started": 1558193831.1497924, "finished": 1558193831.1592321}, {"loss": 0.0016838020197276315, "info": {"x0": -3.031696962067657, "x1": 7.25514180896112, "x2": 7.100572093640356, "x3": -0.21226471171694472, "x4": 3.2725434551455743, "x5": 0.0525651225970369}}, null] +[[4, 0, 26], 2187.0, {"submitted": 1558193831.1615345, "started": 1558193831.1618483, "finished": 1558193831.1706798}, {"loss": 0.0016502671635635346, "info": {"x0": -3.031696962067657, "x1": 7.25514180896112, "x2": 7.100572093640356, "x3": -0.21226471171694472, "x4": 3.2725434551455743, "x5": 0.0525651225970369}}, null] +[[5, 0, 0], 243.0, {"submitted": 1558193831.2314472, "started": 1558193831.2318337, "finished": 1558193831.2393415}, {"loss": 0.0260583322608544, "info": {"x0": -3.16429675135905, "x1": 7.344790363334365, "x2": 7.44167509064391, "x3": -0.7344470611157954, "x4": 4.6136244618440045, "x5": 0.03775440268529794}}, null] +[[5, 0, 1], 243.0, {"submitted": 1558193831.2414138, "started": 1558193831.2420943, "finished": 1558193831.250689}, {"loss": 0.4234342333658782, "info": {"x0": -4.0386647189469915, "x1": 6.597761144991507, "x2": 5.485784053531768, "x3": -3.4308594075740846, "x4": 3.737252825672936, "x5": 0.4430149723328645}}, null] +[[5, 0, 2], 243.0, {"submitted": 1558193831.25369, "started": 1558193831.254175, "finished": 1558193831.2614605}, {"loss": 0.10739178269670221, "info": {"x0": -2.570199054276861, "x1": 7.663368319602513, "x2": 7.43860911566444, "x3": -0.797163842275443, "x4": 2.741899187773243, "x5": 0.3447410973005701}}, null] +[[5, 0, 3], 243.0, {"submitted": 1558193831.2645402, "started": 1558193831.2648988, "finished": 1558193831.2733743}, {"loss": 0.3183709081623685, "info": {"x0": -3.0754407029290816, "x1": 7.759816448082792, "x2": 4.080705068243754, "x3": -2.8031738204023555, "x4": 2.6316748424018983, "x5": 0.1726478524837321}}, null] +[[5, 0, 4], 243.0, {"submitted": 1558193831.3377316, "started": 1558193831.3381622, "finished": 1558193831.3439329}, {"loss": 0.0753245391061372, "info": {"x0": -2.379912250639325, "x1": 7.153228166078514, "x2": 7.43030423144638, "x3": -0.4252709443332421, "x4": 4.894275346131924, "x5": 0.14730828410210559}}, null] +[[5, 0, 5], 243.0, {"submitted": 1558193831.4113493, "started": 1558193831.4117692, "finished": 1558193831.4195132}, {"loss": 0.007934957671864019, "info": {"x0": -3.133152713160543, "x1": 7.264427007748855, "x2": 6.495586292102031, "x3": -0.23347004783286618, "x4": 2.7768647979173755, "x5": 0.034510625987113686}}, null] +[[5, 0, 6], 243.0, {"submitted": 1558193831.4220343, "started": 1558193831.4225829, "finished": 1558193831.4303472}, {"loss": 0.38567929527130496, "info": {"x0": -2.945454411353827, "x1": 5.522910524160745, "x2": 4.909661379175387, "x3": -2.3003643705134458, "x4": 2.493015309881574, "x5": 0.4258003747517478}}, null] +[[5, 0, 7], 243.0, {"submitted": 1558193831.5228305, "started": 1558193831.523215, "finished": 1558193831.529735}, {"loss": 0.007576228614934522, "info": {"x0": -2.5373414483994132, "x1": 7.250862331605921, "x2": 6.954760915601216, "x3": -0.618247236252436, "x4": 4.417119833559747, "x5": 0.09709702890458063}}, null] +[[5, 0, 8], 243.0, {"submitted": 1558193831.532038, "started": 1558193831.5325623, "finished": 1558193831.542628}, {"loss": 0.4080818880014955, "info": {"x0": -4.160719087638325, "x1": 3.460113659551691, "x2": 7.434045903537049, "x3": -1.8961905311594722, "x4": 3.918934635416472, "x5": 0.08660623821150099}}, null] +[[5, 0, 0], 729.0, {"submitted": 1558193831.5442214, "started": 1558193831.5445378, "finished": 1558193831.5558355}, {"loss": 0.006093189895813167, "info": {"x0": -3.16429675135905, "x1": 7.344790363334365, "x2": 7.44167509064391, "x3": -0.7344470611157954, "x4": 4.6136244618440045, "x5": 0.03775440268529794}}, null] +[[5, 0, 5], 729.0, {"submitted": 1558193831.5590174, "started": 1558193831.559402, "finished": 1558193831.5685863}, {"loss": 0.007023781112784422, "info": {"x0": -3.133152713160543, "x1": 7.264427007748855, "x2": 6.495586292102031, "x3": -0.23347004783286618, "x4": 2.7768647979173755, "x5": 0.034510625987113686}}, null] +[[5, 0, 7], 729.0, {"submitted": 1558193831.5714333, "started": 1558193831.5718353, "finished": 1558193831.5782077}, {"loss": 0.002236246561134081, "info": {"x0": -2.5373414483994132, "x1": 7.250862331605921, "x2": 6.954760915601216, "x3": -0.618247236252436, "x4": 4.417119833559747, "x5": 0.09709702890458063}}, null] +[[5, 0, 7], 2187.0, {"submitted": 1558193831.581246, "started": 1558193831.581931, "finished": 1558193831.5905983}, {"loss": 0.00201650500757804, "info": {"x0": -2.5373414483994132, "x1": 7.250862331605921, "x2": 6.954760915601216, "x3": -0.618247236252436, "x4": 4.417119833559747, "x5": 0.09709702890458063}}, null] +[[6, 0, 0], 729.0, {"submitted": 1558193831.6561115, "started": 1558193831.6564765, "finished": 1558193831.662505}, {"loss": 0.0014812702637234775, "info": {"x0": -2.8961698284273156, "x1": 7.146086733038144, "x2": 7.1892652016940755, "x3": -0.33937936058142837, "x4": 3.7583542859535544, "x5": 0.02001215742729301}}, null] +[[6, 0, 1], 729.0, {"submitted": 1558193831.7437174, "started": 1558193831.7441828, "finished": 1558193831.7502458}, {"loss": 0.002202711452591144, "info": {"x0": -2.740722959358189, "x1": 7.296762042093885, "x2": 7.169134592554194, "x3": -0.6172100935808031, "x4": 4.182029410719502, "x5": 0.0839611972165312}}, null] +[[6, 0, 2], 729.0, {"submitted": 1558193831.8307722, "started": 1558193831.831227, "finished": 1558193831.8377407}, {"loss": 0.0011626885985936864, "info": {"x0": -2.5114297055952184, "x1": 7.3609146404643, "x2": 7.0650004796225065, "x3": -0.5831857901733799, "x4": 2.927001301561568, "x5": 0.07192596339855413}}, null] +[[6, 0, 3], 729.0, {"submitted": 1558193831.907825, "started": 1558193831.9082336, "finished": 1558193831.914178}, {"loss": 0.014522790846744505, "info": {"x0": -3.0661321717683716, "x1": 7.183564027133063, "x2": 7.232667236457653, "x3": -0.04241720495275958, "x4": 3.6356528740623433, "x5": 0.004179771106796612}}, null] +[[6, 0, 4], 729.0, {"submitted": 1558193831.9171677, "started": 1558193831.9176424, "finished": 1558193831.9255083}, {"loss": 0.40432334502561496, "info": {"x0": -3.4423883628925256, "x1": 7.650611906358203, "x2": 4.627335317012847, "x3": -0.1691425140471594, "x4": 4.221122387053879, "x5": 0.4134418559170953}}, null] +[[6, 0, 5], 729.0, {"submitted": 1558193831.990301, "started": 1558193831.9907277, "finished": 1558193831.9965703}, {"loss": 0.0036597082918984223, "info": {"x0": -2.4857010450541766, "x1": 7.199198136969348, "x2": 7.266259386923773, "x3": -0.4397640042287905, "x4": 2.1236899582486517, "x5": 0.05041065399212365}}, null] +[[6, 0, 0], 2187.0, {"submitted": 1558193832.0005643, "started": 1558193832.0018134, "finished": 1558193832.0109313}, {"loss": 0.001290650716533004, "info": {"x0": -2.8961698284273156, "x1": 7.146086733038144, "x2": 7.1892652016940755, "x3": -0.33937936058142837, "x4": 3.7583542859535544, "x5": 0.02001215742729301}}, null] +[[6, 0, 2], 2187.0, {"submitted": 1558193832.0129085, "started": 1558193832.0132415, "finished": 1558193832.025803}, {"loss": 0.0010806163286629423, "info": {"x0": -2.5114297055952184, "x1": 7.3609146404643, "x2": 7.0650004796225065, "x3": -0.5831857901733799, "x4": 2.927001301561568, "x5": 0.07192596339855413}}, null] +[[7, 0, 0], 2187.0, {"submitted": 1558193832.0893064, "started": 1558193832.0896957, "finished": 1558193832.0959573}, {"loss": 0.0010757629794991951, "info": {"x0": -3.032979400072807, "x1": 7.375139683284155, "x2": 7.166569063552895, "x3": -0.6593238480707813, "x4": 4.88559830525565, "x5": 0.06843188062323861}}, null] +[[7, 0, 1], 2187.0, {"submitted": 1558193832.1674159, "started": 1558193832.1679025, "finished": 1558193832.173546}, {"loss": 0.033405549495074904, "info": {"x0": -2.169701647113014, "x1": 7.354921059712514, "x2": 7.216549651666563, "x3": -0.7417308131447986, "x4": 3.653918122564566, "x5": 0.07156250471677238}}, null] +[[7, 0, 2], 2187.0, {"submitted": 1558193832.2551463, "started": 1558193832.255616, "finished": 1558193832.261471}, {"loss": 0.1299360174730197, "info": {"x0": -3.8881647497154526, "x1": 7.353640067530961, "x2": 7.124170217661806, "x3": -0.04093915167046669, "x4": 3.1158733512828793, "x5": 0.012085392726193786}}, null] +[[7, 0, 3], 2187.0, {"submitted": 1558193832.330711, "started": 1558193832.3312924, "finished": 1558193832.3380885}, {"loss": 0.3048409316815051, "info": {"x0": -3.0170564942948706, "x1": 7.320463625720272, "x2": 7.1889441128697005, "x3": -0.4169070231707246, "x4": 1.4824012949837064, "x5": 0.08817513981420905}}, null] +[[8, 0, 0], 81.0, {"submitted": 1558193832.4100049, "started": 1558193832.4104064, "finished": 1558193832.416835}, {"loss": 0.019380046994983958, "info": {"x0": -3.211895880057118, "x1": 7.306778140071855, "x2": 7.018153888521947, "x3": -0.2477429862587468, "x4": 2.3390683951329923, "x5": 0.010137707114184435}}, null] +[[8, 0, 1], 81.0, {"submitted": 1558193832.4198165, "started": 1558193832.4204164, "finished": 1558193832.4286554}, {"loss": 0.3861633449757554, "info": {"x0": -3.3159829302780826, "x1": 4.519023915002229, "x2": 6.254077664579477, "x3": -3.7917406363288486, "x4": 1.5731208982759002, "x5": 0.35039445894849736}}, null] +[[8, 0, 2], 81.0, {"submitted": 1558193832.4924846, "started": 1558193832.4929552, "finished": 1558193832.4994867}, {"loss": 0.03669240832917927, "info": {"x0": -3.150720724367774, "x1": 7.1524137026977455, "x2": 7.202708304146235, "x3": -0.2668748058680359, "x4": 2.2141313841086347, "x5": 0.003681388119403925}}, null] +[[8, 0, 3], 81.0, {"submitted": 1558193832.5659962, "started": 1558193832.566419, "finished": 1558193832.5727966}, {"loss": 0.11217932669610828, "info": {"x0": -2.7187585587990473, "x1": 7.093832539493358, "x2": 7.158605682473901, "x3": -0.5571977738526179, "x4": 3.6597987727740624, "x5": 0.03776292316927525}}, null] +[[8, 0, 4], 81.0, {"submitted": 1558193832.6371899, "started": 1558193832.6376536, "finished": 1558193832.6435273}, {"loss": 0.015700044729848185, "info": {"x0": -2.9986838822057766, "x1": 7.228615886342717, "x2": 7.133845492331615, "x3": -0.45591531005758057, "x4": 2.9866453038081344, "x5": 0.022116120133047416}}, null] +[[8, 0, 5], 81.0, {"submitted": 1558193832.6457646, "started": 1558193832.6461532, "finished": 1558193832.6573381}, {"loss": 0.3558324077580627, "info": {"x0": -2.9993659895619187, "x1": 4.910415320519335, "x2": 7.2235728725354775, "x3": -3.130163002639883, "x4": 2.078111186907557, "x5": 0.4127283114765042}}, null] +[[8, 0, 6], 81.0, {"submitted": 1558193832.6595154, "started": 1558193832.6598964, "finished": 1558193832.6666017}, {"loss": 0.2370396679087376, "info": {"x0": -2.839404064273906, "x1": 5.580772838330287, "x2": 5.674893244814679, "x3": -1.4456294423485532, "x4": 4.3792900910407795, "x5": 0.0768261100283606}}, null] +[[8, 0, 7], 81.0, {"submitted": 1558193832.7365444, "started": 1558193832.7370956, "finished": 1558193832.7427957}, {"loss": 0.06896130826221489, "info": {"x0": -3.0125578203790973, "x1": 7.2428797056785506, "x2": 7.072778512065435, "x3": -0.5018067041711509, "x4": 3.597442157013567, "x5": 0.03289786134413493}}, null] +[[8, 0, 8], 81.0, {"submitted": 1558193832.74486, "started": 1558193832.745227, "finished": 1558193832.7566924}, {"loss": 0.417230280448766, "info": {"x0": -4.62933975850534, "x1": 4.90639691544067, "x2": 6.5705101687133185, "x3": -0.049806395440834095, "x4": 1.282683861112687, "x5": 0.4431561511876521}}, null] +[[8, 0, 9], 81.0, {"submitted": 1558193832.8271666, "started": 1558193832.827554, "finished": 1558193832.833627}, {"loss": 0.045531929815214756, "info": {"x0": -3.032973487696299, "x1": 7.335425182585063, "x2": 7.0288317684578185, "x3": -0.38535926950174915, "x4": 2.5230288619196513, "x5": 0.04223473962547446}}, null] +[[8, 0, 10], 81.0, {"submitted": 1558193832.9094293, "started": 1558193832.9098675, "finished": 1558193832.9160864}, {"loss": 0.019169135660726054, "info": {"x0": -2.587244024587292, "x1": 7.222805652874509, "x2": 7.035041990056335, "x3": -0.22300210042231194, "x4": 3.306161348974626, "x5": 0.02818442514166208}}, null] +[[8, 0, 11], 81.0, {"submitted": 1558193832.918343, "started": 1558193832.922416, "finished": 1558193832.9291651}, {"loss": 0.41609274270478236, "info": {"x0": -3.101995373220582, "x1": 3.9997431375437427, "x2": 5.229155917644336, "x3": -2.505858698455966, "x4": 3.209056259174769, "x5": 0.4090598640560024}}, null] +[[8, 0, 12], 81.0, {"submitted": 1558193832.9933376, "started": 1558193832.9937239, "finished": 1558193833.0002797}, {"loss": 0.04214534970874299, "info": {"x0": -2.7828869378103533, "x1": 7.322853236944345, "x2": 7.145639819686029, "x3": -0.4388447384163281, "x4": 2.618415778567695, "x5": 0.04780317688411338}}, null] +[[8, 0, 13], 81.0, {"submitted": 1558193833.0605423, "started": 1558193833.0610104, "finished": 1558193833.0675995}, {"loss": 0.07310285307629061, "info": {"x0": -2.3629425097904755, "x1": 7.3847514897617454, "x2": 7.0385296157803925, "x3": -0.507757135613399, "x4": 2.888036017865234, "x5": 0.0004878900327684732}}, null] +[[8, 0, 14], 81.0, {"submitted": 1558193833.1344833, "started": 1558193833.1350121, "finished": 1558193833.1410542}, {"loss": 0.07990866574577583, "info": {"x0": -2.841195556070786, "x1": 7.134263403859567, "x2": 7.354228099091988, "x3": -0.38277803339219085, "x4": 4.352028116738699, "x5": 0.00039684802635066296}}, null] +[[8, 0, 15], 81.0, {"submitted": 1558193833.2082071, "started": 1558193833.2086306, "finished": 1558193833.2142973}, {"loss": 0.14637338449160925, "info": {"x0": -2.489607321061861, "x1": 7.4161641736664405, "x2": 6.9634484115714255, "x3": -0.5643028734968931, "x4": 4.263593208208727, "x5": 0.17881833216294762}}, null] +[[8, 0, 16], 81.0, {"submitted": 1558193833.286409, "started": 1558193833.2868817, "finished": 1558193833.2923987}, {"loss": 0.028135727166035428, "info": {"x0": -2.6627971030746633, "x1": 7.379420375240341, "x2": 7.057969868510972, "x3": -0.39816384756167444, "x4": 3.0918551447630858, "x5": 0.10939180749891539}}, null] +[[8, 0, 17], 81.0, {"submitted": 1558193833.3690093, "started": 1558193833.3694494, "finished": 1558193833.375326}, {"loss": 0.01639588782245325, "info": {"x0": -2.811621416484248, "x1": 7.299121391621679, "x2": 7.034378721271304, "x3": -0.624338322493859, "x4": 2.1739779394758667, "x5": 0.03577265402544655}}, null] +[[8, 0, 18], 81.0, {"submitted": 1558193833.4464521, "started": 1558193833.4470031, "finished": 1558193833.454372}, {"loss": 0.05701319120762203, "info": {"x0": -2.4265775453905545, "x1": 7.412872980022458, "x2": 7.025333515935719, "x3": -0.4878249511770818, "x4": 2.906917282266126, "x5": 0.04075740297100249}}, null] +[[8, 0, 19], 81.0, {"submitted": 1558193833.4588504, "started": 1558193833.4593053, "finished": 1558193833.4673007}, {"loss": 0.39427260016144955, "info": {"x0": -3.4335199046146214, "x1": 6.818980682379736, "x2": 7.833188498119291, "x3": -0.8190915408579751, "x4": 3.787094699640243, "x5": 0.010536866067921702}}, null] +[[8, 0, 20], 81.0, {"submitted": 1558193833.5395515, "started": 1558193833.5400465, "finished": 1558193833.5461714}, {"loss": 0.027349867208913047, "info": {"x0": -2.741867770851931, "x1": 7.2260783706132505, "x2": 7.107879320205406, "x3": -0.2296231633411332, "x4": 3.264930560111065, "x5": 0.06684380242935628}}, null] +[[8, 0, 21], 81.0, {"submitted": 1558193833.6238518, "started": 1558193833.624337, "finished": 1558193833.6304493}, {"loss": 0.03749459714871749, "info": {"x0": -2.4881840081705984, "x1": 7.169709664525754, "x2": 6.999513760852813, "x3": -0.5944127807109445, "x4": 2.9965656487391965, "x5": 0.011057216535299563}}, null] +[[8, 0, 22], 81.0, {"submitted": 1558193833.7032635, "started": 1558193833.7036958, "finished": 1558193833.709838}, {"loss": 0.029068085410449463, "info": {"x0": -3.057307946773915, "x1": 7.1838589772206545, "x2": 7.064724785178733, "x3": -0.30198034535874063, "x4": 3.2311082262247717, "x5": 0.07620175163432405}}, null] +[[8, 0, 23], 81.0, {"submitted": 1558193833.776857, "started": 1558193833.7775373, "finished": 1558193833.7837744}, {"loss": 0.039511544255857275, "info": {"x0": -2.526942980553505, "x1": 7.2516568863016175, "x2": 7.021548907884072, "x3": -0.6698372435325193, "x4": 4.291994704705893, "x5": 0.023865208570787416}}, null] +[[8, 0, 24], 81.0, {"submitted": 1558193833.845639, "started": 1558193833.8460836, "finished": 1558193833.852415}, {"loss": 0.058661697613105704, "info": {"x0": -3.1046329502236194, "x1": 7.077898147884865, "x2": 7.14620145851004, "x3": -0.37912787223089506, "x4": 2.981242202412906, "x5": 0.023449208004342297}}, null] +[[8, 0, 25], 81.0, {"submitted": 1558193833.85483, "started": 1558193833.8551638, "finished": 1558193833.86201}, {"loss": 0.4184490145280203, "info": {"x0": -4.523725590340903, "x1": 6.544190506985364, "x2": 5.613297952955208, "x3": -0.2441606452375944, "x4": 3.265304295232608, "x5": 0.1279200786639545}}, null] +[[8, 0, 26], 81.0, {"submitted": 1558193833.9237494, "started": 1558193833.9241486, "finished": 1558193833.9307063}, {"loss": 0.08313595273743735, "info": {"x0": -2.980465040403762, "x1": 7.173159795338616, "x2": 7.2448207403646325, "x3": -0.257504530469046, "x4": 4.120186064796884, "x5": 0.005572828197447283}}, null] +[[8, 0, 0], 243.0, {"submitted": 1558193833.9387221, "started": 1558193833.9390466, "finished": 1558193833.9450912}, {"loss": 0.007358690050916705, "info": {"x0": -3.211895880057118, "x1": 7.306778140071855, "x2": 7.018153888521947, "x3": -0.2477429862587468, "x4": 2.3390683951329923, "x5": 0.010137707114184435}}, null] +[[8, 0, 2], 243.0, {"submitted": 1558193833.946367, "started": 1558193833.946854, "finished": 1558193833.9567473}, {"loss": 0.01484490148541322, "info": {"x0": -3.150720724367774, "x1": 7.1524137026977455, "x2": 7.202708304146235, "x3": -0.2668748058680359, "x4": 2.2141313841086347, "x5": 0.003681388119403925}}, null] +[[8, 0, 4], 243.0, {"submitted": 1558193833.9585466, "started": 1558193833.9588912, "finished": 1558193833.9647837}, {"loss": 0.0028491390556753316, "info": {"x0": -2.9986838822057766, "x1": 7.228615886342717, "x2": 7.133845492331615, "x3": -0.45591531005758057, "x4": 2.9866453038081344, "x5": 0.022116120133047416}}, null] +[[8, 0, 10], 243.0, {"submitted": 1558193833.9667056, "started": 1558193833.9671307, "finished": 1558193833.974923}, {"loss": 0.003948730888157559, "info": {"x0": -2.587244024587292, "x1": 7.222805652874509, "x2": 7.035041990056335, "x3": -0.22300210042231194, "x4": 3.306161348974626, "x5": 0.02818442514166208}}, null] +[[8, 0, 16], 243.0, {"submitted": 1558193833.9764743, "started": 1558193833.9768796, "finished": 1558193833.9844825}, {"loss": 0.00400432448350746, "info": {"x0": -2.6627971030746633, "x1": 7.379420375240341, "x2": 7.057969868510972, "x3": -0.39816384756167444, "x4": 3.0918551447630858, "x5": 0.10939180749891539}}, null] +[[8, 0, 17], 243.0, {"submitted": 1558193833.9873765, "started": 1558193833.9877648, "finished": 1558193833.9944086}, {"loss": 0.00200282349480968, "info": {"x0": -2.811621416484248, "x1": 7.299121391621679, "x2": 7.034378721271304, "x3": -0.624338322493859, "x4": 2.1739779394758667, "x5": 0.03577265402544655}}, null] +[[8, 0, 20], 243.0, {"submitted": 1558193833.9957883, "started": 1558193833.9962537, "finished": 1558193834.0049076}, {"loss": 0.018820105316027413, "info": {"x0": -2.741867770851931, "x1": 7.2260783706132505, "x2": 7.107879320205406, "x3": -0.2296231633411332, "x4": 3.264930560111065, "x5": 0.06684380242935628}}, null] +[[8, 0, 21], 243.0, {"submitted": 1558193834.0061662, "started": 1558193834.006536, "finished": 1558193834.0123684}, {"loss": 0.006155409118096422, "info": {"x0": -2.4881840081705984, "x1": 7.169709664525754, "x2": 6.999513760852813, "x3": -0.5944127807109445, "x4": 2.9965656487391965, "x5": 0.011057216535299563}}, null] +[[8, 0, 22], 243.0, {"submitted": 1558193834.0136845, "started": 1558193834.0144448, "finished": 1558193834.0262177}, {"loss": 0.004340113964452386, "info": {"x0": -3.057307946773915, "x1": 7.1838589772206545, "x2": 7.064724785178733, "x3": -0.30198034535874063, "x4": 3.2311082262247717, "x5": 0.07620175163432405}}, null] +[[8, 0, 4], 729.0, {"submitted": 1558193834.02784, "started": 1558193834.0281787, "finished": 1558193834.0360491}, {"loss": 0.0015267188007621391, "info": {"x0": -2.9986838822057766, "x1": 7.228615886342717, "x2": 7.133845492331615, "x3": -0.45591531005758057, "x4": 2.9866453038081344, "x5": 0.022116120133047416}}, null] +[[8, 0, 10], 729.0, {"submitted": 1558193834.0381594, "started": 1558193834.0385633, "finished": 1558193834.0442457}, {"loss": 0.0019181061334119342, "info": {"x0": -2.587244024587292, "x1": 7.222805652874509, "x2": 7.035041990056335, "x3": -0.22300210042231194, "x4": 3.306161348974626, "x5": 0.02818442514166208}}, null] +[[8, 0, 17], 729.0, {"submitted": 1558193834.0455828, "started": 1558193834.0459454, "finished": 1558193834.0540543}, {"loss": 0.00183779668585482, "info": {"x0": -2.811621416484248, "x1": 7.299121391621679, "x2": 7.034378721271304, "x3": -0.624338322493859, "x4": 2.1739779394758667, "x5": 0.03577265402544655}}, null] +[[8, 0, 4], 2187.0, {"submitted": 1558193834.0560212, "started": 1558193834.0563445, "finished": 1558193834.0618434}, {"loss": 0.001299916999367301, "info": {"x0": -2.9986838822057766, "x1": 7.228615886342717, "x2": 7.133845492331615, "x3": -0.45591531005758057, "x4": 2.9866453038081344, "x5": 0.022116120133047416}}, null] +[[9, 0, 0], 243.0, {"submitted": 1558193834.1302912, "started": 1558193834.130765, "finished": 1558193834.1374462}, {"loss": 0.0021294617168176157, "info": {"x0": -2.7772376251227784, "x1": 7.220474816380712, "x2": 7.026904955124829, "x3": -0.3220508822095689, "x4": 2.4077217379429436, "x5": 0.040328545143228936}}, null] +[[9, 0, 1], 243.0, {"submitted": 1558193834.200626, "started": 1558193834.2011158, "finished": 1558193834.20713}, {"loss": 0.011696157281204055, "info": {"x0": -2.9431278761438078, "x1": 7.183078651545969, "x2": 7.1701635689938845, "x3": -0.2576393709796685, "x4": 3.5467503255463226, "x5": 0.04908116237382899}}, null] +[[9, 0, 2], 243.0, {"submitted": 1558193834.2764888, "started": 1558193834.2769039, "finished": 1558193834.2831037}, {"loss": 0.04339628368501698, "info": {"x0": -3.2418161968064827, "x1": 7.22091273757545, "x2": 7.152483578145237, "x3": -0.7588666470238805, "x4": 3.0877502676661996, "x5": 0.033901952999192755}}, null] +[[9, 0, 3], 243.0, {"submitted": 1558193834.3433301, "started": 1558193834.343758, "finished": 1558193834.3507087}, {"loss": 0.0018024996181181252, "info": {"x0": -2.5704793255874705, "x1": 7.360881847228487, "x2": 7.173873126557119, "x3": -0.7268774701243355, "x4": 3.031564665663025, "x5": 0.028467213249104947}}, null] +[[9, 0, 4], 243.0, {"submitted": 1558193834.415905, "started": 1558193834.416539, "finished": 1558193834.424092}, {"loss": 0.003029164620427982, "info": {"x0": -3.1478955437354683, "x1": 7.233674614376156, "x2": 7.157984086599155, "x3": -0.5823234699925584, "x4": 2.7553905444881126, "x5": 0.04564076642244484}}, null] +[[9, 0, 5], 243.0, {"submitted": 1558193834.4261954, "started": 1558193834.4266586, "finished": 1558193834.4338095}, {"loss": 0.15222256488782798, "info": {"x0": -2.475831852429825, "x1": 5.513663932265471, "x2": 5.31767236921308, "x3": -1.5872464189754334, "x4": 3.699539578217119, "x5": 0.07964548867399185}}, null] +[[9, 0, 6], 243.0, {"submitted": 1558193834.437768, "started": 1558193834.4383407, "finished": 1558193834.445714}, {"loss": 0.4599271937082789, "info": {"x0": -3.939881858986038, "x1": 5.2742411846744215, "x2": 4.923511278820344, "x3": -0.4997555564339855, "x4": 4.520120414830369, "x5": 0.49332390634293116}}, null] +[[9, 0, 7], 243.0, {"submitted": 1558193834.5281143, "started": 1558193834.5285184, "finished": 1558193834.5350409}, {"loss": 0.0012416735222179343, "info": {"x0": -2.986554699104452, "x1": 7.30667775211474, "x2": 7.193228964227942, "x3": -0.5131720155398631, "x4": 1.7716893673859553, "x5": 0.007028932768932012}}, null] +[[9, 0, 8], 243.0, {"submitted": 1558193834.606892, "started": 1558193834.6073365, "finished": 1558193834.6132092}, {"loss": 0.002664256466564363, "info": {"x0": -2.8764076366262077, "x1": 7.159190544864432, "x2": 7.088104782680832, "x3": -0.41274262615642376, "x4": 3.4601143754676427, "x5": 0.06634776410446984}}, null] +[[9, 0, 0], 729.0, {"submitted": 1558193834.6190498, "started": 1558193834.6212218, "finished": 1558193834.628037}, {"loss": 0.001961346187701174, "info": {"x0": -2.7772376251227784, "x1": 7.220474816380712, "x2": 7.026904955124829, "x3": -0.3220508822095689, "x4": 2.4077217379429436, "x5": 0.040328545143228936}}, null] +[[9, 0, 3], 729.0, {"submitted": 1558193834.629618, "started": 1558193834.6303058, "finished": 1558193834.6372683}, {"loss": 0.0013555154885681042, "info": {"x0": -2.5704793255874705, "x1": 7.360881847228487, "x2": 7.173873126557119, "x3": -0.7268774701243355, "x4": 3.031564665663025, "x5": 0.028467213249104947}}, null] +[[9, 0, 7], 729.0, {"submitted": 1558193834.639824, "started": 1558193834.6402595, "finished": 1558193834.6462288}, {"loss": 0.0009870729673173261, "info": {"x0": -2.986554699104452, "x1": 7.30667775211474, "x2": 7.193228964227942, "x3": -0.5131720155398631, "x4": 1.7716893673859553, "x5": 0.007028932768932012}}, null] +[[9, 0, 7], 2187.0, {"submitted": 1558193834.648226, "started": 1558193834.6487072, "finished": 1558193834.6562357}, {"loss": 0.0009870729673173261, "info": {"x0": -2.986554699104452, "x1": 7.30667775211474, "x2": 7.193228964227942, "x3": -0.5131720155398631, "x4": 1.7716893673859553, "x5": 0.007028932768932012}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/hyperband/HPB_run_0_pyro.pkl b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/hyperband/HPB_run_0_pyro.pkl similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/hyperband/HPB_run_0_pyro.pkl rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/hyperband/HPB_run_0_pyro.pkl diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/hyperband/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/hyperband/configs.json new file mode 100644 index 0000000..c29dadb --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/hyperband/configs.json @@ -0,0 +1,128 @@ +[[0, 0, 0], {"x0": -4.8686885711069925, "x1": 4.784318691556724, "x2": 6.006893245521195, "x3": -3.3532111776939773, "x4": 3.2182334753345856, "x5": 0.18646288543071649}, {}] +[[0, 0, 1], {"x0": -3.7925738029312717, "x1": 3.1129671564837698, "x2": 6.271369642075653, "x3": -0.7141353613954804, "x4": 4.196120570659869, "x5": 0.09370993630627816}, {}] +[[0, 0, 2], {"x0": -3.3622543090140624, "x1": 7.468194090066739, "x2": 4.250641674198537, "x3": -1.930930691862124, "x4": 1.0756962817805498, "x5": 0.290445053035952}, {}] +[[0, 0, 3], {"x0": -3.2816702701789904, "x1": 6.079643767551526, "x2": 6.601938065501768, "x3": -3.4269916045033946, "x4": 2.5572944709751098, "x5": 0.4463885068743627}, {}] +[[0, 0, 4], {"x0": -2.150719581619738, "x1": 4.270689095120767, "x2": 5.121172689418566, "x3": -0.4179555854916299, "x4": 2.4744185012003324, "x5": 0.1947363199339021}, {}] +[[0, 0, 5], {"x0": -5.824718675960008, "x1": 7.664591640697475, "x2": 6.565972851017218, "x3": -3.5299864359949504, "x4": 3.896742071924206, "x5": 0.09961140955171671}, {}] +[[0, 0, 6], {"x0": -4.362579655105692, "x1": 6.311866582424056, "x2": 6.083820148781442, "x3": -2.044333482917071, "x4": 4.7792538625140715, "x5": 0.4711233356014723}, {}] +[[0, 0, 7], {"x0": -2.8845304638092846, "x1": 6.131081102740156, "x2": 6.477592003713163, "x3": -0.9666009570413574, "x4": 4.136262009742797, "x5": 0.4967489932322039}, {}] +[[0, 0, 8], {"x0": -4.778566357236814, "x1": 6.425830165332793, "x2": 4.02526879550606, "x3": -3.238207808978557, "x4": 4.749552411772023, "x5": 0.11940525026362436}, {}] +[[0, 0, 9], {"x0": -2.0195358373187973, "x1": 3.9244671574778263, "x2": 6.796471268658362, "x3": -0.7318384039557086, "x4": 2.009165519325797, "x5": 0.3383656793120449}, {}] +[[0, 0, 10], {"x0": -3.3883917804658887, "x1": 6.684440915138305, "x2": 7.070581823079442, "x3": -3.1845638644956047, "x4": 1.5431837969847155, "x5": 0.19965808346830838}, {}] +[[0, 0, 11], {"x0": -4.843260717439863, "x1": 5.0121897408005385, "x2": 5.662967197892819, "x3": -1.1812343303876105, "x4": 2.8066864936404814, "x5": 0.3987582895655316}, {}] +[[0, 0, 12], {"x0": -4.231222168642111, "x1": 4.664113428073368, "x2": 4.283602326852874, "x3": -1.0068999745999565, "x4": 3.1210955672556335, "x5": 0.06342854103921763}, {}] +[[0, 0, 13], {"x0": -2.046598080109466, "x1": 3.949887877273892, "x2": 7.2023745023231704, "x3": -3.055264331758701, "x4": 3.8499666711836293, "x5": 0.4874842105409422}, {}] +[[0, 0, 14], {"x0": -2.79498649408799, "x1": 6.204939284140916, "x2": 5.627955479397799, "x3": -3.8461826903123453, "x4": 2.2785686294306053, "x5": 0.08232614459650617}, {}] +[[0, 0, 15], {"x0": -4.063958292528775, "x1": 4.6978579402757195, "x2": 7.160001596093485, "x3": -3.7960013448576317, "x4": 4.741482198877301, "x5": 0.42384486516142617}, {}] +[[0, 0, 16], {"x0": -4.763514425309557, "x1": 4.153948685594382, "x2": 6.13819634881124, "x3": -3.820525197000438, "x4": 1.8019321257129421, "x5": 0.23835967090514987}, {}] +[[0, 0, 17], {"x0": -4.857241514644171, "x1": 7.420558354070921, "x2": 7.312558427643786, "x3": -3.3700578302481192, "x4": 3.8211571039681247, "x5": 0.21609031393168027}, {}] +[[0, 0, 18], {"x0": -5.472602994541404, "x1": 5.372679740177498, "x2": 5.531383633795102, "x3": -1.1871519621901014, "x4": 1.7122002473819755, "x5": 0.054401606386202395}, {}] +[[0, 0, 19], {"x0": -4.612633259138508, "x1": 7.464467282934131, "x2": 7.42869424901536, "x3": -3.282700075410446, "x4": 2.790154794828946, "x5": 0.17649783210699965}, {}] +[[0, 0, 20], {"x0": -3.631193545658383, "x1": 6.668461565212582, "x2": 5.438965367790819, "x3": -0.053160993907709564, "x4": 3.576901040902977, "x5": 0.39186940245899604}, {}] +[[0, 0, 21], {"x0": -4.762318407964916, "x1": 5.7736352916796445, "x2": 4.984277760195532, "x3": -2.3790229068081468, "x4": 1.015364796919319, "x5": 0.3244340894344923}, {}] +[[0, 0, 22], {"x0": -4.362711668789194, "x1": 4.562969738237647, "x2": 4.137578813123681, "x3": -1.7639264671416077, "x4": 1.028165112410726, "x5": 0.17357810274851793}, {}] +[[0, 0, 23], {"x0": -2.8554907737875737, "x1": 3.146433837820576, "x2": 7.581885229153173, "x3": -3.5395188411784937, "x4": 2.7247203543547727, "x5": 0.4510938475540843}, {}] +[[0, 0, 24], {"x0": -3.1118875951814178, "x1": 6.096402961093549, "x2": 7.7301992203094025, "x3": -0.7479861732394832, "x4": 2.6155571591772198, "x5": 0.4573973083095461}, {}] +[[0, 0, 25], {"x0": -4.803229375349343, "x1": 7.785020996201882, "x2": 5.088917025038754, "x3": -0.8647930099595782, "x4": 1.517322388677901, "x5": 0.23836591350657743}, {}] +[[0, 0, 26], {"x0": -3.833808824705231, "x1": 3.372438777449478, "x2": 6.2998288851596795, "x3": -3.119190992940701, "x4": 4.732043237768188, "x5": 0.1309925280261925}, {}] +[[1, 0, 0], {"x0": -5.2907613175760195, "x1": 3.586449789685389, "x2": 6.687368999669301, "x3": -3.467006702045147, "x4": 4.736617756509234, "x5": 0.15364143130460056}, {}] +[[1, 0, 1], {"x0": -3.732309154358195, "x1": 3.1646258454742804, "x2": 5.278008650724729, "x3": -3.807630684171997, "x4": 4.248603686159022, "x5": 0.3016100228208445}, {}] +[[1, 0, 2], {"x0": -2.709185563367712, "x1": 4.236936706665, "x2": 7.925302632105488, "x3": -0.46312900305568494, "x4": 3.7888361088404072, "x5": 0.11559938890377064}, {}] +[[1, 0, 3], {"x0": -5.446913133063402, "x1": 7.893576512560071, "x2": 7.748417581758473, "x3": -2.240469893056168, "x4": 2.075139416445452, "x5": 0.11828779391119565}, {}] +[[1, 0, 4], {"x0": -3.3400772489303097, "x1": 7.169385561810759, "x2": 7.253730707995991, "x3": -1.4328697832926545, "x4": 4.467765272589277, "x5": 0.0014420341934258674}, {}] +[[1, 0, 5], {"x0": -5.221750836847889, "x1": 6.639929220852665, "x2": 5.098803570840387, "x3": -3.3137163974042365, "x4": 4.642403601737792, "x5": 0.01116199280235547}, {}] +[[1, 0, 6], {"x0": -2.6190447492986024, "x1": 5.626156291818557, "x2": 6.434824088242861, "x3": -0.06216147760508628, "x4": 2.1178935736750444, "x5": 0.14845528477456543}, {}] +[[1, 0, 7], {"x0": -5.277446229759061, "x1": 6.3055129726585255, "x2": 7.61939011917744, "x3": -0.5071757188234773, "x4": 2.9946115759840857, "x5": 0.488289381795631}, {}] +[[1, 0, 8], {"x0": -4.619822567449711, "x1": 7.170293188757548, "x2": 4.41619889624876, "x3": -0.9583570929160516, "x4": 1.3079887579379679, "x5": 0.2331031732899509}, {}] +[[2, 0, 0], {"x0": -2.323354788398878, "x1": 4.02431145373483, "x2": 5.335167318104023, "x3": -0.17560563177910904, "x4": 3.948983629595452, "x5": 0.08608050444485815}, {}] +[[2, 0, 1], {"x0": -2.293387502938509, "x1": 3.6004838202526894, "x2": 6.947477492933645, "x3": -1.9779044768874208, "x4": 3.7881497496602057, "x5": 0.060184145089554886}, {}] +[[2, 0, 2], {"x0": -3.1687531422978346, "x1": 7.93305144971118, "x2": 4.9374658467170915, "x3": -2.816542578140714, "x4": 3.6201687725368203, "x5": 0.3588175175534968}, {}] +[[2, 0, 3], {"x0": -3.1013781562497993, "x1": 5.698800377319019, "x2": 4.157590253457824, "x3": -0.5000659048391096, "x4": 2.350872217505387, "x5": 0.4188828379719976}, {}] +[[2, 0, 4], {"x0": -2.991925660468601, "x1": 7.231617896044317, "x2": 6.004017576713032, "x3": -0.7682404389673732, "x4": 3.8528681659886086, "x5": 0.2658579164020342}, {}] +[[2, 0, 5], {"x0": -3.5746853590802257, "x1": 5.9475055021800225, "x2": 6.327967592986406, "x3": -1.1233812173613322, "x4": 4.033026943413725, "x5": 0.3696805295827534}, {}] +[[3, 0, 0], {"x0": -2.2312511006504154, "x1": 5.2321101964282395, "x2": 7.912759359719838, "x3": -1.8082235526914427, "x4": 2.194238120672484, "x5": 0.04913477553405288}, {}] +[[3, 0, 1], {"x0": -2.861859475107948, "x1": 6.297164223775871, "x2": 5.047802413569769, "x3": -2.097331660158806, "x4": 3.8742991490645644, "x5": 0.23079794802824266}, {}] +[[3, 0, 2], {"x0": -2.4049242186428748, "x1": 3.4991192714312147, "x2": 6.962958825706956, "x3": -2.26772515461359, "x4": 2.2459792732310264, "x5": 0.05520778306343321}, {}] +[[3, 0, 3], {"x0": -3.888806859218298, "x1": 6.1689811754361585, "x2": 5.694167518112209, "x3": -1.877737051834044, "x4": 1.267603993354121, "x5": 0.1910081333348591}, {}] +[[4, 0, 0], {"x0": -2.400698592317028, "x1": 6.738283593459228, "x2": 7.0250242089997545, "x3": -0.05737187826953072, "x4": 3.7092942744451833, "x5": 0.2666032079285666}, {}] +[[4, 0, 1], {"x0": -5.9945727408364835, "x1": 4.652305132294662, "x2": 4.093739640805359, "x3": -0.7465837515318356, "x4": 2.1896062891081027, "x5": 0.14697773456785718}, {}] +[[4, 0, 2], {"x0": -3.1745967839236426, "x1": 5.420427268429767, "x2": 5.619746206340029, "x3": -1.8645786500492685, "x4": 3.002547471581194, "x5": 0.4324880619736572}, {}] +[[4, 0, 3], {"x0": -4.338904769176241, "x1": 7.663834643221402, "x2": 4.981043793620755, "x3": -0.004164875242254951, "x4": 1.5943811510448072, "x5": 0.37243365562685493}, {}] +[[4, 0, 4], {"x0": -4.141349345322397, "x1": 6.599488336121377, "x2": 6.059982096638515, "x3": -0.3369422830861346, "x4": 2.677183790547797, "x5": 0.3815130876543304}, {}] +[[4, 0, 5], {"x0": -5.189963893637251, "x1": 6.38929394118473, "x2": 4.972855022206093, "x3": -3.994155416087233, "x4": 4.226415182561839, "x5": 0.02264556021049191}, {}] +[[4, 0, 6], {"x0": -4.265222729049938, "x1": 4.780416347505559, "x2": 6.0502576884718655, "x3": -1.4993061568882577, "x4": 1.6955274630190331, "x5": 0.46770676760825186}, {}] +[[4, 0, 7], {"x0": -2.6185955249415676, "x1": 4.0058789370576475, "x2": 6.028901574190085, "x3": -1.6119134222982292, "x4": 3.425702043169906, "x5": 0.44175139847357425}, {}] +[[4, 0, 8], {"x0": -2.1141939894264574, "x1": 7.008516855287291, "x2": 5.531398087888929, "x3": -1.556732153893741, "x4": 4.308476135179548, "x5": 0.4701027604887472}, {}] +[[4, 0, 9], {"x0": -3.317248498157899, "x1": 7.270766784616509, "x2": 7.673816923120209, "x3": -0.8909509306584527, "x4": 4.498501336020343, "x5": 0.4606412563516679}, {}] +[[4, 0, 10], {"x0": -2.1434430600282273, "x1": 5.598752780386818, "x2": 5.57132631808363, "x3": -1.747602262327511, "x4": 2.0145010196534963, "x5": 0.23021294323396368}, {}] +[[4, 0, 11], {"x0": -3.0126498594836653, "x1": 5.0009933274216465, "x2": 4.771982900112681, "x3": -1.1799215888657963, "x4": 1.6840512882139915, "x5": 0.435167353004462}, {}] +[[4, 0, 12], {"x0": -4.448416003814176, "x1": 4.603754412523996, "x2": 7.553453766240599, "x3": -0.8889223974573208, "x4": 4.021485549586, "x5": 0.28932023757335085}, {}] +[[4, 0, 13], {"x0": -2.3798852409211686, "x1": 3.9733873193993374, "x2": 7.341277672735583, "x3": -2.2599470145450278, "x4": 1.074930450752054, "x5": 0.08293618938363628}, {}] +[[4, 0, 14], {"x0": -3.7783206860988967, "x1": 3.5732866192521326, "x2": 6.954406828355699, "x3": -3.850321875846942, "x4": 4.120307656818708, "x5": 0.3908699609865875}, {}] +[[4, 0, 15], {"x0": -5.249382716446295, "x1": 6.111971388101988, "x2": 6.39382613280552, "x3": -0.3014560642644133, "x4": 3.925445475029663, "x5": 0.4824075799151282}, {}] +[[4, 0, 16], {"x0": -5.978232818632258, "x1": 6.614485539021201, "x2": 7.020740170334378, "x3": -2.754845273076119, "x4": 2.240884401516169, "x5": 0.3174384848092829}, {}] +[[4, 0, 17], {"x0": -3.4738470296541175, "x1": 6.56485930115144, "x2": 5.843863278606202, "x3": -2.9035301117807517, "x4": 2.7420468354980128, "x5": 0.20097918443311447}, {}] +[[4, 0, 18], {"x0": -3.6764144909743783, "x1": 6.950447467305187, "x2": 5.304075393838815, "x3": -0.21466052490528575, "x4": 1.7861389076805572, "x5": 0.20121160490767337}, {}] +[[4, 0, 19], {"x0": -3.2003877190280443, "x1": 6.033193039383782, "x2": 4.3448887534258915, "x3": -3.910070064860785, "x4": 4.479097401999455, "x5": 0.12222264696225882}, {}] +[[4, 0, 20], {"x0": -2.1132589344225012, "x1": 5.704137660248998, "x2": 7.147471639203967, "x3": -1.5606288523731693, "x4": 3.492198596715038, "x5": 0.4055552066941961}, {}] +[[4, 0, 21], {"x0": -5.122857294588806, "x1": 6.623116795753418, "x2": 5.3815936364684696, "x3": -2.7603355731404986, "x4": 4.547661146673203, "x5": 0.2071566833558734}, {}] +[[4, 0, 22], {"x0": -3.101244293427579, "x1": 5.779717371847779, "x2": 6.260785362653239, "x3": -3.895639993638905, "x4": 2.737072524620463, "x5": 0.41389890280439795}, {}] +[[4, 0, 23], {"x0": -4.585702836046696, "x1": 4.170681621940837, "x2": 6.788568156513582, "x3": -0.41552467983610075, "x4": 1.9233799848599276, "x5": 0.1189344058775686}, {}] +[[4, 0, 24], {"x0": -5.384895845671198, "x1": 7.081884046296041, "x2": 4.841294862452825, "x3": -0.41339345855410015, "x4": 4.497415917013699, "x5": 0.24530466802619566}, {}] +[[4, 0, 25], {"x0": -4.221146784372488, "x1": 6.346891239126139, "x2": 7.254032433384845, "x3": -2.5333063661747603, "x4": 3.664516149629116, "x5": 0.2587281738470981}, {}] +[[4, 0, 26], {"x0": -5.335254066904349, "x1": 3.441843455822759, "x2": 7.634363044216762, "x3": -2.6080645723595652, "x4": 1.9056143856596846, "x5": 0.20100184821351014}, {}] +[[5, 0, 0], {"x0": -3.3317789208539375, "x1": 6.202211857506049, "x2": 7.4442637192982595, "x3": -2.331049542197823, "x4": 3.817154328477772, "x5": 0.30353076006846186}, {}] +[[5, 0, 1], {"x0": -5.014753349537898, "x1": 5.070469830929111, "x2": 4.39860851770897, "x3": -3.8117730625632613, "x4": 2.1458939444998646, "x5": 0.2357546152893133}, {}] +[[5, 0, 2], {"x0": -3.5294995070587545, "x1": 6.702245465648025, "x2": 6.900264221425076, "x3": -0.6946184236691835, "x4": 1.9202056600899988, "x5": 0.00022414241769563858}, {}] +[[5, 0, 3], {"x0": -3.8942272491941883, "x1": 7.75722672643768, "x2": 7.5142734987774595, "x3": -3.651917603746827, "x4": 3.094475583946117, "x5": 0.1460940538972909}, {}] +[[5, 0, 4], {"x0": -3.6995137444191353, "x1": 6.501072939515405, "x2": 5.16924889352088, "x3": -3.2258310872054574, "x4": 3.204162295809384, "x5": 0.27014284459338667}, {}] +[[5, 0, 5], {"x0": -5.851636303899907, "x1": 3.1978092070539916, "x2": 7.824662156002743, "x3": -3.1932353987579702, "x4": 3.458923289247426, "x5": 0.02355607599578502}, {}] +[[5, 0, 6], {"x0": -2.8053169562808407, "x1": 7.36671557509655, "x2": 5.875884117260614, "x3": -1.806806666072113, "x4": 3.944662519116461, "x5": 0.1558432400903349}, {}] +[[5, 0, 7], {"x0": -4.646820357973002, "x1": 6.706655676078404, "x2": 4.409115622950117, "x3": -0.48538227860725547, "x4": 3.0724028080700125, "x5": 0.27478688391283707}, {}] +[[5, 0, 8], {"x0": -2.4117294096418394, "x1": 7.612211946741684, "x2": 4.524708567846829, "x3": -1.0825925463356132, "x4": 1.3548767135611381, "x5": 0.15290746042606285}, {}] +[[6, 0, 0], {"x0": -3.5717685468884, "x1": 6.370645903629803, "x2": 6.008224376563865, "x3": -3.8804406509816443, "x4": 4.587358038678979, "x5": 0.022678565276163798}, {}] +[[6, 0, 1], {"x0": -5.043960347011097, "x1": 7.865073813466623, "x2": 5.430440861777468, "x3": -3.618683577200893, "x4": 2.4552853199080764, "x5": 0.007966163864293496}, {}] +[[6, 0, 2], {"x0": -5.31559715045236, "x1": 7.229168845875932, "x2": 4.032129767940429, "x3": -2.2639157510313557, "x4": 4.937434743569677, "x5": 0.3912146303775482}, {}] +[[6, 0, 3], {"x0": -5.086906443084828, "x1": 3.745284110590259, "x2": 6.22422575305951, "x3": -0.5486534962823963, "x4": 4.595654785671597, "x5": 0.16796200458488092}, {}] +[[6, 0, 4], {"x0": -2.413210680764362, "x1": 5.157509972680865, "x2": 5.756041941417694, "x3": -1.9184385910625372, "x4": 3.3686593716301947, "x5": 0.10853180241502008}, {}] +[[6, 0, 5], {"x0": -2.3452065932410853, "x1": 6.910702342354174, "x2": 6.277823335114298, "x3": -2.2331227824200957, "x4": 3.5041205885656375, "x5": 0.08944679831140523}, {}] +[[7, 0, 0], {"x0": -3.5019606092769395, "x1": 7.476596910009983, "x2": 5.510124926758236, "x3": -3.604869656061746, "x4": 1.090705423447719, "x5": 0.3624880744609019}, {}] +[[7, 0, 1], {"x0": -5.395693318106332, "x1": 6.441826037886164, "x2": 6.880462411172502, "x3": -0.6989533749603227, "x4": 3.005430197133688, "x5": 0.16805545810867956}, {}] +[[7, 0, 2], {"x0": -4.838161896636575, "x1": 3.6404839083031453, "x2": 5.1298416490732865, "x3": -2.2866704712498445, "x4": 1.3875140264964392, "x5": 0.2925683803126154}, {}] +[[7, 0, 3], {"x0": -4.589478949692022, "x1": 5.691373767927466, "x2": 7.825906165860937, "x3": -3.1073297683067516, "x4": 3.223017885569199, "x5": 0.162704642272737}, {}] +[[8, 0, 0], {"x0": -4.604359734586062, "x1": 4.5924675469806715, "x2": 4.252356226329164, "x3": -3.0339135604556615, "x4": 3.9091354094328756, "x5": 0.42610948748662975}, {}] +[[8, 0, 1], {"x0": -3.064708572465389, "x1": 3.765964806672363, "x2": 7.785623868092892, "x3": -0.16074373760770877, "x4": 3.633262022792246, "x5": 0.4761112396543154}, {}] +[[8, 0, 2], {"x0": -3.164734187179534, "x1": 6.899626712798991, "x2": 5.229220964465181, "x3": -3.1207676152154447, "x4": 4.947320130281268, "x5": 0.4945217846570835}, {}] +[[8, 0, 3], {"x0": -3.8500579793909404, "x1": 5.434840655718756, "x2": 5.727930566783812, "x3": -3.966084926363172, "x4": 2.1890919046572117, "x5": 0.05707299429351864}, {}] +[[8, 0, 4], {"x0": -2.3595933242929026, "x1": 3.733355471242503, "x2": 7.80504083771992, "x3": -3.9476707455096727, "x4": 2.322358586511749, "x5": 0.1325375620663657}, {}] +[[8, 0, 5], {"x0": -4.752183109506571, "x1": 4.4275588853034895, "x2": 6.8635599867363535, "x3": -2.163012088361013, "x4": 2.8372528893632167, "x5": 0.1181175308999361}, {}] +[[8, 0, 6], {"x0": -5.776740500528744, "x1": 6.553421446541087, "x2": 4.904956465333667, "x3": -2.711376641859182, "x4": 3.3139503475159255, "x5": 0.17304377012457894}, {}] +[[8, 0, 7], {"x0": -4.9055243372162405, "x1": 5.872685384004162, "x2": 4.37873427520093, "x3": -2.0293332699956306, "x4": 3.5490382717527083, "x5": 0.39034241028690697}, {}] +[[8, 0, 8], {"x0": -3.9917627383845984, "x1": 3.267101086785643, "x2": 5.71423412263651, "x3": -1.3399149535741786, "x4": 4.683907068730289, "x5": 0.2970727272180266}, {}] +[[8, 0, 9], {"x0": -2.0128344333588237, "x1": 5.587055409516202, "x2": 4.010884196435155, "x3": -3.418255956322688, "x4": 3.499085185918627, "x5": 0.029718783932812187}, {}] +[[8, 0, 10], {"x0": -4.604570475276789, "x1": 6.877366252438378, "x2": 5.267900546713955, "x3": -3.9299502468906753, "x4": 4.24192482350285, "x5": 0.48029673746043994}, {}] +[[8, 0, 11], {"x0": -4.686255731781196, "x1": 5.944526240243123, "x2": 5.313174935870176, "x3": -2.6162502408763273, "x4": 4.8188936419962385, "x5": 0.4873832713330845}, {}] +[[8, 0, 12], {"x0": -4.573179826002987, "x1": 5.881743535062803, "x2": 7.107101974187383, "x3": -1.5310350843906133, "x4": 1.158693270010125, "x5": 0.27222803148490027}, {}] +[[8, 0, 13], {"x0": -4.312349991146087, "x1": 7.479706860491733, "x2": 7.491622547189258, "x3": -3.5043136252602536, "x4": 3.7272164900065294, "x5": 0.10581700656012233}, {}] +[[8, 0, 14], {"x0": -5.572258524823708, "x1": 3.274307177160412, "x2": 4.801527441453656, "x3": -3.678642055328624, "x4": 2.0315388415229902, "x5": 0.39470061185014277}, {}] +[[8, 0, 15], {"x0": -3.819102840800029, "x1": 3.1399471437842195, "x2": 5.595060147266944, "x3": -3.6800309442501167, "x4": 2.6929099795684563, "x5": 0.06969937270141852}, {}] +[[8, 0, 16], {"x0": -5.2233793161314, "x1": 6.325568217983189, "x2": 4.678468848779561, "x3": -3.0829939697920934, "x4": 4.697447138844448, "x5": 0.4314973876955987}, {}] +[[8, 0, 17], {"x0": -2.5994748026343655, "x1": 5.614515811335758, "x2": 6.191272340895672, "x3": -3.508695378402957, "x4": 2.4725926125254563, "x5": 0.25150874651669425}, {}] +[[8, 0, 18], {"x0": -2.2322858610155594, "x1": 4.39221664429797, "x2": 5.969148506959138, "x3": -2.539060909850783, "x4": 1.509503711648283, "x5": 0.05348149324595475}, {}] +[[8, 0, 19], {"x0": -2.4834492223360036, "x1": 5.5827200567251385, "x2": 7.737590418123491, "x3": -1.4112598182834168, "x4": 1.121607202557, "x5": 0.440115259334702}, {}] +[[8, 0, 20], {"x0": -3.9639332655074986, "x1": 6.866059667789515, "x2": 4.037653203153305, "x3": -0.864620613888929, "x4": 2.454100077231313, "x5": 0.48090183196386094}, {}] +[[8, 0, 21], {"x0": -5.271945060156543, "x1": 5.211018188107516, "x2": 6.901864716356171, "x3": -1.7325894642347293, "x4": 1.3924495180443501, "x5": 0.3470863230114115}, {}] +[[8, 0, 22], {"x0": -3.805050427793448, "x1": 6.375538666101425, "x2": 7.449436029641618, "x3": -1.129345326748902, "x4": 2.9140281002354653, "x5": 0.39122686286817765}, {}] +[[8, 0, 23], {"x0": -2.349560080472214, "x1": 3.8039207031629814, "x2": 6.32946235186062, "x3": -2.377350158133991, "x4": 2.7796634978680954, "x5": 0.12594320099548678}, {}] +[[8, 0, 24], {"x0": -4.937619140572219, "x1": 3.371651598731293, "x2": 4.158215318892548, "x3": -1.5671154215929102, "x4": 4.860260192923168, "x5": 0.11872628219363673}, {}] +[[8, 0, 25], {"x0": -2.739033910313427, "x1": 6.463341659440766, "x2": 5.009265553183692, "x3": -2.0972870582098198, "x4": 4.76262696891893, "x5": 0.028425330201643506}, {}] +[[8, 0, 26], {"x0": -3.3368759637916066, "x1": 3.5683996148053905, "x2": 6.773750511158875, "x3": -0.20886909938911735, "x4": 2.331546631050569, "x5": 0.19008315822594352}, {}] +[[9, 0, 0], {"x0": -2.023089688682076, "x1": 4.411846285150453, "x2": 4.653441862124764, "x3": -2.04369714849605, "x4": 4.08309036412673, "x5": 0.4393501878709463}, {}] +[[9, 0, 1], {"x0": -2.441656492122036, "x1": 4.059704606127197, "x2": 6.768408780960122, "x3": -1.2259420637439482, "x4": 1.6312930448802336, "x5": 0.18514047179685733}, {}] +[[9, 0, 2], {"x0": -4.033139066597819, "x1": 4.957389319342336, "x2": 6.997964661753729, "x3": -0.30949821422465673, "x4": 2.1697949336059437, "x5": 0.4267164123931132}, {}] +[[9, 0, 3], {"x0": -2.6385000010030075, "x1": 7.882974379918121, "x2": 5.482905330675008, "x3": -3.3849379125245473, "x4": 3.058453949120432, "x5": 0.48626746262767767}, {}] +[[9, 0, 4], {"x0": -5.786195338004356, "x1": 5.862329292205098, "x2": 4.6195656951299515, "x3": -1.0763046975260497, "x4": 3.5968819510794394, "x5": 0.38555418587685425}, {}] +[[9, 0, 5], {"x0": -4.629517230897597, "x1": 5.210112043350557, "x2": 5.241546450118208, "x3": -1.0511653026780294, "x4": 4.425966070579742, "x5": 0.4194158976123882}, {}] +[[9, 0, 6], {"x0": -3.981814969936582, "x1": 6.903274725250516, "x2": 6.84047714393345, "x3": -2.035654560562999, "x4": 2.552777501932314, "x5": 0.40459953804481097}, {}] +[[9, 0, 7], {"x0": -3.2666673169706577, "x1": 5.777985572421104, "x2": 4.168563297945173, "x3": -0.351762449622961, "x4": 3.401997505467142, "x5": 0.00962106533808288}, {}] +[[9, 0, 8], {"x0": -5.112591837402965, "x1": 5.4658959670339335, "x2": 4.392142632170851, "x3": -3.7795113979294466, "x4": 4.424350175380209, "x5": 0.23887434525905354}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/hyperband/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/hyperband/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/hyperband/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/hyperband/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/hyperband/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/hyperband/results.json new file mode 100644 index 0000000..19ab074 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/hyperband/results.json @@ -0,0 +1,183 @@ +[[0, 0, 0], 81.0, {"submitted": 1558193839.5646703, "started": 1558193839.5650892, "finished": 1558193839.5733933}, {"loss": 0.42831310942286444, "info": {"x0": -4.8686885711069925, "x1": 4.784318691556724, "x2": 6.006893245521195, "x3": -3.3532111776939773, "x4": 3.2182334753345856, "x5": 0.18646288543071649}}, null] +[[0, 0, 1], 81.0, {"submitted": 1558193839.5751503, "started": 1558193839.5755622, "finished": 1558193839.581607}, {"loss": 1, "info": {"x0": -3.7925738029312717, "x1": 3.1129671564837698, "x2": 6.271369642075653, "x3": -0.7141353613954804, "x4": 4.196120570659869, "x5": 0.09370993630627816}}, null] +[[0, 0, 2], 81.0, {"submitted": 1558193839.5838897, "started": 1558193839.5842206, "finished": 1558193839.5904334}, {"loss": 0.3928826696221092, "info": {"x0": -3.3622543090140624, "x1": 7.468194090066739, "x2": 4.250641674198537, "x3": -1.930930691862124, "x4": 1.0756962817805498, "x5": 0.290445053035952}}, null] +[[0, 0, 3], 81.0, {"submitted": 1558193839.5924962, "started": 1558193839.5929198, "finished": 1558193839.600093}, {"loss": 0.328174995854829, "info": {"x0": -3.2816702701789904, "x1": 6.079643767551526, "x2": 6.601938065501768, "x3": -3.4269916045033946, "x4": 2.5572944709751098, "x5": 0.4463885068743627}}, null] +[[0, 0, 4], 81.0, {"submitted": 1558193839.6028144, "started": 1558193839.6032858, "finished": 1558193839.6104746}, {"loss": 0.4207514430380602, "info": {"x0": -2.150719581619738, "x1": 4.270689095120767, "x2": 5.121172689418566, "x3": -0.4179555854916299, "x4": 2.4744185012003324, "x5": 0.1947363199339021}}, null] +[[0, 0, 5], 81.0, {"submitted": 1558193839.6121085, "started": 1558193839.6124892, "finished": 1558193839.618996}, {"loss": 0.46684507701120054, "info": {"x0": -5.824718675960008, "x1": 7.664591640697475, "x2": 6.565972851017218, "x3": -3.5299864359949504, "x4": 3.896742071924206, "x5": 0.09961140955171671}}, null] +[[0, 0, 6], 81.0, {"submitted": 1558193839.6206598, "started": 1558193839.6210613, "finished": 1558193839.6275082}, {"loss": 0.47221109072836376, "info": {"x0": -4.362579655105692, "x1": 6.311866582424056, "x2": 6.083820148781442, "x3": -2.044333482917071, "x4": 4.7792538625140715, "x5": 0.4711233356014723}}, null] +[[0, 0, 7], 81.0, {"submitted": 1558193839.629492, "started": 1558193839.630086, "finished": 1558193839.6378782}, {"loss": 0.374319813108855, "info": {"x0": -2.8845304638092846, "x1": 6.131081102740156, "x2": 6.477592003713163, "x3": -0.9666009570413574, "x4": 4.136262009742797, "x5": 0.4967489932322039}}, null] +[[0, 0, 8], 81.0, {"submitted": 1558193839.6410224, "started": 1558193839.6414366, "finished": 1558193839.6478474}, {"loss": 0.4527657415997249, "info": {"x0": -4.778566357236814, "x1": 6.425830165332793, "x2": 4.02526879550606, "x3": -3.238207808978557, "x4": 4.749552411772023, "x5": 0.11940525026362436}}, null] +[[0, 0, 9], 81.0, {"submitted": 1558193839.650188, "started": 1558193839.6506946, "finished": 1558193839.65752}, {"loss": 0.4606566767734968, "info": {"x0": -2.0195358373187973, "x1": 3.9244671574778263, "x2": 6.796471268658362, "x3": -0.7318384039557086, "x4": 2.009165519325797, "x5": 0.3383656793120449}}, null] +[[0, 0, 10], 81.0, {"submitted": 1558193839.6592455, "started": 1558193839.659564, "finished": 1558193839.6699479}, {"loss": 0.17820147517889873, "info": {"x0": -3.3883917804658887, "x1": 6.684440915138305, "x2": 7.070581823079442, "x3": -3.1845638644956047, "x4": 1.5431837969847155, "x5": 0.19965808346830838}}, null] +[[0, 0, 11], 81.0, {"submitted": 1558193839.6719706, "started": 1558193839.6724267, "finished": 1558193839.678932}, {"loss": 0.4594974116220027, "info": {"x0": -4.843260717439863, "x1": 5.0121897408005385, "x2": 5.662967197892819, "x3": -1.1812343303876105, "x4": 2.8066864936404814, "x5": 0.3987582895655316}}, null] +[[0, 0, 12], 81.0, {"submitted": 1558193839.6809225, "started": 1558193839.6814713, "finished": 1558193839.6877646}, {"loss": 0.4233111249128457, "info": {"x0": -4.231222168642111, "x1": 4.664113428073368, "x2": 4.283602326852874, "x3": -1.0068999745999565, "x4": 3.1210955672556335, "x5": 0.06342854103921763}}, null] +[[0, 0, 13], 81.0, {"submitted": 1558193839.6895525, "started": 1558193839.6898894, "finished": 1558193839.698213}, {"loss": 1, "info": {"x0": -2.046598080109466, "x1": 3.949887877273892, "x2": 7.2023745023231704, "x3": -3.055264331758701, "x4": 3.8499666711836293, "x5": 0.4874842105409422}}, null] +[[0, 0, 14], 81.0, {"submitted": 1558193839.7002077, "started": 1558193839.7005699, "finished": 1558193839.707829}, {"loss": 0.18472399805175266, "info": {"x0": -2.79498649408799, "x1": 6.204939284140916, "x2": 5.627955479397799, "x3": -3.8461826903123453, "x4": 2.2785686294306053, "x5": 0.08232614459650617}}, null] +[[0, 0, 15], 81.0, {"submitted": 1558193839.7095523, "started": 1558193839.709996, "finished": 1558193839.7165203}, {"loss": 0.42088513842105274, "info": {"x0": -4.063958292528775, "x1": 4.6978579402757195, "x2": 7.160001596093485, "x3": -3.7960013448576317, "x4": 4.741482198877301, "x5": 0.42384486516142617}}, null] +[[0, 0, 16], 81.0, {"submitted": 1558193839.718625, "started": 1558193839.7189925, "finished": 1558193839.7259333}, {"loss": 0.41557560419904027, "info": {"x0": -4.763514425309557, "x1": 4.153948685594382, "x2": 6.13819634881124, "x3": -3.820525197000438, "x4": 1.8019321257129421, "x5": 0.23835967090514987}}, null] +[[0, 0, 17], 81.0, {"submitted": 1558193839.7290375, "started": 1558193839.729455, "finished": 1558193839.7367604}, {"loss": 0.4281419034763479, "info": {"x0": -4.857241514644171, "x1": 7.420558354070921, "x2": 7.312558427643786, "x3": -3.3700578302481192, "x4": 3.8211571039681247, "x5": 0.21609031393168027}}, null] +[[0, 0, 18], 81.0, {"submitted": 1558193839.738543, "started": 1558193839.7389479, "finished": 1558193839.7450483}, {"loss": 0.4460600976643053, "info": {"x0": -5.472602994541404, "x1": 5.372679740177498, "x2": 5.531383633795102, "x3": -1.1871519621901014, "x4": 1.7122002473819755, "x5": 0.054401606386202395}}, null] +[[0, 0, 19], 81.0, {"submitted": 1558193839.7469304, "started": 1558193839.7473664, "finished": 1558193839.7562947}, {"loss": 0.4104990503463631, "info": {"x0": -4.612633259138508, "x1": 7.464467282934131, "x2": 7.42869424901536, "x3": -3.282700075410446, "x4": 2.790154794828946, "x5": 0.17649783210699965}}, null] +[[0, 0, 20], 81.0, {"submitted": 1558193839.7589293, "started": 1558193839.7592914, "finished": 1558193839.7662022}, {"loss": 0.3970749676917101, "info": {"x0": -3.631193545658383, "x1": 6.668461565212582, "x2": 5.438965367790819, "x3": -0.053160993907709564, "x4": 3.576901040902977, "x5": 0.39186940245899604}}, null] +[[0, 0, 21], 81.0, {"submitted": 1558193839.7713926, "started": 1558193839.7722104, "finished": 1558193839.7786388}, {"loss": 0.4338803336706912, "info": {"x0": -4.762318407964916, "x1": 5.7736352916796445, "x2": 4.984277760195532, "x3": -2.3790229068081468, "x4": 1.015364796919319, "x5": 0.3244340894344923}}, null] +[[0, 0, 22], 81.0, {"submitted": 1558193839.780267, "started": 1558193839.780698, "finished": 1558193839.7894666}, {"loss": 0.42212636833420286, "info": {"x0": -4.362711668789194, "x1": 4.562969738237647, "x2": 4.137578813123681, "x3": -1.7639264671416077, "x4": 1.028165112410726, "x5": 0.17357810274851793}}, null] +[[0, 0, 23], 81.0, {"submitted": 1558193839.7914457, "started": 1558193839.791802, "finished": 1558193839.798745}, {"loss": 1, "info": {"x0": -2.8554907737875737, "x1": 3.146433837820576, "x2": 7.581885229153173, "x3": -3.5395188411784937, "x4": 2.7247203543547727, "x5": 0.4510938475540843}}, null] +[[0, 0, 24], 81.0, {"submitted": 1558193839.8006434, "started": 1558193839.8009355, "finished": 1558193839.80781}, {"loss": 0.40767064956919813, "info": {"x0": -3.1118875951814178, "x1": 6.096402961093549, "x2": 7.7301992203094025, "x3": -0.7479861732394832, "x4": 2.6155571591772198, "x5": 0.4573973083095461}}, null] +[[0, 0, 25], 81.0, {"submitted": 1558193839.8095243, "started": 1558193839.8099115, "finished": 1558193839.8159957}, {"loss": 0.42460044578828315, "info": {"x0": -4.803229375349343, "x1": 7.785020996201882, "x2": 5.088917025038754, "x3": -0.8647930099595782, "x4": 1.517322388677901, "x5": 0.23836591350657743}}, null] +[[0, 0, 26], 81.0, {"submitted": 1558193839.819367, "started": 1558193839.8197608, "finished": 1558193839.827596}, {"loss": 1, "info": {"x0": -3.833808824705231, "x1": 3.372438777449478, "x2": 6.2998288851596795, "x3": -3.119190992940701, "x4": 4.732043237768188, "x5": 0.1309925280261925}}, null] +[[0, 0, 2], 243.0, {"submitted": 1558193839.8298025, "started": 1558193839.8302174, "finished": 1558193839.8385825}, {"loss": 0.39012575311304765, "info": {"x0": -3.3622543090140624, "x1": 7.468194090066739, "x2": 4.250641674198537, "x3": -1.930930691862124, "x4": 1.0756962817805498, "x5": 0.290445053035952}}, null] +[[0, 0, 3], 243.0, {"submitted": 1558193839.840775, "started": 1558193839.8411777, "finished": 1558193839.8475106}, {"loss": 0.24910426525782334, "info": {"x0": -3.2816702701789904, "x1": 6.079643767551526, "x2": 6.601938065501768, "x3": -3.4269916045033946, "x4": 2.5572944709751098, "x5": 0.4463885068743627}}, null] +[[0, 0, 7], 243.0, {"submitted": 1558193839.8487933, "started": 1558193839.8491113, "finished": 1558193839.859361}, {"loss": 0.3064413335772229, "info": {"x0": -2.8845304638092846, "x1": 6.131081102740156, "x2": 6.477592003713163, "x3": -0.9666009570413574, "x4": 4.136262009742797, "x5": 0.4967489932322039}}, null] +[[0, 0, 10], 243.0, {"submitted": 1558193839.8609312, "started": 1558193839.861253, "finished": 1558193839.8688588}, {"loss": 0.09136830869679606, "info": {"x0": -3.3883917804658887, "x1": 6.684440915138305, "x2": 7.070581823079442, "x3": -3.1845638644956047, "x4": 1.5431837969847155, "x5": 0.19965808346830838}}, null] +[[0, 0, 14], 243.0, {"submitted": 1558193839.8703756, "started": 1558193839.8707623, "finished": 1558193839.8764758}, {"loss": 0.13243789142838897, "info": {"x0": -2.79498649408799, "x1": 6.204939284140916, "x2": 5.627955479397799, "x3": -3.8461826903123453, "x4": 2.2785686294306053, "x5": 0.08232614459650617}}, null] +[[0, 0, 16], 243.0, {"submitted": 1558193839.8779917, "started": 1558193839.8783574, "finished": 1558193839.8856802}, {"loss": 0.4116820333030219, "info": {"x0": -4.763514425309557, "x1": 4.153948685594382, "x2": 6.13819634881124, "x3": -3.820525197000438, "x4": 1.8019321257129421, "x5": 0.23835967090514987}}, null] +[[0, 0, 19], 243.0, {"submitted": 1558193839.887516, "started": 1558193839.8880208, "finished": 1558193839.8954434}, {"loss": 0.4070184874115904, "info": {"x0": -4.612633259138508, "x1": 7.464467282934131, "x2": 7.42869424901536, "x3": -3.282700075410446, "x4": 2.790154794828946, "x5": 0.17649783210699965}}, null] +[[0, 0, 20], 243.0, {"submitted": 1558193839.896819, "started": 1558193839.897162, "finished": 1558193839.9036307}, {"loss": 0.3718841281770997, "info": {"x0": -3.631193545658383, "x1": 6.668461565212582, "x2": 5.438965367790819, "x3": -0.053160993907709564, "x4": 3.576901040902977, "x5": 0.39186940245899604}}, null] +[[0, 0, 24], 243.0, {"submitted": 1558193839.9049335, "started": 1558193839.9052737, "finished": 1558193839.9112642}, {"loss": 0.23118916189141134, "info": {"x0": -3.1118875951814178, "x1": 6.096402961093549, "x2": 7.7301992203094025, "x3": -0.7479861732394832, "x4": 2.6155571591772198, "x5": 0.4573973083095461}}, null] +[[0, 0, 10], 729.0, {"submitted": 1558193839.913027, "started": 1558193839.9135294, "finished": 1558193839.923309}, {"loss": 0.07492962105325857, "info": {"x0": -3.3883917804658887, "x1": 6.684440915138305, "x2": 7.070581823079442, "x3": -3.1845638644956047, "x4": 1.5431837969847155, "x5": 0.19965808346830838}}, null] +[[0, 0, 14], 729.0, {"submitted": 1558193839.924662, "started": 1558193839.9250076, "finished": 1558193839.9318216}, {"loss": 0.12149009161534803, "info": {"x0": -2.79498649408799, "x1": 6.204939284140916, "x2": 5.627955479397799, "x3": -3.8461826903123453, "x4": 2.2785686294306053, "x5": 0.08232614459650617}}, null] +[[0, 0, 24], 729.0, {"submitted": 1558193839.9336898, "started": 1558193839.93405, "finished": 1558193839.9408503}, {"loss": 0.13465339703230175, "info": {"x0": -3.1118875951814178, "x1": 6.096402961093549, "x2": 7.7301992203094025, "x3": -0.7479861732394832, "x4": 2.6155571591772198, "x5": 0.4573973083095461}}, null] +[[0, 0, 10], 2187.0, {"submitted": 1558193839.9423192, "started": 1558193839.9427247, "finished": 1558193839.9492807}, {"loss": 0.07492962105325857, "info": {"x0": -3.3883917804658887, "x1": 6.684440915138305, "x2": 7.070581823079442, "x3": -3.1845638644956047, "x4": 1.5431837969847155, "x5": 0.19965808346830838}}, null] +[[1, 0, 0], 243.0, {"submitted": 1558193839.9520664, "started": 1558193839.9525332, "finished": 1558193839.959305}, {"loss": 0.42322971004550053, "info": {"x0": -5.2907613175760195, "x1": 3.586449789685389, "x2": 6.687368999669301, "x3": -3.467006702045147, "x4": 4.736617756509234, "x5": 0.15364143130460056}}, null] +[[1, 0, 1], 243.0, {"submitted": 1558193839.9613264, "started": 1558193839.9617712, "finished": 1558193839.9683242}, {"loss": 0.4188280423532504, "info": {"x0": -3.732309154358195, "x1": 3.1646258454742804, "x2": 5.278008650724729, "x3": -3.807630684171997, "x4": 4.248603686159022, "x5": 0.3016100228208445}}, null] +[[1, 0, 2], 243.0, {"submitted": 1558193839.97036, "started": 1558193839.9706876, "finished": 1558193839.9768355}, {"loss": 0.25434981634499365, "info": {"x0": -2.709185563367712, "x1": 4.236936706665, "x2": 7.925302632105488, "x3": -0.46312900305568494, "x4": 3.7888361088404072, "x5": 0.11559938890377064}}, null] +[[1, 0, 3], 243.0, {"submitted": 1558193839.97897, "started": 1558193839.9794796, "finished": 1558193839.9868908}, {"loss": 0.41175571897407764, "info": {"x0": -5.446913133063402, "x1": 7.893576512560071, "x2": 7.748417581758473, "x3": -2.240469893056168, "x4": 2.075139416445452, "x5": 0.11828779391119565}}, null] +[[1, 0, 4], 243.0, {"submitted": 1558193839.9896102, "started": 1558193839.9901721, "finished": 1558193839.9959495}, {"loss": 0.09467899331457169, "info": {"x0": -3.3400772489303097, "x1": 7.169385561810759, "x2": 7.253730707995991, "x3": -1.4328697832926545, "x4": 4.467765272589277, "x5": 0.0014420341934258674}}, null] +[[1, 0, 5], 243.0, {"submitted": 1558193839.9984138, "started": 1558193839.9988341, "finished": 1558193840.0058372}, {"loss": 0.45337730709655516, "info": {"x0": -5.221750836847889, "x1": 6.639929220852665, "x2": 5.098803570840387, "x3": -3.3137163974042365, "x4": 4.642403601737792, "x5": 0.01116199280235547}}, null] +[[1, 0, 6], 243.0, {"submitted": 1558193840.007809, "started": 1558193840.008134, "finished": 1558193840.0163472}, {"loss": 0.02697524456996936, "info": {"x0": -2.6190447492986024, "x1": 5.626156291818557, "x2": 6.434824088242861, "x3": -0.06216147760508628, "x4": 2.1178935736750444, "x5": 0.14845528477456543}}, null] +[[1, 0, 7], 243.0, {"submitted": 1558193840.0180533, "started": 1558193840.0185947, "finished": 1558193840.0259335}, {"loss": 0.419855706538805, "info": {"x0": -5.277446229759061, "x1": 6.3055129726585255, "x2": 7.61939011917744, "x3": -0.5071757188234773, "x4": 2.9946115759840857, "x5": 0.488289381795631}}, null] +[[1, 0, 8], 243.0, {"submitted": 1558193840.028001, "started": 1558193840.0283883, "finished": 1558193840.0349936}, {"loss": 0.41589110004744334, "info": {"x0": -4.619822567449711, "x1": 7.170293188757548, "x2": 4.41619889624876, "x3": -0.9583570929160516, "x4": 1.3079887579379679, "x5": 0.2331031732899509}}, null] +[[1, 0, 2], 729.0, {"submitted": 1558193840.0369952, "started": 1558193840.037348, "finished": 1558193840.0439487}, {"loss": 0.02609936760052134, "info": {"x0": -2.709185563367712, "x1": 4.236936706665, "x2": 7.925302632105488, "x3": -0.46312900305568494, "x4": 3.7888361088404072, "x5": 0.11559938890377064}}, null] +[[1, 0, 4], 729.0, {"submitted": 1558193840.0455823, "started": 1558193840.0459638, "finished": 1558193840.0538974}, {"loss": 0.04592375142660156, "info": {"x0": -3.3400772489303097, "x1": 7.169385561810759, "x2": 7.253730707995991, "x3": -1.4328697832926545, "x4": 4.467765272589277, "x5": 0.0014420341934258674}}, null] +[[1, 0, 6], 729.0, {"submitted": 1558193840.0563726, "started": 1558193840.056948, "finished": 1558193840.0621538}, {"loss": 0.011374927900377507, "info": {"x0": -2.6190447492986024, "x1": 5.626156291818557, "x2": 6.434824088242861, "x3": -0.06216147760508628, "x4": 2.1178935736750444, "x5": 0.14845528477456543}}, null] +[[1, 0, 6], 2187.0, {"submitted": 1558193840.0637743, "started": 1558193840.0642772, "finished": 1558193840.071563}, {"loss": 0.01136257297488894, "info": {"x0": -2.6190447492986024, "x1": 5.626156291818557, "x2": 6.434824088242861, "x3": -0.06216147760508628, "x4": 2.1178935736750444, "x5": 0.14845528477456543}}, null] +[[2, 0, 0], 729.0, {"submitted": 1558193840.0737567, "started": 1558193840.0747254, "finished": 1558193840.081807}, {"loss": 0.217736834185629, "info": {"x0": -2.323354788398878, "x1": 4.02431145373483, "x2": 5.335167318104023, "x3": -0.17560563177910904, "x4": 3.948983629595452, "x5": 0.08608050444485815}}, null] +[[2, 0, 1], 729.0, {"submitted": 1558193840.0837238, "started": 1558193840.084159, "finished": 1558193840.0907466}, {"loss": 0.367725187871051, "info": {"x0": -2.293387502938509, "x1": 3.6004838202526894, "x2": 6.947477492933645, "x3": -1.9779044768874208, "x4": 3.7881497496602057, "x5": 0.060184145089554886}}, null] +[[2, 0, 2], 729.0, {"submitted": 1558193840.092442, "started": 1558193840.0928535, "finished": 1558193840.0995636}, {"loss": 0.3813237427273605, "info": {"x0": -3.1687531422978346, "x1": 7.93305144971118, "x2": 4.9374658467170915, "x3": -2.816542578140714, "x4": 3.6201687725368203, "x5": 0.3588175175534968}}, null] +[[2, 0, 3], 729.0, {"submitted": 1558193840.1016555, "started": 1558193840.1021647, "finished": 1558193840.110923}, {"loss": 0.39537218810247554, "info": {"x0": -3.1013781562497993, "x1": 5.698800377319019, "x2": 4.157590253457824, "x3": -0.5000659048391096, "x4": 2.350872217505387, "x5": 0.4188828379719976}}, null] +[[2, 0, 4], 729.0, {"submitted": 1558193840.1128323, "started": 1558193840.1132014, "finished": 1558193840.1202977}, {"loss": 0.15831266518137657, "info": {"x0": -2.991925660468601, "x1": 7.231617896044317, "x2": 6.004017576713032, "x3": -0.7682404389673732, "x4": 3.8528681659886086, "x5": 0.2658579164020342}}, null] +[[2, 0, 5], 729.0, {"submitted": 1558193840.122202, "started": 1558193840.1226795, "finished": 1558193840.1291509}, {"loss": 0.3110069256946125, "info": {"x0": -3.5746853590802257, "x1": 5.9475055021800225, "x2": 6.327967592986406, "x3": -1.1233812173613322, "x4": 4.033026943413725, "x5": 0.3696805295827534}}, null] +[[2, 0, 0], 2187.0, {"submitted": 1558193840.1310766, "started": 1558193840.131543, "finished": 1558193840.139163}, {"loss": 0.17883598227931824, "info": {"x0": -2.323354788398878, "x1": 4.02431145373483, "x2": 5.335167318104023, "x3": -0.17560563177910904, "x4": 3.948983629595452, "x5": 0.08608050444485815}}, null] +[[2, 0, 4], 2187.0, {"submitted": 1558193840.1412816, "started": 1558193840.1417084, "finished": 1558193840.1478896}, {"loss": 0.15831266518137657, "info": {"x0": -2.991925660468601, "x1": 7.231617896044317, "x2": 6.004017576713032, "x3": -0.7682404389673732, "x4": 3.8528681659886086, "x5": 0.2658579164020342}}, null] +[[3, 0, 0], 2187.0, {"submitted": 1558193840.150115, "started": 1558193840.1507382, "finished": 1558193840.1593158}, {"loss": 0.06132550692078831, "info": {"x0": -2.2312511006504154, "x1": 5.2321101964282395, "x2": 7.912759359719838, "x3": -1.8082235526914427, "x4": 2.194238120672484, "x5": 0.04913477553405288}}, null] +[[3, 0, 1], 2187.0, {"submitted": 1558193840.1613314, "started": 1558193840.1616988, "finished": 1558193840.1704254}, {"loss": 0.3352296692417783, "info": {"x0": -2.861859475107948, "x1": 6.297164223775871, "x2": 5.047802413569769, "x3": -2.097331660158806, "x4": 3.8742991490645644, "x5": 0.23079794802824266}}, null] +[[3, 0, 2], 2187.0, {"submitted": 1558193840.1729374, "started": 1558193840.1732836, "finished": 1558193840.179467}, {"loss": 0.1487984792511806, "info": {"x0": -2.4049242186428748, "x1": 3.4991192714312147, "x2": 6.962958825706956, "x3": -2.26772515461359, "x4": 2.2459792732310264, "x5": 0.05520778306343321}}, null] +[[3, 0, 3], 2187.0, {"submitted": 1558193840.1816096, "started": 1558193840.1823065, "finished": 1558193840.1904495}, {"loss": 0.38390018329001296, "info": {"x0": -3.888806859218298, "x1": 6.1689811754361585, "x2": 5.694167518112209, "x3": -1.877737051834044, "x4": 1.267603993354121, "x5": 0.1910081333348591}}, null] +[[4, 0, 0], 81.0, {"submitted": 1558193840.1921668, "started": 1558193840.1925392, "finished": 1558193840.19867}, {"loss": 0.3860168559055187, "info": {"x0": -2.400698592317028, "x1": 6.738283593459228, "x2": 7.0250242089997545, "x3": -0.05737187826953072, "x4": 3.7092942744451833, "x5": 0.2666032079285666}}, null] +[[4, 0, 1], 81.0, {"submitted": 1558193840.2011683, "started": 1558193840.201889, "finished": 1558193840.2106285}, {"loss": 0.4920125266419556, "info": {"x0": -5.9945727408364835, "x1": 4.652305132294662, "x2": 4.093739640805359, "x3": -0.7465837515318356, "x4": 2.1896062891081027, "x5": 0.14697773456785718}}, null] +[[4, 0, 2], 81.0, {"submitted": 1558193840.213334, "started": 1558193840.213721, "finished": 1558193840.2209191}, {"loss": 0.3936950072408352, "info": {"x0": -3.1745967839236426, "x1": 5.420427268429767, "x2": 5.619746206340029, "x3": -1.8645786500492685, "x4": 3.002547471581194, "x5": 0.4324880619736572}}, null] +[[4, 0, 3], 81.0, {"submitted": 1558193840.222823, "started": 1558193840.2234335, "finished": 1558193840.228911}, {"loss": 0.4151793644787668, "info": {"x0": -4.338904769176241, "x1": 7.663834643221402, "x2": 4.981043793620755, "x3": -0.004164875242254951, "x4": 1.5943811510448072, "x5": 0.37243365562685493}}, null] +[[4, 0, 4], 81.0, {"submitted": 1558193840.2313306, "started": 1558193840.2316883, "finished": 1558193840.2412198}, {"loss": 0.41429819724600075, "info": {"x0": -4.141349345322397, "x1": 6.599488336121377, "x2": 6.059982096638515, "x3": -0.3369422830861346, "x4": 2.677183790547797, "x5": 0.3815130876543304}}, null] +[[4, 0, 5], 81.0, {"submitted": 1558193840.242881, "started": 1558193840.2431912, "finished": 1558193840.2491493}, {"loss": 0.46184750058160945, "info": {"x0": -5.189963893637251, "x1": 6.38929394118473, "x2": 4.972855022206093, "x3": -3.994155416087233, "x4": 4.226415182561839, "x5": 0.02264556021049191}}, null] +[[4, 0, 6], 81.0, {"submitted": 1558193840.25123, "started": 1558193840.2517161, "finished": 1558193840.2636654}, {"loss": 0.43133653343820244, "info": {"x0": -4.265222729049938, "x1": 4.780416347505559, "x2": 6.0502576884718655, "x3": -1.4993061568882577, "x4": 1.6955274630190331, "x5": 0.46770676760825186}}, null] +[[4, 0, 7], 81.0, {"submitted": 1558193840.2683566, "started": 1558193840.2688997, "finished": 1558193840.276458}, {"loss": 0.4019273674444409, "info": {"x0": -2.6185955249415676, "x1": 4.0058789370576475, "x2": 6.028901574190085, "x3": -1.6119134222982292, "x4": 3.425702043169906, "x5": 0.44175139847357425}}, null] +[[4, 0, 8], 81.0, {"submitted": 1558193840.278523, "started": 1558193840.2789953, "finished": 1558193840.2872925}, {"loss": 0.4047593006371567, "info": {"x0": -2.1141939894264574, "x1": 7.008516855287291, "x2": 5.531398087888929, "x3": -1.556732153893741, "x4": 4.308476135179548, "x5": 0.4701027604887472}}, null] +[[4, 0, 9], 81.0, {"submitted": 1558193840.2898352, "started": 1558193840.2901902, "finished": 1558193840.296833}, {"loss": 0.41506949588639985, "info": {"x0": -3.317248498157899, "x1": 7.270766784616509, "x2": 7.673816923120209, "x3": -0.8909509306584527, "x4": 4.498501336020343, "x5": 0.4606412563516679}}, null] +[[4, 0, 10], 81.0, {"submitted": 1558193840.299965, "started": 1558193840.3027039, "finished": 1558193840.3128617}, {"loss": 0.3799629312530978, "info": {"x0": -2.1434430600282273, "x1": 5.598752780386818, "x2": 5.57132631808363, "x3": -1.747602262327511, "x4": 2.0145010196534963, "x5": 0.23021294323396368}}, null] +[[4, 0, 11], 81.0, {"submitted": 1558193840.3147748, "started": 1558193840.3151724, "finished": 1558193840.324403}, {"loss": 0.40630807452041245, "info": {"x0": -3.0126498594836653, "x1": 5.0009933274216465, "x2": 4.771982900112681, "x3": -1.1799215888657963, "x4": 1.6840512882139915, "x5": 0.435167353004462}}, null] +[[4, 0, 12], 81.0, {"submitted": 1558193840.3264422, "started": 1558193840.3269305, "finished": 1558193840.3345232}, {"loss": 1, "info": {"x0": -4.448416003814176, "x1": 4.603754412523996, "x2": 7.553453766240599, "x3": -0.8889223974573208, "x4": 4.021485549586, "x5": 0.28932023757335085}}, null] +[[4, 0, 13], 81.0, {"submitted": 1558193840.3368602, "started": 1558193840.3372583, "finished": 1558193840.3448045}, {"loss": 0.37037284675068516, "info": {"x0": -2.3798852409211686, "x1": 3.9733873193993374, "x2": 7.341277672735583, "x3": -2.2599470145450278, "x4": 1.074930450752054, "x5": 0.08293618938363628}}, null] +[[4, 0, 14], 81.0, {"submitted": 1558193840.346442, "started": 1558193840.3469894, "finished": 1558193840.353329}, {"loss": 1, "info": {"x0": -3.7783206860988967, "x1": 3.5732866192521326, "x2": 6.954406828355699, "x3": -3.850321875846942, "x4": 4.120307656818708, "x5": 0.3908699609865875}}, null] +[[4, 0, 15], 81.0, {"submitted": 1558193840.3550189, "started": 1558193840.3555052, "finished": 1558193840.363979}, {"loss": 0.47274058684234604, "info": {"x0": -5.249382716446295, "x1": 6.111971388101988, "x2": 6.39382613280552, "x3": -0.3014560642644133, "x4": 3.925445475029663, "x5": 0.4824075799151282}}, null] +[[4, 0, 16], 81.0, {"submitted": 1558193840.3674855, "started": 1558193840.367897, "finished": 1558193840.3743923}, {"loss": 0.4733398049565235, "info": {"x0": -5.978232818632258, "x1": 6.614485539021201, "x2": 7.020740170334378, "x3": -2.754845273076119, "x4": 2.240884401516169, "x5": 0.3174384848092829}}, null] +[[4, 0, 17], 81.0, {"submitted": 1558193840.3762884, "started": 1558193840.3767068, "finished": 1558193840.3832393}, {"loss": 0.33323743053731725, "info": {"x0": -3.4738470296541175, "x1": 6.56485930115144, "x2": 5.843863278606202, "x3": -2.9035301117807517, "x4": 2.7420468354980128, "x5": 0.20097918443311447}}, null] +[[4, 0, 18], 81.0, {"submitted": 1558193840.3854012, "started": 1558193840.3858502, "finished": 1558193840.3945327}, {"loss": 0.3285990370507511, "info": {"x0": -3.6764144909743783, "x1": 6.950447467305187, "x2": 5.304075393838815, "x3": -0.21466052490528575, "x4": 1.7861389076805572, "x5": 0.20121160490767337}}, null] +[[4, 0, 19], 81.0, {"submitted": 1558193840.3965983, "started": 1558193840.3971298, "finished": 1558193840.4031243}, {"loss": 0.34392224722107956, "info": {"x0": -3.2003877190280443, "x1": 6.033193039383782, "x2": 4.3448887534258915, "x3": -3.910070064860785, "x4": 4.479097401999455, "x5": 0.12222264696225882}}, null] +[[4, 0, 20], 81.0, {"submitted": 1558193840.4053934, "started": 1558193840.4058037, "finished": 1558193840.4116342}, {"loss": 0.48878376591453315, "info": {"x0": -2.1132589344225012, "x1": 5.704137660248998, "x2": 7.147471639203967, "x3": -1.5606288523731693, "x4": 3.492198596715038, "x5": 0.4055552066941961}}, null] +[[4, 0, 21], 81.0, {"submitted": 1558193840.4133253, "started": 1558193840.4138386, "finished": 1558193840.4214282}, {"loss": 0.47104177945050896, "info": {"x0": -5.122857294588806, "x1": 6.623116795753418, "x2": 5.3815936364684696, "x3": -2.7603355731404986, "x4": 4.547661146673203, "x5": 0.2071566833558734}}, null] +[[4, 0, 22], 81.0, {"submitted": 1558193840.4239497, "started": 1558193840.4245052, "finished": 1558193840.4308047}, {"loss": 0.34809689089366574, "info": {"x0": -3.101244293427579, "x1": 5.779717371847779, "x2": 6.260785362653239, "x3": -3.895639993638905, "x4": 2.737072524620463, "x5": 0.41389890280439795}}, null] +[[4, 0, 23], 81.0, {"submitted": 1558193840.4329002, "started": 1558193840.433354, "finished": 1558193840.4413786}, {"loss": 0.4124700965067132, "info": {"x0": -4.585702836046696, "x1": 4.170681621940837, "x2": 6.788568156513582, "x3": -0.41552467983610075, "x4": 1.9233799848599276, "x5": 0.1189344058775686}}, null] +[[4, 0, 24], 81.0, {"submitted": 1558193840.4435463, "started": 1558193840.4440174, "finished": 1558193840.451876}, {"loss": 0.47316330484313107, "info": {"x0": -5.384895845671198, "x1": 7.081884046296041, "x2": 4.841294862452825, "x3": -0.41339345855410015, "x4": 4.497415917013699, "x5": 0.24530466802619566}}, null] +[[4, 0, 25], 81.0, {"submitted": 1558193840.4554932, "started": 1558193840.456265, "finished": 1558193840.4628649}, {"loss": 0.41097030391960276, "info": {"x0": -4.221146784372488, "x1": 6.346891239126139, "x2": 7.254032433384845, "x3": -2.5333063661747603, "x4": 3.664516149629116, "x5": 0.2587281738470981}}, null] +[[4, 0, 26], 81.0, {"submitted": 1558193840.4655507, "started": 1558193840.4659467, "finished": 1558193840.4717066}, {"loss": 1, "info": {"x0": -5.335254066904349, "x1": 3.441843455822759, "x2": 7.634363044216762, "x3": -2.6080645723595652, "x4": 1.9056143856596846, "x5": 0.20100184821351014}}, null] +[[4, 0, 0], 243.0, {"submitted": 1558193840.4743803, "started": 1558193840.4747818, "finished": 1558193840.4807522}, {"loss": 0.31585006534042004, "info": {"x0": -2.400698592317028, "x1": 6.738283593459228, "x2": 7.0250242089997545, "x3": -0.05737187826953072, "x4": 3.7092942744451833, "x5": 0.2666032079285666}}, null] +[[4, 0, 2], 243.0, {"submitted": 1558193840.4824352, "started": 1558193840.4829109, "finished": 1558193840.4908416}, {"loss": 0.3779751113106351, "info": {"x0": -3.1745967839236426, "x1": 5.420427268429767, "x2": 5.619746206340029, "x3": -1.8645786500492685, "x4": 3.002547471581194, "x5": 0.4324880619736572}}, null] +[[4, 0, 7], 243.0, {"submitted": 1558193840.4924538, "started": 1558193840.4927661, "finished": 1558193840.4990695}, {"loss": 0.3720120866551594, "info": {"x0": -2.6185955249415676, "x1": 4.0058789370576475, "x2": 6.028901574190085, "x3": -1.6119134222982292, "x4": 3.425702043169906, "x5": 0.44175139847357425}}, null] +[[4, 0, 10], 243.0, {"submitted": 1558193840.5006673, "started": 1558193840.5011106, "finished": 1558193840.5082288}, {"loss": 0.35186338597343236, "info": {"x0": -2.1434430600282273, "x1": 5.598752780386818, "x2": 5.57132631808363, "x3": -1.747602262327511, "x4": 2.0145010196534963, "x5": 0.23021294323396368}}, null] +[[4, 0, 13], 243.0, {"submitted": 1558193840.5095196, "started": 1558193840.5098338, "finished": 1558193840.5159354}, {"loss": 0.3358822676044316, "info": {"x0": -2.3798852409211686, "x1": 3.9733873193993374, "x2": 7.341277672735583, "x3": -2.2599470145450278, "x4": 1.074930450752054, "x5": 0.08293618938363628}}, null] +[[4, 0, 17], 243.0, {"submitted": 1558193840.5178044, "started": 1558193840.518122, "finished": 1558193840.526064}, {"loss": 0.25290384781178893, "info": {"x0": -3.4738470296541175, "x1": 6.56485930115144, "x2": 5.843863278606202, "x3": -2.9035301117807517, "x4": 2.7420468354980128, "x5": 0.20097918443311447}}, null] +[[4, 0, 18], 243.0, {"submitted": 1558193840.527313, "started": 1558193840.5278432, "finished": 1558193840.5345998}, {"loss": 0.2570776139726334, "info": {"x0": -3.6764144909743783, "x1": 6.950447467305187, "x2": 5.304075393838815, "x3": -0.21466052490528575, "x4": 1.7861389076805572, "x5": 0.20121160490767337}}, null] +[[4, 0, 19], 243.0, {"submitted": 1558193840.536394, "started": 1558193840.5368886, "finished": 1558193840.543204}, {"loss": 0.3259789036294962, "info": {"x0": -3.2003877190280443, "x1": 6.033193039383782, "x2": 4.3448887534258915, "x3": -3.910070064860785, "x4": 4.479097401999455, "x5": 0.12222264696225882}}, null] +[[4, 0, 22], 243.0, {"submitted": 1558193840.5446992, "started": 1558193840.5451665, "finished": 1558193840.553285}, {"loss": 0.30311564513025224, "info": {"x0": -3.101244293427579, "x1": 5.779717371847779, "x2": 6.260785362653239, "x3": -3.895639993638905, "x4": 2.737072524620463, "x5": 0.41389890280439795}}, null] +[[4, 0, 17], 729.0, {"submitted": 1558193840.556942, "started": 1558193840.5575016, "finished": 1558193840.5629618}, {"loss": 0.21764329160375723, "info": {"x0": -3.4738470296541175, "x1": 6.56485930115144, "x2": 5.843863278606202, "x3": -2.9035301117807517, "x4": 2.7420468354980128, "x5": 0.20097918443311447}}, null] +[[4, 0, 18], 729.0, {"submitted": 1558193840.5655775, "started": 1558193840.5659723, "finished": 1558193840.5731275}, {"loss": 0.2443127552123528, "info": {"x0": -3.6764144909743783, "x1": 6.950447467305187, "x2": 5.304075393838815, "x3": -0.21466052490528575, "x4": 1.7861389076805572, "x5": 0.20121160490767337}}, null] +[[4, 0, 22], 729.0, {"submitted": 1558193840.574737, "started": 1558193840.5751145, "finished": 1558193840.5829232}, {"loss": 0.2828478082492557, "info": {"x0": -3.101244293427579, "x1": 5.779717371847779, "x2": 6.260785362653239, "x3": -3.895639993638905, "x4": 2.737072524620463, "x5": 0.41389890280439795}}, null] +[[4, 0, 17], 2187.0, {"submitted": 1558193840.5851061, "started": 1558193840.5855165, "finished": 1558193840.5935316}, {"loss": 0.21764329160375723, "info": {"x0": -3.4738470296541175, "x1": 6.56485930115144, "x2": 5.843863278606202, "x3": -2.9035301117807517, "x4": 2.7420468354980128, "x5": 0.20097918443311447}}, null] +[[5, 0, 0], 243.0, {"submitted": 1558193840.595684, "started": 1558193840.5961359, "finished": 1558193840.6026473}, {"loss": 0.16557472513634958, "info": {"x0": -3.3317789208539375, "x1": 6.202211857506049, "x2": 7.4442637192982595, "x3": -2.331049542197823, "x4": 3.817154328477772, "x5": 0.30353076006846186}}, null] +[[5, 0, 1], 243.0, {"submitted": 1558193840.6048048, "started": 1558193840.60521, "finished": 1558193840.6112957}, {"loss": 0.4478815631089731, "info": {"x0": -5.014753349537898, "x1": 5.070469830929111, "x2": 4.39860851770897, "x3": -3.8117730625632613, "x4": 2.1458939444998646, "x5": 0.2357546152893133}}, null] +[[5, 0, 2], 243.0, {"submitted": 1558193840.6132216, "started": 1558193840.6137245, "finished": 1558193840.6233335}, {"loss": 0.022967834040619216, "info": {"x0": -3.5294995070587545, "x1": 6.702245465648025, "x2": 6.900264221425076, "x3": -0.6946184236691835, "x4": 1.9202056600899988, "x5": 0.00022414241769563858}}, null] +[[5, 0, 3], 243.0, {"submitted": 1558193840.626806, "started": 1558193840.6271348, "finished": 1558193840.6344824}, {"loss": 0.35635573207184046, "info": {"x0": -3.8942272491941883, "x1": 7.75722672643768, "x2": 7.5142734987774595, "x3": -3.651917603746827, "x4": 3.094475583946117, "x5": 0.1460940538972909}}, null] +[[5, 0, 4], 243.0, {"submitted": 1558193840.6365297, "started": 1558193840.6368465, "finished": 1558193840.642483}, {"loss": 0.3651952513831665, "info": {"x0": -3.6995137444191353, "x1": 6.501072939515405, "x2": 5.16924889352088, "x3": -3.2258310872054574, "x4": 3.204162295809384, "x5": 0.27014284459338667}}, null] +[[5, 0, 5], 243.0, {"submitted": 1558193840.6443229, "started": 1558193840.6446476, "finished": 1558193840.6563241}, {"loss": 0.4367837384356067, "info": {"x0": -5.851636303899907, "x1": 3.1978092070539916, "x2": 7.824662156002743, "x3": -3.1932353987579702, "x4": 3.458923289247426, "x5": 0.02355607599578502}}, null] +[[5, 0, 6], 243.0, {"submitted": 1558193840.6586726, "started": 1558193840.6591, "finished": 1558193840.6657383}, {"loss": 0.08723646577538226, "info": {"x0": -2.8053169562808407, "x1": 7.36671557509655, "x2": 5.875884117260614, "x3": -1.806806666072113, "x4": 3.944662519116461, "x5": 0.1558432400903349}}, null] +[[5, 0, 7], 243.0, {"submitted": 1558193840.667713, "started": 1558193840.6681364, "finished": 1558193840.673898}, {"loss": 0.42763181851166604, "info": {"x0": -4.646820357973002, "x1": 6.706655676078404, "x2": 4.409115622950117, "x3": -0.48538227860725547, "x4": 3.0724028080700125, "x5": 0.27478688391283707}}, null] +[[5, 0, 8], 243.0, {"submitted": 1558193840.6759756, "started": 1558193840.6763551, "finished": 1558193840.6842725}, {"loss": 0.35389886262481224, "info": {"x0": -2.4117294096418394, "x1": 7.612211946741684, "x2": 4.524708567846829, "x3": -1.0825925463356132, "x4": 1.3548767135611381, "x5": 0.15290746042606285}}, null] +[[5, 0, 0], 729.0, {"submitted": 1558193840.6860557, "started": 1558193840.6864176, "finished": 1558193840.694224}, {"loss": 0.06959360868660555, "info": {"x0": -3.3317789208539375, "x1": 6.202211857506049, "x2": 7.4442637192982595, "x3": -2.331049542197823, "x4": 3.817154328477772, "x5": 0.30353076006846186}}, null] +[[5, 0, 2], 729.0, {"submitted": 1558193840.695416, "started": 1558193840.6957173, "finished": 1558193840.702255}, {"loss": 0.0158946302088541, "info": {"x0": -3.5294995070587545, "x1": 6.702245465648025, "x2": 6.900264221425076, "x3": -0.6946184236691835, "x4": 1.9202056600899988, "x5": 0.00022414241769563858}}, null] +[[5, 0, 6], 729.0, {"submitted": 1558193840.7037044, "started": 1558193840.7040362, "finished": 1558193840.7112083}, {"loss": 0.06899616159118979, "info": {"x0": -2.8053169562808407, "x1": 7.36671557509655, "x2": 5.875884117260614, "x3": -1.806806666072113, "x4": 3.944662519116461, "x5": 0.1558432400903349}}, null] +[[5, 0, 2], 2187.0, {"submitted": 1558193840.7130136, "started": 1558193840.713539, "finished": 1558193840.7205524}, {"loss": 0.0158946302088541, "info": {"x0": -3.5294995070587545, "x1": 6.702245465648025, "x2": 6.900264221425076, "x3": -0.6946184236691835, "x4": 1.9202056600899988, "x5": 0.00022414241769563858}}, null] +[[6, 0, 0], 729.0, {"submitted": 1558193840.7226062, "started": 1558193840.7231178, "finished": 1558193840.7291596}, {"loss": 0.18986056099789908, "info": {"x0": -3.5717685468884, "x1": 6.370645903629803, "x2": 6.008224376563865, "x3": -3.8804406509816443, "x4": 4.587358038678979, "x5": 0.022678565276163798}}, null] +[[6, 0, 1], 729.0, {"submitted": 1558193840.731483, "started": 1558193840.7318804, "finished": 1558193840.7380376}, {"loss": 0.43516965979057065, "info": {"x0": -5.043960347011097, "x1": 7.865073813466623, "x2": 5.430440861777468, "x3": -3.618683577200893, "x4": 2.4552853199080764, "x5": 0.007966163864293496}}, null] +[[6, 0, 2], 729.0, {"submitted": 1558193840.740456, "started": 1558193840.7423112, "finished": 1558193840.7501066}, {"loss": 0.4929748907055451, "info": {"x0": -5.31559715045236, "x1": 7.229168845875932, "x2": 4.032129767940429, "x3": -2.2639157510313557, "x4": 4.937434743569677, "x5": 0.3912146303775482}}, null] +[[6, 0, 3], 729.0, {"submitted": 1558193840.7523296, "started": 1558193840.7527847, "finished": 1558193840.7603807}, {"loss": 0.4123134562272036, "info": {"x0": -5.086906443084828, "x1": 3.745284110590259, "x2": 6.22422575305951, "x3": -0.5486534962823963, "x4": 4.595654785671597, "x5": 0.16796200458488092}}, null] +[[6, 0, 4], 729.0, {"submitted": 1558193840.7620008, "started": 1558193840.7623987, "finished": 1558193840.7698624}, {"loss": 0.10197723043218472, "info": {"x0": -2.413210680764362, "x1": 5.157509972680865, "x2": 5.756041941417694, "x3": -1.9184385910625372, "x4": 3.3686593716301947, "x5": 0.10853180241502008}}, null] +[[6, 0, 5], 729.0, {"submitted": 1558193840.7721357, "started": 1558193840.7725458, "finished": 1558193840.7799594}, {"loss": 0.11273705806375231, "info": {"x0": -2.3452065932410853, "x1": 6.910702342354174, "x2": 6.277823335114298, "x3": -2.2331227824200957, "x4": 3.5041205885656375, "x5": 0.08944679831140523}}, null] +[[6, 0, 4], 2187.0, {"submitted": 1558193840.7819471, "started": 1558193840.7823405, "finished": 1558193840.7886705}, {"loss": 0.09484666466252696, "info": {"x0": -2.413210680764362, "x1": 5.157509972680865, "x2": 5.756041941417694, "x3": -1.9184385910625372, "x4": 3.3686593716301947, "x5": 0.10853180241502008}}, null] +[[6, 0, 5], 2187.0, {"submitted": 1558193840.7910302, "started": 1558193840.7913792, "finished": 1558193840.7972913}, {"loss": 0.11405374140913653, "info": {"x0": -2.3452065932410853, "x1": 6.910702342354174, "x2": 6.277823335114298, "x3": -2.2331227824200957, "x4": 3.5041205885656375, "x5": 0.08944679831140523}}, null] +[[7, 0, 0], 2187.0, {"submitted": 1558193840.7999413, "started": 1558193840.8004274, "finished": 1558193840.8077803}, {"loss": 0.37065083884939865, "info": {"x0": -3.5019606092769395, "x1": 7.476596910009983, "x2": 5.510124926758236, "x3": -3.604869656061746, "x4": 1.090705423447719, "x5": 0.3624880744609019}}, null] +[[7, 0, 1], 2187.0, {"submitted": 1558193840.809763, "started": 1558193840.8100874, "finished": 1558193840.8158271}, {"loss": 0.41221461621392763, "info": {"x0": -5.395693318106332, "x1": 6.441826037886164, "x2": 6.880462411172502, "x3": -0.6989533749603227, "x4": 3.005430197133688, "x5": 0.16805545810867956}}, null] +[[7, 0, 2], 2187.0, {"submitted": 1558193840.8177958, "started": 1558193840.8188164, "finished": 1558193840.826645}, {"loss": 0.4143167275392604, "info": {"x0": -4.838161896636575, "x1": 3.6404839083031453, "x2": 5.1298416490732865, "x3": -2.2866704712498445, "x4": 1.3875140264964392, "x5": 0.2925683803126154}}, null] +[[7, 0, 3], 2187.0, {"submitted": 1558193840.82884, "started": 1558193840.8292303, "finished": 1558193840.8355005}, {"loss": 0.393590431669849, "info": {"x0": -4.589478949692022, "x1": 5.691373767927466, "x2": 7.825906165860937, "x3": -3.1073297683067516, "x4": 3.223017885569199, "x5": 0.162704642272737}}, null] +[[8, 0, 0], 81.0, {"submitted": 1558193840.837917, "started": 1558193840.8383386, "finished": 1558193840.8451178}, {"loss": 0.4869668595366532, "info": {"x0": -4.604359734586062, "x1": 4.5924675469806715, "x2": 4.252356226329164, "x3": -3.0339135604556615, "x4": 3.9091354094328756, "x5": 0.42610948748662975}}, null] +[[8, 0, 1], 81.0, {"submitted": 1558193840.8472636, "started": 1558193840.8477495, "finished": 1558193840.8541272}, {"loss": 1, "info": {"x0": -3.064708572465389, "x1": 3.765964806672363, "x2": 7.785623868092892, "x3": -0.16074373760770877, "x4": 3.633262022792246, "x5": 0.4761112396543154}}, null] +[[8, 0, 2], 81.0, {"submitted": 1558193840.8573346, "started": 1558193840.8577983, "finished": 1558193840.8635845}, {"loss": 0.41916824976764494, "info": {"x0": -3.164734187179534, "x1": 6.899626712798991, "x2": 5.229220964465181, "x3": -3.1207676152154447, "x4": 4.947320130281268, "x5": 0.4945217846570835}}, null] +[[8, 0, 3], 81.0, {"submitted": 1558193840.8688345, "started": 1558193840.8694937, "finished": 1558193840.8772407}, {"loss": 0.4058575629033663, "info": {"x0": -3.8500579793909404, "x1": 5.434840655718756, "x2": 5.727930566783812, "x3": -3.966084926363172, "x4": 2.1890919046572117, "x5": 0.05707299429351864}}, null] +[[8, 0, 4], 81.0, {"submitted": 1558193840.8788676, "started": 1558193840.8792505, "finished": 1558193840.8858385}, {"loss": 0.3595755157686715, "info": {"x0": -2.3595933242929026, "x1": 3.733355471242503, "x2": 7.80504083771992, "x3": -3.9476707455096727, "x4": 2.322358586511749, "x5": 0.1325375620663657}}, null] +[[8, 0, 5], 81.0, {"submitted": 1558193840.8883512, "started": 1558193840.8887491, "finished": 1558193840.8957553}, {"loss": 0.4184278330940784, "info": {"x0": -4.752183109506571, "x1": 4.4275588853034895, "x2": 6.8635599867363535, "x3": -2.163012088361013, "x4": 2.8372528893632167, "x5": 0.1181175308999361}}, null] +[[8, 0, 6], 81.0, {"submitted": 1558193840.8974993, "started": 1558193840.8979561, "finished": 1558193840.9070125}, {"loss": 0.49042138998611584, "info": {"x0": -5.776740500528744, "x1": 6.553421446541087, "x2": 4.904956465333667, "x3": -2.711376641859182, "x4": 3.3139503475159255, "x5": 0.17304377012457894}}, null] +[[8, 0, 7], 81.0, {"submitted": 1558193840.909584, "started": 1558193840.910146, "finished": 1558193840.91801}, {"loss": 0.488754795263125, "info": {"x0": -4.9055243372162405, "x1": 5.872685384004162, "x2": 4.37873427520093, "x3": -2.0293332699956306, "x4": 3.5490382717527083, "x5": 0.39034241028690697}}, null] +[[8, 0, 8], 81.0, {"submitted": 1558193840.9202948, "started": 1558193840.9207273, "finished": 1558193840.9264705}, {"loss": 1, "info": {"x0": -3.9917627383845984, "x1": 3.267101086785643, "x2": 5.71423412263651, "x3": -1.3399149535741786, "x4": 4.683907068730289, "x5": 0.2970727272180266}}, null] +[[8, 0, 9], 81.0, {"submitted": 1558193840.928467, "started": 1558193840.9289231, "finished": 1558193840.9374497}, {"loss": 0.30566429507146947, "info": {"x0": -2.0128344333588237, "x1": 5.587055409516202, "x2": 4.010884196435155, "x3": -3.418255956322688, "x4": 3.499085185918627, "x5": 0.029718783932812187}}, null] +[[8, 0, 10], 81.0, {"submitted": 1558193840.9404128, "started": 1558193840.940901, "finished": 1558193840.9473245}, {"loss": 0.4573864893480916, "info": {"x0": -4.604570475276789, "x1": 6.877366252438378, "x2": 5.267900546713955, "x3": -3.9299502468906753, "x4": 4.24192482350285, "x5": 0.48029673746043994}}, null] +[[8, 0, 11], 81.0, {"submitted": 1558193840.9493144, "started": 1558193840.9496887, "finished": 1558193840.9575255}, {"loss": 0.49396725896736876, "info": {"x0": -4.686255731781196, "x1": 5.944526240243123, "x2": 5.313174935870176, "x3": -2.6162502408763273, "x4": 4.8188936419962385, "x5": 0.4873832713330845}}, null] +[[8, 0, 12], 81.0, {"submitted": 1558193840.9592156, "started": 1558193840.9595566, "finished": 1558193840.9669747}, {"loss": 0.40553854063160505, "info": {"x0": -4.573179826002987, "x1": 5.881743535062803, "x2": 7.107101974187383, "x3": -1.5310350843906133, "x4": 1.158693270010125, "x5": 0.27222803148490027}}, null] +[[8, 0, 13], 81.0, {"submitted": 1558193840.9717681, "started": 1558193840.972237, "finished": 1558193840.9791808}, {"loss": 0.4096002313624606, "info": {"x0": -4.312349991146087, "x1": 7.479706860491733, "x2": 7.491622547189258, "x3": -3.5043136252602536, "x4": 3.7272164900065294, "x5": 0.10581700656012233}}, null] +[[8, 0, 14], 81.0, {"submitted": 1558193840.9813068, "started": 1558193840.9817445, "finished": 1558193840.9883792}, {"loss": 0.4964828100145963, "info": {"x0": -5.572258524823708, "x1": 3.274307177160412, "x2": 4.801527441453656, "x3": -3.678642055328624, "x4": 2.0315388415229902, "x5": 0.39470061185014277}}, null] +[[8, 0, 15], 81.0, {"submitted": 1558193840.9903038, "started": 1558193840.9908478, "finished": 1558193840.9992802}, {"loss": 0.40972333267081595, "info": {"x0": -3.819102840800029, "x1": 3.1399471437842195, "x2": 5.595060147266944, "x3": -3.6800309442501167, "x4": 2.6929099795684563, "x5": 0.06969937270141852}}, null] +[[8, 0, 16], 81.0, {"submitted": 1558193841.0026793, "started": 1558193841.0030603, "finished": 1558193841.0097814}, {"loss": 0.49542734601615823, "info": {"x0": -5.2233793161314, "x1": 6.325568217983189, "x2": 4.678468848779561, "x3": -3.0829939697920934, "x4": 4.697447138844448, "x5": 0.4314973876955987}}, null] +[[8, 0, 17], 81.0, {"submitted": 1558193841.0119352, "started": 1558193841.0123732, "finished": 1558193841.0206752}, {"loss": 0.2920165023893514, "info": {"x0": -2.5994748026343655, "x1": 5.614515811335758, "x2": 6.191272340895672, "x3": -3.508695378402957, "x4": 2.4725926125254563, "x5": 0.25150874651669425}}, null] +[[8, 0, 18], 81.0, {"submitted": 1558193841.0231254, "started": 1558193841.0236301, "finished": 1558193841.029931}, {"loss": 0.31381193536360164, "info": {"x0": -2.2322858610155594, "x1": 4.39221664429797, "x2": 5.969148506959138, "x3": -2.539060909850783, "x4": 1.509503711648283, "x5": 0.05348149324595475}}, null] +[[8, 0, 19], 81.0, {"submitted": 1558193841.0332196, "started": 1558193841.033778, "finished": 1558193841.0415792}, {"loss": 0.38575872482417406, "info": {"x0": -2.4834492223360036, "x1": 5.5827200567251385, "x2": 7.737590418123491, "x3": -1.4112598182834168, "x4": 1.121607202557, "x5": 0.440115259334702}}, null] +[[8, 0, 20], 81.0, {"submitted": 1558193841.0436575, "started": 1558193841.0440397, "finished": 1558193841.051566}, {"loss": 0.42937298378017497, "info": {"x0": -3.9639332655074986, "x1": 6.866059667789515, "x2": 4.037653203153305, "x3": -0.864620613888929, "x4": 2.454100077231313, "x5": 0.48090183196386094}}, null] +[[8, 0, 21], 81.0, {"submitted": 1558193841.0532117, "started": 1558193841.0537777, "finished": 1558193841.0624394}, {"loss": 0.4261889419094868, "info": {"x0": -5.271945060156543, "x1": 5.211018188107516, "x2": 6.901864716356171, "x3": -1.7325894642347293, "x4": 1.3924495180443501, "x5": 0.3470863230114115}}, null] +[[8, 0, 22], 81.0, {"submitted": 1558193841.0653033, "started": 1558193841.0657947, "finished": 1558193841.0723984}, {"loss": 0.4091801626893316, "info": {"x0": -3.805050427793448, "x1": 6.375538666101425, "x2": 7.449436029641618, "x3": -1.129345326748902, "x4": 2.9140281002354653, "x5": 0.39122686286817765}}, null] +[[8, 0, 23], 81.0, {"submitted": 1558193841.0748243, "started": 1558193841.075144, "finished": 1558193841.0808313}, {"loss": 0.4139588688051713, "info": {"x0": -2.349560080472214, "x1": 3.8039207031629814, "x2": 6.32946235186062, "x3": -2.377350158133991, "x4": 2.7796634978680954, "x5": 0.12594320099548678}}, null] +[[8, 0, 24], 81.0, {"submitted": 1558193841.0829895, "started": 1558193841.083449, "finished": 1558193841.090887}, {"loss": 0.4735286520109156, "info": {"x0": -4.937619140572219, "x1": 3.371651598731293, "x2": 4.158215318892548, "x3": -1.5671154215929102, "x4": 4.860260192923168, "x5": 0.11872628219363673}}, null] +[[8, 0, 25], 81.0, {"submitted": 1558193841.0928786, "started": 1558193841.0932934, "finished": 1558193841.1011016}, {"loss": 0.23418435421564077, "info": {"x0": -2.739033910313427, "x1": 6.463341659440766, "x2": 5.009265553183692, "x3": -2.0972870582098198, "x4": 4.76262696891893, "x5": 0.028425330201643506}}, null] +[[8, 0, 26], 81.0, {"submitted": 1558193841.103055, "started": 1558193841.1035693, "finished": 1558193841.11064}, {"loss": 0.3988576060492198, "info": {"x0": -3.3368759637916066, "x1": 3.5683996148053905, "x2": 6.773750511158875, "x3": -0.20886909938911735, "x4": 2.331546631050569, "x5": 0.19008315822594352}}, null] +[[8, 0, 3], 243.0, {"submitted": 1558193841.1126568, "started": 1558193841.1131294, "finished": 1558193841.122087}, {"loss": 0.375505447108398, "info": {"x0": -3.8500579793909404, "x1": 5.434840655718756, "x2": 5.727930566783812, "x3": -3.966084926363172, "x4": 2.1890919046572117, "x5": 0.05707299429351864}}, null] +[[8, 0, 4], 243.0, {"submitted": 1558193841.1236475, "started": 1558193841.124068, "finished": 1558193841.1309004}, {"loss": 0.23775978148845875, "info": {"x0": -2.3595933242929026, "x1": 3.733355471242503, "x2": 7.80504083771992, "x3": -3.9476707455096727, "x4": 2.322358586511749, "x5": 0.1325375620663657}}, null] +[[8, 0, 9], 243.0, {"submitted": 1558193841.132773, "started": 1558193841.1331282, "finished": 1558193841.1389956}, {"loss": 0.26241891918605864, "info": {"x0": -2.0128344333588237, "x1": 5.587055409516202, "x2": 4.010884196435155, "x3": -3.418255956322688, "x4": 3.499085185918627, "x5": 0.029718783932812187}}, null] +[[8, 0, 12], 243.0, {"submitted": 1558193841.1412742, "started": 1558193841.14164, "finished": 1558193841.1472356}, {"loss": 0.3954926510427607, "info": {"x0": -4.573179826002987, "x1": 5.881743535062803, "x2": 7.107101974187383, "x3": -1.5310350843906133, "x4": 1.158693270010125, "x5": 0.27222803148490027}}, null] +[[8, 0, 17], 243.0, {"submitted": 1558193841.1490066, "started": 1558193841.1493647, "finished": 1558193841.1568482}, {"loss": 0.17758901875648075, "info": {"x0": -2.5994748026343655, "x1": 5.614515811335758, "x2": 6.191272340895672, "x3": -3.508695378402957, "x4": 2.4725926125254563, "x5": 0.25150874651669425}}, null] +[[8, 0, 18], 243.0, {"submitted": 1558193841.1586354, "started": 1558193841.1589568, "finished": 1558193841.1660244}, {"loss": 0.21236067231879482, "info": {"x0": -2.2322858610155594, "x1": 4.39221664429797, "x2": 5.969148506959138, "x3": -2.539060909850783, "x4": 1.509503711648283, "x5": 0.05348149324595475}}, null] +[[8, 0, 19], 243.0, {"submitted": 1558193841.1676676, "started": 1558193841.1680384, "finished": 1558193841.1761289}, {"loss": 0.35433261136189176, "info": {"x0": -2.4834492223360036, "x1": 5.5827200567251385, "x2": 7.737590418123491, "x3": -1.4112598182834168, "x4": 1.121607202557, "x5": 0.440115259334702}}, null] +[[8, 0, 25], 243.0, {"submitted": 1558193841.1776721, "started": 1558193841.1780949, "finished": 1558193841.1846266}, {"loss": 0.15207033716737553, "info": {"x0": -2.739033910313427, "x1": 6.463341659440766, "x2": 5.009265553183692, "x3": -2.0972870582098198, "x4": 4.76262696891893, "x5": 0.028425330201643506}}, null] +[[8, 0, 26], 243.0, {"submitted": 1558193841.186433, "started": 1558193841.1868238, "finished": 1558193841.193697}, {"loss": 0.26789965731141974, "info": {"x0": -3.3368759637916066, "x1": 3.5683996148053905, "x2": 6.773750511158875, "x3": -0.20886909938911735, "x4": 2.331546631050569, "x5": 0.19008315822594352}}, null] +[[8, 0, 17], 729.0, {"submitted": 1558193841.195432, "started": 1558193841.1957664, "finished": 1558193841.2031505}, {"loss": 0.14910338152192912, "info": {"x0": -2.5994748026343655, "x1": 5.614515811335758, "x2": 6.191272340895672, "x3": -3.508695378402957, "x4": 2.4725926125254563, "x5": 0.25150874651669425}}, null] +[[8, 0, 18], 729.0, {"submitted": 1558193841.2044985, "started": 1558193841.204804, "finished": 1558193841.210751}, {"loss": 0.17159290169916905, "info": {"x0": -2.2322858610155594, "x1": 4.39221664429797, "x2": 5.969148506959138, "x3": -2.539060909850783, "x4": 1.509503711648283, "x5": 0.05348149324595475}}, null] +[[8, 0, 25], 729.0, {"submitted": 1558193841.2120736, "started": 1558193841.2124233, "finished": 1558193841.2211714}, {"loss": 0.1271521899310708, "info": {"x0": -2.739033910313427, "x1": 6.463341659440766, "x2": 5.009265553183692, "x3": -2.0972870582098198, "x4": 4.76262696891893, "x5": 0.028425330201643506}}, null] +[[8, 0, 25], 2187.0, {"submitted": 1558193841.223221, "started": 1558193841.224147, "finished": 1558193841.2311747}, {"loss": 0.1271521899310708, "info": {"x0": -2.739033910313427, "x1": 6.463341659440766, "x2": 5.009265553183692, "x3": -2.0972870582098198, "x4": 4.76262696891893, "x5": 0.028425330201643506}}, null] +[[9, 0, 0], 243.0, {"submitted": 1558193841.2337582, "started": 1558193841.2342405, "finished": 1558193841.2413466}, {"loss": 0.4416515876142449, "info": {"x0": -2.023089688682076, "x1": 4.411846285150453, "x2": 4.653441862124764, "x3": -2.04369714849605, "x4": 4.08309036412673, "x5": 0.4393501878709463}}, null] +[[9, 0, 1], 243.0, {"submitted": 1558193841.2430203, "started": 1558193841.243336, "finished": 1558193841.2498727}, {"loss": 0.2971530651333528, "info": {"x0": -2.441656492122036, "x1": 4.059704606127197, "x2": 6.768408780960122, "x3": -1.2259420637439482, "x4": 1.6312930448802336, "x5": 0.18514047179685733}}, null] +[[9, 0, 2], 243.0, {"submitted": 1558193841.2523186, "started": 1558193841.2527165, "finished": 1558193841.2611537}, {"loss": 0.3666218043715439, "info": {"x0": -4.033139066597819, "x1": 4.957389319342336, "x2": 6.997964661753729, "x3": -0.30949821422465673, "x4": 2.1697949336059437, "x5": 0.4267164123931132}}, null] +[[9, 0, 3], 243.0, {"submitted": 1558193841.2631557, "started": 1558193841.2635176, "finished": 1558193841.269945}, {"loss": 0.40885143148992703, "info": {"x0": -2.6385000010030075, "x1": 7.882974379918121, "x2": 5.482905330675008, "x3": -3.3849379125245473, "x4": 3.058453949120432, "x5": 0.48626746262767767}}, null] +[[9, 0, 4], 243.0, {"submitted": 1558193841.271474, "started": 1558193841.2719033, "finished": 1558193841.2775056}, {"loss": 0.4952574648996719, "info": {"x0": -5.786195338004356, "x1": 5.862329292205098, "x2": 4.6195656951299515, "x3": -1.0763046975260497, "x4": 3.5968819510794394, "x5": 0.38555418587685425}}, null] +[[9, 0, 5], 243.0, {"submitted": 1558193841.2795029, "started": 1558193841.2800207, "finished": 1558193841.288661}, {"loss": 0.43087807704166475, "info": {"x0": -4.629517230897597, "x1": 5.210112043350557, "x2": 5.241546450118208, "x3": -1.0511653026780294, "x4": 4.425966070579742, "x5": 0.4194158976123882}}, null] +[[9, 0, 6], 243.0, {"submitted": 1558193841.2919202, "started": 1558193841.2922645, "finished": 1558193841.2985842}, {"loss": 0.3489939506603971, "info": {"x0": -3.981814969936582, "x1": 6.903274725250516, "x2": 6.84047714393345, "x3": -2.035654560562999, "x4": 2.552777501932314, "x5": 0.40459953804481097}}, null] +[[9, 0, 7], 243.0, {"submitted": 1558193841.3035338, "started": 1558193841.3039439, "finished": 1558193841.3095317}, {"loss": 0.15810307296213322, "info": {"x0": -3.2666673169706577, "x1": 5.777985572421104, "x2": 4.168563297945173, "x3": -0.351762449622961, "x4": 3.401997505467142, "x5": 0.00962106533808288}}, null] +[[9, 0, 8], 243.0, {"submitted": 1558193841.3113027, "started": 1558193841.311688, "finished": 1558193841.3200817}, {"loss": 0.47809865909179283, "info": {"x0": -5.112591837402965, "x1": 5.4658959670339335, "x2": 4.392142632170851, "x3": -3.7795113979294466, "x4": 4.424350175380209, "x5": 0.23887434525905354}}, null] +[[9, 0, 1], 729.0, {"submitted": 1558193841.3221898, "started": 1558193841.322573, "finished": 1558193841.3285613}, {"loss": 0.233330536358141, "info": {"x0": -2.441656492122036, "x1": 4.059704606127197, "x2": 6.768408780960122, "x3": -1.2259420637439482, "x4": 1.6312930448802336, "x5": 0.18514047179685733}}, null] +[[9, 0, 6], 729.0, {"submitted": 1558193841.3298929, "started": 1558193841.3303745, "finished": 1558193841.3368335}, {"loss": 0.3273079441554395, "info": {"x0": -3.981814969936582, "x1": 6.903274725250516, "x2": 6.84047714393345, "x3": -2.035654560562999, "x4": 2.552777501932314, "x5": 0.40459953804481097}}, null] +[[9, 0, 7], 729.0, {"submitted": 1558193841.3380728, "started": 1558193841.3384328, "finished": 1558193841.3441417}, {"loss": 0.12903763646053856, "info": {"x0": -3.2666673169706577, "x1": 5.777985572421104, "x2": 4.168563297945173, "x3": -0.351762449622961, "x4": 3.401997505467142, "x5": 0.00962106533808288}}, null] +[[9, 0, 7], 2187.0, {"submitted": 1558193841.345564, "started": 1558193841.345868, "finished": 1558193841.3548903}, {"loss": 0.1297123044131424, "info": {"x0": -3.2666673169706577, "x1": 5.777985572421104, "x2": 4.168563297945173, "x3": -0.351762449622961, "x4": 3.401997505467142, "x5": 0.00962106533808288}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/randomsearch/configs.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/randomsearch/configs.json new file mode 100644 index 0000000..ecf8884 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/randomsearch/configs.json @@ -0,0 +1,40 @@ +[[0, 0, 0], {"x0": -2.807485686593626, "x1": 5.049204697569498, "x2": 4.880736267891464, "x3": -0.4752084185932066, "x4": 1.177351166275041, "x5": 0.35590527926937865}, {}] +[[0, 0, 1], {"x0": -5.441951232165245, "x1": 5.291657309738246, "x2": 6.098386129266903, "x3": -1.7757028999505655, "x4": 4.501105144525356, "x5": 0.28821641531622594}, {}] +[[0, 0, 2], {"x0": -4.096298251641908, "x1": 7.982817945866895, "x2": 7.797493786797933, "x3": -3.745588333432785, "x4": 2.3573587321401246, "x5": 0.19630293001061566}, {}] +[[0, 0, 3], {"x0": -4.001092781634443, "x1": 3.7822762206884546, "x2": 4.79092281926442, "x3": -3.4924373406244125, "x4": 3.74560601674463, "x5": 0.04706872647617433}, {}] +[[1, 0, 0], {"x0": -4.165489649036223, "x1": 7.5951818158178, "x2": 4.874543028421227, "x3": -0.4317879899160464, "x4": 3.634557887503475, "x5": 0.1677871057394456}, {}] +[[1, 0, 1], {"x0": -3.4654144079517466, "x1": 4.673857063779159, "x2": 6.0215845401200205, "x3": -2.2408897279753077, "x4": 2.840219943069155, "x5": 0.20756856480021962}, {}] +[[1, 0, 2], {"x0": -2.796418925533421, "x1": 7.527417186602737, "x2": 7.891339364333802, "x3": -3.9898884113816355, "x4": 4.028132227772861, "x5": 0.3293154938820264}, {}] +[[1, 0, 3], {"x0": -3.6189199842316646, "x1": 6.903544333687261, "x2": 7.403103616274009, "x3": -1.8028208426207413, "x4": 1.1751529639803855, "x5": 0.252065952597511}, {}] +[[2, 0, 0], {"x0": -4.733778389813412, "x1": 3.278717852766774, "x2": 6.517621714308577, "x3": -2.8161461469001807, "x4": 2.2838754059214925, "x5": 0.20469964621556253}, {}] +[[2, 0, 1], {"x0": -2.4931736451663946, "x1": 3.872661412728733, "x2": 4.857691823466168, "x3": -3.9165951325523194, "x4": 1.8082860627846378, "x5": 0.127827150305461}, {}] +[[2, 0, 2], {"x0": -4.324109909415837, "x1": 4.326756947039177, "x2": 6.457513511157414, "x3": -0.9774846336515908, "x4": 3.816400906464297, "x5": 0.13285007371848545}, {}] +[[2, 0, 3], {"x0": -4.725301424350988, "x1": 4.666343916565863, "x2": 6.954073149039921, "x3": -3.42164143957027, "x4": 2.724338632277646, "x5": 0.40319245416229993}, {}] +[[3, 0, 0], {"x0": -5.847590115895996, "x1": 5.153884994287623, "x2": 6.656977616857969, "x3": -2.2690997146947804, "x4": 1.537245870458491, "x5": 0.13256258823761002}, {}] +[[3, 0, 1], {"x0": -3.509303811254486, "x1": 7.0424232147500705, "x2": 4.541112725583744, "x3": -1.6776903207087206, "x4": 2.315943816101004, "x5": 0.3589235410214705}, {}] +[[3, 0, 2], {"x0": -5.64065049464943, "x1": 7.37731077277588, "x2": 7.645831245496198, "x3": -2.5201263662030717, "x4": 3.955056451484239, "x5": 0.497543723428462}, {}] +[[3, 0, 3], {"x0": -2.177467541561834, "x1": 3.5812771244824337, "x2": 6.600915567528212, "x3": -0.4425188366522681, "x4": 4.964507252576459, "x5": 0.4723312762473449}, {}] +[[4, 0, 0], {"x0": -5.494839683206612, "x1": 4.4075840709749095, "x2": 5.787006019871545, "x3": -0.6076093321140719, "x4": 1.5440645249186042, "x5": 0.4391309026666695}, {}] +[[4, 0, 1], {"x0": -5.9878931325896225, "x1": 4.852497982979353, "x2": 4.612176671304726, "x3": -1.4311174452977502, "x4": 3.2296681864356445, "x5": 0.4452580548565051}, {}] +[[4, 0, 2], {"x0": -2.9784442002792044, "x1": 5.289531946862075, "x2": 7.229134355800195, "x3": -1.0882997681571664, "x4": 4.841482296513613, "x5": 0.20605831809935726}, {}] +[[4, 0, 3], {"x0": -5.532236248478242, "x1": 7.067280454997272, "x2": 7.113554037103277, "x3": -3.810175787319029, "x4": 4.416361021245339, "x5": 0.3194506908188199}, {}] +[[5, 0, 0], {"x0": -2.869820764105834, "x1": 4.518083650189352, "x2": 6.901222487601032, "x3": -2.8405086528237025, "x4": 1.8232222089465586, "x5": 0.005693863381103337}, {}] +[[5, 0, 1], {"x0": -3.8708987357303193, "x1": 7.7596715341285565, "x2": 5.912633012891783, "x3": -2.885249373889363, "x4": 1.2086318749999245, "x5": 0.07991195290061587}, {}] +[[5, 0, 2], {"x0": -2.4534131979760985, "x1": 6.996351001843753, "x2": 6.056455577797227, "x3": -1.2197991022545356, "x4": 4.340422916391136, "x5": 0.47253764794064235}, {}] +[[5, 0, 3], {"x0": -5.915903000443867, "x1": 3.197192120856861, "x2": 7.792759428046944, "x3": -0.1591938460049609, "x4": 4.6492825443358985, "x5": 0.11554742428987003}, {}] +[[6, 0, 0], {"x0": -5.292891626523186, "x1": 4.746272045499683, "x2": 5.60834376026377, "x3": -0.012648396406016449, "x4": 2.004377875570012, "x5": 0.3232961256091995}, {}] +[[6, 0, 1], {"x0": -4.651895794568556, "x1": 6.3835904618016865, "x2": 4.838421913122479, "x3": -0.6388583756379509, "x4": 2.67341803198377, "x5": 0.21953739121158217}, {}] +[[6, 0, 2], {"x0": -5.172717307376551, "x1": 6.896048494504453, "x2": 6.7409582320257755, "x3": -3.5237734959781846, "x4": 3.4824479212923203, "x5": 0.3179214646602244}, {}] +[[6, 0, 3], {"x0": -5.412936966544537, "x1": 5.715496976180933, "x2": 4.17835062687871, "x3": -2.9793127586360253, "x4": 2.487418864216591, "x5": 0.4934040319225191}, {}] +[[7, 0, 0], {"x0": -4.838441962803362, "x1": 5.405287168623353, "x2": 5.476029369331528, "x3": -2.408288311998729, "x4": 3.761979478144344, "x5": 0.233949544827652}, {}] +[[7, 0, 1], {"x0": -4.001338812025999, "x1": 3.436953638639466, "x2": 4.508141350403868, "x3": -3.0378986919649953, "x4": 3.819366358344018, "x5": 0.1553319712097218}, {}] +[[7, 0, 2], {"x0": -2.1097073925015764, "x1": 3.5701790875595685, "x2": 4.620117292060129, "x3": -2.2552892742939874, "x4": 3.869769639320736, "x5": 0.014988444048939842}, {}] +[[7, 0, 3], {"x0": -4.0852629702495005, "x1": 5.125634386347346, "x2": 7.887530199690022, "x3": -1.4901606543405164, "x4": 1.9158433973601916, "x5": 0.15705028042430563}, {}] +[[8, 0, 0], {"x0": -3.8817731386067686, "x1": 7.904172950920035, "x2": 5.143254284894288, "x3": -1.704770889325367, "x4": 3.081178579476226, "x5": 0.0869173016513966}, {}] +[[8, 0, 1], {"x0": -4.001840075284728, "x1": 6.144722027465623, "x2": 4.877343957810973, "x3": -0.16961812073438987, "x4": 3.426806860434253, "x5": 0.3171781697891172}, {}] +[[8, 0, 2], {"x0": -2.2647100559054847, "x1": 6.429768895089428, "x2": 7.819151598694935, "x3": -2.7113859751648763, "x4": 3.535651986650363, "x5": 0.2588479161767971}, {}] +[[8, 0, 3], {"x0": -3.459476837105614, "x1": 7.812825628116468, "x2": 4.912278704710218, "x3": -3.618330866951956, "x4": 1.5356279156925918, "x5": 0.1125297729656714}, {}] +[[9, 0, 0], {"x0": -5.980466538242692, "x1": 7.7752351915287825, "x2": 7.0390155427550285, "x3": -0.7537022134823759, "x4": 2.1269587934895258, "x5": 0.11131524559857825}, {}] +[[9, 0, 1], {"x0": -3.0449726724662263, "x1": 5.1593838026756975, "x2": 4.991259499397724, "x3": -2.3974291426278356, "x4": 2.5420730543617296, "x5": 0.04484817467899049}, {}] +[[9, 0, 2], {"x0": -2.1341026467844806, "x1": 7.1936268262773115, "x2": 4.685115653465584, "x3": -3.414606452013816, "x4": 2.177648066877541, "x5": 0.33061443304284927}, {}] +[[9, 0, 3], {"x0": -5.489341344707594, "x1": 6.900079952484031, "x2": 7.375966447029288, "x3": -0.968444510286488, "x4": 1.4073362508016638, "x5": 0.21327368528438612}, {}] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/randomsearch/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/randomsearch/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/randomsearch/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/randomsearch/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/randomsearch/results.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/randomsearch/results.json new file mode 100644 index 0000000..7819ab4 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/randomsearch/results.json @@ -0,0 +1,40 @@ +[[0, 0, 0], 2187, {"submitted": 1558193821.3344367, "started": 1558193821.3369412, "finished": 1558193821.344313}, {"loss": 0.37190309613551226, "info": {"x0": -2.807485686593626, "x1": 5.049204697569498, "x2": 4.880736267891464, "x3": -0.4752084185932066, "x4": 1.177351166275041, "x5": 0.35590527926937865}}, null] +[[0, 0, 1], 2187, {"submitted": 1558193821.3465536, "started": 1558193821.3506076, "finished": 1558193821.3604577}, {"loss": 0.4233675989529603, "info": {"x0": -5.441951232165245, "x1": 5.291657309738246, "x2": 6.098386129266903, "x3": -1.7757028999505655, "x4": 4.501105144525356, "x5": 0.28821641531622594}}, null] +[[0, 0, 2], 2187, {"submitted": 1558193821.3641632, "started": 1558193821.3645496, "finished": 1558193821.373171}, {"loss": 0.35862241917277343, "info": {"x0": -4.096298251641908, "x1": 7.982817945866895, "x2": 7.797493786797933, "x3": -3.745588333432785, "x4": 2.3573587321401246, "x5": 0.19630293001061566}}, null] +[[0, 0, 3], 2187, {"submitted": 1558193821.3753102, "started": 1558193821.3757157, "finished": 1558193821.3874354}, {"loss": 0.30112164624057713, "info": {"x0": -4.001092781634443, "x1": 3.7822762206884546, "x2": 4.79092281926442, "x3": -3.4924373406244125, "x4": 3.74560601674463, "x5": 0.04706872647617433}}, null] +[[1, 0, 0], 2187, {"submitted": 1558193821.3894017, "started": 1558193821.3898413, "finished": 1558193821.3980691}, {"loss": 0.38859329990720115, "info": {"x0": -4.165489649036223, "x1": 7.5951818158178, "x2": 4.874543028421227, "x3": -0.4317879899160464, "x4": 3.634557887503475, "x5": 0.1677871057394456}}, null] +[[1, 0, 1], 2187, {"submitted": 1558193821.401148, "started": 1558193821.4063678, "finished": 1558193821.4171937}, {"loss": 0.14226139246980868, "info": {"x0": -3.4654144079517466, "x1": 4.673857063779159, "x2": 6.0215845401200205, "x3": -2.2408897279753077, "x4": 2.840219943069155, "x5": 0.20756856480021962}}, null] +[[1, 0, 2], 2187, {"submitted": 1558193821.4195197, "started": 1558193821.4198349, "finished": 1558193821.4263139}, {"loss": 0.1293363604819894, "info": {"x0": -2.796418925533421, "x1": 7.527417186602737, "x2": 7.891339364333802, "x3": -3.9898884113816355, "x4": 4.028132227772861, "x5": 0.3293154938820264}}, null] +[[1, 0, 3], 2187, {"submitted": 1558193821.4284055, "started": 1558193821.428822, "finished": 1558193821.4384036}, {"loss": 0.3627079333950477, "info": {"x0": -3.6189199842316646, "x1": 6.903544333687261, "x2": 7.403103616274009, "x3": -1.8028208426207413, "x4": 1.1751529639803855, "x5": 0.252065952597511}}, null] +[[2, 0, 0], 2187, {"submitted": 1558193821.4413657, "started": 1558193821.4442053, "finished": 1558193821.4557078}, {"loss": 0.39728896547406906, "info": {"x0": -4.733778389813412, "x1": 3.278717852766774, "x2": 6.517621714308577, "x3": -2.8161461469001807, "x4": 2.2838754059214925, "x5": 0.20469964621556253}}, null] +[[2, 0, 1], 2187, {"submitted": 1558193821.4575474, "started": 1558193821.4579175, "finished": 1558193821.4681072}, {"loss": 0.2424180329843356, "info": {"x0": -2.4931736451663946, "x1": 3.872661412728733, "x2": 4.857691823466168, "x3": -3.9165951325523194, "x4": 1.8082860627846378, "x5": 0.127827150305461}}, null] +[[2, 0, 2], 2187, {"submitted": 1558193821.47022, "started": 1558193821.470964, "finished": 1558193821.4799294}, {"loss": 0.19830340206834135, "info": {"x0": -4.324109909415837, "x1": 4.326756947039177, "x2": 6.457513511157414, "x3": -0.9774846336515908, "x4": 3.816400906464297, "x5": 0.13285007371848545}}, null] +[[2, 0, 3], 2187, {"submitted": 1558193821.482452, "started": 1558193821.48293, "finished": 1558193821.4920685}, {"loss": 0.4163416102374419, "info": {"x0": -4.725301424350988, "x1": 4.666343916565863, "x2": 6.954073149039921, "x3": -3.42164143957027, "x4": 2.724338632277646, "x5": 0.40319245416229993}}, null] +[[3, 0, 0], 2187, {"submitted": 1558193821.4957464, "started": 1558193821.4962132, "finished": 1558193821.5055974}, {"loss": 0.4246856134302912, "info": {"x0": -5.847590115895996, "x1": 5.153884994287623, "x2": 6.656977616857969, "x3": -2.2690997146947804, "x4": 1.537245870458491, "x5": 0.13256258823761002}}, null] +[[3, 0, 1], 2187, {"submitted": 1558193821.5079718, "started": 1558193821.508656, "finished": 1558193821.5191567}, {"loss": 0.38581740501528544, "info": {"x0": -3.509303811254486, "x1": 7.0424232147500705, "x2": 4.541112725583744, "x3": -1.6776903207087206, "x4": 2.315943816101004, "x5": 0.3589235410214705}}, null] +[[3, 0, 2], 2187, {"submitted": 1558193821.5211632, "started": 1558193821.5215714, "finished": 1558193821.529696}, {"loss": 0.44483651737891083, "info": {"x0": -5.64065049464943, "x1": 7.37731077277588, "x2": 7.645831245496198, "x3": -2.5201263662030717, "x4": 3.955056451484239, "x5": 0.497543723428462}}, null] +[[3, 0, 3], 2187, {"submitted": 1558193821.5358033, "started": 1558193821.536324, "finished": 1558193821.5430846}, {"loss": 0.4838009874807735, "info": {"x0": -2.177467541561834, "x1": 3.5812771244824337, "x2": 6.600915567528212, "x3": -0.4425188366522681, "x4": 4.964507252576459, "x5": 0.4723312762473449}}, null] +[[4, 0, 0], 2187, {"submitted": 1558193821.545437, "started": 1558193821.5458481, "finished": 1558193821.5542278}, {"loss": 0.4345320548582875, "info": {"x0": -5.494839683206612, "x1": 4.4075840709749095, "x2": 5.787006019871545, "x3": -0.6076093321140719, "x4": 1.5440645249186042, "x5": 0.4391309026666695}}, null] +[[4, 0, 1], 2187, {"submitted": 1558193821.5622892, "started": 1558193821.5628734, "finished": 1558193821.5721362}, {"loss": 0.4796540594367178, "info": {"x0": -5.9878931325896225, "x1": 4.852497982979353, "x2": 4.612176671304726, "x3": -1.4311174452977502, "x4": 3.2296681864356445, "x5": 0.4452580548565051}}, null] +[[4, 0, 2], 2187, {"submitted": 1558193821.5758731, "started": 1558193821.578396, "finished": 1558193821.5866501}, {"loss": 0.037917308680263107, "info": {"x0": -2.9784442002792044, "x1": 5.289531946862075, "x2": 7.229134355800195, "x3": -1.0882997681571664, "x4": 4.841482296513613, "x5": 0.20605831809935726}}, null] +[[4, 0, 3], 2187, {"submitted": 1558193821.5901809, "started": 1558193821.5906894, "finished": 1558193821.599323}, {"loss": 0.46139786894917256, "info": {"x0": -5.532236248478242, "x1": 7.067280454997272, "x2": 7.113554037103277, "x3": -3.810175787319029, "x4": 4.416361021245339, "x5": 0.3194506908188199}}, null] +[[5, 0, 0], 2187, {"submitted": 1558193821.601652, "started": 1558193821.6021402, "finished": 1558193821.6133296}, {"loss": 0.0022212424695331355, "info": {"x0": -2.869820764105834, "x1": 4.518083650189352, "x2": 6.901222487601032, "x3": -2.8405086528237025, "x4": 1.8232222089465586, "x5": 0.005693863381103337}}, null] +[[5, 0, 1], 2187, {"submitted": 1558193821.61572, "started": 1558193821.6160867, "finished": 1558193821.6247342}, {"loss": 0.3866650472005867, "info": {"x0": -3.8708987357303193, "x1": 7.7596715341285565, "x2": 5.912633012891783, "x3": -2.885249373889363, "x4": 1.2086318749999245, "x5": 0.07991195290061587}}, null] +[[5, 0, 2], 2187, {"submitted": 1558193821.6275804, "started": 1558193821.6280901, "finished": 1558193821.6357198}, {"loss": 0.35747914607650555, "info": {"x0": -2.4534131979760985, "x1": 6.996351001843753, "x2": 6.056455577797227, "x3": -1.2197991022545356, "x4": 4.340422916391136, "x5": 0.47253764794064235}}, null] +[[5, 0, 3], 2187, {"submitted": 1558193821.6381483, "started": 1558193821.638589, "finished": 1558193821.6460047}, {"loss": 0.41152450484782743, "info": {"x0": -5.915903000443867, "x1": 3.197192120856861, "x2": 7.792759428046944, "x3": -0.1591938460049609, "x4": 4.6492825443358985, "x5": 0.11554742428987003}}, null] +[[6, 0, 0], 2187, {"submitted": 1558193821.6491308, "started": 1558193821.649736, "finished": 1558193821.6623023}, {"loss": 0.42809071736740745, "info": {"x0": -5.292891626523186, "x1": 4.746272045499683, "x2": 5.60834376026377, "x3": -0.012648396406016449, "x4": 2.004377875570012, "x5": 0.3232961256091995}}, null] +[[6, 0, 1], 2187, {"submitted": 1558193821.6686676, "started": 1558193821.6692677, "finished": 1558193821.67694}, {"loss": 0.4113069758523172, "info": {"x0": -4.651895794568556, "x1": 6.3835904618016865, "x2": 4.838421913122479, "x3": -0.6388583756379509, "x4": 2.67341803198377, "x5": 0.21953739121158217}}, null] +[[6, 0, 2], 2187, {"submitted": 1558193821.6793325, "started": 1558193821.6799362, "finished": 1558193821.6889875}, {"loss": 0.42593963280636427, "info": {"x0": -5.172717307376551, "x1": 6.896048494504453, "x2": 6.7409582320257755, "x3": -3.5237734959781846, "x4": 3.4824479212923203, "x5": 0.3179214646602244}}, null] +[[6, 0, 3], 2187, {"submitted": 1558193821.691425, "started": 1558193821.6922433, "finished": 1558193821.7054126}, {"loss": 0.4695366875200836, "info": {"x0": -5.412936966544537, "x1": 5.715496976180933, "x2": 4.17835062687871, "x3": -2.9793127586360253, "x4": 2.487418864216591, "x5": 0.4934040319225191}}, null] +[[7, 0, 0], 2187, {"submitted": 1558193821.707453, "started": 1558193821.7081592, "finished": 1558193821.7178922}, {"loss": 0.42039624082728116, "info": {"x0": -4.838441962803362, "x1": 5.405287168623353, "x2": 5.476029369331528, "x3": -2.408288311998729, "x4": 3.761979478144344, "x5": 0.233949544827652}}, null] +[[7, 0, 1], 2187, {"submitted": 1558193821.7203438, "started": 1558193821.7208376, "finished": 1558193821.7282257}, {"loss": 0.3488439281363119, "info": {"x0": -4.001338812025999, "x1": 3.436953638639466, "x2": 4.508141350403868, "x3": -3.0378986919649953, "x4": 3.819366358344018, "x5": 0.1553319712097218}}, null] +[[7, 0, 2], 2187, {"submitted": 1558193821.7318969, "started": 1558193821.732508, "finished": 1558193821.7421644}, {"loss": 0.17863521728019124, "info": {"x0": -2.1097073925015764, "x1": 3.5701790875595685, "x2": 4.620117292060129, "x3": -2.2552892742939874, "x4": 3.869769639320736, "x5": 0.014988444048939842}}, null] +[[7, 0, 3], 2187, {"submitted": 1558193821.745321, "started": 1558193821.7461643, "finished": 1558193821.7550702}, {"loss": 0.1588064232125385, "info": {"x0": -4.0852629702495005, "x1": 5.125634386347346, "x2": 7.887530199690022, "x3": -1.4901606543405164, "x4": 1.9158433973601916, "x5": 0.15705028042430563}}, null] +[[8, 0, 0], 2187, {"submitted": 1558193821.7575102, "started": 1558193821.7579682, "finished": 1558193821.7673244}, {"loss": 0.34014958244321236, "info": {"x0": -3.8817731386067686, "x1": 7.904172950920035, "x2": 5.143254284894288, "x3": -1.704770889325367, "x4": 3.081178579476226, "x5": 0.0869173016513966}}, null] +[[8, 0, 1], 2187, {"submitted": 1558193821.7696176, "started": 1558193821.7702549, "finished": 1558193821.781757}, {"loss": 0.39640735866055554, "info": {"x0": -4.001840075284728, "x1": 6.144722027465623, "x2": 4.877343957810973, "x3": -0.16961812073438987, "x4": 3.426806860434253, "x5": 0.3171781697891172}}, null] +[[8, 0, 2], 2187, {"submitted": 1558193821.7848623, "started": 1558193821.7857456, "finished": 1558193821.7973442}, {"loss": 0.34228533151885293, "info": {"x0": -2.2647100559054847, "x1": 6.429768895089428, "x2": 7.819151598694935, "x3": -2.7113859751648763, "x4": 3.535651986650363, "x5": 0.2588479161767971}}, null] +[[8, 0, 3], 2187, {"submitted": 1558193821.7998686, "started": 1558193821.8003242, "finished": 1558193821.8077908}, {"loss": 0.22242068454271458, "info": {"x0": -3.459476837105614, "x1": 7.812825628116468, "x2": 4.912278704710218, "x3": -3.618330866951956, "x4": 1.5356279156925918, "x5": 0.1125297729656714}}, null] +[[9, 0, 0], 2187, {"submitted": 1558193821.8103476, "started": 1558193821.8109322, "finished": 1558193821.8246655}, {"loss": 0.4296514134951357, "info": {"x0": -5.980466538242692, "x1": 7.7752351915287825, "x2": 7.0390155427550285, "x3": -0.7537022134823759, "x4": 2.1269587934895258, "x5": 0.11131524559857825}}, null] +[[9, 0, 1], 2187, {"submitted": 1558193821.8276126, "started": 1558193821.8282351, "finished": 1558193821.8376303}, {"loss": 0.0865216429709694, "info": {"x0": -3.0449726724662263, "x1": 5.1593838026756975, "x2": 4.991259499397724, "x3": -2.3974291426278356, "x4": 2.5420730543617296, "x5": 0.04484817467899049}}, null] +[[9, 0, 2], 2187, {"submitted": 1558193821.840245, "started": 1558193821.8406398, "finished": 1558193821.852259}, {"loss": 0.40121386904829154, "info": {"x0": -2.1341026467844806, "x1": 7.1936268262773115, "x2": 4.685115653465584, "x3": -3.414606452013816, "x4": 2.177648066877541, "x5": 0.33061443304284927}}, null] +[[9, 0, 3], 2187, {"submitted": 1558193821.8548858, "started": 1558193821.8553672, "finished": 1558193821.8653975}, {"loss": 0.4165741492392384, "info": {"x0": -5.489341344707594, "x1": 6.900079952484031, "x2": 7.375966447029288, "x3": -0.968444510286488, "x4": 1.4073362508016638, "x5": 0.21327368528438612}}, null] diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/configspace.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/configspace.json similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/configspace.json rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/configspace.pcs b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/configspace.pcs similarity index 100% rename from examples/icml_2018_experiments/opt_results/paramnet_surrogate/poker/smac/run_389996652/configspace.pcs rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/configspace.pcs diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/runhistory.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/runhistory.json new file mode 100644 index 0000000..bb654b0 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/runhistory.json @@ -0,0 +1,968 @@ +{ + "data": [ + [ + [ + 1, + null, + 0 + ], + [ + 0.26680712789807987, + 0.030979394912719727, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 2, + null, + 0 + ], + [ + 0.485652821541726, + 0.03270411491394043, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 3, + null, + 0 + ], + [ + 0.08035564384324528, + 0.02155590057373047, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 4, + null, + 0 + ], + [ + 0.39310903056511176, + 0.029238224029541016, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 5, + null, + 0 + ], + [ + 0.15536204078591145, + 0.024903535842895508, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 6, + null, + 0 + ], + [ + 0.002223006958301432, + 0.02174234390258789, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 7, + null, + 0 + ], + [ + 0.3953095274568571, + 0.024344444274902344, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 8, + null, + 0 + ], + [ + 0.06021400571198202, + 0.02333974838256836, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 9, + null, + 0 + ], + [ + 0.41804041733350095, + 0.02882528305053711, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 10, + null, + 0 + ], + [ + 0.32134624339038187, + 0.02235889434814453, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 11, + null, + 0 + ], + [ + 0.3537898769196611, + 0.021253108978271484, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 12, + null, + 0 + ], + [ + 0.004284073844573732, + 0.024617671966552734, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 13, + null, + 0 + ], + [ + 0.4194912394464354, + 0.522655725479126, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 14, + null, + 0 + ], + [ + 0.05152848009108363, + 0.021260976791381836, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 15, + null, + 0 + ], + [ + 0.21196134273461364, + 0.018106698989868164, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 16, + null, + 0 + ], + [ + 0.4716524700815482, + 0.016956090927124023, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 17, + null, + 0 + ], + [ + 0.18682874945416011, + 0.022229671478271484, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 18, + null, + 0 + ], + [ + 0.022580856450886012, + 0.021961212158203125, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 19, + null, + 0 + ], + [ + 0.4172007148437212, + 0.02292919158935547, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 20, + null, + 0 + ], + [ + 0.41580372971967366, + 0.0282742977142334, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 21, + null, + 0 + ], + [ + 0.04691744163459469, + 0.048712968826293945, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 22, + null, + 0 + ], + [ + 0.011183868142258524, + 0.024443387985229492, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 23, + null, + 0 + ], + [ + 0.47237522894698303, + 0.020883798599243164, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 24, + null, + 0 + ], + [ + 0.45398049431188714, + 0.025578737258911133, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 25, + null, + 0 + ], + [ + 0.44848121924732076, + 0.021915674209594727, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 26, + null, + 0 + ], + [ + 0.34094867897329306, + 0.019864320755004883, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 27, + null, + 0 + ], + [ + 0.030902790947647262, + 0.02049994468688965, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 28, + null, + 0 + ], + [ + 0.16472885031932466, + 0.025910139083862305, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 29, + null, + 0 + ], + [ + 0.17291797020917105, + 0.02461552619934082, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 30, + null, + 0 + ], + [ + 0.06243745588969085, + 0.02622842788696289, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 31, + null, + 0 + ], + [ + 0.3789586519262132, + 0.02591729164123535, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 32, + null, + 0 + ], + [ + 0.031186954405217782, + 0.0407259464263916, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 33, + null, + 0 + ], + [ + 0.03183647389657941, + 0.027400732040405273, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 34, + null, + 0 + ], + [ + 0.2576097579995918, + 0.022655963897705078, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 35, + null, + 0 + ], + [ + 0.23002338260411564, + 0.02241373062133789, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 36, + null, + 0 + ], + [ + 0.4925234952476168, + 0.027292490005493164, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 37, + null, + 0 + ], + [ + 0.23564091164066586, + 0.03502011299133301, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 38, + null, + 0 + ], + [ + 0.032949745453756396, + 0.02715277671813965, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 39, + null, + 0 + ], + [ + 0.001607906271525239, + 0.023314476013183594, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ], + [ + [ + 40, + null, + 0 + ], + [ + 0.012142258505295633, + 0.02870655059814453, + { + "__enum__": "StatusType.SUCCESS" + }, + [] + ] + ] + ], + "config_origins": { + "1": "Random initial design.", + "2": "Random Search", + "3": "Random Search", + "4": "Random Search (sorted)", + "5": "Random Search", + "6": "Random Search (sorted)", + "7": "Random Search", + "8": "Random Search (sorted)", + "9": "Random Search", + "10": "Random Search (sorted)", + "11": "Random Search", + "12": "Random Search (sorted)", + "13": "Random Search", + "14": "Random Search", + "15": "Random Search (sorted)", + "16": "Random Search", + "17": "Random Search", + "18": "Random Search (sorted)", + "19": "Random Search", + "20": "Random Search", + "21": "Local Search", + "22": "Random Search", + "23": "Random Search", + "24": "Random Search", + "25": "Random Search", + "26": "Random Search", + "27": "Local Search", + "28": "Local Search", + "29": "Random Search (sorted)", + "30": "Local Search", + "31": "Random Search (sorted)", + "32": "Random Search", + "33": "Random Search", + "34": "Random Search", + "35": "Random Search", + "36": "Random Search", + "37": "Random Search", + "38": "Local Search", + "39": "Local Search", + "40": "Local Search" + }, + "configs": { + "1": { + "x0": -2.763456783161529, + "x1": 6.681601775093551, + "x2": 7.777465262058573, + "x3": -1.614322334367868, + "x4": 1.0714981172735687, + "x5": 0.012826150125409497 + }, + "2": { + "x0": -5.708195853026986, + "x1": 3.0538740685115764, + "x2": 4.3143406662885875, + "x3": -2.848979311962668, + "x4": 3.3000171743300943, + "x5": 0.46253016895286164 + }, + "3": { + "x0": -2.975028821874204, + "x1": 3.37687820329722, + "x2": 5.20362478305125, + "x3": -2.4549191822839265, + "x4": 3.6406619843765307, + "x5": 0.09726420263601987 + }, + "4": { + "x0": -4.511774796591208, + "x1": 7.762652442973339, + "x2": 6.769425419356752, + "x3": -1.4396437042791583, + "x4": 3.962820088939098, + "x5": 0.0907413576808096 + }, + "5": { + "x0": -2.588659322536744, + "x1": 6.167287469125653, + "x2": 6.381143676218793, + "x3": -1.5045007682670812, + "x4": 1.7022471302241051, + "x5": 0.2647234618754983 + }, + "6": { + "x0": -3.3296390336760147, + "x1": 5.593861737903584, + "x2": 7.723454971546828, + "x3": -2.4347001816089113, + "x4": 2.8808660453391677, + "x5": 0.14284223976501176 + }, + "7": { + "x0": -4.659422193891244, + "x1": 3.828154233565206, + "x2": 7.849643312657879, + "x3": -3.548071855066099, + "x4": 1.8309707478167088, + "x5": 0.42888863331263855 + }, + "8": { + "x0": -2.7383291187494283, + "x1": 7.560766280971499, + "x2": 7.561643802263536, + "x3": -1.900851592817649, + "x4": 2.879594262473304, + "x5": 0.2998320621186923 + }, + "9": { + "x0": -3.454715856591945, + "x1": 5.823103928564335, + "x2": 4.863835418893375, + "x3": -3.080923705653414, + "x4": 4.7355462872069705, + "x5": 0.43833844024705526 + }, + "10": { + "x0": -3.0845911560588113, + "x1": 3.305978648052644, + "x2": 4.739684197978837, + "x3": -1.0508404323226763, + "x4": 1.532135210072358, + "x5": 0.16666395461624028 + }, + "11": { + "x0": -2.8608360291556054, + "x1": 4.506463139749814, + "x2": 5.606180010916471, + "x3": -0.0810824062611828, + "x4": 1.4696853578078506, + "x5": 0.29069005908701195 + }, + "12": { + "x0": -3.146671773335563, + "x1": 6.9968022544473145, + "x2": 6.66768742553759, + "x3": -2.4426584382862235, + "x4": 3.0673679955292323, + "x5": 0.13563164973968145 + }, + "13": { + "x0": -4.692010733093348, + "x1": 5.682213340433716, + "x2": 5.240265298920376, + "x3": -2.4847007820078693, + "x4": 4.181085749410105, + "x5": 0.21040097158696647 + }, + "14": { + "x0": -3.400906666154625, + "x1": 7.614976201624266, + "x2": 7.461691338528313, + "x3": -2.5650614901565354, + "x4": 3.4547393810274847, + "x5": 0.14935496266713377 + }, + "15": { + "x0": -2.020604530497462, + "x1": 6.4933019026470475, + "x2": 6.620242137005322, + "x3": -2.362703125602673, + "x4": 3.0822542469705376, + "x5": 0.14879124036973312 + }, + "16": { + "x0": -5.751300384720562, + "x1": 4.914943623386329, + "x2": 4.903611592372548, + "x3": -3.0251060256682543, + "x4": 1.9828463756556576, + "x5": 0.29156298381519996 + }, + "17": { + "x0": -2.3304607423338575, + "x1": 7.613656967277343, + "x2": 4.488991795103465, + "x3": -3.3829088537531287, + "x4": 3.5375000084715778, + "x5": 0.03179384059847418 + }, + "18": { + "x0": -3.2053542813313243, + "x1": 3.393552845686975, + "x2": 7.587919779268337, + "x3": -3.822989544639699, + "x4": 3.0646291268061367, + "x5": 0.042855586107052035 + }, + "19": { + "x0": -5.265588740526245, + "x1": 7.480970384963838, + "x2": 7.440686515840227, + "x3": -3.8197646064597994, + "x4": 3.222486775716177, + "x5": 0.42923282900592175 + }, + "20": { + "x0": -2.2577609199646034, + "x1": 3.3100507522530345, + "x2": 4.7395164273115, + "x3": -1.289896955645403, + "x4": 2.016147348137307, + "x5": 0.4632331076667974 + }, + "21": { + "x0": -3.4351720683674856, + "x1": 7.932891418893426, + "x2": 7.258400272323402, + "x3": -2.730865825496348, + "x4": 3.4759444681752076, + "x5": 0.13965908342702016 + }, + "22": { + "x0": -3.458181109204357, + "x1": 4.457612003498199, + "x2": 7.565579563567033, + "x3": -3.072547738704229, + "x4": 2.938412343714689, + "x5": 0.11486646296722791 + }, + "23": { + "x0": -5.899692573985261, + "x1": 3.052193873835398, + "x2": 5.352898712147991, + "x3": -0.6873198965325482, + "x4": 2.0618506058996604, + "x5": 0.4646175100339018 + }, + "24": { + "x0": -4.525782456664798, + "x1": 6.788209048709022, + "x2": 4.678688306341577, + "x3": -0.3433588372071026, + "x4": 3.835583283262621, + "x5": 0.499426937035915 + }, + "25": { + "x0": -5.96697198506298, + "x1": 7.851428143237817, + "x2": 4.846826740876045, + "x3": -0.7473708278076079, + "x4": 1.0787170934844146, + "x5": 0.023939510378209627 + }, + "26": { + "x0": -3.7637523904249073, + "x1": 6.711693582514236, + "x2": 5.528701927928804, + "x3": -1.6323775710823218, + "x4": 4.704435655065608, + "x5": 0.21307109745250913 + }, + "27": { + "x0": -3.3470113472444125, + "x1": 6.408145628031881, + "x2": 7.324322924352261, + "x3": -2.4426584382862235, + "x4": 2.904447322927104, + "x5": 0.1686032550187731 + }, + "28": { + "x0": -3.5705025456417587, + "x1": 3.622948604312671, + "x2": 5.348530492539101, + "x3": -2.9772913244231773, + "x4": 3.0296813134055895, + "x5": 0.1273948102950659 + }, + "29": { + "x0": -3.4569472336980036, + "x1": 7.646285639958194, + "x2": 5.398482219037119, + "x3": -2.5501903111623205, + "x4": 2.9367992669238236, + "x5": 0.16853744946189048 + }, + "30": { + "x0": -3.2558643670220615, + "x1": 7.703587308244174, + "x2": 7.72521788405683, + "x3": -2.0907425082456124, + "x4": 3.051784886174672, + "x5": 0.3056496384551238 + }, + "31": { + "x0": -2.2842335855924962, + "x1": 6.165400506252033, + "x2": 7.142738135496652, + "x3": -3.62708945390408, + "x4": 2.997398681055972, + "x5": 0.4865435783431007 + }, + "32": { + "x0": -2.7712194697114576, + "x1": 5.454793581174036, + "x2": 7.6191501037849445, + "x3": -2.4756430552169633, + "x4": 4.386037342085981, + "x5": 0.1673078127911916 + }, + "33": { + "x0": -3.507672074114183, + "x1": 5.649799464554461, + "x2": 7.905611389318951, + "x3": -2.8866084811101405, + "x4": 3.491666093331981, + "x5": 0.3422671933906756 + }, + "34": { + "x0": -4.6132902152401485, + "x1": 3.396727449479685, + "x2": 7.3360803941554344, + "x3": -0.22925791381301952, + "x4": 1.0243489082997121, + "x5": 0.24134992742522093 + }, + "35": { + "x0": -3.5305813916658098, + "x1": 3.166223808408347, + "x2": 4.897867272001212, + "x3": -3.5942795508930305, + "x4": 3.6019944144821383, + "x5": 0.14008310216540343 + }, + "36": { + "x0": -5.882255328204163, + "x1": 6.78003719308203, + "x2": 4.206442900455101, + "x3": -2.5750770710615507, + "x4": 2.4126760581375835, + "x5": 0.08445051742394272 + }, + "37": { + "x0": -3.172638682852642, + "x1": 4.686872745131472, + "x2": 6.463655779140646, + "x3": -2.8495314482794587, + "x4": 4.128590766093664, + "x5": 0.36352219691369575 + }, + "38": { + "x0": -3.1908847302102394, + "x1": 5.614256950330203, + "x2": 7.645179988315422, + "x3": -2.5771644578772266, + "x4": 3.4493656257715997, + "x5": 0.3714582594336297 + }, + "39": { + "x0": -3.6253867093927665, + "x1": 5.500766337200364, + "x2": 7.597126214974917, + "x3": -2.21662246745676, + "x4": 2.8558631974361828, + "x5": 0.08394208264413566 + }, + "40": { + "x0": -3.6893449520886796, + "x1": 5.489406149982717, + "x2": 7.889111279054767, + "x3": -2.192002827544356, + "x4": 2.8558631974361828, + "x5": 0.08609189811543663 + } + } +} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/scenario.txt b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/scenario.txt similarity index 67% rename from examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/scenario.txt rename to examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/scenario.txt index 993db71..f3d7e85 100644 --- a/examples/icml_2018_experiments/opt_results/bnn/small_bnn/bostonhousing/smac/run_1630317213/scenario.txt +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/scenario.txt @@ -7,6 +7,6 @@ cost_for_crash = 2147483647.0 algo_runs_timelimit = inf wallclock_limit = inf always_race_default = False -ta_run_limit = 2.0 +ta_run_limit = 40.0 initial_incumbent = RANDOM -pcs_fn = opt_results/small_bnn/bostonhousing/smac/run_1630317213/configspace.json +pcs_fn = ../opt_results/paramnet_surrogates/poker/smac/run_965337418/configspace.json diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/stats.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/stats.json new file mode 100644 index 0000000..a4239bf --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/stats.json @@ -0,0 +1 @@ +{"ta_runs": 40, "n_configs": 40, "wallclock_time_used": 55.47499489784241, "ta_time_used": 1.5194895267486572, "inc_changed": 4, "_n_configs_per_intensify": 38, "_n_calls_of_intensify": 19, "_ema_n_configs_per_intensifiy": 2.0, "_EMA_ALPHA": 0.2} \ No newline at end of file diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/traj_aclib2.json b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/traj_aclib2.json new file mode 100644 index 0000000..a03d344 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/traj_aclib2.json @@ -0,0 +1,5 @@ +{"cpu_time": 0, "total_cpu_time": null, "wallclock_time": 0.0001914501190185547, "evaluations": 0, "cost": 2147483648, "incumbent": ["x0='-2.763456783161529'", "x1='6.681601775093551'", "x2='7.777465262058573'", "x3='-1.614322334367868'", "x4='1.0714981172735687'", "x5='0.012826150125409497'"], "origin": "Random initial design."} +{"cpu_time": 0.030979394912719727, "total_cpu_time": null, "wallclock_time": 0.07370328903198242, "evaluations": 1, "cost": 0.26680712789807987, "incumbent": ["x0='-2.763456783161529'", "x1='6.681601775093551'", "x2='7.777465262058573'", "x3='-1.614322334367868'", "x4='1.0714981172735687'", "x5='0.012826150125409497'"], "origin": "Random initial design."} +{"cpu_time": 0.08523941040039062, "total_cpu_time": null, "wallclock_time": 0.7302227020263672, "evaluations": 3, "cost": 0.08035564384324528, "incumbent": ["x0='-2.975028821874204'", "x1='3.37687820329722'", "x2='5.20362478305125'", "x3='-2.4549191822839265'", "x4='3.6406619843765307'", "x5='0.09726420263601987'"], "origin": "Random Search"} +{"cpu_time": 0.16112351417541504, "total_cpu_time": null, "wallclock_time": 4.5691819190979, "evaluations": 6, "cost": 0.002223006958301432, "incumbent": ["x0='-3.3296390336760147'", "x1='5.593861737903584'", "x2='7.723454971546828'", "x3='-2.4347001816089113'", "x4='2.8808660453391677'", "x5='0.14284223976501176'"], "origin": "Random Search (sorted)"} +{"cpu_time": 1.4907829761505127, "total_cpu_time": null, "wallclock_time": 52.70077872276306, "evaluations": 39, "cost": 0.001607906271525239, "incumbent": ["x0='-3.6253867093927665'", "x1='5.500766337200364'", "x2='7.597126214974917'", "x3='-2.21662246745676'", "x4='2.8558631974361828'", "x5='0.08394208264413566'"], "origin": "Local Search"} diff --git a/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/traj_old.csv b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/traj_old.csv new file mode 100644 index 0000000..7438613 --- /dev/null +++ b/examples/icml_2018_experiments/opt_results/paramnet_surrogates/poker/smac/run_965337418/traj_old.csv @@ -0,0 +1,6 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." +0.000000, 2147483648.000000, 0.000191, 1, 0.000191, x0='-2.763456783161529', x1='6.681601775093551', x2='7.777465262058573', x3='-1.614322334367868', x4='1.0714981172735687', x5='0.012826150125409497' +0.030979, 0.266807, 0.073703, 1, 0.042724, x0='-2.763456783161529', x1='6.681601775093551', x2='7.777465262058573', x3='-1.614322334367868', x4='1.0714981172735687', x5='0.012826150125409497' +0.085239, 0.080356, 0.730223, 2, 0.644983, x0='-2.975028821874204', x1='3.37687820329722', x2='5.20362478305125', x3='-2.4549191822839265', x4='3.6406619843765307', x5='0.09726420263601987' +0.161124, 0.002223, 4.569182, 3, 4.408058, x0='-3.3296390336760147', x1='5.593861737903584', x2='7.723454971546828', x3='-2.4347001816089113', x4='2.8808660453391677', x5='0.14284223976501176' +1.490783, 0.001608, 52.700779, 4, 51.209996, x0='-3.6253867093927665', x1='5.500766337200364', x2='7.597126214974917', x3='-2.21662246745676', x4='2.8558631974361828', x5='0.08394208264413566' diff --git a/examples/icml_2018_experiments/paramnet_surrogates.ipynb b/examples/icml_2018_experiments/paramnet_surrogates.ipynb index 95f8667..b693424 100644 --- a/examples/icml_2018_experiments/paramnet_surrogates.ipynb +++ b/examples/icml_2018_experiments/paramnet_surrogates.ipynb @@ -11,7 +11,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "In this series of notebooks, we will replicate and analyze the ICML 2018 experiments that where used for benchmarking in BOHB (Falkner et al. 2018).\n", + "In this series of notebooks, we will replicate and analyze the ICML 2018 experiments that were used for benchmarking in BOHB (Falkner et al. 2018).\n", "In addition to HpBandSter, we will use CAVE to analyze and visualize the optimization process." ] }, @@ -19,11 +19,10 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## About the frameworks\n", + "## About this experiment\n", "\n", "### Paramnet Surrogates\n", - "\n", - "coming soon\n", + "(... coming soon ...)\n", "\n", "### Installation requirements\n", "\n", @@ -38,40 +37,19 @@ ] }, { - "cell_type": "code", - "execution_count": 1, + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [ - "# We deactivate logging to ensure readability\n", - "import logging\n", - "logging.basicConfig(level=logging.ERROR)\n", - "# Also, we suppress warnings.\n", - "# If there are problems for you executing this notebook, you might want to comment this out.\n", - "import warnings\n", - "warnings.filterwarnings(\"ignore\")" + "This examples ships with all the code necessary to reproduce the experiment. Because it takes a few days to generate the data, the results of the optimization are provided in `examples/icml_2018_experiments/opt_results/`. If you want to generate the data (from examples/icml_2018_experiments), just run:" ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": null, "metadata": {}, + "outputs": [], "source": [ - "### 1.1) References\n", - "*Worker*: We need a Worker to define the kind of computation we want to optimize. The worker used for the experiments is located in `workers/paramnet_surrogates.py`\n", - "\n", - "*ConfigSpace*: Every problem needs a description of the search space to be complete. In HpBandSter, a ConfigurationSpace-object defines all hyperparameters, their ranges and dependencies between them.\n", - "\n", - "In our example here, the search space consists of the hyperparameters:\n", - "\n", - "\n", - "| Name | Type | Values |\n", - "|:---------:|:-------:|:------------:|\n", - "| x0 | real | [-6.0, -2.0] |\n", - "| x1 | real | [3.0, 8.0] |\n", - "| x2 | real | [4.0, 8.0] |\n", - "| x3 | real | [-4.0, 0.0] |\n", - "| x4 | real | [1.0, 5.0] |\n", - "| x5 | real | [0.0, 0.5] |" + "! python scripts/run_experiment.py --exp_name paramnet_surrogates --dataset_paramnet_surrogates higgs --num_iterations 1 --n_workers 1" ] }, { @@ -80,92 +58,8 @@ "scrolled": false }, "source": [ - "### 1.3) Setting up the experiment and running the optimizer(s)\n", - "\n", - "Please note that the execution of the experiment with all datasets might take up to a few days, depending on your hardware. You can also skip this step and process with the precomputed results saved in `opt_results/paramnet_surrogate`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "import os\n", - "from itertools import product\n", - "import numpy as np\n", - "\n", - "import hpbandster.core.nameserver as hpns\n", - "import hpbandster.core.result as hpres\n", - "from hpbandster.optimizers import BOHB, RandomSearch, HyperBand\n", - "\n", - "from workers.paramnet_surrogates import ParamNetSurrogateWorker\n", - "\n", - "# Run the experiment, evaluate each dataset on each optimizer\n", - "datasets = ['adult', 'higgs', 'letter', 'mnist', 'optdigits', 'poker']\n", - "opt_methods = [\"smac\", \"bohb\", \"randomsearch\", \"hyperband\"]\n", - "num_iterations = 4\n", - "\n", - "\n", - "eta = 3\n", - "\n", - "for dataset, opt_method in product(datasets, opt_methods):\n", - "\n", - " print(dataset, opt_method)\n", - " \n", - " output_dir = \"opt_results/paramnet_surrogate/{}/{}\".format(dataset, opt_method)\n", - " if not os.path.exists(output_dir):\n", - " os.makedirs(output_dir)\n", - "\n", - " run_id = '0' # Every run has to have a unique (at runtime) id.\n", - " \n", - " # create a worker\n", - " worker = ParamNetSurrogateWorker(dataset=dataset, measure_test_loss=False, run_id=run_id, surrogate_path=None)\n", - " min_budget, max_budget = worker.budgets[dataset]\n", - " \n", - " configspace = worker.configspace\n", - "\n", - " if opt_method in ['randomsearch', 'bohb', 'hyperband']:\n", - " # setup a nameserver\n", - " NS = hpns.NameServer(run_id=run_id, host='localhost', port=0, working_directory=output_dir)\n", - " ns_host, ns_port = NS.start()\n", - "\n", - " worker.load_nameserver_credentials(output_dir)\n", - " worker.run(background=True)\n", - "\n", - " # instantiate and run optimizer\n", - " opt = RandomSearch if opt_method == 'randomsearch' else BOHB if opt_method == 'bohb' else HyperBand\n", - "\n", - " result_logger = hpres.json_result_logger(directory=output_dir, overwrite=True)\n", - "\n", - " opt = opt(configspace, eta=3,\n", - " working_directory=output_dir,\n", - " run_id=run_id,\n", - " min_budget=min_budget, max_budget=max_budget,\n", - " host=ns_host,\n", - " nameserver=ns_host,\n", - " nameserver_port = ns_port,\n", - " ping_interval=3600,\n", - " result_logger=result_logger)\n", - "\n", - " result = opt.run(n_iterations=num_iterations)\n", - " \n", - " # **NOTE:** Unfortunately, the configuration space is *not yet saved automatically* to file\n", - " # but this step is mandatory for the analysis with CAVE. \n", - " # We recommend to save the configuration space every time you use BOHB.\n", - " # We do this by using the ConfigSpace-to-json-writer.\n", - "\n", - " from ConfigSpace.read_and_write import pcs_new\n", - " with open(os.path.join(output_dir, 'configspace.pcs'), 'w') as fh:\n", - " fh.write(pcs_new.write(opt.config_generator.configspace))\n", - " \n", - " else:\n", - " # the number of iterations for the blackbox optimizers must be increased so they have comparable total budgets\n", - " bb_iterations = int(num_iterations * (1+(np.log(max_budget) - np.log(min_budget))/np.log(eta)))\n", - " if opt_method == 'smac':\n", - " result = worker.run_smac(bb_iterations, deterministic=True, working_directory=output_dir)" + "You can use this script to generate the optimization data for a variety of optimizers, the results will (by default) be stored in `examples/icml_2018_experiments/EXPERIMENT/DATASET/OPTIMIZER`. Use `python run_experiment --help` to see how to use the script.\n", + "If you have access to a cluster, take a look at the scripts provided for cluster computation on a SLURM cluster at `examples/icml_2018_experiments/scripts/cluster/`." ] }, { @@ -176,12 +70,12 @@ "\n", "### Instantiate CAVE\n", "\n", - "Analyzing the optimization results with CAVE is very straight-forward. If you want to use CAVE interactively in a notebook, set `show_jupyter=True`. Specify which optimization you want to analyze via the `folders` argument and specify `file_format==SMAC3` or `file_format==BOHB`, depending on which optimizer was used for the results. To analyze how BOHB optimized on the *bostenhousing* dataset, run:" + "Analyzing the optimization results with CAVE is very straight-forward. If you want to use CAVE interactively in a notebook, set `show_jupyter=True`. Specify which optimization you want to analyze via the `folders` argument and specify `file_format==SMAC3` or `file_format==BOHB`, depending on which optimizer was used for the results. To analyze how BOHB optimized on the *higgs* dataset, run:" ] }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "metadata": { "scrolled": false }, @@ -189,10 +83,10 @@ "source": [ "from cave.cavefacade import CAVE\n", "\n", - "cave = CAVE(folders=[\"opt_results/paramnet_surrogate/higgs/bohb\"],\n", - " output_dir=\"CAVE_reports/higgs_notebook\", # output for debug/images/etc\n", - " ta_exec_dir=[\".\"], # Only important for SMAC-results\n", - " file_format='BOHB', # BOHB or SMAC3\n", + "cave = CAVE(folders=[\"opt_results/paramnet_surrogates/higgs/bohb\"],\n", + " output_dir=\"CAVE_reports/paramnet_surrogates/higgs_notebook\", # output for debug/images/etc\n", + " ta_exec_dir=[\".\"], # Only important for SMAC-results\n", + " file_format='BOHB', # BOHB or SMAC3\n", " verbose_level='OFF',\n", " show_jupyter=True,\n", " )" @@ -202,18 +96,18 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "To generate the HTML-report you can use the `analyze`-method. The report is located in `output_dir/report.html`, so in this case in `CAVE_reports/higgs_notebook/report.html`." + "To generate the HTML-report you can use the `analyze`-method. The report is located in `output_dir/report.html`, so in this case in `CAVE_reports/paramnet_surrogates/higgs_notebook/report.html`." ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%%capture\n", "cave.analyze()\n", - "! firefox CAVE_reports/higgs_notebook/report.html" + "! firefox CAVE_reports/paramnet_surrogates/higgs_notebook/report.html" ] }, { @@ -227,467 +121,22 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"33601\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"33601\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '33601' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"33601\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"33601\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"33601\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '33601' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"33601\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"e508c477-6165-454c-a384-1337366cf007\":{\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"33608\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"33730\",\"type\":\"Column\"}]},\"id\":\"33731\",\"type\":\"Row\"},{\"attributes\":{\"ticker\":{\"id\":\"33616\",\"type\":\"BasicTicker\"}},\"id\":\"33619\",\"type\":\"Grid\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33708\",\"type\":\"CircleX\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"1\"},\"id\":\"33663\",\"type\":\"GroupFilter\"},{\"attributes\":{\"axis_label\":\"Cost\",\"formatter\":{\"id\":\"33734\",\"type\":\"LogTickFormatter\"},\"ticker\":{\"id\":\"33621\",\"type\":\"LogTicker\"}},\"id\":\"33620\",\"type\":\"LogAxis\"},{\"attributes\":{\"data_source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"33707\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"33708\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"33705\",\"type\":\"CDSView\"}},\"id\":\"33709\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"33664\",\"type\":\"GroupFilter\"},{\"attributes\":{\"num_minor_ticks\":10},\"id\":\"33621\",\"type\":\"LogTicker\"},{\"attributes\":{\"filters\":[{\"id\":\"33663\",\"type\":\"GroupFilter\"},{\"id\":\"33664\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"}},\"id\":\"33665\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"3\"},\"id\":\"33710\",\"type\":\"GroupFilter\"},{\"attributes\":{\"dimension\":1,\"ticker\":{\"id\":\"33621\",\"type\":\"LogTicker\"}},\"id\":\"33624\",\"type\":\"Grid\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"33711\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"33703\",\"type\":\"GroupFilter\"},{\"id\":\"33704\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"}},\"id\":\"33705\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"33637\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"33603\",\"type\":\"ColumnDataSource\"}},\"id\":\"33638\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33667\",\"type\":\"CircleX\"},{\"attributes\":{\"filters\":[{\"id\":\"33710\",\"type\":\"GroupFilter\"},{\"id\":\"33711\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"}},\"id\":\"33712\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"0\"},\"id\":\"33637\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33668\",\"type\":\"CircleX\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"33602\",\"type\":\"HoverTool\"},{\"id\":\"33625\",\"type\":\"SaveTool\"},{\"id\":\"33626\",\"type\":\"PanTool\"},{\"id\":\"33627\",\"type\":\"WheelZoomTool\"},{\"id\":\"33628\",\"type\":\"BoxZoomTool\"},{\"id\":\"33629\",\"type\":\"ResetTool\"}]},\"id\":\"33630\",\"type\":\"Toolbar\"},{\"attributes\":{\"data_source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"33667\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"33668\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"33665\",\"type\":\"CDSView\"}},\"id\":\"33669\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33714\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"33625\",\"type\":\"SaveTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33715\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"33626\",\"type\":\"PanTool\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"1\"},\"id\":\"33670\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"33714\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"33715\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"33712\",\"type\":\"CDSView\"}},\"id\":\"33716\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"33627\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"33671\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"33670\",\"type\":\"GroupFilter\"},{\"id\":\"33671\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"}},\"id\":\"33672\",\"type\":\"CDSView\"},{\"attributes\":{\"overlay\":{\"id\":\"33742\",\"type\":\"BoxAnnotation\"}},\"id\":\"33628\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"33718\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"33642\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"33649\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"33709\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"33716\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"33656\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"33662\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"33669\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"33676\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"33682\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"33689\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"33696\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"33702\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = [0, 1, 2, 3]; checkbox.active = labels;len_labels = 4;glyph_renderers = [[glyph_renderer0,glyph_renderer1,glyph_renderer2],[glyph_renderer3,glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7,glyph_renderer8],[glyph_renderer9,glyph_renderer10,glyph_renderer11]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"33719\",\"type\":\"CustomJS\"},{\"attributes\":{\"ticker\":null},\"id\":\"33734\",\"type\":\"LogTickFormatter\"},{\"attributes\":{},\"id\":\"33629\",\"type\":\"ResetTool\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"33704\",\"type\":\"GroupFilter\"},{\"attributes\":{\"args\":{\"glyph_renderer0\":{\"id\":\"33642\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"33649\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"33709\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"33716\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"33656\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"33662\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"33669\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"33676\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"33682\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"33689\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"33696\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"33702\",\"type\":\"GlyphRenderer\"}},\"code\":\"len_labels = 4;glyph_renderers = [[glyph_renderer0,glyph_renderer1,glyph_renderer2],[glyph_renderer3,glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7,glyph_renderer8],[glyph_renderer9,glyph_renderer10,glyph_renderer11]];\\n for (i = 0; i < len_labels; i++) {\\n if (cb_obj.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"33717\",\"type\":\"CustomJS\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33674\",\"type\":\"Circle\"},{\"attributes\":{\"active\":[0,1,2,3],\"callback\":{\"id\":\"33717\",\"type\":\"CustomJS\"},\"labels\":[\"0\",\"1\",\"2\",\"3\"]},\"id\":\"33718\",\"type\":\"CheckboxButtonGroup\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33675\",\"type\":\"Circle\"},{\"attributes\":{\"filters\":[{\"id\":\"33697\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"33603\",\"type\":\"ColumnDataSource\"}},\"id\":\"33698\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":{\"id\":\"33719\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"All\"},\"id\":\"33720\",\"type\":\"Button\"},{\"attributes\":{\"data_source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"33674\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"33675\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"33672\",\"type\":\"CDSView\"}},\"id\":\"33676\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"33640\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"33641\",\"type\":\"MultiLine\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"2\"},\"id\":\"33677\",\"type\":\"GroupFilter\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"33718\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"33642\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"33649\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"33709\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"33716\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"33656\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"33662\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"33669\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"33676\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"33682\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"33689\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"33696\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"33702\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = []; checkbox.active = labels;len_labels = 4;glyph_renderers = [[glyph_renderer0,glyph_renderer1,glyph_renderer2],[glyph_renderer3,glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7,glyph_renderer8],[glyph_renderer9,glyph_renderer10,glyph_renderer11]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"33721\",\"type\":\"CustomJS\"},{\"attributes\":{\"data_source\":{\"id\":\"33603\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"33640\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"33641\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"33638\",\"type\":\"CDSView\"}},\"id\":\"33642\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"33677\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"33603\",\"type\":\"ColumnDataSource\"}},\"id\":\"33678\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":{\"id\":\"33721\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"None\"},\"id\":\"33722\",\"type\":\"Button\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"0\"},\"id\":\"33643\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"3\"},\"id\":\"33703\",\"type\":\"GroupFilter\"},{\"attributes\":{\"args\":{\"cm\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"},\"source_multiline\":{\"id\":\"33603\",\"type\":\"ColumnDataSource\"},\"source_scatter\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"}},\"code\":\"\\n var data_multiline = source_multiline.data;\\n var data_scatter = source_scatter.data;\\n var min_perf = 0.2857472291602529;\\n var max_perf = 1;\\n var min_iter = 0;\\n var max_iter = 3;\\n if (cb_obj.value == 'performance') {\\n data_multiline['colors'] = data_multiline['colors_performance'];\\n data_scatter['colors'] = data_scatter['colors_performance'];\\n cm.low = min_perf;\\n cm.high = max_perf;\\n } else {\\n data_multiline['colors'] = data_multiline['colors_iteration'];\\n data_scatter['colors'] = data_scatter['colors_iteration'];\\n cm.low = min_iter;\\n cm.high = max_iter;\\n }\\n source.change.emit();\\n \"},\"id\":\"33723\",\"type\":\"CustomJS\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"33680\",\"type\":\"MultiLine\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"33644\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":{\"id\":\"33723\",\"type\":\"CustomJS\"},\"options\":[\"performance\",\"iteration\"],\"title\":\"Select colors\",\"value\":\"performance\"},\"id\":\"33724\",\"type\":\"Select\"},{\"attributes\":{\"filters\":[{\"id\":\"33643\",\"type\":\"GroupFilter\"},{\"id\":\"33644\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"}},\"id\":\"33645\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"33681\",\"type\":\"MultiLine\"},{\"attributes\":{\"children\":[{\"id\":\"33718\",\"type\":\"CheckboxButtonGroup\"}],\"width\":400},\"id\":\"33725\",\"type\":\"WidgetBox\"},{\"attributes\":{\"data_source\":{\"id\":\"33603\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"33680\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"33681\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"33678\",\"type\":\"CDSView\"}},\"id\":\"33682\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"3\"},\"id\":\"33697\",\"type\":\"GroupFilter\"},{\"attributes\":{\"children\":[{\"id\":\"33720\",\"type\":\"Button\"}],\"width\":50},\"id\":\"33726\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33647\",\"type\":\"CircleX\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"2\"},\"id\":\"33683\",\"type\":\"GroupFilter\"},{\"attributes\":{\"children\":[{\"id\":\"33722\",\"type\":\"Button\"}],\"width\":50},\"id\":\"33727\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33648\",\"type\":\"CircleX\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"33684\",\"type\":\"GroupFilter\"},{\"attributes\":{\"children\":[{\"id\":\"33726\",\"type\":\"WidgetBox\"},{\"id\":\"33727\",\"type\":\"WidgetBox\"}]},\"id\":\"33728\",\"type\":\"Row\"},{\"attributes\":{\"data_source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"33647\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"33648\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"33645\",\"type\":\"CDSView\"}},\"id\":\"33649\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"33683\",\"type\":\"GroupFilter\"},{\"id\":\"33684\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"}},\"id\":\"33685\",\"type\":\"CDSView\"},{\"attributes\":{\"children\":[{\"id\":\"33724\",\"type\":\"Select\"}],\"width\":200},\"id\":\"33729\",\"type\":\"WidgetBox\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"0\"},\"id\":\"33650\",\"type\":\"GroupFilter\"},{\"attributes\":{\"children\":[{\"id\":\"33725\",\"type\":\"WidgetBox\"},{\"id\":\"33728\",\"type\":\"Row\"},{\"id\":\"33729\",\"type\":\"WidgetBox\"}]},\"id\":\"33730\",\"type\":\"Column\"},{\"attributes\":{\"data_source\":{\"id\":\"33603\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"33700\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"33701\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"33698\",\"type\":\"CDSView\"}},\"id\":\"33702\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33687\",\"type\":\"CircleX\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"config_id\",\"@config_id\"],[\"config_info\",\"@config_info\"],[\"losses\",\"@losses\"],[\"HB_iteration\",\"@HB_iteration\"],[\"duration (sec)\",\"@duration\"],[\"Configuration\",\" \"],[\"x0\",\"@x0\"],[\"x1\",\"@x1\"],[\"x2\",\"@x2\"],[\"x3\",\"@x3\"],[\"x4\",\"@x4\"],[\"x5\",\"@x5\"]]},\"id\":\"33602\",\"type\":\"HoverTool\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"33651\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"33650\",\"type\":\"GroupFilter\"},{\"id\":\"33651\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"}},\"id\":\"33652\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33688\",\"type\":\"CircleX\"},{\"attributes\":{\"callback\":null,\"data\":{\"HB_iteration\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"3\",\"3\",\"3\",\"3\"],\"colors\":[0.3099538710070052,0.4052905856444058,0.3538699190064275,0.3495479701500647,0.48678966508659344,0.30136530975725273,0.46910054609591895,0.4901153102761814,0.40303043578620795,0.2919095936149524,1,0.471771212817888,0.2991190011736102,0.4694280383980239,0.42018910581593116,0.3397832106484094,0.28679427791180645,0.3796079279067221,0.3665175181033426,1,0.30398062611610466,0.3018496250905564,0.43886069632695496,0.29061346594670384,0.34373616239887655,0.2857472291602529,0.4512730569392442,0.30846863203358965,0.29602859759600186,0.3915590325221969,0.44784593525232674,0.2995987046879761,0.3047324697434132,0.29440498116546443,0.3414022149997884,0.2992112520095167,0.44380534082788603,0.3144511047104627,0.30047509159081753,0.2956503638403828,0.29115774885232387,0.28890220881484424,0.2943634682561088,0.48344557461593424,0.4864160541494503,0.47245848632991533],\"colors_iteration\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3],\"colors_performance\":[0.3099538710070052,0.4052905856444058,0.3538699190064275,0.3495479701500647,0.48678966508659344,0.30136530975725273,0.46910054609591895,0.4901153102761814,0.40303043578620795,0.2919095936149524,1,0.471771212817888,0.2991190011736102,0.4694280383980239,0.42018910581593116,0.3397832106484094,0.28679427791180645,0.3796079279067221,0.3665175181033426,1,0.30398062611610466,0.3018496250905564,0.43886069632695496,0.29061346594670384,0.34373616239887655,0.2857472291602529,0.4512730569392442,0.30846863203358965,0.29602859759600186,0.3915590325221969,0.44784593525232674,0.2995987046879761,0.3047324697434132,0.29440498116546443,0.3414022149997884,0.2992112520095167,0.44380534082788603,0.3144511047104627,0.30047509159081753,0.2956503638403828,0.29115774885232387,0.28890220881484424,0.2943634682561088,0.48344557461593424,0.4864160541494503,0.47245848632991533],\"config_id\":[\"(0, 0, 0)\",\"(0, 0, 1)\",\"(0, 0, 2)\",\"(0, 0, 3)\",\"(0, 0, 4)\",\"(0, 0, 5)\",\"(0, 0, 6)\",\"(0, 0, 7)\",\"(0, 0, 8)\",\"(0, 0, 9)\",\"(0, 0, 10)\",\"(0, 0, 11)\",\"(0, 0, 12)\",\"(0, 0, 13)\",\"(0, 0, 14)\",\"(0, 0, 15)\",\"(0, 0, 16)\",\"(0, 0, 17)\",\"(0, 0, 18)\",\"(0, 0, 19)\",\"(0, 0, 20)\",\"(0, 0, 21)\",\"(0, 0, 22)\",\"(0, 0, 23)\",\"(0, 0, 24)\",\"(0, 0, 25)\",\"(0, 0, 26)\",\"(1, 0, 0)\",\"(1, 0, 1)\",\"(1, 0, 2)\",\"(1, 0, 3)\",\"(1, 0, 4)\",\"(1, 0, 5)\",\"(1, 0, 6)\",\"(1, 0, 7)\",\"(1, 0, 8)\",\"(2, 0, 0)\",\"(2, 0, 1)\",\"(2, 0, 2)\",\"(2, 0, 3)\",\"(2, 0, 4)\",\"(2, 0, 5)\",\"(3, 0, 0)\",\"(3, 0, 1)\",\"(3, 0, 2)\",\"(3, 0, 3)\"],\"config_info\":[\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\"],\"duration\":[0.006376743316650391,0.006636381149291992,0.0054624080657958984,0.0051250457763671875,0.07198452949523926,0.00551915168762207,0.0051534175872802734,0.006343364715576172,0.006806612014770508,0.005161285400390625,0.004745960235595703,0.006681680679321289,0.006464242935180664,0.0067059993743896484,0.004986763000488281,0.004718780517578125,0.007060527801513672,0.005295753479003906,0.005007028579711914,0.005101680755615234,0.006711006164550781,0.007664203643798828,0.005005359649658203,0.0050907135009765625,0.005309104919433594,0.005028247833251953,0.005781650543212891,0.005090236663818359,0.00552678108215332,0.0047380924224853516,0.0064966678619384766,0.005658388137817383,0.006300687789916992,0.004830360412597656,0.004575014114379883,0.005277156829833984,0.0052683353424072266,0.004916191101074219,0.004855632781982422,0.0049021244049072266,0.005120754241943359,0.0049037933349609375,0.005179882049560547,0.006419658660888672,0.006122589111328125,0.005106687545776367],\"losses\":[[0.334506454154526,0.3099538710070052],[0.4052905856444058],[0.3538699190064275],[0.3495479701500647],[0.48678966508659344],[0.3263791466513958,0.30136530975725273],[0.46910054609591895],[0.4901153102761814],[0.40303043578620795],[0.3094280427916326,0.2919095936149524],[1],[0.471771212817888],[0.3217850523943776,0.2991190011736102],[0.4694280383980239],[0.42018910581593116],[0.3397832106484094],[0.296116233189415,0.28842711833061657,0.28679427791180645],[0.3796079279067221],[0.3665175181033426],[1],[0.32434962959554586,0.30398062611610466],[0.32005995630681844,0.3018496250905564],[0.43886069632695496],[0.298408667937306,0.2918265646313939,0.29061346594670384],[0.34373616239887655],[0.298270291681178,0.28766143557674007,0.2857472291602529,0.2857472291602529],[0.4512730569392442],[0.30846863203358965],[0.29602859759600186],[0.3915590325221969],[0.44784593525232674],[0.2995987046879761],[0.29535055023057877,0.2941282264000265,0.3047324697434132],[0.2921725086018278,0.29440498116546443],[0.3414022149997884],[0.2907057170454426,0.2992112520095167],[0.44380534082788603],[0.3144511047104627],[0.30047509159081753],[0.2956503638403828],[0.2884547972982935,0.29115774885232387],[0.28873154542597895,0.28890220881484424],[0.2943634682561088],[0.48344557461593424],[0.4864160541494503],[0.47245848632991533]],\"times\":[[9.0,27.0],[9.0],[9.0],[9.0],[9.0],[9.0,27.0],[9.0],[9.0],[9.0],[9.0,27.0],[9.0],[9.0],[9.0,27.0],[9.0],[9.0],[9.0],[9.0,27.0,81.0],[9.0],[9.0],[9.0],[9.0,27.0],[9.0,27.0],[9.0],[9.0,27.0,81.0],[9.0],[9.0,27.0,81.0,243.0],[9.0],[27.0],[27.0],[27.0],[27.0],[27.0],[27.0,81.0,243.0],[27.0,81.0],[27.0],[27.0,81.0],[81.0],[81.0],[81.0],[81.0],[81.0,243.0],[81.0,243.0],[243.0],[243.0],[243.0],[243.0]],\"x0\":[-2.5065890763359486,-4.39155001402561,-3.2065904362076485,-3.5055561540449935,-5.332697396163201,-2.605059170531719,-4.641929850961576,-5.88489393744292,-3.7734192966621105,-2.9414285851219595,-5.386145185815302,-5.255129569615514,-3.0835647413895377,-4.886926846497815,-2.0337552827432726,-3.0693289223342353,-2.597501429651885,-3.6583101037812837,-3.948889996316198,-3.9790484220444364,-2.2802604688167345,-2.8749501298075786,-4.5723018430049684,-2.618670731132614,-2.7103272780184215,-2.4389584731894383,-4.005640324114484,-2.813250744625598,-2.4235367177375675,-4.2418083630408425,-5.012321047419874,-2.861385294309301,-2.4613180705189155,-2.741053347908192,-4.145066130035293,-2.4596484133137793,-5.81942628548133,-3.364637302249942,-2.5005100891808203,-2.2371680185168317,-3.0305899635336218,-3.18029211845285,-2.0996798353729504,-5.071038723941209,-5.56701824248846,-5.795055637234213],\"x1\":[4.461821665649573,4.565362891367393,3.228692950733555,6.682080453489949,4.6463559753686745,5.873161166859299,3.339901056210377,5.17839964400616,4.85221290784018,6.8907175535874305,3.03875655614379,4.310772652677306,6.284888069398461,5.551236637947849,3.8696364986538727,7.732668311145533,6.344616533424656,5.207792862950759,7.639302153455494,3.7611812413546466,5.767016639530814,6.577661168022782,4.698039208048985,6.955007407910499,6.541339485397708,6.6917451412864875,6.953384666519639,3.9819921429075302,6.58794988296078,3.9798819752756884,3.676931150654368,6.820011063424848,6.9376484078543506,6.750623716384487,7.830890483427065,6.813299879031181,4.634740536791398,6.0795983890108065,6.966782059498742,7.102875147968517,6.892563744268697,6.861411309718278,4.9636374641303345,7.934812845671951,7.74160287044974,7.271411779142536],\"x2\":[5.056698253106777,6.80641376776804,5.351343247762823,6.247078778942028,4.609203792320564,5.900602185452282,5.200425824857474,5.685082083236257,6.53108629732704,6.45111930547508,4.925515177694803,6.279752674991901,6.921161190685736,4.597774025475708,4.304395318737389,4.291607385609261,4.317481464780085,7.702262206384037,6.6356163859839175,7.043051984847846,4.7537898775265885,4.050986238565307,4.833753354873139,4.52910522835774,5.985216563117403,5.041646773429198,5.473486145134563,4.89629926468183,4.018975933250277,5.341810937487686,6.2994617573102465,4.129778596157302,7.965576433021855,7.170450132564399,6.15392369400187,6.7050713059400575,7.409125506730863,6.22827694740851,7.367049836852322,7.455475906749537,7.29558399760765,7.19027851707858,5.251965772720789,4.777892240069113,5.592845461139718,6.6835229229585815],\"x3\":[-1.1339098186925822,-1.716121020751443,-0.9744191405551481,-3.0364110908090876,-3.0590630446045837,-1.611896527656317,-0.5212975023690745,-2.6149667109840964,-2.776226739066425,-0.2894199659137433,-1.7741013348886616,-0.7762734604447408,-2.2530655855198676,-0.588179044116889,-3.8537245040315886,-3.461087400150263,-0.7246768251757483,-0.1335320077915978,-2.853360222310532,-1.6223624578756146,-0.7029591084292042,-0.5681045314663593,-0.19667071661663504,-0.3705258315383042,-0.8705067381762999,-0.2508662057236224,-1.7703276412633224,-0.7852044644013709,-0.42379313272078667,-2.59475476454976,-1.6883681213263606,-0.20081671959651048,-0.36786445574663373,-1.0854812676629177,-0.21870285116487453,-0.5719797100784554,-2.8176024852168924,-2.6319971256270325,-0.028476140158216534,-0.3365030236827198,-0.20174735337500538,-0.4061422324695725,-3.9542735844598735,-0.4583313486066105,-2.063553368266295,-2.9651643870510416],\"x4\":[3.7352004360676117,4.1691131359272475,2.2539640646424757,3.5644096213687586,1.6171970712369985,3.767737482085177,4.761333635543263,1.6079261377710985,4.985834103556041,4.62916549063462,4.940053646691746,1.5166620597465226,4.311010692123949,4.468988087236539,4.2815969505536025,1.79415524663438,4.463311739230007,2.175922592129343,3.8203767109704945,4.5483699934263955,3.427493490456716,4.294611325878515,2.2157236672652005,4.242278368997587,4.914567950320173,3.5760681880072744,4.186620622950883,4.936927610225046,3.8877678752931146,1.801355217152981,4.761014379646836,4.148152494689819,3.048152085463,4.487838646274174,1.9282429105425147,3.0637829663413005,4.380728610180624,4.571181871258345,3.2610943752637587,3.8983956348112865,4.490882774750068,4.103997057576186,1.0963204568092517,4.906213790602175,4.352250121413407,2.483711901523497],\"x5\":[0.2988768542025726,0.1330383388947161,0.10052408766201831,0.13846276032774746,0.2949315845317597,0.49600703760094716,0.31433878008511557,0.14365687112701336,0.4551802357515008,0.1587986558174712,0.2433854651727428,0.34533772208315044,0.3291321154217501,0.4593672373559663,0.4302018846887885,0.1559164322669218,0.027538897696750275,0.4598499467490786,0.030228190256577928,0.05331469280904799,0.48781773576874043,0.1792971528650919,0.13063797379053999,0.020481772678285076,0.4546909324268388,0.030860650289091008,0.33934527422531857,0.17989131371446282,0.17468530372590008,0.08600410031760358,0.2396936089693511,0.0782486576049661,0.008460649847695397,0.05378721360846847,0.050544970066844275,0.06452161453963498,0.2972519845470536,0.126293515431755,0.016398081170998738,0.03374414842578564,0.16065712305703558,0.1389781738235218,0.16374903702024013,0.27409995029401096,0.09316593037279447,0.31013359491394216]},\"selected\":{\"id\":\"33738\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"33739\",\"type\":\"UnionRenderers\"}},\"id\":\"33603\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"33694\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"33695\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"33692\",\"type\":\"CDSView\"}},\"id\":\"33696\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"33687\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"33688\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"33685\",\"type\":\"CDSView\"}},\"id\":\"33689\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"33736\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"callback\":null,\"data\":{\"HB_iteration\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"3\",\"3\",\"3\",\"3\"],\"colors\":[0.3099538710070052,0.3099538710070052,0.4052905856444058,0.3538699190064275,0.3495479701500647,0.48678966508659344,0.30136530975725273,0.30136530975725273,0.46910054609591895,0.4901153102761814,0.40303043578620795,0.2919095936149524,0.2919095936149524,1,0.471771212817888,0.2991190011736102,0.2991190011736102,0.4694280383980239,0.42018910581593116,0.3397832106484094,0.28679427791180645,0.28679427791180645,0.28679427791180645,0.3796079279067221,0.3665175181033426,1,0.30398062611610466,0.30398062611610466,0.3018496250905564,0.3018496250905564,0.43886069632695496,0.29061346594670384,0.29061346594670384,0.29061346594670384,0.34373616239887655,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.4512730569392442,0.30846863203358965,0.29602859759600186,0.3915590325221969,0.44784593525232674,0.2995987046879761,0.3047324697434132,0.3047324697434132,0.3047324697434132,0.29440498116546443,0.29440498116546443,0.3414022149997884,0.2992112520095167,0.2992112520095167,0.44380534082788603,0.3144511047104627,0.30047509159081753,0.2956503638403828,0.29115774885232387,0.29115774885232387,0.28890220881484424,0.28890220881484424,0.2943634682561088,0.48344557461593424,0.4864160541494503,0.47245848632991533],\"colors_iteration\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,3],\"colors_performance\":[0.3099538710070052,0.3099538710070052,0.4052905856444058,0.3538699190064275,0.3495479701500647,0.48678966508659344,0.30136530975725273,0.30136530975725273,0.46910054609591895,0.4901153102761814,0.40303043578620795,0.2919095936149524,0.2919095936149524,1,0.471771212817888,0.2991190011736102,0.2991190011736102,0.4694280383980239,0.42018910581593116,0.3397832106484094,0.28679427791180645,0.28679427791180645,0.28679427791180645,0.3796079279067221,0.3665175181033426,1,0.30398062611610466,0.30398062611610466,0.3018496250905564,0.3018496250905564,0.43886069632695496,0.29061346594670384,0.29061346594670384,0.29061346594670384,0.34373616239887655,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.4512730569392442,0.30846863203358965,0.29602859759600186,0.3915590325221969,0.44784593525232674,0.2995987046879761,0.3047324697434132,0.3047324697434132,0.3047324697434132,0.29440498116546443,0.29440498116546443,0.3414022149997884,0.2992112520095167,0.2992112520095167,0.44380534082788603,0.3144511047104627,0.30047509159081753,0.2956503638403828,0.29115774885232387,0.29115774885232387,0.28890220881484424,0.28890220881484424,0.2943634682561088,0.48344557461593424,0.4864160541494503,0.47245848632991533],\"config_id\":[\"(0, 0, 0)\",\"(0, 0, 0)\",\"(0, 0, 1)\",\"(0, 0, 2)\",\"(0, 0, 3)\",\"(0, 0, 4)\",\"(0, 0, 5)\",\"(0, 0, 5)\",\"(0, 0, 6)\",\"(0, 0, 7)\",\"(0, 0, 8)\",\"(0, 0, 9)\",\"(0, 0, 9)\",\"(0, 0, 10)\",\"(0, 0, 11)\",\"(0, 0, 12)\",\"(0, 0, 12)\",\"(0, 0, 13)\",\"(0, 0, 14)\",\"(0, 0, 15)\",\"(0, 0, 16)\",\"(0, 0, 16)\",\"(0, 0, 16)\",\"(0, 0, 17)\",\"(0, 0, 18)\",\"(0, 0, 19)\",\"(0, 0, 20)\",\"(0, 0, 20)\",\"(0, 0, 21)\",\"(0, 0, 21)\",\"(0, 0, 22)\",\"(0, 0, 23)\",\"(0, 0, 23)\",\"(0, 0, 23)\",\"(0, 0, 24)\",\"(0, 0, 25)\",\"(0, 0, 25)\",\"(0, 0, 25)\",\"(0, 0, 25)\",\"(0, 0, 26)\",\"(1, 0, 0)\",\"(1, 0, 1)\",\"(1, 0, 2)\",\"(1, 0, 3)\",\"(1, 0, 4)\",\"(1, 0, 5)\",\"(1, 0, 5)\",\"(1, 0, 5)\",\"(1, 0, 6)\",\"(1, 0, 6)\",\"(1, 0, 7)\",\"(1, 0, 8)\",\"(1, 0, 8)\",\"(2, 0, 0)\",\"(2, 0, 1)\",\"(2, 0, 2)\",\"(2, 0, 3)\",\"(2, 0, 4)\",\"(2, 0, 4)\",\"(2, 0, 5)\",\"(2, 0, 5)\",\"(3, 0, 0)\",\"(3, 0, 1)\",\"(3, 0, 2)\",\"(3, 0, 3)\"],\"config_info\":[\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\"],\"duration\":[0.006376743316650391,0.006376743316650391,0.006636381149291992,0.0054624080657958984,0.0051250457763671875,0.07198452949523926,0.00551915168762207,0.00551915168762207,0.0051534175872802734,0.006343364715576172,0.006806612014770508,0.005161285400390625,0.005161285400390625,0.004745960235595703,0.006681680679321289,0.006464242935180664,0.006464242935180664,0.0067059993743896484,0.004986763000488281,0.004718780517578125,0.007060527801513672,0.007060527801513672,0.007060527801513672,0.005295753479003906,0.005007028579711914,0.005101680755615234,0.006711006164550781,0.006711006164550781,0.007664203643798828,0.007664203643798828,0.005005359649658203,0.0050907135009765625,0.0050907135009765625,0.0050907135009765625,0.005309104919433594,0.005028247833251953,0.005028247833251953,0.005028247833251953,0.005028247833251953,0.005781650543212891,0.005090236663818359,0.00552678108215332,0.0047380924224853516,0.0064966678619384766,0.005658388137817383,0.006300687789916992,0.006300687789916992,0.006300687789916992,0.004830360412597656,0.004830360412597656,0.004575014114379883,0.005277156829833984,0.005277156829833984,0.0052683353424072266,0.004916191101074219,0.004855632781982422,0.0049021244049072266,0.005120754241943359,0.005120754241943359,0.0049037933349609375,0.0049037933349609375,0.005179882049560547,0.006419658660888672,0.006122589111328125,0.005106687545776367],\"losses\":[0.334506454154526,0.3099538710070052,0.4052905856444058,0.3538699190064275,0.3495479701500647,0.48678966508659344,0.3263791466513958,0.30136530975725273,0.46910054609591895,0.4901153102761814,0.40303043578620795,0.3094280427916326,0.2919095936149524,1,0.471771212817888,0.3217850523943776,0.2991190011736102,0.4694280383980239,0.42018910581593116,0.3397832106484094,0.296116233189415,0.28842711833061657,0.28679427791180645,0.3796079279067221,0.3665175181033426,1,0.32434962959554586,0.30398062611610466,0.32005995630681844,0.3018496250905564,0.43886069632695496,0.298408667937306,0.2918265646313939,0.29061346594670384,0.34373616239887655,0.298270291681178,0.28766143557674007,0.2857472291602529,0.2857472291602529,0.4512730569392442,0.30846863203358965,0.29602859759600186,0.3915590325221969,0.44784593525232674,0.2995987046879761,0.29535055023057877,0.2941282264000265,0.3047324697434132,0.2921725086018278,0.29440498116546443,0.3414022149997884,0.2907057170454426,0.2992112520095167,0.44380534082788603,0.3144511047104627,0.30047509159081753,0.2956503638403828,0.2884547972982935,0.29115774885232387,0.28873154542597895,0.28890220881484424,0.2943634682561088,0.48344557461593424,0.4864160541494503,0.47245848632991533],\"times\":[9.0,27.0,9.0,9.0,9.0,9.0,9.0,27.0,9.0,9.0,9.0,9.0,27.0,9.0,9.0,9.0,27.0,9.0,9.0,9.0,9.0,27.0,81.0,9.0,9.0,9.0,9.0,27.0,9.0,27.0,9.0,9.0,27.0,81.0,9.0,9.0,27.0,81.0,243.0,9.0,27.0,27.0,27.0,27.0,27.0,27.0,81.0,243.0,27.0,81.0,27.0,27.0,81.0,81.0,81.0,81.0,81.0,81.0,243.0,81.0,243.0,243.0,243.0,243.0,243.0],\"x0\":[-2.5065890763359486,-2.5065890763359486,-4.39155001402561,-3.2065904362076485,-3.5055561540449935,-5.332697396163201,-2.605059170531719,-2.605059170531719,-4.641929850961576,-5.88489393744292,-3.7734192966621105,-2.9414285851219595,-2.9414285851219595,-5.386145185815302,-5.255129569615514,-3.0835647413895377,-3.0835647413895377,-4.886926846497815,-2.0337552827432726,-3.0693289223342353,-2.597501429651885,-2.597501429651885,-2.597501429651885,-3.6583101037812837,-3.948889996316198,-3.9790484220444364,-2.2802604688167345,-2.2802604688167345,-2.8749501298075786,-2.8749501298075786,-4.5723018430049684,-2.618670731132614,-2.618670731132614,-2.618670731132614,-2.7103272780184215,-2.4389584731894383,-2.4389584731894383,-2.4389584731894383,-2.4389584731894383,-4.005640324114484,-2.813250744625598,-2.4235367177375675,-4.2418083630408425,-5.012321047419874,-2.861385294309301,-2.4613180705189155,-2.4613180705189155,-2.4613180705189155,-2.741053347908192,-2.741053347908192,-4.145066130035293,-2.4596484133137793,-2.4596484133137793,-5.81942628548133,-3.364637302249942,-2.5005100891808203,-2.2371680185168317,-3.0305899635336218,-3.0305899635336218,-3.18029211845285,-3.18029211845285,-2.0996798353729504,-5.071038723941209,-5.56701824248846,-5.795055637234213],\"x1\":[4.461821665649573,4.461821665649573,4.565362891367393,3.228692950733555,6.682080453489949,4.6463559753686745,5.873161166859299,5.873161166859299,3.339901056210377,5.17839964400616,4.85221290784018,6.8907175535874305,6.8907175535874305,3.03875655614379,4.310772652677306,6.284888069398461,6.284888069398461,5.551236637947849,3.8696364986538727,7.732668311145533,6.344616533424656,6.344616533424656,6.344616533424656,5.207792862950759,7.639302153455494,3.7611812413546466,5.767016639530814,5.767016639530814,6.577661168022782,6.577661168022782,4.698039208048985,6.955007407910499,6.955007407910499,6.955007407910499,6.541339485397708,6.6917451412864875,6.6917451412864875,6.6917451412864875,6.6917451412864875,6.953384666519639,3.9819921429075302,6.58794988296078,3.9798819752756884,3.676931150654368,6.820011063424848,6.9376484078543506,6.9376484078543506,6.9376484078543506,6.750623716384487,6.750623716384487,7.830890483427065,6.813299879031181,6.813299879031181,4.634740536791398,6.0795983890108065,6.966782059498742,7.102875147968517,6.892563744268697,6.892563744268697,6.861411309718278,6.861411309718278,4.9636374641303345,7.934812845671951,7.74160287044974,7.271411779142536],\"x2\":[5.056698253106777,5.056698253106777,6.80641376776804,5.351343247762823,6.247078778942028,4.609203792320564,5.900602185452282,5.900602185452282,5.200425824857474,5.685082083236257,6.53108629732704,6.45111930547508,6.45111930547508,4.925515177694803,6.279752674991901,6.921161190685736,6.921161190685736,4.597774025475708,4.304395318737389,4.291607385609261,4.317481464780085,4.317481464780085,4.317481464780085,7.702262206384037,6.6356163859839175,7.043051984847846,4.7537898775265885,4.7537898775265885,4.050986238565307,4.050986238565307,4.833753354873139,4.52910522835774,4.52910522835774,4.52910522835774,5.985216563117403,5.041646773429198,5.041646773429198,5.041646773429198,5.041646773429198,5.473486145134563,4.89629926468183,4.018975933250277,5.341810937487686,6.2994617573102465,4.129778596157302,7.965576433021855,7.965576433021855,7.965576433021855,7.170450132564399,7.170450132564399,6.15392369400187,6.7050713059400575,6.7050713059400575,7.409125506730863,6.22827694740851,7.367049836852322,7.455475906749537,7.29558399760765,7.29558399760765,7.19027851707858,7.19027851707858,5.251965772720789,4.777892240069113,5.592845461139718,6.6835229229585815],\"x3\":[-1.1339098186925822,-1.1339098186925822,-1.716121020751443,-0.9744191405551481,-3.0364110908090876,-3.0590630446045837,-1.611896527656317,-1.611896527656317,-0.5212975023690745,-2.6149667109840964,-2.776226739066425,-0.2894199659137433,-0.2894199659137433,-1.7741013348886616,-0.7762734604447408,-2.2530655855198676,-2.2530655855198676,-0.588179044116889,-3.8537245040315886,-3.461087400150263,-0.7246768251757483,-0.7246768251757483,-0.7246768251757483,-0.1335320077915978,-2.853360222310532,-1.6223624578756146,-0.7029591084292042,-0.7029591084292042,-0.5681045314663593,-0.5681045314663593,-0.19667071661663504,-0.3705258315383042,-0.3705258315383042,-0.3705258315383042,-0.8705067381762999,-0.2508662057236224,-0.2508662057236224,-0.2508662057236224,-0.2508662057236224,-1.7703276412633224,-0.7852044644013709,-0.42379313272078667,-2.59475476454976,-1.6883681213263606,-0.20081671959651048,-0.36786445574663373,-0.36786445574663373,-0.36786445574663373,-1.0854812676629177,-1.0854812676629177,-0.21870285116487453,-0.5719797100784554,-0.5719797100784554,-2.8176024852168924,-2.6319971256270325,-0.028476140158216534,-0.3365030236827198,-0.20174735337500538,-0.20174735337500538,-0.4061422324695725,-0.4061422324695725,-3.9542735844598735,-0.4583313486066105,-2.063553368266295,-2.9651643870510416],\"x4\":[3.7352004360676117,3.7352004360676117,4.1691131359272475,2.2539640646424757,3.5644096213687586,1.6171970712369985,3.767737482085177,3.767737482085177,4.761333635543263,1.6079261377710985,4.985834103556041,4.62916549063462,4.62916549063462,4.940053646691746,1.5166620597465226,4.311010692123949,4.311010692123949,4.468988087236539,4.2815969505536025,1.79415524663438,4.463311739230007,4.463311739230007,4.463311739230007,2.175922592129343,3.8203767109704945,4.5483699934263955,3.427493490456716,3.427493490456716,4.294611325878515,4.294611325878515,2.2157236672652005,4.242278368997587,4.242278368997587,4.242278368997587,4.914567950320173,3.5760681880072744,3.5760681880072744,3.5760681880072744,3.5760681880072744,4.186620622950883,4.936927610225046,3.8877678752931146,1.801355217152981,4.761014379646836,4.148152494689819,3.048152085463,3.048152085463,3.048152085463,4.487838646274174,4.487838646274174,1.9282429105425147,3.0637829663413005,3.0637829663413005,4.380728610180624,4.571181871258345,3.2610943752637587,3.8983956348112865,4.490882774750068,4.490882774750068,4.103997057576186,4.103997057576186,1.0963204568092517,4.906213790602175,4.352250121413407,2.483711901523497],\"x5\":[0.2988768542025726,0.2988768542025726,0.1330383388947161,0.10052408766201831,0.13846276032774746,0.2949315845317597,0.49600703760094716,0.49600703760094716,0.31433878008511557,0.14365687112701336,0.4551802357515008,0.1587986558174712,0.1587986558174712,0.2433854651727428,0.34533772208315044,0.3291321154217501,0.3291321154217501,0.4593672373559663,0.4302018846887885,0.1559164322669218,0.027538897696750275,0.027538897696750275,0.027538897696750275,0.4598499467490786,0.030228190256577928,0.05331469280904799,0.48781773576874043,0.48781773576874043,0.1792971528650919,0.1792971528650919,0.13063797379053999,0.020481772678285076,0.020481772678285076,0.020481772678285076,0.4546909324268388,0.030860650289091008,0.030860650289091008,0.030860650289091008,0.030860650289091008,0.33934527422531857,0.17989131371446282,0.17468530372590008,0.08600410031760358,0.2396936089693511,0.0782486576049661,0.008460649847695397,0.008460649847695397,0.008460649847695397,0.05378721360846847,0.05378721360846847,0.050544970066844275,0.06452161453963498,0.06452161453963498,0.2972519845470536,0.126293515431755,0.016398081170998738,0.03374414842578564,0.16065712305703558,0.16065712305703558,0.1389781738235218,0.1389781738235218,0.16374903702024013,0.27409995029401096,0.09316593037279447,0.31013359491394216]},\"selected\":{\"id\":\"33740\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"33741\",\"type\":\"UnionRenderers\"}},\"id\":\"33604\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33654\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"33738\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"2\"},\"id\":\"33690\",\"type\":\"GroupFilter\"},{\"attributes\":{\"high\":1,\"low\":0.2857472291602529,\"palette\":[\"#5e4fa2\",\"#3288bd\",\"#66c2a5\",\"#abdda4\",\"#e6f598\",\"#ffffbf\",\"#fee08b\",\"#fdae61\",\"#f46d43\",\"#d53e4f\",\"#9e0142\"]},\"id\":\"33605\",\"type\":\"LinearColorMapper\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33655\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"33739\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"33691\",\"type\":\"GroupFilter\"},{\"attributes\":{\"bounds\":\"auto\",\"callback\":null,\"end\":266.4,\"start\":-14.399999999999999},\"id\":\"33606\",\"type\":\"Range1d\"},{\"attributes\":{\"data_source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"33654\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"33655\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"33652\",\"type\":\"CDSView\"}},\"id\":\"33656\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"33690\",\"type\":\"GroupFilter\"},{\"id\":\"33691\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"33604\",\"type\":\"ColumnDataSource\"}},\"id\":\"33692\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"33740\",\"type\":\"Selection\"},{\"attributes\":{\"bounds\":\"auto\",\"callback\":null,\"end\":1.714252770839747,\"start\":0.2571725062442276},\"id\":\"33607\",\"type\":\"Range1d\"},{\"attributes\":{},\"id\":\"33741\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"1\"},\"id\":\"33657\",\"type\":\"GroupFilter\"},{\"attributes\":{\"below\":[{\"id\":\"33615\",\"type\":\"LinearAxis\"}],\"center\":[{\"id\":\"33619\",\"type\":\"Grid\"},{\"id\":\"33624\",\"type\":\"Grid\"}],\"left\":[{\"id\":\"33620\",\"type\":\"LogAxis\"}],\"plot_height\":500,\"renderers\":[{\"id\":\"33642\",\"type\":\"GlyphRenderer\"},{\"id\":\"33649\",\"type\":\"GlyphRenderer\"},{\"id\":\"33656\",\"type\":\"GlyphRenderer\"},{\"id\":\"33662\",\"type\":\"GlyphRenderer\"},{\"id\":\"33669\",\"type\":\"GlyphRenderer\"},{\"id\":\"33676\",\"type\":\"GlyphRenderer\"},{\"id\":\"33682\",\"type\":\"GlyphRenderer\"},{\"id\":\"33689\",\"type\":\"GlyphRenderer\"},{\"id\":\"33696\",\"type\":\"GlyphRenderer\"},{\"id\":\"33702\",\"type\":\"GlyphRenderer\"},{\"id\":\"33709\",\"type\":\"GlyphRenderer\"},{\"id\":\"33716\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"33732\",\"type\":\"Title\"},\"toolbar\":{\"id\":\"33630\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"33606\",\"type\":\"Range1d\"},\"x_scale\":{\"id\":\"33611\",\"type\":\"LinearScale\"},\"y_range\":{\"id\":\"33607\",\"type\":\"Range1d\"},\"y_scale\":{\"id\":\"33613\",\"type\":\"LogScale\"}},\"id\":\"33608\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"33701\",\"type\":\"MultiLine\"},{\"attributes\":{\"filters\":[{\"id\":\"33657\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"33603\",\"type\":\"ColumnDataSource\"}},\"id\":\"33658\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33694\",\"type\":\"Circle\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"33742\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"text\":\"\"},\"id\":\"33732\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"33611\",\"type\":\"LinearScale\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33695\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"33613\",\"type\":\"LogScale\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"33660\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"33700\",\"type\":\"MultiLine\"},{\"attributes\":{\"axis_label\":\"Time\",\"formatter\":{\"id\":\"33736\",\"type\":\"BasicTickFormatter\"},\"ticker\":{\"id\":\"33616\",\"type\":\"BasicTicker\"}},\"id\":\"33615\",\"type\":\"LinearAxis\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"33661\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"33605\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"33707\",\"type\":\"CircleX\"},{\"attributes\":{},\"id\":\"33616\",\"type\":\"BasicTicker\"},{\"attributes\":{\"data_source\":{\"id\":\"33603\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"33660\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"33661\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"33658\",\"type\":\"CDSView\"}},\"id\":\"33662\",\"type\":\"GlyphRenderer\"}],\"root_ids\":[\"33731\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"e508c477-6165-454c-a384-1337366cf007\",\"roots\":{\"33731\":\"eafdad51-622b-4e61-8d53-8679b68773d1\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "33731" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.bohb_learning_curves();" ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
# aggregated parallel BOHB runs1
# parameters6
Deterministic target algorithmTrue
Optimized run objectivequality
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
budget 9budget 27budget 81budget 243
Total time spent evaluating configurations0.21 sec0.10 sec0.06 sec0.04 sec
Average time per configuration (mean / std)0.01 sec (± 0.01)0.01 sec (± 0.00)0.01 sec (± 0.00)0.01 sec (± 0.00)
# evaluated configurations2718128
# changed parameters (default to incumbent)6666
Configuration originsAcquisition Function : 6, Random : 21Acquisition Function : 9, Random : 9Acquisition Function : 9, Random : 3Acquisition Function : 4, Random : 4
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.overview_table();" ] @@ -701,85 +150,11 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
budget 9budget 27budget 81budget 243
x0-2.5975-2.43896-2.43896-2.43896
x16.344626.691756.691756.69175
x24.317485.041655.041655.04165
x3-0.724677-0.250866-0.250866-0.250866
x44.463313.576073.576073.57607
x50.02753890.03086070.03086070.0308607
Cost0.2960.2880.2860.286
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.bohb_incumbents_per_budget();" ] @@ -800,45 +175,22 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": { "scrolled": false }, "outputs": [], "source": [ - "%%capture\n", "cave.cave_fanova(run='budget_9');" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\"Plot\n", - "\"Plot\n", - "\"Plot\n", - "

\n", - "
\n", - "\"Plot\n", - "\"Plot\n", - "\"Plot\n", - "

\n" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.local_parameter_importance(run='budget_9');" ] @@ -852,375 +204,9 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"1056\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"1056\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '1056' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"1056\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"1056\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"1056\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '1056' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"1056\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"d7e6a015-2086-4778-96fa-0e5a382774be\":{\"roots\":{\"references\":[{\"attributes\":{\"columns\":[{\"id\":\"1058\",\"type\":\"TableColumn\"},{\"id\":\"1059\",\"type\":\"TableColumn\"},{\"id\":\"1060\",\"type\":\"TableColumn\"}],\"height\":140,\"index_position\":null,\"source\":{\"id\":\"1057\",\"type\":\"ColumnDataSource\"},\"view\":{\"id\":\"1062\",\"type\":\"CDSView\"}},\"id\":\"1061\",\"type\":\"DataTable\"},{\"attributes\":{\"callback\":null,\"data\":{\"LPI\":[\"57.30 +/- 36.10\",\"33.79 +/- 36.61\",\"06.75 +/- 20.06\",\"00.00 +/- 0.00\"],\"Parameters\":[\"x0\",\"x1\",\"x2\",\"x4\"],\"fANOVA\":[\"26.27 +/- 27.92\",\"26.23 +/- 34.71\",\"13.51 +/- 31.68\",\"08.77 +/- 15.48\"]},\"selected\":{\"id\":\"1078\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"1077\",\"type\":\"UnionRenderers\"}},\"id\":\"1057\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1072\",\"type\":\"StringEditor\"},{\"attributes\":{},\"id\":\"1073\",\"type\":\"StringFormatter\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"1076\",\"type\":\"StringEditor\"},\"field\":\"LPI\",\"formatter\":{\"id\":\"1075\",\"type\":\"StringFormatter\"},\"title\":\"LPI\",\"width\":100},\"id\":\"1060\",\"type\":\"TableColumn\"},{\"attributes\":{},\"id\":\"1076\",\"type\":\"StringEditor\"},{\"attributes\":{\"source\":{\"id\":\"1057\",\"type\":\"ColumnDataSource\"}},\"id\":\"1062\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"1077\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"1074\",\"type\":\"StringEditor\"},\"field\":\"fANOVA\",\"formatter\":{\"id\":\"1073\",\"type\":\"StringFormatter\"},\"title\":\"fANOVA\",\"width\":100},\"id\":\"1059\",\"type\":\"TableColumn\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"1072\",\"type\":\"StringEditor\"},\"field\":\"Parameters\",\"formatter\":{\"id\":\"1071\",\"type\":\"StringFormatter\"},\"sortable\":false,\"title\":\"Parameters\",\"width\":150},\"id\":\"1058\",\"type\":\"TableColumn\"},{\"attributes\":{},\"id\":\"1074\",\"type\":\"StringEditor\"},{\"attributes\":{},\"id\":\"1078\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"1071\",\"type\":\"StringFormatter\"},{\"attributes\":{},\"id\":\"1075\",\"type\":\"StringFormatter\"}],\"root_ids\":[\"1061\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"d7e6a015-2086-4778-96fa-0e5a382774be\",\"roots\":{\"1061\":\"e325c62f-83a6-40c9-8edb-c7d6a9e88c44\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "1061" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.pimp_comparison_table(run='budget_9');" ] @@ -1234,793 +220,36 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"37574\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"37574\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '37574' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"37574\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"37574\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"37574\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '37574' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"37574\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"45939952-d802-47c3-b67b-89ef065e97a2\":{\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"37303\",\"type\":\"Column\"},{\"id\":\"37311\",\"type\":\"Column\"}]},\"id\":\"37312\",\"type\":\"Row\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35652\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34240\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34249\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34241\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34255\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35623\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35624\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35414\",\"type\":\"CDSView\"}},\"id\":\"35625\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35620\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35659\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35660\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34259\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34260\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35611\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35612\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35399\",\"type\":\"CDSView\"}},\"id\":\"35613\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34237\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34236\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35643\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35644\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35439\",\"type\":\"CDSView\"}},\"id\":\"35645\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34242\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35647\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35648\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35444\",\"type\":\"CDSView\"}},\"id\":\"35649\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35615\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34230\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34256\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35643\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34239\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35644\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34257\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35623\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34261\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35647\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35612\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34251\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35655\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35655\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35656\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35454\",\"type\":\"CDSView\"}},\"id\":\"35657\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35651\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35652\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35449\",\"type\":\"CDSView\"}},\"id\":\"35653\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true]},\"id\":\"35473\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36216\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36217\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35992\",\"type\":\"CDSView\"}},\"id\":\"36218\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34244\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35659\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35660\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35459\",\"type\":\"CDSView\"}},\"id\":\"35661\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36220\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34250\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35616\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34245\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35619\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35620\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35409\",\"type\":\"CDSView\"}},\"id\":\"35621\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34231\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36221\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35651\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,false]},\"id\":\"34232\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"34247\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35608\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34234\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34239\",\"type\":\"GroupFilter\"},{\"id\":\"34240\",\"type\":\"GroupFilter\"},{\"id\":\"34241\",\"type\":\"GroupFilter\"},{\"id\":\"34242\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34243\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35619\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34246\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35471\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34249\",\"type\":\"GroupFilter\"},{\"id\":\"34250\",\"type\":\"GroupFilter\"},{\"id\":\"34251\",\"type\":\"GroupFilter\"},{\"id\":\"34252\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34253\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35607\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35615\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35616\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35404\",\"type\":\"CDSView\"}},\"id\":\"35617\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"34234\",\"type\":\"GroupFilter\"},{\"id\":\"34235\",\"type\":\"GroupFilter\"},{\"id\":\"34236\",\"type\":\"GroupFilter\"},{\"id\":\"34237\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34238\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34262\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34229\",\"type\":\"GroupFilter\"},{\"id\":\"34230\",\"type\":\"GroupFilter\"},{\"id\":\"34231\",\"type\":\"GroupFilter\"},{\"id\":\"34232\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34233\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"34254\",\"type\":\"GroupFilter\"},{\"id\":\"34255\",\"type\":\"GroupFilter\"},{\"id\":\"34256\",\"type\":\"GroupFilter\"},{\"id\":\"34257\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34258\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35656\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34254\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35611\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"34244\",\"type\":\"GroupFilter\"},{\"id\":\"34245\",\"type\":\"GroupFilter\"},{\"id\":\"34246\",\"type\":\"GroupFilter\"},{\"id\":\"34247\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34248\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35624\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34235\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35472\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false]},\"id\":\"34252\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35607\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35608\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35394\",\"type\":\"CDSView\"}},\"id\":\"35609\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35648\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36288\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34413\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34414\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34213\",\"type\":\"CDSView\"}},\"id\":\"34415\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"end\":5,\"js_property_callbacks\":{\"change:value\":[{\"id\":\"37293\",\"type\":\"CustomJS\"}]},\"start\":1,\"title\":\"Until wallclocktime 1.33. Step no. \",\"value\":5},\"id\":\"37291\",\"type\":\"Slider\"},{\"attributes\":{\"filters\":[{\"id\":\"35475\",\"type\":\"GroupFilter\"},{\"id\":\"35476\",\"type\":\"GroupFilter\"},{\"id\":\"35477\",\"type\":\"GroupFilter\"},{\"id\":\"35478\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35479\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34433\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34425\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"34469\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34382\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34417\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34418\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34218\",\"type\":\"CDSView\"}},\"id\":\"34419\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34418\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false]},\"id\":\"35478\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34381\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34421\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34417\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"35480\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34381\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34382\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34173\",\"type\":\"CDSView\"}},\"id\":\"34383\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34413\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"34470\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34430\",\"type\":\"Scatter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"white\",\"white\",\"white\"],\"origin\":[\"Random\",\"Random\",\"Random\",\"Random\"],\"p_x0\":[-2.5065890763359486,-4.39155001402561,-3.2065904362076485,-3.5055561540449935],\"p_x1\":[4.461821665649573,4.565362891367393,3.228692950733555,6.682080453489949],\"p_x2\":[5.056698253106777,6.80641376776804,5.351343247762823,6.247078778942028],\"p_x3\":[-1.1339098186925822,-1.716121020751443,-0.9744191405551481,-3.0364110908090876],\"p_x4\":[3.7352004360676117,4.1691131359272475,2.2539640646424757,3.5644096213687586],\"p_x5\":[0.2988768542025726,0.1330383388947161,0.10052408766201831,0.13846276032774746],\"runs\":[1,1,1,1],\"size\":[12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"ejtrdd5957/HmBecX+7Vv/ITj+nz9Og/kyp+LrP64D8=\",\"dtype\":\"float64\",\"shape\":[4]},\"y\":{\"__ndarray__\":\"6lq3bSUE2r/D62IOrJ3hP9cuc/HZ3+s/dElvVmU70D8=\",\"dtype\":\"float64\",\"shape\":[4]},\"zorder\":[\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"35086\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"35087\",\"type\":\"UnionRenderers\"}},\"id\":\"33967\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"34468\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"34471\",\"type\":\"Selection\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34414\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34386\",\"type\":\"Scatter\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"34473\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"white\"],\"origin\":[\"Random\",\"Random\"],\"p_x0\":[-2.5065890763359486,-4.39155001402561],\"p_x1\":[4.461821665649573,4.565362891367393],\"p_x2\":[5.056698253106777,6.80641376776804],\"p_x3\":[-1.1339098186925822,-1.716121020751443],\"p_x4\":[3.7352004360676117,4.1691131359272475],\"p_x5\":[0.2988768542025726,0.1330383388947161],\"runs\":[1,1],\"size\":[12.0,12.0],\"type\":[\"Incumbent\",\"Candidate\"],\"x\":{\"__ndarray__\":\"ejtrdd5957/HmBecX+7Vvw==\",\"dtype\":\"float64\",\"shape\":[2]},\"y\":{\"__ndarray__\":\"6lq3bSUE2r/D62IOrJ3hPw==\",\"dtype\":\"float64\",\"shape\":[2]},\"zorder\":[\"0\",\"0\"]},\"selected\":{\"id\":\"34471\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"34472\",\"type\":\"UnionRenderers\"}},\"id\":\"33966\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34421\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34422\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34223\",\"type\":\"CDSView\"}},\"id\":\"34423\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34422\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34429\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"34466\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34389\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34390\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34183\",\"type\":\"CDSView\"}},\"id\":\"34391\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"34467\",\"type\":\"Selection\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34385\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34390\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34434\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34377\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34378\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34168\",\"type\":\"CDSView\"}},\"id\":\"34379\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34425\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34426\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34228\",\"type\":\"CDSView\"}},\"id\":\"34427\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34409\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34410\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34208\",\"type\":\"CDSView\"}},\"id\":\"34411\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34426\",\"type\":\"Scatter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\"],\"origin\":[\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\"],\"p_x0\":[-2.5065890763359486,-4.39155001402561,-3.2065904362076485,-3.5055561540449935,-5.332697396163201,-4.641929850961576,-5.88489393744292,-3.7734192966621105],\"p_x1\":[4.461821665649573,4.565362891367393,3.228692950733555,6.682080453489949,4.6463559753686745,3.339901056210377,5.17839964400616,4.85221290784018],\"p_x2\":[5.056698253106777,6.80641376776804,5.351343247762823,6.247078778942028,4.609203792320564,5.200425824857474,5.685082083236257,6.53108629732704],\"p_x3\":[-1.1339098186925822,-1.716121020751443,-0.9744191405551481,-3.0364110908090876,-3.0590630446045837,-0.5212975023690745,-2.6149667109840964,-2.776226739066425],\"p_x4\":[3.7352004360676117,4.1691131359272475,2.2539640646424757,3.5644096213687586,1.6171970712369985,4.761333635543263,1.6079261377710985,4.985834103556041],\"p_x5\":[0.2988768542025726,0.1330383388947161,0.10052408766201831,0.13846276032774746,0.2949315845317597,0.31433878008511557,0.14365687112701336,0.4551802357515008],\"runs\":[1,1,1,1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"ejtrdd5957/HmBecX+7Vv/ITj+nz9Og/kyp+LrP64D+rvCDTUVPov2cmyaCh9/a/9RByJDBtuD9WZISjJp73vw==\",\"dtype\":\"float64\",\"shape\":[8]},\"y\":{\"__ndarray__\":\"6lq3bSUE2r/D62IOrJ3hP9cuc/HZ3+s/dElvVmU70D+nUO2q+4X/P2zG3TL827M/CHLwr/n2/T+P2zRUSHfcPw==\",\"dtype\":\"float64\",\"shape\":[8]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"35721\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"35722\",\"type\":\"UnionRenderers\"}},\"id\":\"33968\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34385\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34386\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34178\",\"type\":\"CDSView\"}},\"id\":\"34387\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34429\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34430\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34233\",\"type\":\"CDSView\"}},\"id\":\"34431\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34389\",\"type\":\"Scatter\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"34267\",\"type\":\"GlyphRenderer\"},{\"id\":\"34271\",\"type\":\"GlyphRenderer\"},{\"id\":\"34275\",\"type\":\"GlyphRenderer\"},{\"id\":\"34279\",\"type\":\"GlyphRenderer\"},{\"id\":\"34283\",\"type\":\"GlyphRenderer\"},{\"id\":\"34287\",\"type\":\"GlyphRenderer\"},{\"id\":\"34291\",\"type\":\"GlyphRenderer\"},{\"id\":\"34295\",\"type\":\"GlyphRenderer\"},{\"id\":\"34299\",\"type\":\"GlyphRenderer\"},{\"id\":\"34303\",\"type\":\"GlyphRenderer\"},{\"id\":\"34307\",\"type\":\"GlyphRenderer\"},{\"id\":\"34311\",\"type\":\"GlyphRenderer\"},{\"id\":\"34315\",\"type\":\"GlyphRenderer\"},{\"id\":\"34319\",\"type\":\"GlyphRenderer\"},{\"id\":\"34323\",\"type\":\"GlyphRenderer\"},{\"id\":\"34327\",\"type\":\"GlyphRenderer\"},{\"id\":\"34331\",\"type\":\"GlyphRenderer\"},{\"id\":\"34335\",\"type\":\"GlyphRenderer\"},{\"id\":\"34339\",\"type\":\"GlyphRenderer\"},{\"id\":\"34343\",\"type\":\"GlyphRenderer\"},{\"id\":\"34347\",\"type\":\"GlyphRenderer\"},{\"id\":\"34351\",\"type\":\"GlyphRenderer\"},{\"id\":\"34355\",\"type\":\"GlyphRenderer\"},{\"id\":\"34359\",\"type\":\"GlyphRenderer\"},{\"id\":\"34363\",\"type\":\"GlyphRenderer\"},{\"id\":\"34367\",\"type\":\"GlyphRenderer\"},{\"id\":\"34371\",\"type\":\"GlyphRenderer\"},{\"id\":\"34375\",\"type\":\"GlyphRenderer\"},{\"id\":\"34379\",\"type\":\"GlyphRenderer\"},{\"id\":\"34383\",\"type\":\"GlyphRenderer\"},{\"id\":\"34387\",\"type\":\"GlyphRenderer\"},{\"id\":\"34391\",\"type\":\"GlyphRenderer\"},{\"id\":\"34395\",\"type\":\"GlyphRenderer\"},{\"id\":\"34399\",\"type\":\"GlyphRenderer\"},{\"id\":\"34403\",\"type\":\"GlyphRenderer\"},{\"id\":\"34407\",\"type\":\"GlyphRenderer\"},{\"id\":\"34411\",\"type\":\"GlyphRenderer\"},{\"id\":\"34415\",\"type\":\"GlyphRenderer\"},{\"id\":\"34419\",\"type\":\"GlyphRenderer\"},{\"id\":\"34423\",\"type\":\"GlyphRenderer\"},{\"id\":\"34427\",\"type\":\"GlyphRenderer\"},{\"id\":\"34431\",\"type\":\"GlyphRenderer\"},{\"id\":\"34435\",\"type\":\"GlyphRenderer\"},{\"id\":\"34439\",\"type\":\"GlyphRenderer\"},{\"id\":\"34443\",\"type\":\"GlyphRenderer\"},{\"id\":\"34447\",\"type\":\"GlyphRenderer\"},{\"id\":\"34451\",\"type\":\"GlyphRenderer\"},{\"id\":\"34455\",\"type\":\"GlyphRenderer\"},{\"id\":\"34880\",\"type\":\"GlyphRenderer\"},{\"id\":\"34884\",\"type\":\"GlyphRenderer\"},{\"id\":\"34888\",\"type\":\"GlyphRenderer\"},{\"id\":\"34892\",\"type\":\"GlyphRenderer\"},{\"id\":\"34896\",\"type\":\"GlyphRenderer\"},{\"id\":\"34900\",\"type\":\"GlyphRenderer\"},{\"id\":\"34904\",\"type\":\"GlyphRenderer\"},{\"id\":\"34908\",\"type\":\"GlyphRenderer\"},{\"id\":\"34912\",\"type\":\"GlyphRenderer\"},{\"id\":\"34916\",\"type\":\"GlyphRenderer\"},{\"id\":\"34920\",\"type\":\"GlyphRenderer\"},{\"id\":\"34924\",\"type\":\"GlyphRenderer\"},{\"id\":\"34928\",\"type\":\"GlyphRenderer\"},{\"id\":\"34932\",\"type\":\"GlyphRenderer\"},{\"id\":\"34936\",\"type\":\"GlyphRenderer\"},{\"id\":\"34940\",\"type\":\"GlyphRenderer\"},{\"id\":\"34944\",\"type\":\"GlyphRenderer\"},{\"id\":\"34948\",\"type\":\"GlyphRenderer\"},{\"id\":\"34952\",\"type\":\"GlyphRenderer\"},{\"id\":\"34956\",\"type\":\"GlyphRenderer\"},{\"id\":\"34960\",\"type\":\"GlyphRenderer\"},{\"id\":\"34964\",\"type\":\"GlyphRenderer\"},{\"id\":\"34968\",\"type\":\"GlyphRenderer\"},{\"id\":\"34972\",\"type\":\"GlyphRenderer\"},{\"id\":\"34976\",\"type\":\"GlyphRenderer\"},{\"id\":\"34980\",\"type\":\"GlyphRenderer\"},{\"id\":\"34984\",\"type\":\"GlyphRenderer\"},{\"id\":\"34988\",\"type\":\"GlyphRenderer\"},{\"id\":\"34992\",\"type\":\"GlyphRenderer\"},{\"id\":\"34996\",\"type\":\"GlyphRenderer\"},{\"id\":\"35000\",\"type\":\"GlyphRenderer\"},{\"id\":\"35004\",\"type\":\"GlyphRenderer\"},{\"id\":\"35008\",\"type\":\"GlyphRenderer\"},{\"id\":\"35012\",\"type\":\"GlyphRenderer\"},{\"id\":\"35016\",\"type\":\"GlyphRenderer\"},{\"id\":\"35020\",\"type\":\"GlyphRenderer\"},{\"id\":\"35024\",\"type\":\"GlyphRenderer\"},{\"id\":\"35028\",\"type\":\"GlyphRenderer\"},{\"id\":\"35032\",\"type\":\"GlyphRenderer\"},{\"id\":\"35036\",\"type\":\"GlyphRenderer\"},{\"id\":\"35040\",\"type\":\"GlyphRenderer\"},{\"id\":\"35044\",\"type\":\"GlyphRenderer\"},{\"id\":\"35048\",\"type\":\"GlyphRenderer\"},{\"id\":\"35052\",\"type\":\"GlyphRenderer\"},{\"id\":\"35056\",\"type\":\"GlyphRenderer\"},{\"id\":\"35060\",\"type\":\"GlyphRenderer\"},{\"id\":\"35064\",\"type\":\"GlyphRenderer\"},{\"id\":\"35068\",\"type\":\"GlyphRenderer\"},{\"id\":\"35513\",\"type\":\"GlyphRenderer\"},{\"id\":\"35517\",\"type\":\"GlyphRenderer\"},{\"id\":\"35521\",\"type\":\"GlyphRenderer\"},{\"id\":\"35525\",\"type\":\"GlyphRenderer\"},{\"id\":\"35529\",\"type\":\"GlyphRenderer\"},{\"id\":\"35533\",\"type\":\"GlyphRenderer\"},{\"id\":\"35537\",\"type\":\"GlyphRenderer\"},{\"id\":\"35541\",\"type\":\"GlyphRenderer\"},{\"id\":\"35545\",\"type\":\"GlyphRenderer\"},{\"id\":\"35549\",\"type\":\"GlyphRenderer\"},{\"id\":\"35553\",\"type\":\"GlyphRenderer\"},{\"id\":\"35557\",\"type\":\"GlyphRenderer\"},{\"id\":\"35561\",\"type\":\"GlyphRenderer\"},{\"id\":\"35565\",\"type\":\"GlyphRenderer\"},{\"id\":\"35569\",\"type\":\"GlyphRenderer\"},{\"id\":\"35573\",\"type\":\"GlyphRenderer\"},{\"id\":\"35577\",\"type\":\"GlyphRenderer\"},{\"id\":\"35581\",\"type\":\"GlyphRenderer\"},{\"id\":\"35585\",\"type\":\"GlyphRenderer\"},{\"id\":\"35589\",\"type\":\"GlyphRenderer\"},{\"id\":\"35593\",\"type\":\"GlyphRenderer\"},{\"id\":\"35597\",\"type\":\"GlyphRenderer\"},{\"id\":\"35601\",\"type\":\"GlyphRenderer\"},{\"id\":\"35605\",\"type\":\"GlyphRenderer\"},{\"id\":\"35609\",\"type\":\"GlyphRenderer\"},{\"id\":\"35613\",\"type\":\"GlyphRenderer\"},{\"id\":\"35617\",\"type\":\"GlyphRenderer\"},{\"id\":\"35621\",\"type\":\"GlyphRenderer\"},{\"id\":\"35625\",\"type\":\"GlyphRenderer\"},{\"id\":\"35629\",\"type\":\"GlyphRenderer\"},{\"id\":\"35633\",\"type\":\"GlyphRenderer\"},{\"id\":\"35637\",\"type\":\"GlyphRenderer\"},{\"id\":\"35641\",\"type\":\"GlyphRenderer\"},{\"id\":\"35645\",\"type\":\"GlyphRenderer\"},{\"id\":\"35649\",\"type\":\"GlyphRenderer\"},{\"id\":\"35653\",\"type\":\"GlyphRenderer\"},{\"id\":\"35657\",\"type\":\"GlyphRenderer\"},{\"id\":\"35661\",\"type\":\"GlyphRenderer\"},{\"id\":\"35665\",\"type\":\"GlyphRenderer\"},{\"id\":\"35669\",\"type\":\"GlyphRenderer\"},{\"id\":\"35673\",\"type\":\"GlyphRenderer\"},{\"id\":\"35677\",\"type\":\"GlyphRenderer\"},{\"id\":\"35681\",\"type\":\"GlyphRenderer\"},{\"id\":\"35685\",\"type\":\"GlyphRenderer\"},{\"id\":\"35689\",\"type\":\"GlyphRenderer\"},{\"id\":\"35693\",\"type\":\"GlyphRenderer\"},{\"id\":\"35697\",\"type\":\"GlyphRenderer\"},{\"id\":\"35701\",\"type\":\"GlyphRenderer\"},{\"id\":\"36166\",\"type\":\"GlyphRenderer\"},{\"id\":\"36170\",\"type\":\"GlyphRenderer\"},{\"id\":\"36174\",\"type\":\"GlyphRenderer\"},{\"id\":\"36178\",\"type\":\"GlyphRenderer\"},{\"id\":\"36182\",\"type\":\"GlyphRenderer\"},{\"id\":\"36186\",\"type\":\"GlyphRenderer\"},{\"id\":\"36190\",\"type\":\"GlyphRenderer\"},{\"id\":\"36194\",\"type\":\"GlyphRenderer\"},{\"id\":\"36198\",\"type\":\"GlyphRenderer\"},{\"id\":\"36202\",\"type\":\"GlyphRenderer\"},{\"id\":\"36206\",\"type\":\"GlyphRenderer\"},{\"id\":\"36210\",\"type\":\"GlyphRenderer\"},{\"id\":\"36214\",\"type\":\"GlyphRenderer\"},{\"id\":\"36218\",\"type\":\"GlyphRenderer\"},{\"id\":\"36222\",\"type\":\"GlyphRenderer\"},{\"id\":\"36226\",\"type\":\"GlyphRenderer\"},{\"id\":\"36230\",\"type\":\"GlyphRenderer\"},{\"id\":\"36234\",\"type\":\"GlyphRenderer\"},{\"id\":\"36238\",\"type\":\"GlyphRenderer\"},{\"id\":\"36242\",\"type\":\"GlyphRenderer\"},{\"id\":\"36246\",\"type\":\"GlyphRenderer\"},{\"id\":\"36250\",\"type\":\"GlyphRenderer\"},{\"id\":\"36254\",\"type\":\"GlyphRenderer\"},{\"id\":\"36258\",\"type\":\"GlyphRenderer\"},{\"id\":\"36262\",\"type\":\"GlyphRenderer\"},{\"id\":\"36266\",\"type\":\"GlyphRenderer\"},{\"id\":\"36270\",\"type\":\"GlyphRenderer\"},{\"id\":\"36274\",\"type\":\"GlyphRenderer\"},{\"id\":\"36278\",\"type\":\"GlyphRenderer\"},{\"id\":\"36282\",\"type\":\"GlyphRenderer\"},{\"id\":\"36286\",\"type\":\"GlyphRenderer\"},{\"id\":\"36290\",\"type\":\"GlyphRenderer\"},{\"id\":\"36294\",\"type\":\"GlyphRenderer\"},{\"id\":\"36298\",\"type\":\"GlyphRenderer\"},{\"id\":\"36302\",\"type\":\"GlyphRenderer\"},{\"id\":\"36306\",\"type\":\"GlyphRenderer\"},{\"id\":\"36310\",\"type\":\"GlyphRenderer\"},{\"id\":\"36314\",\"type\":\"GlyphRenderer\"},{\"id\":\"36318\",\"type\":\"GlyphRenderer\"},{\"id\":\"36322\",\"type\":\"GlyphRenderer\"},{\"id\":\"36326\",\"type\":\"GlyphRenderer\"},{\"id\":\"36330\",\"type\":\"GlyphRenderer\"},{\"id\":\"36334\",\"type\":\"GlyphRenderer\"},{\"id\":\"36338\",\"type\":\"GlyphRenderer\"},{\"id\":\"36342\",\"type\":\"GlyphRenderer\"},{\"id\":\"36346\",\"type\":\"GlyphRenderer\"},{\"id\":\"36350\",\"type\":\"GlyphRenderer\"},{\"id\":\"36354\",\"type\":\"GlyphRenderer\"},{\"id\":\"36839\",\"type\":\"GlyphRenderer\"},{\"id\":\"36843\",\"type\":\"GlyphRenderer\"},{\"id\":\"36847\",\"type\":\"GlyphRenderer\"},{\"id\":\"36851\",\"type\":\"GlyphRenderer\"},{\"id\":\"36855\",\"type\":\"GlyphRenderer\"},{\"id\":\"36859\",\"type\":\"GlyphRenderer\"},{\"id\":\"36863\",\"type\":\"GlyphRenderer\"},{\"id\":\"36867\",\"type\":\"GlyphRenderer\"},{\"id\":\"36871\",\"type\":\"GlyphRenderer\"},{\"id\":\"36875\",\"type\":\"GlyphRenderer\"},{\"id\":\"36879\",\"type\":\"GlyphRenderer\"},{\"id\":\"36883\",\"type\":\"GlyphRenderer\"},{\"id\":\"36887\",\"type\":\"GlyphRenderer\"},{\"id\":\"36891\",\"type\":\"GlyphRenderer\"},{\"id\":\"36895\",\"type\":\"GlyphRenderer\"},{\"id\":\"36899\",\"type\":\"GlyphRenderer\"},{\"id\":\"36903\",\"type\":\"GlyphRenderer\"},{\"id\":\"36907\",\"type\":\"GlyphRenderer\"},{\"id\":\"36911\",\"type\":\"GlyphRenderer\"},{\"id\":\"36915\",\"type\":\"GlyphRenderer\"},{\"id\":\"36919\",\"type\":\"GlyphRenderer\"},{\"id\":\"36923\",\"type\":\"GlyphRenderer\"},{\"id\":\"36927\",\"type\":\"GlyphRenderer\"},{\"id\":\"36931\",\"type\":\"GlyphRenderer\"},{\"id\":\"36935\",\"type\":\"GlyphRenderer\"},{\"id\":\"36939\",\"type\":\"GlyphRenderer\"},{\"id\":\"36943\",\"type\":\"GlyphRenderer\"},{\"id\":\"36947\",\"type\":\"GlyphRenderer\"},{\"id\":\"36951\",\"type\":\"GlyphRenderer\"},{\"id\":\"36955\",\"type\":\"GlyphRenderer\"},{\"id\":\"36959\",\"type\":\"GlyphRenderer\"},{\"id\":\"36963\",\"type\":\"GlyphRenderer\"},{\"id\":\"36967\",\"type\":\"GlyphRenderer\"},{\"id\":\"36971\",\"type\":\"GlyphRenderer\"},{\"id\":\"36975\",\"type\":\"GlyphRenderer\"},{\"id\":\"36979\",\"type\":\"GlyphRenderer\"},{\"id\":\"36983\",\"type\":\"GlyphRenderer\"},{\"id\":\"36987\",\"type\":\"GlyphRenderer\"},{\"id\":\"36991\",\"type\":\"GlyphRenderer\"},{\"id\":\"36995\",\"type\":\"GlyphRenderer\"},{\"id\":\"36999\",\"type\":\"GlyphRenderer\"},{\"id\":\"37003\",\"type\":\"GlyphRenderer\"},{\"id\":\"37007\",\"type\":\"GlyphRenderer\"},{\"id\":\"37011\",\"type\":\"GlyphRenderer\"},{\"id\":\"37015\",\"type\":\"GlyphRenderer\"},{\"id\":\"37019\",\"type\":\"GlyphRenderer\"},{\"id\":\"37023\",\"type\":\"GlyphRenderer\"},{\"id\":\"37027\",\"type\":\"GlyphRenderer\"}],\"tooltips\":[[\"type\",\"@type\"],[\"origin\",\"@origin\"],[\"runs\",\"@runs\"],[\"x0\",\"@p_x0\"],[\"x1\",\"@p_x1\"],[\"x2\",\"@p_x2\"],[\"x3\",\"@p_x3\"],[\"x4\",\"@p_x4\"],[\"x5\",\"@p_x5\"]]},\"id\":\"37289\",\"type\":\"HoverTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36349\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36348\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36352\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36970\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36352\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36353\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36162\",\"type\":\"CDSView\"}},\"id\":\"36354\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36348\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36349\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36157\",\"type\":\"CDSView\"}},\"id\":\"36350\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"36377\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36353\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35042\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35047\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35050\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35035\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35034\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35058\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35046\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35047\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34851\",\"type\":\"CDSView\"}},\"id\":\"35048\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35046\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35030\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35043\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35027\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35030\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35031\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34831\",\"type\":\"CDSView\"}},\"id\":\"35032\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35038\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35039\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34841\",\"type\":\"CDSView\"}},\"id\":\"35040\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35059\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35034\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35035\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34836\",\"type\":\"CDSView\"}},\"id\":\"35036\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35422\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35050\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35051\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34856\",\"type\":\"CDSView\"}},\"id\":\"35052\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35051\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35039\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35054\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35026\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35055\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"34458\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35042\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35043\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34846\",\"type\":\"CDSView\"}},\"id\":\"35044\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35054\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35055\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34861\",\"type\":\"CDSView\"}},\"id\":\"35056\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35026\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35027\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34826\",\"type\":\"CDSView\"}},\"id\":\"35028\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35038\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35031\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36021\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36781\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34225\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36771\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36036\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34219\",\"type\":\"GroupFilter\"},{\"id\":\"34220\",\"type\":\"GroupFilter\"},{\"id\":\"34221\",\"type\":\"GroupFilter\"},{\"id\":\"34222\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34223\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36798\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36796\",\"type\":\"GroupFilter\"},{\"id\":\"36797\",\"type\":\"GroupFilter\"},{\"id\":\"36798\",\"type\":\"GroupFilter\"},{\"id\":\"36799\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36800\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36018\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36776\",\"type\":\"GroupFilter\"},{\"id\":\"36777\",\"type\":\"GroupFilter\"},{\"id\":\"36778\",\"type\":\"GroupFilter\"},{\"id\":\"36779\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36780\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"34214\",\"type\":\"GroupFilter\"},{\"id\":\"34215\",\"type\":\"GroupFilter\"},{\"id\":\"34216\",\"type\":\"GroupFilter\"},{\"id\":\"34217\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34218\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36025\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36033\",\"type\":\"GroupFilter\"},{\"id\":\"36034\",\"type\":\"GroupFilter\"},{\"id\":\"36035\",\"type\":\"GroupFilter\"},{\"id\":\"36036\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36037\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"34207\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36772\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34226\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36043\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34204\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36797\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36029\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36801\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false]},\"id\":\"34212\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36024\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36794\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36038\",\"type\":\"GroupFilter\"},{\"id\":\"36039\",\"type\":\"GroupFilter\"},{\"id\":\"36040\",\"type\":\"GroupFilter\"},{\"id\":\"36041\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36042\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34201\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34202\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36028\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,false,true,true,true,false,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,false,true,true,false,true,false,false,true,false,false,false,false,false,false]},\"id\":\"36784\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34209\",\"type\":\"GroupFilter\"},{\"id\":\"34210\",\"type\":\"GroupFilter\"},{\"id\":\"34211\",\"type\":\"GroupFilter\"},{\"id\":\"34212\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34213\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36023\",\"type\":\"GroupFilter\"},{\"id\":\"36024\",\"type\":\"GroupFilter\"},{\"id\":\"36025\",\"type\":\"GroupFilter\"},{\"id\":\"36026\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36027\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34215\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36033\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36792\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36018\",\"type\":\"GroupFilter\"},{\"id\":\"36019\",\"type\":\"GroupFilter\"},{\"id\":\"36020\",\"type\":\"GroupFilter\"},{\"id\":\"36021\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36022\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35402\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34211\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36788\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34210\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,false,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,true,true,false,true,true,true,true,true,true]},\"id\":\"36799\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36791\",\"type\":\"GroupFilter\"},{\"id\":\"36792\",\"type\":\"GroupFilter\"},{\"id\":\"36793\",\"type\":\"GroupFilter\"},{\"id\":\"36794\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36795\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34214\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36030\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36771\",\"type\":\"GroupFilter\"},{\"id\":\"36772\",\"type\":\"GroupFilter\"},{\"id\":\"36773\",\"type\":\"GroupFilter\"},{\"id\":\"36774\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36775\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36038\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34199\",\"type\":\"GroupFilter\"},{\"id\":\"34200\",\"type\":\"GroupFilter\"},{\"id\":\"34201\",\"type\":\"GroupFilter\"},{\"id\":\"34202\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34203\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36787\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34216\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36782\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34217\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36019\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"36026\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36773\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34221\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36793\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36786\",\"type\":\"GroupFilter\"},{\"id\":\"36787\",\"type\":\"GroupFilter\"},{\"id\":\"36788\",\"type\":\"GroupFilter\"},{\"id\":\"36789\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36790\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34205\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34224\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36023\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34220\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36020\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36776\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34209\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36034\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34229\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36783\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34204\",\"type\":\"GroupFilter\"},{\"id\":\"34205\",\"type\":\"GroupFilter\"},{\"id\":\"34206\",\"type\":\"GroupFilter\"},{\"id\":\"34207\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34208\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36035\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36786\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34222\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36774\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36028\",\"type\":\"GroupFilter\"},{\"id\":\"36029\",\"type\":\"GroupFilter\"},{\"id\":\"36030\",\"type\":\"GroupFilter\"},{\"id\":\"36031\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36032\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34200\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36796\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34206\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36031\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,false,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,true,true,false,true,true,true,true,true,true]},\"id\":\"36779\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,false,true,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36789\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36778\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36791\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36781\",\"type\":\"GroupFilter\"},{\"id\":\"36782\",\"type\":\"GroupFilter\"},{\"id\":\"36783\",\"type\":\"GroupFilter\"},{\"id\":\"36784\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36785\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34219\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36777\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36039\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34224\",\"type\":\"GroupFilter\"},{\"id\":\"34225\",\"type\":\"GroupFilter\"},{\"id\":\"34226\",\"type\":\"GroupFilter\"},{\"id\":\"34227\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34228\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36040\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"34227\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36041\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34872\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false]},\"id\":\"34865\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34882\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34883\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34646\",\"type\":\"CDSView\"}},\"id\":\"34884\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34998\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34999\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34791\",\"type\":\"CDSView\"}},\"id\":\"35000\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34869\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34939\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34963\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34879\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34870\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34886\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34887\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34651\",\"type\":\"CDSView\"}},\"id\":\"34888\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34938\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34939\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34716\",\"type\":\"CDSView\"}},\"id\":\"34940\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34954\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34958\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34954\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34955\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34736\",\"type\":\"CDSView\"}},\"id\":\"34956\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34910\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34878\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34887\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34943\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34966\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"34862\",\"type\":\"GroupFilter\"},{\"id\":\"34863\",\"type\":\"GroupFilter\"},{\"id\":\"34864\",\"type\":\"GroupFilter\"},{\"id\":\"34865\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34866\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34950\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34951\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34731\",\"type\":\"CDSView\"}},\"id\":\"34952\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34890\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34882\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34942\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34942\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34943\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34721\",\"type\":\"CDSView\"}},\"id\":\"34944\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34883\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34959\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34863\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34894\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34947\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34890\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34891\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34656\",\"type\":\"CDSView\"}},\"id\":\"34892\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34950\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34995\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34906\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34907\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34676\",\"type\":\"CDSView\"}},\"id\":\"34908\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34891\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34946\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34994\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34868\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34962\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34955\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34994\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34995\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34786\",\"type\":\"CDSView\"}},\"id\":\"34996\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34875\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34886\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34967\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"34867\",\"type\":\"GroupFilter\"},{\"id\":\"34868\",\"type\":\"GroupFilter\"},{\"id\":\"34869\",\"type\":\"GroupFilter\"},{\"id\":\"34870\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34871\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34966\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34967\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34751\",\"type\":\"CDSView\"}},\"id\":\"34968\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34911\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34999\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34951\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34864\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34958\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34959\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34741\",\"type\":\"CDSView\"}},\"id\":\"34960\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34867\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34946\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34947\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34726\",\"type\":\"CDSView\"}},\"id\":\"34948\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34873\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34878\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34879\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34641\",\"type\":\"CDSView\"}},\"id\":\"34880\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34874\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34998\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"34872\",\"type\":\"GroupFilter\"},{\"id\":\"34873\",\"type\":\"GroupFilter\"},{\"id\":\"34874\",\"type\":\"GroupFilter\"},{\"id\":\"34875\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34876\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34962\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34963\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34746\",\"type\":\"CDSView\"}},\"id\":\"34964\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34305\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34306\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34078\",\"type\":\"CDSView\"}},\"id\":\"34307\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34314\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34317\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34337\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34285\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34286\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34053\",\"type\":\"CDSView\"}},\"id\":\"34287\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34297\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34298\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34068\",\"type\":\"CDSView\"}},\"id\":\"34299\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34321\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34322\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34098\",\"type\":\"CDSView\"}},\"id\":\"34323\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34285\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34286\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34406\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34266\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34330\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34274\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35667\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34317\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34318\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34093\",\"type\":\"CDSView\"}},\"id\":\"34319\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34265\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34322\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34281\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34282\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34048\",\"type\":\"CDSView\"}},\"id\":\"34283\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34405\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34406\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34203\",\"type\":\"CDSView\"}},\"id\":\"34407\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34310\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34321\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34333\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34334\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34113\",\"type\":\"CDSView\"}},\"id\":\"34335\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34405\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34282\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34293\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34294\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34063\",\"type\":\"CDSView\"}},\"id\":\"34295\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34329\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34269\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34289\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34290\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34058\",\"type\":\"CDSView\"}},\"id\":\"34291\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34333\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35667\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35668\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35469\",\"type\":\"CDSView\"}},\"id\":\"35669\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34325\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34290\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34326\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34325\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34326\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34103\",\"type\":\"CDSView\"}},\"id\":\"34327\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34289\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"34472\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34309\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34410\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34318\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34278\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34329\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34330\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34108\",\"type\":\"CDSView\"}},\"id\":\"34331\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34309\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34310\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34083\",\"type\":\"CDSView\"}},\"id\":\"34311\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34907\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34297\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36845\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36845\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36846\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36610\",\"type\":\"CDSView\"}},\"id\":\"36847\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34637\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35528\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34269\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34270\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34033\",\"type\":\"CDSView\"}},\"id\":\"34271\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34281\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34342\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34273\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34274\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34038\",\"type\":\"CDSView\"}},\"id\":\"34275\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34409\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34277\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34278\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34043\",\"type\":\"CDSView\"}},\"id\":\"34279\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34313\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34314\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34088\",\"type\":\"CDSView\"}},\"id\":\"34315\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34402\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"34259\",\"type\":\"GroupFilter\"},{\"id\":\"34260\",\"type\":\"GroupFilter\"},{\"id\":\"34261\",\"type\":\"GroupFilter\"},{\"id\":\"34262\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34263\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34313\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34334\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34265\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34266\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34028\",\"type\":\"CDSView\"}},\"id\":\"34267\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34341\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34342\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34123\",\"type\":\"CDSView\"}},\"id\":\"34343\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34337\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34338\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34118\",\"type\":\"CDSView\"}},\"id\":\"34339\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34294\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36866\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34302\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35668\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34301\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34302\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34073\",\"type\":\"CDSView\"}},\"id\":\"34303\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34273\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34270\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34306\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34338\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34401\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34402\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34198\",\"type\":\"CDSView\"}},\"id\":\"34403\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36846\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34301\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34277\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34298\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34293\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34341\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36220\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36221\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35997\",\"type\":\"CDSView\"}},\"id\":\"36222\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"36078\",\"type\":\"GroupFilter\"},{\"id\":\"36079\",\"type\":\"GroupFilter\"},{\"id\":\"36080\",\"type\":\"GroupFilter\"},{\"id\":\"36081\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36082\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36240\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36241\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36022\",\"type\":\"CDSView\"}},\"id\":\"36242\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34164\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"34147\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36108\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36248\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36249\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36032\",\"type\":\"CDSView\"}},\"id\":\"36250\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36233\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36089\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36284\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36285\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36077\",\"type\":\"CDSView\"}},\"id\":\"36286\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34159\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36237\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"34154\",\"type\":\"GroupFilter\"},{\"id\":\"34155\",\"type\":\"GroupFilter\"},{\"id\":\"34156\",\"type\":\"GroupFilter\"},{\"id\":\"34157\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34158\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"34134\",\"type\":\"GroupFilter\"},{\"id\":\"34135\",\"type\":\"GroupFilter\"},{\"id\":\"34136\",\"type\":\"GroupFilter\"},{\"id\":\"34137\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34138\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36100\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36241\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36280\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36093\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36096\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34156\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36244\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36245\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36027\",\"type\":\"CDSView\"}},\"id\":\"36246\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34146\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34142\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34159\",\"type\":\"GroupFilter\"},{\"id\":\"34160\",\"type\":\"GroupFilter\"},{\"id\":\"34161\",\"type\":\"GroupFilter\"},{\"id\":\"34162\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34163\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36253\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"36086\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36249\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36232\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36090\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34145\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34155\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36284\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34162\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34150\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36598\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36080\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36103\",\"type\":\"GroupFilter\"},{\"id\":\"36104\",\"type\":\"GroupFilter\"},{\"id\":\"36105\",\"type\":\"GroupFilter\"},{\"id\":\"36106\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36107\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36084\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36236\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36237\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36017\",\"type\":\"CDSView\"}},\"id\":\"36238\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36232\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36233\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36012\",\"type\":\"CDSView\"}},\"id\":\"36234\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34140\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36229\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36280\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36281\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36072\",\"type\":\"CDSView\"}},\"id\":\"36282\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34161\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36091\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36093\",\"type\":\"GroupFilter\"},{\"id\":\"36094\",\"type\":\"GroupFilter\"},{\"id\":\"36095\",\"type\":\"GroupFilter\"},{\"id\":\"36096\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36097\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34160\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34144\",\"type\":\"GroupFilter\"},{\"id\":\"34145\",\"type\":\"GroupFilter\"},{\"id\":\"34146\",\"type\":\"GroupFilter\"},{\"id\":\"34147\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34148\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"36106\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36081\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,false,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,true,true,false,true,true,true,true,true,true]},\"id\":\"36599\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36228\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36229\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36007\",\"type\":\"CDSView\"}},\"id\":\"36230\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36103\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36245\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34157\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36240\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36236\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34139\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34137\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36094\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34139\",\"type\":\"GroupFilter\"},{\"id\":\"34140\",\"type\":\"GroupFilter\"},{\"id\":\"34141\",\"type\":\"GroupFilter\"},{\"id\":\"34142\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34143\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36085\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36248\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34154\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36252\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36079\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34151\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36099\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34165\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36104\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36228\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36088\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34149\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36078\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36105\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34149\",\"type\":\"GroupFilter\"},{\"id\":\"34150\",\"type\":\"GroupFilter\"},{\"id\":\"34151\",\"type\":\"GroupFilter\"},{\"id\":\"34152\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34153\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36095\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34141\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36224\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36225\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36002\",\"type\":\"CDSView\"}},\"id\":\"36226\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"36083\",\"type\":\"GroupFilter\"},{\"id\":\"36084\",\"type\":\"GroupFilter\"},{\"id\":\"36085\",\"type\":\"GroupFilter\"},{\"id\":\"36086\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36087\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34144\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36281\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36098\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36088\",\"type\":\"GroupFilter\"},{\"id\":\"36089\",\"type\":\"GroupFilter\"},{\"id\":\"36090\",\"type\":\"GroupFilter\"},{\"id\":\"36091\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36092\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36225\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36101\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36224\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,false]},\"id\":\"34152\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36083\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36244\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"36098\",\"type\":\"GroupFilter\"},{\"id\":\"36099\",\"type\":\"GroupFilter\"},{\"id\":\"36100\",\"type\":\"GroupFilter\"},{\"id\":\"36101\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36102\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"34167\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36285\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34166\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34374\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34345\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34346\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34128\",\"type\":\"CDSView\"}},\"id\":\"34347\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34349\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34370\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34393\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34365\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34366\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34153\",\"type\":\"CDSView\"}},\"id\":\"34367\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34373\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34374\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34163\",\"type\":\"CDSView\"}},\"id\":\"34375\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34373\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34369\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34377\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34394\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34378\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34393\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34394\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34188\",\"type\":\"CDSView\"}},\"id\":\"34395\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34349\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34350\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34133\",\"type\":\"CDSView\"}},\"id\":\"34351\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34350\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34345\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34346\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34369\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34370\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34158\",\"type\":\"CDSView\"}},\"id\":\"34371\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34362\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34397\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34353\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34361\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34401\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34366\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34358\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34365\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34639\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34353\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34354\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34138\",\"type\":\"CDSView\"}},\"id\":\"34355\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34638\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34361\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34362\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34148\",\"type\":\"CDSView\"}},\"id\":\"34363\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34354\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34357\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34358\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34143\",\"type\":\"CDSView\"}},\"id\":\"34359\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34357\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34397\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34398\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34193\",\"type\":\"CDSView\"}},\"id\":\"34399\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34398\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36941\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36938\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36953\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36937\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36953\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36954\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36745\",\"type\":\"CDSView\"}},\"id\":\"36955\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35527\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36934\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36925\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36926\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36710\",\"type\":\"CDSView\"}},\"id\":\"36927\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36929\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36930\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36715\",\"type\":\"CDSView\"}},\"id\":\"36931\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36308\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36309\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36107\",\"type\":\"CDSView\"}},\"id\":\"36310\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36937\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36938\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36725\",\"type\":\"CDSView\"}},\"id\":\"36939\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36933\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36954\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36929\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36933\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36934\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36720\",\"type\":\"CDSView\"}},\"id\":\"36935\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36930\",\"type\":\"Scatter\"},{\"attributes\":{\"active\":0,\"callback\":{\"id\":\"37299\",\"type\":\"CustomJS\"},\"labels\":[\"budget 9\",\"budget 27\",\"budget 81\",\"budget 243\"]},\"id\":\"37300\",\"type\":\"RadioButtonGroup\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36850\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34844\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36901\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34849\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35421\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36881\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36881\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36882\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36655\",\"type\":\"CDSView\"}},\"id\":\"36883\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34850\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true]},\"id\":\"35433\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"children\":[{\"id\":\"37306\",\"type\":\"WidgetBox\"},{\"id\":\"37307\",\"type\":\"WidgetBox\"}]},\"id\":\"37308\",\"type\":\"Row\"},{\"attributes\":{\"filters\":[{\"id\":\"34847\",\"type\":\"GroupFilter\"},{\"id\":\"34848\",\"type\":\"GroupFilter\"},{\"id\":\"34849\",\"type\":\"GroupFilter\"},{\"id\":\"34850\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34851\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36853\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36925\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36909\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"35425\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35431\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36917\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"34842\",\"type\":\"GroupFilter\"},{\"id\":\"34843\",\"type\":\"GroupFilter\"},{\"id\":\"34844\",\"type\":\"GroupFilter\"},{\"id\":\"34845\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34846\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36870\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35406\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36981\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36982\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36780\",\"type\":\"CDSView\"}},\"id\":\"36983\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36862\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36914\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36985\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36989\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36990\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36790\",\"type\":\"CDSView\"}},\"id\":\"36991\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36861\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36926\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35432\",\"type\":\"GroupFilter\"},{\"attributes\":{\"children\":[{\"id\":\"37298\",\"type\":\"Button\"}],\"width\":100},\"id\":\"37307\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36882\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34834\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36962\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36997\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36993\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36994\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36795\",\"type\":\"CDSView\"}},\"id\":\"36995\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34832\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34854\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35417\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36854\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35407\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36857\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"37304\",\"type\":\"WidgetBox\"},{\"id\":\"37305\",\"type\":\"WidgetBox\"},{\"id\":\"37308\",\"type\":\"Row\"},{\"id\":\"37309\",\"type\":\"WidgetBox\"},{\"id\":\"37310\",\"type\":\"WidgetBox\"}]},\"id\":\"37311\",\"type\":\"Column\"},{\"attributes\":{\"filters\":[{\"id\":\"35420\",\"type\":\"GroupFilter\"},{\"id\":\"35421\",\"type\":\"GroupFilter\"},{\"id\":\"35422\",\"type\":\"GroupFilter\"},{\"id\":\"35423\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35424\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36905\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36906\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36685\",\"type\":\"CDSView\"}},\"id\":\"36907\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36969\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36970\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36765\",\"type\":\"CDSView\"}},\"id\":\"36971\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36873\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36921\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36957\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36958\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36750\",\"type\":\"CDSView\"}},\"id\":\"36959\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34833\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"35405\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36949\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36969\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"35430\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34857\",\"type\":\"GroupFilter\"},{\"id\":\"34858\",\"type\":\"GroupFilter\"},{\"id\":\"34859\",\"type\":\"GroupFilter\"},{\"id\":\"34860\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34861\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36913\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36914\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36695\",\"type\":\"CDSView\"}},\"id\":\"36915\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35428\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36917\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36918\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36700\",\"type\":\"CDSView\"}},\"id\":\"36919\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36877\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36974\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34852\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36869\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36873\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36874\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36645\",\"type\":\"CDSView\"}},\"id\":\"36875\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36978\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36905\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true]},\"id\":\"34840\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36965\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36966\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36760\",\"type\":\"CDSView\"}},\"id\":\"36967\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"35410\",\"type\":\"GroupFilter\"},{\"id\":\"35411\",\"type\":\"GroupFilter\"},{\"id\":\"35412\",\"type\":\"GroupFilter\"},{\"id\":\"35413\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35414\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36910\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34848\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35415\",\"type\":\"GroupFilter\"},{\"id\":\"35416\",\"type\":\"GroupFilter\"},{\"id\":\"35417\",\"type\":\"GroupFilter\"},{\"id\":\"35418\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35419\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36890\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34857\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36898\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36994\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35426\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36889\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36890\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36665\",\"type\":\"CDSView\"}},\"id\":\"36891\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36985\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36986\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36785\",\"type\":\"CDSView\"}},\"id\":\"36987\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"children\":[{\"id\":\"37291\",\"type\":\"Slider\"}]},\"id\":\"37302\",\"type\":\"WidgetBox\"},{\"attributes\":{\"booleans\":[true,false,false,false]},\"id\":\"34845\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35427\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36878\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35403\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35405\",\"type\":\"GroupFilter\"},{\"id\":\"35406\",\"type\":\"GroupFilter\"},{\"id\":\"35407\",\"type\":\"GroupFilter\"},{\"id\":\"35408\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35409\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36966\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"34852\",\"type\":\"GroupFilter\"},{\"id\":\"34853\",\"type\":\"GroupFilter\"},{\"id\":\"34854\",\"type\":\"GroupFilter\"},{\"id\":\"34855\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34856\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36965\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36986\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35423\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36897\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36898\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36675\",\"type\":\"CDSView\"}},\"id\":\"36899\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"34827\",\"type\":\"GroupFilter\"},{\"id\":\"34828\",\"type\":\"GroupFilter\"},{\"id\":\"34829\",\"type\":\"GroupFilter\"},{\"id\":\"34830\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34831\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36918\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36945\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34838\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36941\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36942\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36730\",\"type\":\"CDSView\"}},\"id\":\"36943\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35411\",\"type\":\"GroupFilter\"},{\"attributes\":{\"children\":[{\"id\":\"37292\",\"type\":\"CheckboxButtonGroup\"}]},\"id\":\"37305\",\"type\":\"WidgetBox\"},{\"attributes\":{\"filters\":[{\"id\":\"34837\",\"type\":\"GroupFilter\"},{\"id\":\"34838\",\"type\":\"GroupFilter\"},{\"id\":\"34839\",\"type\":\"GroupFilter\"},{\"id\":\"34840\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34841\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"35425\",\"type\":\"GroupFilter\"},{\"id\":\"35426\",\"type\":\"GroupFilter\"},{\"id\":\"35427\",\"type\":\"GroupFilter\"},{\"id\":\"35428\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35429\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36958\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36981\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36853\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36854\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36620\",\"type\":\"CDSView\"}},\"id\":\"36855\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"args\":{\"colormapper\":{\"id\":\"34000\",\"type\":\"LinearColorMapper\"},\"glyph0\":{\"id\":\"34004\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"34009\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"34014\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"34019\",\"type\":\"GlyphRenderer\"}},\"code\":\"var len_labels = 4,glyphs = [ glyph0,glyph1,glyph2,glyph3],mins = [0.30862802549295726, 0.29219943611418503, 0.29284412457583464, 0.321025520700123],maxs = [0.6322963062299475, 0.34333535158313333, 0.33655273192538104, 0.39500368979975353];\\n for (i = 0; i < len_labels; i++) {\\n if (cb_obj.active === i) {\\n // console.log('Setting to true: ' + i);\\n glyphs[i].visible = true;\\n colormapper.low = mins[i];\\n colormapper.high = maxs[i];\\n } else {\\n // console.log('Setting to false: ' + i);\\n glyphs[i].visible = false;\\n }\\n }\\n \"},\"id\":\"37299\",\"type\":\"CustomJS\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34835\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"children\":[{\"id\":\"37301\",\"type\":\"Div\"}]},\"id\":\"37309\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36849\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36897\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36885\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36886\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36660\",\"type\":\"CDSView\"}},\"id\":\"36887\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36982\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34858\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34862\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36877\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36878\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36650\",\"type\":\"CDSView\"}},\"id\":\"36879\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36977\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36978\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36775\",\"type\":\"CDSView\"}},\"id\":\"36979\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34853\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36993\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34843\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36886\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"35410\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35408\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36989\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34859\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36913\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36942\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"37294\",\"type\":\"Div\"}]},\"id\":\"37304\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36957\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35412\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36901\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36902\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36680\",\"type\":\"CDSView\"}},\"id\":\"36903\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36857\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36858\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36625\",\"type\":\"CDSView\"}},\"id\":\"36859\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34842\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35416\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36849\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36850\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36615\",\"type\":\"CDSView\"}},\"id\":\"36851\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36949\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36950\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36740\",\"type\":\"CDSView\"}},\"id\":\"36951\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36961\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36962\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36755\",\"type\":\"CDSView\"}},\"id\":\"36963\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34839\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36756\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36973\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36885\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36961\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34847\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35430\",\"type\":\"GroupFilter\"},{\"id\":\"35431\",\"type\":\"GroupFilter\"},{\"id\":\"35432\",\"type\":\"GroupFilter\"},{\"id\":\"35433\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35434\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36893\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36946\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"34832\",\"type\":\"GroupFilter\"},{\"id\":\"34833\",\"type\":\"GroupFilter\"},{\"id\":\"34834\",\"type\":\"GroupFilter\"},{\"id\":\"34835\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34836\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36889\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36894\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36977\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36909\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36910\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36690\",\"type\":\"CDSView\"}},\"id\":\"36911\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false]},\"id\":\"35418\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36861\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36862\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36630\",\"type\":\"CDSView\"}},\"id\":\"36863\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true]},\"id\":\"35413\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36990\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"33971\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"37302\",\"type\":\"WidgetBox\"}]},\"id\":\"37303\",\"type\":\"Column\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36921\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36922\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36705\",\"type\":\"CDSView\"}},\"id\":\"36923\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36922\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36869\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36870\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36640\",\"type\":\"CDSView\"}},\"id\":\"36871\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36945\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36946\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36735\",\"type\":\"CDSView\"}},\"id\":\"36947\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"35400\",\"type\":\"GroupFilter\"},{\"id\":\"35401\",\"type\":\"GroupFilter\"},{\"id\":\"35402\",\"type\":\"GroupFilter\"},{\"id\":\"35403\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35404\",\"type\":\"CDSView\"},{\"attributes\":{\"children\":[{\"id\":\"37296\",\"type\":\"Button\"}],\"width\":100},\"id\":\"37306\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36874\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34837\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36973\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36974\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36770\",\"type\":\"CDSView\"}},\"id\":\"36975\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36858\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34855\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"35415\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36893\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36894\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36670\",\"type\":\"CDSView\"}},\"id\":\"36895\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36902\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36950\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true]},\"id\":\"34860\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"35420\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36906\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"37300\",\"type\":\"RadioButtonGroup\"}]},\"id\":\"37310\",\"type\":\"WidgetBox\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34739\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34764\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34750\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34749\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true]},\"id\":\"34740\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34754\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34742\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34752\",\"type\":\"GroupFilter\"},{\"id\":\"34753\",\"type\":\"GroupFilter\"},{\"id\":\"34754\",\"type\":\"GroupFilter\"},{\"id\":\"34755\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34756\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34747\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34757\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34763\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34768\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34742\",\"type\":\"GroupFilter\"},{\"id\":\"34743\",\"type\":\"GroupFilter\"},{\"id\":\"34744\",\"type\":\"GroupFilter\"},{\"id\":\"34745\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34746\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true]},\"id\":\"34760\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"36376\",\"type\":\"Selection\"},{\"attributes\":{\"booleans\":[true,false,false,false]},\"id\":\"34745\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34753\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34737\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34757\",\"type\":\"GroupFilter\"},{\"id\":\"34758\",\"type\":\"GroupFilter\"},{\"id\":\"34759\",\"type\":\"GroupFilter\"},{\"id\":\"34760\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34761\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34759\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34758\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34767\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34743\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34738\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34747\",\"type\":\"GroupFilter\"},{\"id\":\"34748\",\"type\":\"GroupFilter\"},{\"id\":\"34749\",\"type\":\"GroupFilter\"},{\"id\":\"34750\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34751\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34748\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34752\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34755\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34762\",\"type\":\"GroupFilter\"},{\"id\":\"34763\",\"type\":\"GroupFilter\"},{\"id\":\"34764\",\"type\":\"GroupFilter\"},{\"id\":\"34765\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34766\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,false,false,false]},\"id\":\"34765\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34737\",\"type\":\"GroupFilter\"},{\"id\":\"34738\",\"type\":\"GroupFilter\"},{\"id\":\"34739\",\"type\":\"GroupFilter\"},{\"id\":\"34740\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34741\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34744\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34762\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"35440\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34026\",\"type\":\"GroupFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"34000\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":5.384820992362682},\"dw\":{\"units\":\"data\",\"value\":5.992415826620112},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-3.2331597087943926},\"y\":{\"value\":-2.414610280231525}},\"id\":\"34003\",\"type\":\"Image\"},{\"attributes\":{\"filters\":[{\"id\":\"35455\",\"type\":\"GroupFilter\"},{\"id\":\"35456\",\"type\":\"GroupFilter\"},{\"id\":\"35457\",\"type\":\"GroupFilter\"},{\"id\":\"35458\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35459\",\"type\":\"CDSView\"},{\"attributes\":{\"source\":{\"id\":\"34006\",\"type\":\"ColumnDataSource\"}},\"id\":\"34010\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"33981\",\"type\":\"BasicTicker\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"35445\",\"type\":\"GroupFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"34000\",\"type\":\"LinearColorMapper\"},\"formatter\":{\"id\":\"34462\",\"type\":\"BasicTickFormatter\"},\"label_standoff\":12,\"location\":[0,0],\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"34021\",\"type\":\"BasicTicker\"}},\"id\":\"34022\",\"type\":\"ColorBar\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35443\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[27,30]},{\"__ndarray__\":\"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CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/nlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZA\",\"dtype\":\"float64\",\"shape\":[27,30]},{\"__ndarray__\":\"X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z/2HpnXO/vSP+BAeEj1vdI/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z/2HpnXO/vSP+BAeEj1vdI/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z/2HpnXO/vSP+BAeEj1vdI/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z/2HpnXO/vSP+BAeEj1vdI/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z/2HpnXO/vSP+BAeEj1vdI/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z/2HpnXO/vSP+BAeEj1vdI/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z9f7WUvDVzTP1/tZS8NXNM/X+1lLw1c0z/2HpnXO/vSP+BAeEj1vdI/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/1JyyxXXH0j/UnLLFdcfSP9ScssV1x9I/WTz329lq0z9ZPPfb2WrTP1k899vZatM/WTz329lq0z9ZPPfb2WrTP1k899vZatM/WTz329lq0z9ZPPfb2WrTP1k899vZatM/WTz329lq0z9ZPPfb2WrTP1k899vZatM/WTz329lq0z9ZPPfb2WrTP1k899vZatM/WTz329lq0z9ZPPfb2WrTP1k899vZatM/WTz329lq0z/vbSqECArTP9qPCfXBzNI/zutDckLW0j/O60NyQtbSP87rQ3JC1tI/zutDckLW0j/O60NyQtbSP87rQ3JC1tI/zutDckLW0j/O60NyQtbSP87rQ3JC1tI/eMVuQRuD0z94xW5BG4PTP3jFbkEbg9M/eMVuQRuD0z94xW5BG4PTP3jFbkEbg9M/eMVuQRuD0z94xW5BG4PTP3jFbkEbg9M/eMVuQRuD0z94xW5BG4PTP3jFbkEbg9M/eMVuQRuD0z94xW5BG4PTP3jFbkEbg9M/eMVuQRuD0z94xW5BG4PTP3jFbkEbg9M/eMVuQRuD0z8O96HpSSLTP/kYgVoD5dI/7XS714Pu0j/tdLvXg+7SP+10u9eD7tI/7XS714Pu0j/tdLvXg+7SP+10u9eD7tI/7XS714Pu0j/tdLvXg+7SP+10u9eD7tI/XrxC9ieH1D9evEL2J4fUP168QvYnh9Q/XrxC9ieH1D9evEL2J4fUP168QvYnh9Q/XrxC9ieH1D9evEL2J4fUP168QvYnh9Q/XrxC9ieH1D9evEL2J4fUP168QvYnh9Q/XrxC9ieH1D9evEL2J4fUP168QvYnh9Q/XrxC9ieH1D9evEL2J4fUP168QvYnh9Q/XrxC9ieH1D/17XWeVibUP+APVQ8Q6dM/02uPjJDy0z/Ta4+MkPLTP9Nrj4yQ8tM/02uPjJDy0z/Ta4+MkPLTP9Nrj4yQ8tM/02uPjJDy0z/Ta4+MkPLTP9Nrj4yQ8tM/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T8S7z94FIrVPxLvP3gUitU/Eu8/eBSK1T+pIHMgQynVP5NCUpH869Q/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/h56MDn311D+HnowOffXUP4eejA599dQ/\",\"dtype\":\"float64\",\"shape\":[27,30]}]},\"selected\":{\"id\":\"34467\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"34468\",\"type\":\"UnionRenderers\"}},\"id\":\"34011\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"filters\":[{\"id\":\"35440\",\"type\":\"GroupFilter\"},{\"id\":\"35441\",\"type\":\"GroupFilter\"},{\"id\":\"35442\",\"type\":\"GroupFilter\"},{\"id\":\"35443\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35444\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"33990\",\"type\":\"SaveTool\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"35450\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"34016\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34017\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34018\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"34020\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"34019\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35441\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35435\",\"type\":\"GroupFilter\"},{\"id\":\"35436\",\"type\":\"GroupFilter\"},{\"id\":\"35437\",\"type\":\"GroupFilter\"},{\"id\":\"35438\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35439\",\"type\":\"CDSView\"},{\"attributes\":{\"desired_num_ticks\":15},\"id\":\"34021\",\"type\":\"BasicTicker\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34030\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35442\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36742\",\"type\":\"GroupFilter\"},{\"attributes\":{\"text\":\"\",\"text_font_size\":{\"value\":\"15pt\"}},\"id\":\"33999\",\"type\":\"Title\"},{\"attributes\":{\"source\":{\"id\":\"34016\",\"type\":\"ColumnDataSource\"}},\"id\":\"34020\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34025\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34034\",\"type\":\"GroupFilter\"},{\"id\":\"34035\",\"type\":\"GroupFilter\"},{\"id\":\"34036\",\"type\":\"GroupFilter\"},{\"id\":\"34037\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34038\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"34001\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34002\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34003\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"34005\",\"type\":\"CDSView\"}},\"id\":\"34004\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"source\":{\"id\":\"34001\",\"type\":\"ColumnDataSource\"}},\"id\":\"34005\",\"type\":\"CDSView\"},{\"attributes\":{\"color_mapper\":{\"id\":\"34000\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":5.384820992362682},\"dw\":{\"units\":\"data\",\"value\":5.992415826620112},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-3.2331597087943926},\"y\":{\"value\":-2.414610280231525}},\"id\":\"34018\",\"type\":\"Image\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"aCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARA\",\"dtype\":\"float64\",\"shape\":[27,30]},{\"__ndarray__\":\"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CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/nlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZA\",\"dtype\":\"float64\",\"shape\":[27,30]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[27,30]}]},\"selected\":{\"id\":\"34463\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"34464\",\"type\":\"UnionRenderers\"}},\"id\":\"34001\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"33990\",\"type\":\"SaveTool\"},{\"id\":\"33991\",\"type\":\"BoxZoomTool\"},{\"id\":\"33992\",\"type\":\"WheelZoomTool\"},{\"id\":\"33993\",\"type\":\"ResetTool\"},{\"id\":\"37289\",\"type\":\"HoverTool\"}]},\"id\":\"33994\",\"type\":\"Toolbar\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34024\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35461\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35465\",\"type\":\"GroupFilter\"},{\"id\":\"35466\",\"type\":\"GroupFilter\"},{\"id\":\"35467\",\"type\":\"GroupFilter\"},{\"id\":\"35468\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35469\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"33993\",\"type\":\"ResetTool\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35448\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"34000\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":5.384820992362682},\"dw\":{\"units\":\"data\",\"value\":5.992415826620112},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-3.2331597087943926},\"y\":{\"value\":-2.414610280231525}},\"id\":\"34017\",\"type\":\"Image\"},{\"attributes\":{},\"id\":\"33992\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"ticker\":{\"id\":\"33981\",\"type\":\"BasicTicker\"}},\"id\":\"33984\",\"type\":\"Grid\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35466\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35451\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"35460\",\"type\":\"GroupFilter\"},{\"attributes\":{\"dimension\":1,\"ticker\":{\"id\":\"33986\",\"type\":\"BasicTicker\"}},\"id\":\"33989\",\"type\":\"Grid\"},{\"attributes\":{\"filters\":[{\"id\":\"34029\",\"type\":\"GroupFilter\"},{\"id\":\"34030\",\"type\":\"GroupFilter\"},{\"id\":\"34031\",\"type\":\"GroupFilter\"},{\"id\":\"34032\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34033\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34305\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35452\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"aCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARAaCJg1oLdCcDOiMY86UMIwDTvLKNPqgbAmlWTCbYQBcAAvPlvHHcDwGYiYNaC3QHAzIjGPOlDAMBk3llGn1T9vzCrJhNsIfq//Hfz3zju9r/IRMCsBbvzv5QRjXnSh/C/wLyzjD6p6r9YVk0m2ELkv+DfzX/juNu/ICYCZi3Yzb8AMqIxT/qgvyANMc0FW8U/YFNls0961z8YEBlAjiPiP4B2f6b0ieg/6NzlDFvw7j+oIaa5YKvyP9xU2eyT3vU/EIgMIMcR+T9Euz9T+kT8P3jucoYteP8/1hDTXLBVAUBwqmz2Se8CQApEBpDjiARA\",\"dtype\":\"float64\",\"shape\":[27,30]},{\"__ndarray__\":\"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CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/nlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZA\",\"dtype\":\"float64\",\"shape\":[27,30]},{\"__ndarray__\":\"EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/Ht/jwYSy1z8e3+PBhLLXP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/Ht/jwYSy1z8e3+PBhLLXP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/Ht/jwYSy1z8e3+PBhLLXP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/Ht/jwYSy1z8e3+PBhLLXP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/Ht/jwYSy1z8e3+PBhLLXP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/Ht/jwYSy1z8e3+PBhLLXP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/Ht/jwYSy1z8e3+PBhLLXP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/Ht/jwYSy1z8e3+PBhLLXP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/EYoeeKro2D8Rih54qujYPxGKHniq6Ng/Ht/jwYSy1z8e3+PBhLLXP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/VqgloK6L1D9WqCWgrovUP1aoJaCui9Q/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/NFBfjr1H2T80UF+OvUfZPzRQX469R9k/QaUk2JcR2D9BpSTYlxHYP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/em5mtsHq1D96bma2werUP3puZrbB6tQ/\",\"dtype\":\"float64\",\"shape\":[27,30]}]},\"selected\":{\"id\":\"34469\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"34470\",\"type\":\"UnionRenderers\"}},\"id\":\"34016\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35457\",\"type\":\"GroupFilter\"},{\"attributes\":{\"axis_label\":\"MDS-X\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"34460\",\"type\":\"BasicTickFormatter\"},\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"33981\",\"type\":\"BasicTicker\"}},\"id\":\"33980\",\"type\":\"LinearAxis\"},{\"attributes\":{\"filters\":[{\"id\":\"35460\",\"type\":\"GroupFilter\"},{\"id\":\"35461\",\"type\":\"GroupFilter\"},{\"id\":\"35462\",\"type\":\"GroupFilter\"},{\"id\":\"35463\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35464\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"35455\",\"type\":\"GroupFilter\"},{\"attributes\":{\"axis_label\":\"MDS-Y\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"34458\",\"type\":\"BasicTickFormatter\"},\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"33986\",\"type\":\"BasicTicker\"}},\"id\":\"33985\",\"type\":\"LinearAxis\"},{\"attributes\":{\"booleans\":[true,false]},\"id\":\"34032\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"source\":{\"id\":\"34011\",\"type\":\"ColumnDataSource\"}},\"id\":\"34015\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35456\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34029\",\"type\":\"GroupFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"34000\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":5.384820992362682},\"dw\":{\"units\":\"data\",\"value\":5.992415826620112},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-3.2331597087943926},\"y\":{\"value\":-2.414610280231525}},\"id\":\"34002\",\"type\":\"Image\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34031\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35467\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"34011\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34012\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34013\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"34015\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"34014\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"33986\",\"type\":\"BasicTicker\"},{\"attributes\":{\"color_mapper\":{\"id\":\"34000\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":5.384820992362682},\"dw\":{\"units\":\"data\",\"value\":5.992415826620112},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-3.2331597087943926},\"y\":{\"value\":-2.414610280231525}},\"id\":\"34007\",\"type\":\"Image\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35446\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"35465\",\"type\":\"GroupFilter\"},{\"attributes\":{\"background_fill_color\":{\"value\":null},\"below\":[{\"id\":\"33980\",\"type\":\"LinearAxis\"}],\"border_fill_color\":{\"value\":null},\"center\":[{\"id\":\"33984\",\"type\":\"Grid\"},{\"id\":\"33989\",\"type\":\"Grid\"}],\"left\":[{\"id\":\"33985\",\"type\":\"LinearAxis\"}],\"plot_height\":500,\"renderers\":[{\"id\":\"34004\",\"type\":\"GlyphRenderer\"},{\"id\":\"34009\",\"type\":\"GlyphRenderer\"},{\"id\":\"34014\",\"type\":\"GlyphRenderer\"},{\"id\":\"34019\",\"type\":\"GlyphRenderer\"},{\"id\":\"34267\",\"type\":\"GlyphRenderer\"},{\"id\":\"34271\",\"type\":\"GlyphRenderer\"},{\"id\":\"34275\",\"type\":\"GlyphRenderer\"},{\"id\":\"34279\",\"type\":\"GlyphRenderer\"},{\"id\":\"34283\",\"type\":\"GlyphRenderer\"},{\"id\":\"34287\",\"type\":\"GlyphRenderer\"},{\"id\":\"34291\",\"type\":\"GlyphRenderer\"},{\"id\":\"34295\",\"type\":\"GlyphRenderer\"},{\"id\":\"34299\",\"type\":\"GlyphRenderer\"},{\"id\":\"34303\",\"type\":\"GlyphRenderer\"},{\"id\":\"34307\",\"type\":\"GlyphRenderer\"},{\"id\":\"34311\",\"type\":\"GlyphRenderer\"},{\"id\":\"34315\",\"type\":\"GlyphRenderer\"},{\"id\":\"34319\",\"type\":\"GlyphRenderer\"},{\"id\":\"34323\",\"type\":\"GlyphRenderer\"},{\"id\":\"34327\",\"type\":\"GlyphRenderer\"},{\"id\":\"34331\",\"type\":\"GlyphRenderer\"},{\"id\":\"34335\",\"type\":\"GlyphRenderer\"},{\"id\":\"34339\",\"type\":\"GlyphRenderer\"},{\"id\":\"34343\",\"type\":\"GlyphRenderer\"},{\"id\":\"34347\",\"type\":\"GlyphRenderer\"},{\"id\":\"34351\",\"type\":\"GlyphRenderer\"},{\"id\":\"34355\",\"type\":\"GlyphRenderer\"},{\"id\":\"34359\",\"type\":\"GlyphRenderer\"},{\"id\":\"34363\",\"type\":\"GlyphRenderer\"},{\"id\":\"34367\",\"type\":\"GlyphRenderer\"},{\"id\":\"34371\",\"type\":\"GlyphRenderer\"},{\"id\":\"34375\",\"type\":\"GlyphRenderer\"},{\"id\":\"34379\",\"type\":\"GlyphRenderer\"},{\"id\":\"34383\",\"type\":\"GlyphRenderer\"},{\"id\":\"34387\",\"type\":\"GlyphRenderer\"},{\"id\":\"34391\",\"type\":\"GlyphRenderer\"},{\"id\":\"34395\",\"type\":\"GlyphRenderer\"},{\"id\":\"34399\",\"type\":\"GlyphRenderer\"},{\"id\":\"34403\",\"type\":\"GlyphRenderer\"},{\"id\":\"34407\",\"type\":\"GlyphRenderer\"},{\"id\":\"34411\",\"type\":\"GlyphRenderer\"},{\"id\":\"34415\",\"type\":\"GlyphRenderer\"},{\"id\":\"34419\",\"type\":\"GlyphRenderer\"},{\"id\":\"34423\",\"type\":\"GlyphRenderer\"},{\"id\":\"34427\",\"type\":\"GlyphRenderer\"},{\"id\":\"34431\",\"type\":\"GlyphRenderer\"},{\"id\":\"34435\",\"type\":\"GlyphRenderer\"},{\"id\":\"34439\",\"type\":\"GlyphRenderer\"},{\"id\":\"34443\",\"type\":\"GlyphRenderer\"},{\"id\":\"34447\",\"type\":\"GlyphRenderer\"},{\"id\":\"34451\",\"type\":\"GlyphRenderer\"},{\"id\":\"34455\",\"type\":\"GlyphRenderer\"},{\"id\":\"34880\",\"type\":\"GlyphRenderer\"},{\"id\":\"34884\",\"type\":\"GlyphRenderer\"},{\"id\":\"34888\",\"type\":\"GlyphRenderer\"},{\"id\":\"34892\",\"type\":\"GlyphRenderer\"},{\"id\":\"34896\",\"type\":\"GlyphRenderer\"},{\"id\":\"34900\",\"type\":\"GlyphRenderer\"},{\"id\":\"34904\",\"type\":\"GlyphRenderer\"},{\"id\":\"34908\",\"type\":\"GlyphRenderer\"},{\"id\":\"34912\",\"type\":\"GlyphRenderer\"},{\"id\":\"34916\",\"type\":\"GlyphRenderer\"},{\"id\":\"34920\",\"type\":\"GlyphRenderer\"},{\"id\":\"34924\",\"type\":\"GlyphRenderer\"},{\"id\":\"34928\",\"type\":\"GlyphRenderer\"},{\"id\":\"34932\",\"type\":\"GlyphRenderer\"},{\"id\":\"34936\",\"type\":\"GlyphRenderer\"},{\"id\":\"34940\",\"type\":\"GlyphRenderer\"},{\"id\":\"34944\",\"type\":\"GlyphRenderer\"},{\"id\":\"34948\",\"type\":\"GlyphRenderer\"},{\"id\":\"34952\",\"type\":\"GlyphRenderer\"},{\"id\":\"34956\",\"type\":\"GlyphRenderer\"},{\"id\":\"34960\",\"type\":\"GlyphRenderer\"},{\"id\":\"34964\",\"type\":\"GlyphRenderer\"},{\"id\":\"34968\",\"type\":\"GlyphRenderer\"},{\"id\":\"34972\",\"type\":\"GlyphRenderer\"},{\"id\":\"34976\",\"type\":\"GlyphRenderer\"},{\"id\":\"34980\",\"type\":\"GlyphRenderer\"},{\"id\":\"34984\",\"type\":\"GlyphRenderer\"},{\"id\":\"34988\",\"type\":\"GlyphRenderer\"},{\"id\":\"34992\",\"type\":\"GlyphRenderer\"},{\"id\":\"34996\",\"type\":\"GlyphRenderer\"},{\"id\":\"35000\",\"type\":\"GlyphRenderer\"},{\"id\":\"35004\",\"type\":\"GlyphRenderer\"},{\"id\":\"35008\",\"type\":\"GlyphRenderer\"},{\"id\":\"35012\",\"type\":\"GlyphRenderer\"},{\"id\":\"35016\",\"type\":\"GlyphRenderer\"},{\"id\":\"35020\",\"type\":\"GlyphRenderer\"},{\"id\":\"35024\",\"type\":\"GlyphRenderer\"},{\"id\":\"35028\",\"type\":\"GlyphRenderer\"},{\"id\":\"35032\",\"type\":\"GlyphRenderer\"},{\"id\":\"35036\",\"type\":\"GlyphRenderer\"},{\"id\":\"35040\",\"type\":\"GlyphRenderer\"},{\"id\":\"35044\",\"type\":\"GlyphRenderer\"},{\"id\":\"35048\",\"type\":\"GlyphRenderer\"},{\"id\":\"35052\",\"type\":\"GlyphRenderer\"},{\"id\":\"35056\",\"type\":\"GlyphRenderer\"},{\"id\":\"35060\",\"type\":\"GlyphRenderer\"},{\"id\":\"35064\",\"type\":\"GlyphRenderer\"},{\"id\":\"35068\",\"type\":\"GlyphRenderer\"},{\"id\":\"35513\",\"type\":\"GlyphRenderer\"},{\"id\":\"35517\",\"type\":\"GlyphRenderer\"},{\"id\":\"35521\",\"type\":\"GlyphRenderer\"},{\"id\":\"35525\",\"type\":\"GlyphRenderer\"},{\"id\":\"35529\",\"type\":\"GlyphRenderer\"},{\"id\":\"35533\",\"type\":\"GlyphRenderer\"},{\"id\":\"35537\",\"type\":\"GlyphRenderer\"},{\"id\":\"35541\",\"type\":\"GlyphRenderer\"},{\"id\":\"35545\",\"type\":\"GlyphRenderer\"},{\"id\":\"35549\",\"type\":\"GlyphRenderer\"},{\"id\":\"35553\",\"type\":\"GlyphRenderer\"},{\"id\":\"35557\",\"type\":\"GlyphRenderer\"},{\"id\":\"35561\",\"type\":\"GlyphRenderer\"},{\"id\":\"35565\",\"type\":\"GlyphRenderer\"},{\"id\":\"35569\",\"type\":\"GlyphRenderer\"},{\"id\":\"35573\",\"type\":\"GlyphRenderer\"},{\"id\":\"35577\",\"type\":\"GlyphRenderer\"},{\"id\":\"35581\",\"type\":\"GlyphRenderer\"},{\"id\":\"35585\",\"type\":\"GlyphRenderer\"},{\"id\":\"35589\",\"type\":\"GlyphRenderer\"},{\"id\":\"35593\",\"type\":\"GlyphRenderer\"},{\"id\":\"35597\",\"type\":\"GlyphRenderer\"},{\"id\":\"35601\",\"type\":\"GlyphRenderer\"},{\"id\":\"35605\",\"type\":\"GlyphRenderer\"},{\"id\":\"35609\",\"type\":\"GlyphRenderer\"},{\"id\":\"35613\",\"type\":\"GlyphRenderer\"},{\"id\":\"35617\",\"type\":\"GlyphRenderer\"},{\"id\":\"35621\",\"type\":\"GlyphRenderer\"},{\"id\":\"35625\",\"type\":\"GlyphRenderer\"},{\"id\":\"35629\",\"type\":\"GlyphRenderer\"},{\"id\":\"35633\",\"type\":\"GlyphRenderer\"},{\"id\":\"35637\",\"type\":\"GlyphRenderer\"},{\"id\":\"35641\",\"type\":\"GlyphRenderer\"},{\"id\":\"35645\",\"type\":\"GlyphRenderer\"},{\"id\":\"35649\",\"type\":\"GlyphRenderer\"},{\"id\":\"35653\",\"type\":\"GlyphRenderer\"},{\"id\":\"35657\",\"type\":\"GlyphRenderer\"},{\"id\":\"35661\",\"type\":\"GlyphRenderer\"},{\"id\":\"35665\",\"type\":\"GlyphRenderer\"},{\"id\":\"35669\",\"type\":\"GlyphRenderer\"},{\"id\":\"35673\",\"type\":\"GlyphRenderer\"},{\"id\":\"35677\",\"type\":\"GlyphRenderer\"},{\"id\":\"35681\",\"type\":\"GlyphRenderer\"},{\"id\":\"35685\",\"type\":\"GlyphRenderer\"},{\"id\":\"35689\",\"type\":\"GlyphRenderer\"},{\"id\":\"35693\",\"type\":\"GlyphRenderer\"},{\"id\":\"35697\",\"type\":\"GlyphRenderer\"},{\"id\":\"35701\",\"type\":\"GlyphRenderer\"},{\"id\":\"36166\",\"type\":\"GlyphRenderer\"},{\"id\":\"36170\",\"type\":\"GlyphRenderer\"},{\"id\":\"36174\",\"type\":\"GlyphRenderer\"},{\"id\":\"36178\",\"type\":\"GlyphRenderer\"},{\"id\":\"36182\",\"type\":\"GlyphRenderer\"},{\"id\":\"36186\",\"type\":\"GlyphRenderer\"},{\"id\":\"36190\",\"type\":\"GlyphRenderer\"},{\"id\":\"36194\",\"type\":\"GlyphRenderer\"},{\"id\":\"36198\",\"type\":\"GlyphRenderer\"},{\"id\":\"36202\",\"type\":\"GlyphRenderer\"},{\"id\":\"36206\",\"type\":\"GlyphRenderer\"},{\"id\":\"36210\",\"type\":\"GlyphRenderer\"},{\"id\":\"36214\",\"type\":\"GlyphRenderer\"},{\"id\":\"36218\",\"type\":\"GlyphRenderer\"},{\"id\":\"36222\",\"type\":\"GlyphRenderer\"},{\"id\":\"36226\",\"type\":\"GlyphRenderer\"},{\"id\":\"36230\",\"type\":\"GlyphRenderer\"},{\"id\":\"36234\",\"type\":\"GlyphRenderer\"},{\"id\":\"36238\",\"type\":\"GlyphRenderer\"},{\"id\":\"36242\",\"type\":\"GlyphRenderer\"},{\"id\":\"36246\",\"type\":\"GlyphRenderer\"},{\"id\":\"36250\",\"type\":\"GlyphRenderer\"},{\"id\":\"36254\",\"type\":\"GlyphRenderer\"},{\"id\":\"36258\",\"type\":\"GlyphRenderer\"},{\"id\":\"36262\",\"type\":\"GlyphRenderer\"},{\"id\":\"36266\",\"type\":\"GlyphRenderer\"},{\"id\":\"36270\",\"type\":\"GlyphRenderer\"},{\"id\":\"36274\",\"type\":\"GlyphRenderer\"},{\"id\":\"36278\",\"type\":\"GlyphRenderer\"},{\"id\":\"36282\",\"type\":\"GlyphRenderer\"},{\"id\":\"36286\",\"type\":\"GlyphRenderer\"},{\"id\":\"36290\",\"type\":\"GlyphRenderer\"},{\"id\":\"36294\",\"type\":\"GlyphRenderer\"},{\"id\":\"36298\",\"type\":\"GlyphRenderer\"},{\"id\":\"36302\",\"type\":\"GlyphRenderer\"},{\"id\":\"36306\",\"type\":\"GlyphRenderer\"},{\"id\":\"36310\",\"type\":\"GlyphRenderer\"},{\"id\":\"36314\",\"type\":\"GlyphRenderer\"},{\"id\":\"36318\",\"type\":\"GlyphRenderer\"},{\"id\":\"36322\",\"type\":\"GlyphRenderer\"},{\"id\":\"36326\",\"type\":\"GlyphRenderer\"},{\"id\":\"36330\",\"type\":\"GlyphRenderer\"},{\"id\":\"36334\",\"type\":\"GlyphRenderer\"},{\"id\":\"36338\",\"type\":\"GlyphRenderer\"},{\"id\":\"36342\",\"type\":\"GlyphRenderer\"},{\"id\":\"36346\",\"type\":\"GlyphRenderer\"},{\"id\":\"36350\",\"type\":\"GlyphRenderer\"},{\"id\":\"36354\",\"type\":\"GlyphRenderer\"},{\"id\":\"36839\",\"type\":\"GlyphRenderer\"},{\"id\":\"36843\",\"type\":\"GlyphRenderer\"},{\"id\":\"36847\",\"type\":\"GlyphRenderer\"},{\"id\":\"36851\",\"type\":\"GlyphRenderer\"},{\"id\":\"36855\",\"type\":\"GlyphRenderer\"},{\"id\":\"36859\",\"type\":\"GlyphRenderer\"},{\"id\":\"36863\",\"type\":\"GlyphRenderer\"},{\"id\":\"36867\",\"type\":\"GlyphRenderer\"},{\"id\":\"36871\",\"type\":\"GlyphRenderer\"},{\"id\":\"36875\",\"type\":\"GlyphRenderer\"},{\"id\":\"36879\",\"type\":\"GlyphRenderer\"},{\"id\":\"36883\",\"type\":\"GlyphRenderer\"},{\"id\":\"36887\",\"type\":\"GlyphRenderer\"},{\"id\":\"36891\",\"type\":\"GlyphRenderer\"},{\"id\":\"36895\",\"type\":\"GlyphRenderer\"},{\"id\":\"36899\",\"type\":\"GlyphRenderer\"},{\"id\":\"36903\",\"type\":\"GlyphRenderer\"},{\"id\":\"36907\",\"type\":\"GlyphRenderer\"},{\"id\":\"36911\",\"type\":\"GlyphRenderer\"},{\"id\":\"36915\",\"type\":\"GlyphRenderer\"},{\"id\":\"36919\",\"type\":\"GlyphRenderer\"},{\"id\":\"36923\",\"type\":\"GlyphRenderer\"},{\"id\":\"36927\",\"type\":\"GlyphRenderer\"},{\"id\":\"36931\",\"type\":\"GlyphRenderer\"},{\"id\":\"36935\",\"type\":\"GlyphRenderer\"},{\"id\":\"36939\",\"type\":\"GlyphRenderer\"},{\"id\":\"36943\",\"type\":\"GlyphRenderer\"},{\"id\":\"36947\",\"type\":\"GlyphRenderer\"},{\"id\":\"36951\",\"type\":\"GlyphRenderer\"},{\"id\":\"36955\",\"type\":\"GlyphRenderer\"},{\"id\":\"36959\",\"type\":\"GlyphRenderer\"},{\"id\":\"36963\",\"type\":\"GlyphRenderer\"},{\"id\":\"36967\",\"type\":\"GlyphRenderer\"},{\"id\":\"36971\",\"type\":\"GlyphRenderer\"},{\"id\":\"36975\",\"type\":\"GlyphRenderer\"},{\"id\":\"36979\",\"type\":\"GlyphRenderer\"},{\"id\":\"36983\",\"type\":\"GlyphRenderer\"},{\"id\":\"36987\",\"type\":\"GlyphRenderer\"},{\"id\":\"36991\",\"type\":\"GlyphRenderer\"},{\"id\":\"36995\",\"type\":\"GlyphRenderer\"},{\"id\":\"36999\",\"type\":\"GlyphRenderer\"},{\"id\":\"37003\",\"type\":\"GlyphRenderer\"},{\"id\":\"37007\",\"type\":\"GlyphRenderer\"},{\"id\":\"37011\",\"type\":\"GlyphRenderer\"},{\"id\":\"37015\",\"type\":\"GlyphRenderer\"},{\"id\":\"37019\",\"type\":\"GlyphRenderer\"},{\"id\":\"37023\",\"type\":\"GlyphRenderer\"},{\"id\":\"37027\",\"type\":\"GlyphRenderer\"}],\"right\":[{\"id\":\"34022\",\"type\":\"ColorBar\"}],\"title\":{\"id\":\"33999\",\"type\":\"Title\"},\"toolbar\":{\"id\":\"33994\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"33972\",\"type\":\"Range1d\"},\"x_scale\":{\"id\":\"33976\",\"type\":\"LinearScale\"},\"y_range\":{\"id\":\"33974\",\"type\":\"Range1d\"},\"y_scale\":{\"id\":\"33978\",\"type\":\"LinearScale\"}},\"id\":\"33971\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35447\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[27,30]},{\"__ndarray__\":\"OHDRMR9RA8A4cNExH1EDwDhw0TEfUQPAOHDRMR9RA8A4cNExH1EDwDhw0TEfUQPAOHDRMR9RA8A4cNExH1EDwDhw0TEfUQPAOHDRMR9RA8A4cNExH1EDwDhw0TEfUQPAOHDRMR9RA8A4cNExH1EDwDhw0TEfUQPAOHDRMR9RA8A4cNExH1EDwDhw0TEfUQPAOHDRMR9RA8A4cNExH1EDwDhw0TEfUQPAOHDRMR9RA8A4cNExH1EDwDhw0TEfUQPAOHDRMR9RA8A4cNExH1EDwDhw0TEfUQPAOHDRMR9RA8A4cNExH1EDwDhw0TEfUQPAntY3mIW3AcCe1jeYhbcBwJ7WN5iFtwHAntY3mIW3AcCe1jeYhbcBwJ7WN5iFtwHAntY3mIW3AcCe1jeYhbcBwJ7WN5iFtwHAntY3mIW3AcCe1jeYhbcBwJ7WN5iFtwHAntY3mIW3AcCe1jeYhbcBwJ7WN5iFtwHAntY3mIW3AcCe1jeYhbcBwJ7WN5iFtwHAntY3mIW3AcCe1jeYhbcBwJ7WN5iFtwHAntY3mIW3AcCe1jeYhbcBwJ7WN5iFtwHAntY3mIW3AcCe1jeYhbcBwJ7WN5iFtwHAntY3mIW3AcCe1jeYhbcBwJ7WN5iFtwHABD2e/usdAMAEPZ7+6x0AwAQ9nv7rHQDABD2e/usdAMAEPZ7+6x0AwAQ9nv7rHQDABD2e/usdAMAEPZ7+6x0AwAQ9nv7rHQDABD2e/usdAMAEPZ7+6x0AwAQ9nv7rHQDABD2e/usdAMAEPZ7+6x0AwAQ9nv7rHQDABD2e/usdAMAEPZ7+6x0AwAQ9nv7rHQDABD2e/usdAMAEPZ7+6x0AwAQ9nv7rHQDABD2e/usdAMAEPZ7+6x0AwAQ9nv7rHQDABD2e/usdAMAEPZ7+6x0AwAQ9nv7rHQDABD2e/usdAMAEPZ7+6x0AwAQ9nv7rHQDA1EYJyqQI/b/URgnKpAj9v9RGCcqkCP2/1EYJyqQI/b/URgnKpAj9v9RGCcqkCP2/1EYJyqQI/b/URgnKpAj9v9RGCcqkCP2/1EYJyqQI/b/URgnKpAj9v9RGCcqkCP2/1EYJyqQI/b/URgnKpAj9v9RGCcqkCP2/1EYJyqQI/b/URgnKpAj9v9RGCcqkCP2/1EYJyqQI/b/URgnKpAj9v9RGCcqkCP2/1EYJyqQI/b/URgnKpAj9v9RGCcqkCP2/1EYJyqQI/b/URgnKpAj9v9RGCcqkCP2/1EYJyqQI/b/URgnKpAj9v9RGCcqkCP2/oBPWlnHV+b+gE9aWcdX5v6AT1pZx1fm/oBPWlnHV+b+gE9aWcdX5v6AT1pZx1fm/oBPWlnHV+b+gE9aWcdX5v6AT1pZx1fm/oBPWlnHV+b+gE9aWcdX5v6AT1pZx1fm/oBPWlnHV+b+gE9aWcdX5v6AT1pZx1fm/oBPWlnHV+b+gE9aWcdX5v6AT1pZx1fm/oBPWlnHV+b+gE9aWcdX5v6AT1pZx1fm/oBPWlnHV+b+gE9aWcdX5v6AT1pZx1fm/oBPWlnHV+b+gE9aWcdX5v6AT1pZx1fm/oBPWlnHV+b+gE9aWcdX5v6AT1pZx1fm/bOCiYz6i9r9s4KJjPqL2v2zgomM+ova/bOCiYz6i9r9s4KJjPqL2v2zgomM+ova/bOCiYz6i9r9s4KJjPqL2v2zgomM+ova/bOCiYz6i9r9s4KJjPqL2v2zgomM+ova/bOCiYz6i9r9s4KJjPqL2v2zgomM+ova/bOCiYz6i9r9s4KJjPqL2v2zgomM+ova/bOCiYz6i9r9s4KJjPqL2v2zgomM+ova/bOCiYz6i9r9s4KJjPqL2v2zgomM+ova/bOCiYz6i9r9s4KJjPqL2v2zgomM+ova/bOCiYz6i9r9s4KJjPqL2v2zgomM+ova/OK1vMAtv8784rW8wC2/zvzitbzALb/O/OK1vMAtv8784rW8wC2/zvzitbzALb/O/OK1vMAtv8784rW8wC2/zvzitbzALb/O/OK1vMAtv8784rW8wC2/zvzitbzALb/O/OK1vMAtv8784rW8wC2/zvzitbzALb/O/OK1vMAtv8784rW8wC2/zvzitbzALb/O/OK1vMAtv8784rW8wC2/zvzitbzALb/O/OK1vMAtv8784rW8wC2/zvzitbzALb/O/OK1vMAtv8784rW8wC2/zvzitbzALb/O/OK1vMAtv8784rW8wC2/zvzitbzALb/O/BHo8/dc78L8Eejz91zvwvwR6PP3XO/C/BHo8/dc78L8Eejz91zvwvwR6PP3XO/C/BHo8/dc78L8Eejz91zvwvwR6PP3XO/C/BHo8/dc78L8Eejz91zvwvwR6PP3XO/C/BHo8/dc78L8Eejz91zvwvwR6PP3XO/C/BHo8/dc78L8Eejz91zvwvwR6PP3XO/C/BHo8/dc78L8Eejz91zvwvwR6PP3XO/C/BHo8/dc78L8Eejz91zvwvwR6PP3XO/C/BHo8/dc78L8Eejz91zvwvwR6PP3XO/C/BHo8/dc78L8Eejz91zvwvwR6PP3XO/C/oI0SlEkR6r+gjRKUSRHqv6CNEpRJEeq/oI0SlEkR6r+gjRKUSRHqv6CNEpRJEeq/oI0SlEkR6r+gjRKUSRHqv6CNEpRJEeq/oI0SlEkR6r+gjRKUSRHqv6CNEpRJEeq/oI0SlEkR6r+gjRKUSRHqv6CNEpRJEeq/oI0SlEkR6r+gjRKUSRHqv6CNEpRJEeq/oI0SlEkR6r+gjRKUSRHqv6CNEpRJEeq/oI0SlEkR6r+gjRKUSRHqv6CNEpRJEeq/oI0SlEkR6r+gjRKUSRHqv6CNEpRJEeq/oI0SlEkR6r+gjRKUSRHqv6CNEpRJEeq/OCesLeOq4784J6wt46rjvzgnrC3jquO/OCesLeOq4784J6wt46rjvzgnrC3jquO/OCesLeOq4784J6wt46rjvzgnrC3jquO/OCesLeOq4784J6wt46rjvzgnrC3jquO/OCesLeOq4784J6wt46rjvzgnrC3jquO/OCesLeOq4784J6wt46rjvzgnrC3jquO/OCesLeOq4784J6wt46rjvzgnrC3jquO/OCesLeOq4784J6wt46rjvzgnrC3jquO/OCesLeOq4784J6wt46rjvzgnrC3jquO/OCesLeOq4784J6wt46rjvzgnrC3jquO/oIGLjvmI2r+ggYuO+Yjav6CBi475iNq/oIGLjvmI2r+ggYuO+Yjav6CBi475iNq/oIGLjvmI2r+ggYuO+Yjav6CBi475iNq/oIGLjvmI2r+ggYuO+Yjav6CBi475iNq/oIGLjvmI2r+ggYuO+Yjav6CBi475iNq/oIGLjvmI2r+ggYuO+Yjav6CBi475iNq/oIGLjvmI2r+ggYuO+Yjav6CBi475iNq/oIGLjvmI2r+ggYuO+Yjav6CBi475iNq/oIGLjvmI2r+ggYuO+Yjav6CBi475iNq/oIGLjvmI2r+ggYuO+Yjav6CBi475iNq/oGl9g1l4y7+gaX2DWXjLv6BpfYNZeMu/oGl9g1l4y7+gaX2DWXjLv6BpfYNZeMu/oGl9g1l4y7+gaX2DWXjLv6BpfYNZeMu/oGl9g1l4y7+gaX2DWXjLv6BpfYNZeMu/oGl9g1l4y7+gaX2DWXjLv6BpfYNZeMu/oGl9g1l4y7+gaX2DWXjLv6BpfYNZeMu/oGl9g1l4y7+gaX2DWXjLv6BpfYNZeMu/oGl9g1l4y7+gaX2DWXjLv6BpfYNZeMu/oGl9g1l4y7+gaX2DWXjLv6BpfYNZeMu/oGl9g1l4y7+gaX2DWXjLv6BpfYNZeMu/AAA9nv7rjb8AAD2e/uuNvwAAPZ7+642/AAA9nv7rjb8AAD2e/uuNvwAAPZ7+642/AAA9nv7rjb8AAD2e/uuNvwAAPZ7+642/AAA9nv7rjb8AAD2e/uuNvwAAPZ7+642/AAA9nv7rjb8AAD2e/uuNvwAAPZ7+642/AAA9nv7rjb8AAD2e/uuNvwAAPZ7+642/AAA9nv7rjb8AAD2e/uuNvwAAPZ7+642/AAA9nv7rjb8AAD2e/uuNvwAAPZ7+642/AAA9nv7rjb8AAD2e/uuNvwAAPZ7+642/AAA9nv7rjb8AAD2e/uuNvwAAPZ7+642/oMm1r9m6xz+gybWv2brHP6DJta/Zusc/oMm1r9m6xz+gybWv2brHP6DJta/Zusc/oMm1r9m6xz+gybWv2brHP6DJta/Zusc/oMm1r9m6xz+gybWv2brHP6DJta/Zusc/oMm1r9m6xz+gybWv2brHP6DJta/Zusc/oMm1r9m6xz+gybWv2brHP6DJta/Zusc/oMm1r9m6xz+gybWv2brHP6DJta/Zusc/oMm1r9m6xz+gybWv2brHP6DJta/Zusc/oMm1r9m6xz+gybWv2brHP6DJta/Zusc/oMm1r9m6xz+gybWv2brHP6DJta/Zusc/oLGnpDmq2D+gsaekOarYP6Cxp6Q5qtg/oLGnpDmq2D+gsaekOarYP6Cxp6Q5qtg/oLGnpDmq2D+gsaekOarYP6Cxp6Q5qtg/oLGnpDmq2D+gsaekOarYP6Cxp6Q5qtg/oLGnpDmq2D+gsaekOarYP6Cxp6Q5qtg/oLGnpDmq2D+gsaekOarYP6Cxp6Q5qtg/oLGnpDmq2D+gsaekOarYP6Cxp6Q5qtg/oLGnpDmq2D+gsaekOarYP6Cxp6Q5qtg/oLGnpDmq2D+gsaekOarYP6Cxp6Q5qtg/oLGnpDmq2D+gsaekOarYP6Cxp6Q5qtg/OD+6OIO74j84P7o4g7viPzg/ujiDu+I/OD+6OIO74j84P7o4g7viPzg/ujiDu+I/OD+6OIO74j84P7o4g7viPzg/ujiDu+I/OD+6OIO74j84P7o4g7viPzg/ujiDu+I/OD+6OIO74j84P7o4g7viPzg/ujiDu+I/OD+6OIO74j84P7o4g7viPzg/ujiDu+I/OD+6OIO74j84P7o4g7viPzg/ujiDu+I/OD+6OIO74j84P7o4g7viPzg/ujiDu+I/OD+6OIO74j84P7o4g7viPzg/ujiDu+I/OD+6OIO74j84P7o4g7viPzg/ujiDu+I/oKUgn+kh6T+gpSCf6SHpP6ClIJ/pIek/oKUgn+kh6T+gpSCf6SHpP6ClIJ/pIek/oKUgn+kh6T+gpSCf6SHpP6ClIJ/pIek/oKUgn+kh6T+gpSCf6SHpP6ClIJ/pIek/oKUgn+kh6T+gpSCf6SHpP6ClIJ/pIek/oKUgn+kh6T+gpSCf6SHpP6ClIJ/pIek/oKUgn+kh6T+gpSCf6SHpP6ClIJ/pIek/oKUgn+kh6T+gpSCf6SHpP6ClIJ/pIek/oKUgn+kh6T+gpSCf6SHpP6ClIJ/pIek/oKUgn+kh6T+gpSCf6SHpP6ClIJ/pIek/CAyHBVCI7z8IDIcFUIjvPwgMhwVQiO8/CAyHBVCI7z8IDIcFUIjvPwgMhwVQiO8/CAyHBVCI7z8IDIcFUIjvPwgMhwVQiO8/CAyHBVCI7z8IDIcFUIjvPwgMhwVQiO8/CAyHBVCI7z8IDIcFUIjvPwgMhwVQiO8/CAyHBVCI7z8IDIcFUIjvPwgMhwVQiO8/CAyHBVCI7z8IDIcFUIjvPwgMhwVQiO8/CAyHBVCI7z8IDIcFUIjvPwgMhwVQiO8/CAyHBVCI7z8IDIcFUIjvPwgMhwVQiO8/CAyHBVCI7z8IDIcFUIjvPwgMhwVQiO8/OLn2NVv38j84ufY1W/fyPzi59jVb9/I/OLn2NVv38j84ufY1W/fyPzi59jVb9/I/OLn2NVv38j84ufY1W/fyPzi59jVb9/I/OLn2NVv38j84ufY1W/fyPzi59jVb9/I/OLn2NVv38j84ufY1W/fyPzi59jVb9/I/OLn2NVv38j84ufY1W/fyPzi59jVb9/I/OLn2NVv38j84ufY1W/fyPzi59jVb9/I/OLn2NVv38j84ufY1W/fyPzi59jVb9/I/OLn2NVv38j84ufY1W/fyPzi59jVb9/I/OLn2NVv38j84ufY1W/fyPzi59jVb9/I/bOwpaY4q9j9s7Clpjir2P2zsKWmOKvY/bOwpaY4q9j9s7Clpjir2P2zsKWmOKvY/bOwpaY4q9j9s7Clpjir2P2zsKWmOKvY/bOwpaY4q9j9s7Clpjir2P2zsKWmOKvY/bOwpaY4q9j9s7Clpjir2P2zsKWmOKvY/bOwpaY4q9j9s7Clpjir2P2zsKWmOKvY/bOwpaY4q9j9s7Clpjir2P2zsKWmOKvY/bOwpaY4q9j9s7Clpjir2P2zsKWmOKvY/bOwpaY4q9j9s7Clpjir2P2zsKWmOKvY/bOwpaY4q9j9s7Clpjir2P2zsKWmOKvY/oB9dnMFd+T+gH12cwV35P6AfXZzBXfk/oB9dnMFd+T+gH12cwV35P6AfXZzBXfk/oB9dnMFd+T+gH12cwV35P6AfXZzBXfk/oB9dnMFd+T+gH12cwV35P6AfXZzBXfk/oB9dnMFd+T+gH12cwV35P6AfXZzBXfk/oB9dnMFd+T+gH12cwV35P6AfXZzBXfk/oB9dnMFd+T+gH12cwV35P6AfXZzBXfk/oB9dnMFd+T+gH12cwV35P6AfXZzBXfk/oB9dnMFd+T+gH12cwV35P6AfXZzBXfk/oB9dnMFd+T+gH12cwV35P6AfXZzBXfk/1FKQz/SQ/D/UUpDP9JD8P9RSkM/0kPw/1FKQz/SQ/D/UUpDP9JD8P9RSkM/0kPw/1FKQz/SQ/D/UUpDP9JD8P9RSkM/0kPw/1FKQz/SQ/D/UUpDP9JD8P9RSkM/0kPw/1FKQz/SQ/D/UUpDP9JD8P9RSkM/0kPw/1FKQz/SQ/D/UUpDP9JD8P9RSkM/0kPw/1FKQz/SQ/D/UUpDP9JD8P9RSkM/0kPw/1FKQz/SQ/D/UUpDP9JD8P9RSkM/0kPw/1FKQz/SQ/D/UUpDP9JD8P9RSkM/0kPw/1FKQz/SQ/D/UUpDP9JD8P9RSkM/0kPw/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/CIbDAijE/z8IhsMCKMT/PwiGwwIoxP8/nlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAnlz7mq17AUCeXPuarXsBQJ5c+5qtewFAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNAOPaUNEcVA0A49pQ0RxUDQDj2lDRHFQNA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRA0o8uzuCuBEDSjy7O4K4EQNKPLs7grgRAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZAbCnIZ3pIBkBsKchnekgGQGwpyGd6SAZA\",\"dtype\":\"float64\",\"shape\":[27,30]},{\"__ndarray__\":\"eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3HbV8QAWtM/cdtXxABa0z9x21fEAFrTP9iTmTNj39I/hQ+7UzrR0j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3HbV8QAWtM/cdtXxABa0z9x21fEAFrTP9iTmTNj39I/hQ+7UzrR0j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3HbV8QAWtM/cdtXxABa0z9x21fEAFrTP9iTmTNj39I/hQ+7UzrR0j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3HbV8QAWtM/cdtXxABa0z9x21fEAFrTP9iTmTNj39I/hQ+7UzrR0j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3HbV8QAWtM/cdtXxABa0z9x21fEAFrTP9iTmTNj39I/hQ+7UzrR0j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3HbV8QAWtM/cdtXxABa0z9x21fEAFrTP9iTmTNj39I/hQ+7UzrR0j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3HbV8QAWtM/cdtXxABa0z9x21fEAFrTP9iTmTNj39I/hQ+7UzrR0j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3HbV8QAWtM/cdtXxABa0z9x21fEAFrTP9iTmTNj39I/hQ+7UzrR0j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/vYPtBG200j+9g+0EbbTSP72D7QRttNI/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3kpGJlyttM/eSkYmXK20z95KRiZcrbTP3HbV8QAWtM/cdtXxABa0z9x21fEAFrTP95YLXJb3tI/i9ROkjLQ0j/DSIFDZbPSP8NIgUNls9I/w0iBQ2Wz0j/DSIFDZbPSP8NIgUNls9I/w0iBQ2Wz0j/DSIFDZbPSP8NIgUNls9I/w0iBQ2Wz0j/DSIFDZbPSP8NIgUNls9I/gSnKTdp81D+BKcpN2nzUP4Epyk3afNQ/gSnKTdp81D+BKcpN2nzUP4Epyk3afNQ/gSnKTdp81D+BKcpN2nzUP4Epyk3afNQ/gSnKTdp81D+BKcpN2nzUP4Epyk3afNQ/gSnKTdp81D+BKcpN2nzUP3nbCXloINQ/edsJeWgg1D952wl5aCDUPxaA+8v109M/wvsc7MzF0z/20u9jH7PTP/bS72Mfs9M/9tLvYx+z0z/20u9jH7PTP/bS72Mfs9M/9tLvYx+z0z/20u9jH7PTP/bS72Mfs9M/9tLvYx+z0z/20u9jH7PTP/bS72Mfs9M/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP9YNp9Y0+dU/1g2n1jT51T/WDafWNPnVP86/5gHDnNU/zr/mAcOc1T/Ov+YBw5zVP3Ckx+gphNU/cKTH6CmE1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/XarrO+5+1T9dqus77n7VP12q6zvuftU/\",\"dtype\":\"float64\",\"shape\":[27,30]}]},\"selected\":{\"id\":\"34465\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"34466\",\"type\":\"UnionRenderers\"}},\"id\":\"34006\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"filters\":[{\"id\":\"34024\",\"type\":\"GroupFilter\"},{\"id\":\"34025\",\"type\":\"GroupFilter\"},{\"id\":\"34026\",\"type\":\"GroupFilter\"},{\"id\":\"34027\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34028\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34034\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"34027\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35468\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"33978\",\"type\":\"LinearScale\"},{\"attributes\":{\"color_mapper\":{\"id\":\"34000\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":5.384820992362682},\"dw\":{\"units\":\"data\",\"value\":5.992415826620112},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-3.2331597087943926},\"y\":{\"value\":-2.414610280231525}},\"id\":\"34008\",\"type\":\"Image\"},{\"attributes\":{},\"id\":\"33976\",\"type\":\"LinearScale\"},{\"attributes\":{\"filters\":[{\"id\":\"35450\",\"type\":\"GroupFilter\"},{\"id\":\"35451\",\"type\":\"GroupFilter\"},{\"id\":\"35452\",\"type\":\"GroupFilter\"},{\"id\":\"35453\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35454\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"34006\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34007\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34008\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"34010\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"34009\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34037\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"high\":0.6322963062299475,\"low\":0.29219943611418503,\"palette\":[\"#440154\",\"#440255\",\"#440357\",\"#450558\",\"#45065A\",\"#45085B\",\"#46095C\",\"#460B5E\",\"#460C5F\",\"#460E61\",\"#470F62\",\"#471163\",\"#471265\",\"#471466\",\"#471567\",\"#471669\",\"#47186A\",\"#48196B\",\"#481A6C\",\"#481C6E\",\"#481D6F\",\"#481E70\",\"#482071\",\"#482172\",\"#482273\",\"#482374\",\"#472575\",\"#472676\",\"#472777\",\"#472878\",\"#472A79\",\"#472B7A\",\"#472C7B\",\"#462D7C\",\"#462F7C\",\"#46307D\",\"#46317E\",\"#45327F\",\"#45347F\",\"#453580\",\"#453681\",\"#443781\",\"#443982\",\"#433A83\",\"#433B83\",\"#433C84\",\"#423D84\",\"#423E85\",\"#424085\",\"#414186\",\"#414286\",\"#404387\",\"#404487\",\"#3F4587\",\"#3F4788\",\"#3E4888\",\"#3E4989\",\"#3D4A89\",\"#3D4B89\",\"#3D4C89\",\"#3C4D8A\",\"#3C4E8A\",\"#3B508A\",\"#3B518A\",\"#3A528B\",\"#3A538B\",\"#39548B\",\"#39558B\",\"#38568B\",\"#38578C\",\"#37588C\",\"#37598C\",\"#365A8C\",\"#365B8C\",\"#355C8C\",\"#355D8C\",\"#345E8D\",\"#345F8D\",\"#33608D\",\"#33618D\",\"#32628D\",\"#32638D\",\"#31648D\",\"#31658D\",\"#31668D\",\"#30678D\",\"#30688D\",\"#2F698D\",\"#2F6A8D\",\"#2E6B8E\",\"#2E6C8E\",\"#2E6D8E\",\"#2D6E8E\",\"#2D6F8E\",\"#2C708E\",\"#2C718E\",\"#2C728E\",\"#2B738E\",\"#2B748E\",\"#2A758E\",\"#2A768E\",\"#2A778E\",\"#29788E\",\"#29798E\",\"#287A8E\",\"#287A8E\",\"#287B8E\",\"#277C8E\",\"#277D8E\",\"#277E8E\",\"#267F8E\",\"#26808E\",\"#26818E\",\"#25828E\",\"#25838D\",\"#24848D\",\"#24858D\",\"#24868D\",\"#23878D\",\"#23888D\",\"#23898D\",\"#22898D\",\"#228A8D\",\"#228B8D\",\"#218C8D\",\"#218D8C\",\"#218E8C\",\"#208F8C\",\"#20908C\",\"#20918C\",\"#1F928C\",\"#1F938B\",\"#1F948B\",\"#1F958B\",\"#1F968B\",\"#1E978A\",\"#1E988A\",\"#1E998A\",\"#1E998A\",\"#1E9A89\",\"#1E9B89\",\"#1E9C89\",\"#1E9D88\",\"#1E9E88\",\"#1E9F88\",\"#1EA087\",\"#1FA187\",\"#1FA286\",\"#1FA386\",\"#20A485\",\"#20A585\",\"#21A685\",\"#21A784\",\"#22A784\",\"#23A883\",\"#23A982\",\"#24AA82\",\"#25AB81\",\"#26AC81\",\"#27AD80\",\"#28AE7F\",\"#29AF7F\",\"#2AB07E\",\"#2BB17D\",\"#2CB17D\",\"#2EB27C\",\"#2FB37B\",\"#30B47A\",\"#32B57A\",\"#33B679\",\"#35B778\",\"#36B877\",\"#38B976\",\"#39B976\",\"#3BBA75\",\"#3DBB74\",\"#3EBC73\",\"#40BD72\",\"#42BE71\",\"#44BE70\",\"#45BF6F\",\"#47C06E\",\"#49C16D\",\"#4BC26C\",\"#4DC26B\",\"#4FC369\",\"#51C468\",\"#53C567\",\"#55C666\",\"#57C665\",\"#59C764\",\"#5BC862\",\"#5EC961\",\"#60C960\",\"#62CA5F\",\"#64CB5D\",\"#67CC5C\",\"#69CC5B\",\"#6BCD59\",\"#6DCE58\",\"#70CE56\",\"#72CF55\",\"#74D054\",\"#77D052\",\"#79D151\",\"#7CD24F\",\"#7ED24E\",\"#81D34C\",\"#83D34B\",\"#86D449\",\"#88D547\",\"#8BD546\",\"#8DD644\",\"#90D643\",\"#92D741\",\"#95D73F\",\"#97D83E\",\"#9AD83C\",\"#9DD93A\",\"#9FD938\",\"#A2DA37\",\"#A5DA35\",\"#A7DB33\",\"#AADB32\",\"#ADDC30\",\"#AFDC2E\",\"#B2DD2C\",\"#B5DD2B\",\"#B7DD29\",\"#BADE27\",\"#BDDE26\",\"#BFDF24\",\"#C2DF22\",\"#C5DF21\",\"#C7E01F\",\"#CAE01E\",\"#CDE01D\",\"#CFE11C\",\"#D2E11B\",\"#D4E11A\",\"#D7E219\",\"#DAE218\",\"#DCE218\",\"#DFE318\",\"#E1E318\",\"#E4E318\",\"#E7E419\",\"#E9E419\",\"#ECE41A\",\"#EEE51B\",\"#F1E51C\",\"#F3E51E\",\"#F6E61F\",\"#F8E621\",\"#FAE622\",\"#FDE724\"]},\"id\":\"34000\",\"type\":\"LinearColorMapper\"},{\"attributes\":{\"color_mapper\":{\"id\":\"34000\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":5.384820992362682},\"dw\":{\"units\":\"data\",\"value\":5.992415826620112},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-3.2331597087943926},\"y\":{\"value\":-2.414610280231525}},\"id\":\"34012\",\"type\":\"Image\"},{\"attributes\":{\"callback\":null,\"end\":2.7592561178257196,\"start\":-3.2331597087943926},\"id\":\"33972\",\"type\":\"Range1d\"},{\"attributes\":{\"filters\":[{\"id\":\"35445\",\"type\":\"GroupFilter\"},{\"id\":\"35446\",\"type\":\"GroupFilter\"},{\"id\":\"35447\",\"type\":\"GroupFilter\"},{\"id\":\"35448\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35449\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34039\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true]},\"id\":\"35453\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34036\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35463\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"34000\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":5.384820992362682},\"dw\":{\"units\":\"data\",\"value\":5.992415826620112},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-3.2331597087943926},\"y\":{\"value\":-2.414610280231525}},\"id\":\"34013\",\"type\":\"Image\"},{\"attributes\":{\"callback\":null,\"end\":2.9702107121311574,\"start\":-2.414610280231525},\"id\":\"33974\",\"type\":\"Range1d\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34035\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35462\",\"type\":\"GroupFilter\"},{\"attributes\":{\"overlay\":{\"id\":\"34473\",\"type\":\"BoxAnnotation\"}},\"id\":\"33991\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false]},\"id\":\"35458\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35006\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34918\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34919\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34691\",\"type\":\"CDSView\"}},\"id\":\"34920\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"34465\",\"type\":\"Selection\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34902\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34903\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34671\",\"type\":\"CDSView\"}},\"id\":\"34904\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34446\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34919\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34926\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34927\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34701\",\"type\":\"CDSView\"}},\"id\":\"34928\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34922\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34923\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34696\",\"type\":\"CDSView\"}},\"id\":\"34924\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34437\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34438\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34243\",\"type\":\"CDSView\"}},\"id\":\"34439\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34935\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34923\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34918\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"34463\",\"type\":\"Selection\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34453\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34902\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34441\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34442\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34248\",\"type\":\"CDSView\"}},\"id\":\"34443\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34903\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34445\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34922\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35003\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34449\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35007\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34438\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35002\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34930\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34931\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34706\",\"type\":\"CDSView\"}},\"id\":\"34932\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"34460\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34894\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34895\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34661\",\"type\":\"CDSView\"}},\"id\":\"34896\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34454\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"34462\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35006\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35007\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34801\",\"type\":\"CDSView\"}},\"id\":\"35008\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34915\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35002\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35003\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34796\",\"type\":\"CDSView\"}},\"id\":\"35004\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34442\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34898\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34433\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34434\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34238\",\"type\":\"CDSView\"}},\"id\":\"34435\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34899\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34445\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34446\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34253\",\"type\":\"CDSView\"}},\"id\":\"34447\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34895\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34449\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34450\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34258\",\"type\":\"CDSView\"}},\"id\":\"34451\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34931\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34906\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34934\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34935\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34711\",\"type\":\"CDSView\"}},\"id\":\"34936\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34910\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34911\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34681\",\"type\":\"CDSView\"}},\"id\":\"34912\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"34464\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34914\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34915\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34686\",\"type\":\"CDSView\"}},\"id\":\"34916\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34934\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34437\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34926\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34450\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34938\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34898\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34899\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34666\",\"type\":\"CDSView\"}},\"id\":\"34900\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34930\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34914\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34453\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34454\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34263\",\"type\":\"CDSView\"}},\"id\":\"34455\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34441\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34927\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36193\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"35485\",\"type\":\"GroupFilter\"},{\"id\":\"35486\",\"type\":\"GroupFilter\"},{\"id\":\"35487\",\"type\":\"GroupFilter\"},{\"id\":\"35488\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35489\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37017\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34062\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34040\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34065\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34054\",\"type\":\"GroupFilter\"},{\"id\":\"34055\",\"type\":\"GroupFilter\"},{\"id\":\"34056\",\"type\":\"GroupFilter\"},{\"id\":\"34057\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34058\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"34049\",\"type\":\"GroupFilter\"},{\"id\":\"34050\",\"type\":\"GroupFilter\"},{\"id\":\"34051\",\"type\":\"GroupFilter\"},{\"id\":\"34052\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34053\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37021\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37018\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,false,true,true,true,false,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,false,true,true,false,true,false,false,true,false,false,false,false,false,false]},\"id\":\"36804\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37013\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34057\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"37051\",\"type\":\"Selection\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37005\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34056\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37021\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37022\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36830\",\"type\":\"CDSView\"}},\"id\":\"37023\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34055\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37001\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34054\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37006\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34061\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"37052\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37001\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37002\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36805\",\"type\":\"CDSView\"}},\"id\":\"37003\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34051\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36998\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34064\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34044\",\"type\":\"GroupFilter\"},{\"id\":\"34045\",\"type\":\"GroupFilter\"},{\"id\":\"34046\",\"type\":\"GroupFilter\"},{\"id\":\"34047\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34048\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37009\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37010\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36815\",\"type\":\"CDSView\"}},\"id\":\"37011\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34060\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37014\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37026\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34050\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"34067\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34069\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37025\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37026\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36835\",\"type\":\"CDSView\"}},\"id\":\"37027\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34066\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34059\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false]},\"id\":\"34052\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false]},\"id\":\"35438\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34039\",\"type\":\"GroupFilter\"},{\"id\":\"34040\",\"type\":\"GroupFilter\"},{\"id\":\"34041\",\"type\":\"GroupFilter\"},{\"id\":\"34042\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34043\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37022\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"34059\",\"type\":\"GroupFilter\"},{\"id\":\"34060\",\"type\":\"GroupFilter\"},{\"id\":\"34061\",\"type\":\"GroupFilter\"},{\"id\":\"34062\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34063\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37002\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37005\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37006\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36810\",\"type\":\"CDSView\"}},\"id\":\"37007\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34049\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37010\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34042\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34045\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37017\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37018\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36825\",\"type\":\"CDSView\"}},\"id\":\"37019\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"34064\",\"type\":\"GroupFilter\"},{\"id\":\"34065\",\"type\":\"GroupFilter\"},{\"id\":\"34066\",\"type\":\"GroupFilter\"},{\"id\":\"34067\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34068\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37025\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,false]},\"id\":\"34072\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"34047\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34070\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37009\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34044\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34041\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35488\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37013\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37014\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36820\",\"type\":\"CDSView\"}},\"id\":\"37015\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34046\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36997\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36998\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36800\",\"type\":\"CDSView\"}},\"id\":\"36999\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34071\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36344\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36345\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36152\",\"type\":\"CDSView\"}},\"id\":\"36346\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35491\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"35490\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34974\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34975\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34761\",\"type\":\"CDSView\"}},\"id\":\"34976\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36013\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36011\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35599\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35600\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35384\",\"type\":\"CDSView\"}},\"id\":\"35601\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36009\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34970\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35022\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35023\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34821\",\"type\":\"CDSView\"}},\"id\":\"35024\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35591\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35592\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35374\",\"type\":\"CDSView\"}},\"id\":\"35593\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35524\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35587\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"36013\",\"type\":\"GroupFilter\"},{\"id\":\"36014\",\"type\":\"GroupFilter\"},{\"id\":\"36015\",\"type\":\"GroupFilter\"},{\"id\":\"36016\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36017\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36000\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true]},\"id\":\"35493\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"36006\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36008\",\"type\":\"GroupFilter\"},{\"id\":\"36009\",\"type\":\"GroupFilter\"},{\"id\":\"36010\",\"type\":\"GroupFilter\"},{\"id\":\"36011\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36012\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35595\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35496\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34991\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35506\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35631\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35632\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35424\",\"type\":\"CDSView\"}},\"id\":\"35633\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false]},\"id\":\"35498\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35519\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35520\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35284\",\"type\":\"CDSView\"}},\"id\":\"35521\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36003\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35011\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35543\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35999\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35022\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35010\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35011\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34806\",\"type\":\"CDSView\"}},\"id\":\"35012\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35627\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34979\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35963\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36005\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35540\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"35495\",\"type\":\"GroupFilter\"},{\"id\":\"35496\",\"type\":\"GroupFilter\"},{\"id\":\"35497\",\"type\":\"GroupFilter\"},{\"id\":\"35498\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35499\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35010\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35600\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35502\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35271\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35507\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35520\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34990\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34991\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34781\",\"type\":\"CDSView\"}},\"id\":\"34992\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35516\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35579\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"35993\",\"type\":\"GroupFilter\"},{\"id\":\"35994\",\"type\":\"GroupFilter\"},{\"id\":\"35995\",\"type\":\"GroupFilter\"},{\"id\":\"35996\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35997\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34978\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35579\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35580\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35359\",\"type\":\"CDSView\"}},\"id\":\"35581\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36865\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36866\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36635\",\"type\":\"CDSView\"}},\"id\":\"36867\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35018\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36008\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35583\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35584\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35364\",\"type\":\"CDSView\"}},\"id\":\"35585\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36004\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35515\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35516\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35279\",\"type\":\"CDSView\"}},\"id\":\"35517\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35270\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35523\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35524\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35289\",\"type\":\"CDSView\"}},\"id\":\"35525\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34990\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35588\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"35500\",\"type\":\"GroupFilter\"},{\"id\":\"35501\",\"type\":\"GroupFilter\"},{\"id\":\"35502\",\"type\":\"GroupFilter\"},{\"id\":\"35503\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35504\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36016\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35014\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35015\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34811\",\"type\":\"CDSView\"}},\"id\":\"35016\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35580\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"35996\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35592\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35508\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36001\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35018\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35019\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34816\",\"type\":\"CDSView\"}},\"id\":\"35020\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35576\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34974\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35512\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35632\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35587\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35588\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35369\",\"type\":\"CDSView\"}},\"id\":\"35589\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"36003\",\"type\":\"GroupFilter\"},{\"id\":\"36004\",\"type\":\"GroupFilter\"},{\"id\":\"36005\",\"type\":\"GroupFilter\"},{\"id\":\"36006\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36007\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35015\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35584\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35014\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35599\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36014\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35583\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35595\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35596\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35379\",\"type\":\"CDSView\"}},\"id\":\"35597\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34982\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34983\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34771\",\"type\":\"CDSView\"}},\"id\":\"34984\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35603\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35571\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35511\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35512\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35274\",\"type\":\"CDSView\"}},\"id\":\"35513\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35023\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35604\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34975\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"35998\",\"type\":\"GroupFilter\"},{\"id\":\"35999\",\"type\":\"GroupFilter\"},{\"id\":\"36000\",\"type\":\"GroupFilter\"},{\"id\":\"36001\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36002\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35627\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35628\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35419\",\"type\":\"CDSView\"}},\"id\":\"35629\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35998\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35571\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35572\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35349\",\"type\":\"CDSView\"}},\"id\":\"35573\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34982\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"35495\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35019\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"35500\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36010\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34987\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35596\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36841\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"35505\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35575\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35576\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35354\",\"type\":\"CDSView\"}},\"id\":\"35577\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36015\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34986\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34987\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34776\",\"type\":\"CDSView\"}},\"id\":\"34988\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35503\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35539\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35540\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35309\",\"type\":\"CDSView\"}},\"id\":\"35541\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34978\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34979\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34766\",\"type\":\"CDSView\"}},\"id\":\"34980\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35572\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"35505\",\"type\":\"GroupFilter\"},{\"id\":\"35506\",\"type\":\"GroupFilter\"},{\"id\":\"35507\",\"type\":\"GroupFilter\"},{\"id\":\"35508\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35509\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true]},\"id\":\"35273\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35490\",\"type\":\"GroupFilter\"},{\"id\":\"35491\",\"type\":\"GroupFilter\"},{\"id\":\"35492\",\"type\":\"GroupFilter\"},{\"id\":\"35493\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35494\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35501\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35515\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35523\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35631\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34971\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35575\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"34970\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"34971\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34756\",\"type\":\"CDSView\"}},\"id\":\"34972\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35519\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35603\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35604\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35389\",\"type\":\"CDSView\"}},\"id\":\"35605\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35591\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35272\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35497\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35635\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35544\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34983\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"34986\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35511\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35628\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36197\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36205\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36180\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36208\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36209\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35982\",\"type\":\"CDSView\"}},\"id\":\"36210\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36192\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36200\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36201\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35972\",\"type\":\"CDSView\"}},\"id\":\"36202\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36201\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36212\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36212\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36213\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35987\",\"type\":\"CDSView\"}},\"id\":\"36214\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36204\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36180\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36181\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35947\",\"type\":\"CDSView\"}},\"id\":\"36182\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36209\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36803\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36208\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36177\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36292\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36200\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36184\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36185\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35952\",\"type\":\"CDSView\"}},\"id\":\"36186\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36213\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36189\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36802\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36289\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36185\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36176\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36177\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35942\",\"type\":\"CDSView\"}},\"id\":\"36178\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36188\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36188\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36189\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35957\",\"type\":\"CDSView\"}},\"id\":\"36190\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36216\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36217\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36293\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36176\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36184\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36204\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36205\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35977\",\"type\":\"CDSView\"}},\"id\":\"36206\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36288\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36289\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36082\",\"type\":\"CDSView\"}},\"id\":\"36290\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36196\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36197\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35967\",\"type\":\"CDSView\"}},\"id\":\"36198\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36181\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36196\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35383\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35388\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35924\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35923\",\"type\":\"GroupFilter\"},{\"id\":\"35924\",\"type\":\"GroupFilter\"},{\"id\":\"35925\",\"type\":\"GroupFilter\"},{\"id\":\"35926\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35927\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35376\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35948\",\"type\":\"GroupFilter\"},{\"id\":\"35949\",\"type\":\"GroupFilter\"},{\"id\":\"35950\",\"type\":\"GroupFilter\"},{\"id\":\"35951\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35952\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35387\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"35926\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35938\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35953\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35928\",\"type\":\"GroupFilter\"},{\"id\":\"35929\",\"type\":\"GroupFilter\"},{\"id\":\"35930\",\"type\":\"GroupFilter\"},{\"id\":\"35931\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35932\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35397\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35928\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35370\",\"type\":\"GroupFilter\"},{\"id\":\"35371\",\"type\":\"GroupFilter\"},{\"id\":\"35372\",\"type\":\"GroupFilter\"},{\"id\":\"35373\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35374\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"35946\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35375\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false]},\"id\":\"35378\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"35941\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35943\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35943\",\"type\":\"GroupFilter\"},{\"id\":\"35944\",\"type\":\"GroupFilter\"},{\"id\":\"35945\",\"type\":\"GroupFilter\"},{\"id\":\"35946\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35947\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"35380\",\"type\":\"GroupFilter\"},{\"id\":\"35381\",\"type\":\"GroupFilter\"},{\"id\":\"35382\",\"type\":\"GroupFilter\"},{\"id\":\"35383\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35384\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35372\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35950\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35386\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35385\",\"type\":\"GroupFilter\"},{\"id\":\"35386\",\"type\":\"GroupFilter\"},{\"id\":\"35387\",\"type\":\"GroupFilter\"},{\"id\":\"35388\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35389\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35930\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35933\",\"type\":\"GroupFilter\"},{\"id\":\"35934\",\"type\":\"GroupFilter\"},{\"id\":\"35935\",\"type\":\"GroupFilter\"},{\"id\":\"35936\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35937\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"35375\",\"type\":\"GroupFilter\"},{\"id\":\"35376\",\"type\":\"GroupFilter\"},{\"id\":\"35377\",\"type\":\"GroupFilter\"},{\"id\":\"35378\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35379\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35933\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35380\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35945\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35935\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35385\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35371\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35938\",\"type\":\"GroupFilter\"},{\"id\":\"35939\",\"type\":\"GroupFilter\"},{\"id\":\"35940\",\"type\":\"GroupFilter\"},{\"id\":\"35941\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35942\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false]},\"id\":\"35398\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35934\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35390\",\"type\":\"GroupFilter\"},{\"id\":\"35391\",\"type\":\"GroupFilter\"},{\"id\":\"35392\",\"type\":\"GroupFilter\"},{\"id\":\"35393\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35394\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35925\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35391\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35401\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"35951\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true]},\"id\":\"35373\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35377\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35948\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true]},\"id\":\"35393\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35396\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35939\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"35390\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35944\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"35395\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"35931\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"35400\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35949\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35381\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35940\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35382\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35929\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35395\",\"type\":\"GroupFilter\"},{\"id\":\"35396\",\"type\":\"GroupFilter\"},{\"id\":\"35397\",\"type\":\"GroupFilter\"},{\"id\":\"35398\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35399\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35392\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"35936\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35436\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35437\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35340\",\"type\":\"GroupFilter\"},{\"id\":\"35341\",\"type\":\"GroupFilter\"},{\"id\":\"35342\",\"type\":\"GroupFilter\"},{\"id\":\"35343\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35344\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36043\",\"type\":\"GroupFilter\"},{\"id\":\"36044\",\"type\":\"GroupFilter\"},{\"id\":\"36045\",\"type\":\"GroupFilter\"},{\"id\":\"36046\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36047\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35346\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,false,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,true,true,false,true,true,true,true,true,true]},\"id\":\"36659\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35348\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36075\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36671\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35360\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36076\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"36651\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34810\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36653\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34807\",\"type\":\"GroupFilter\"},{\"id\":\"34808\",\"type\":\"GroupFilter\"},{\"id\":\"34809\",\"type\":\"GroupFilter\"},{\"id\":\"34810\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34811\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34815\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35351\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36643\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36060\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36668\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34812\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36054\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36657\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34812\",\"type\":\"GroupFilter\"},{\"id\":\"34813\",\"type\":\"GroupFilter\"},{\"id\":\"34814\",\"type\":\"GroupFilter\"},{\"id\":\"34815\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34816\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,false,true,true,true,false,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,false,true,true,false,true,false,false,true,false,false,false,false,false,false]},\"id\":\"36664\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false]},\"id\":\"34825\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true]},\"id\":\"35353\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36661\",\"type\":\"GroupFilter\"},{\"id\":\"36662\",\"type\":\"GroupFilter\"},{\"id\":\"36663\",\"type\":\"GroupFilter\"},{\"id\":\"36664\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36665\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34813\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"36066\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35360\",\"type\":\"GroupFilter\"},{\"id\":\"35361\",\"type\":\"GroupFilter\"},{\"id\":\"35362\",\"type\":\"GroupFilter\"},{\"id\":\"35363\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35364\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36055\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34817\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"36646\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true]},\"id\":\"34820\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36647\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36064\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false]},\"id\":\"34805\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36070\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36048\",\"type\":\"GroupFilter\"},{\"id\":\"36049\",\"type\":\"GroupFilter\"},{\"id\":\"36050\",\"type\":\"GroupFilter\"},{\"id\":\"36051\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36052\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35343\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,false,true,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36669\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35335\",\"type\":\"GroupFilter\"},{\"id\":\"35336\",\"type\":\"GroupFilter\"},{\"id\":\"35337\",\"type\":\"GroupFilter\"},{\"id\":\"35338\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35339\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34814\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36051\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36641\",\"type\":\"GroupFilter\"},{\"id\":\"36642\",\"type\":\"GroupFilter\"},{\"id\":\"36643\",\"type\":\"GroupFilter\"},{\"id\":\"36644\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36645\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false]},\"id\":\"35358\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36597\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36049\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34830\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35341\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34809\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36061\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35355\",\"type\":\"GroupFilter\"},{\"id\":\"35356\",\"type\":\"GroupFilter\"},{\"id\":\"35357\",\"type\":\"GroupFilter\"},{\"id\":\"35358\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35359\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36648\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34802\",\"type\":\"GroupFilter\"},{\"id\":\"34803\",\"type\":\"GroupFilter\"},{\"id\":\"34804\",\"type\":\"GroupFilter\"},{\"id\":\"34805\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34806\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36048\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36074\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35345\",\"type\":\"GroupFilter\"},{\"id\":\"35346\",\"type\":\"GroupFilter\"},{\"id\":\"35347\",\"type\":\"GroupFilter\"},{\"id\":\"35348\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35349\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36068\",\"type\":\"GroupFilter\"},{\"id\":\"36069\",\"type\":\"GroupFilter\"},{\"id\":\"36070\",\"type\":\"GroupFilter\"},{\"id\":\"36071\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36072\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"34822\",\"type\":\"GroupFilter\"},{\"id\":\"34823\",\"type\":\"GroupFilter\"},{\"id\":\"34824\",\"type\":\"GroupFilter\"},{\"id\":\"34825\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34826\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36059\",\"type\":\"GroupFilter\"},{\"attributes\":{\"text\":\"Data used to estimate contour-plot\"},\"id\":\"37301\",\"type\":\"Div\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36642\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34817\",\"type\":\"GroupFilter\"},{\"id\":\"34818\",\"type\":\"GroupFilter\"},{\"id\":\"34819\",\"type\":\"GroupFilter\"},{\"id\":\"34820\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34821\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35367\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36063\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"36641\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35350\",\"type\":\"GroupFilter\"},{\"id\":\"35351\",\"type\":\"GroupFilter\"},{\"id\":\"35352\",\"type\":\"GroupFilter\"},{\"id\":\"35353\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35354\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true]},\"id\":\"34800\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36053\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35356\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34807\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35357\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36658\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36073\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36661\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36667\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35365\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35355\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36656\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35366\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34799\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36656\",\"type\":\"GroupFilter\"},{\"id\":\"36657\",\"type\":\"GroupFilter\"},{\"id\":\"36658\",\"type\":\"GroupFilter\"},{\"id\":\"36659\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36660\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36063\",\"type\":\"GroupFilter\"},{\"id\":\"36064\",\"type\":\"GroupFilter\"},{\"id\":\"36065\",\"type\":\"GroupFilter\"},{\"id\":\"36066\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36067\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36065\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35365\",\"type\":\"GroupFilter\"},{\"id\":\"35366\",\"type\":\"GroupFilter\"},{\"id\":\"35367\",\"type\":\"GroupFilter\"},{\"id\":\"35368\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35369\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34827\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,false,true,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36649\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34818\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36058\",\"type\":\"GroupFilter\"},{\"id\":\"36059\",\"type\":\"GroupFilter\"},{\"id\":\"36060\",\"type\":\"GroupFilter\"},{\"id\":\"36061\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36062\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35345\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36654\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34819\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36058\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36662\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34797\",\"type\":\"GroupFilter\"},{\"id\":\"34798\",\"type\":\"GroupFilter\"},{\"id\":\"34799\",\"type\":\"GroupFilter\"},{\"id\":\"34800\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34801\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35363\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36068\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false]},\"id\":\"35338\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35352\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36651\",\"type\":\"GroupFilter\"},{\"id\":\"36652\",\"type\":\"GroupFilter\"},{\"id\":\"36653\",\"type\":\"GroupFilter\"},{\"id\":\"36654\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36655\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34804\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34824\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36073\",\"type\":\"GroupFilter\"},{\"id\":\"36074\",\"type\":\"GroupFilter\"},{\"id\":\"36075\",\"type\":\"GroupFilter\"},{\"id\":\"36076\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36077\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36652\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36050\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"34822\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35340\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,false,true,true,true,false,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,false,true,true,false,true,false,false,true,false,false,false,false,false,false]},\"id\":\"36644\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36663\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35347\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"36046\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36636\",\"type\":\"GroupFilter\"},{\"id\":\"36637\",\"type\":\"GroupFilter\"},{\"id\":\"36638\",\"type\":\"GroupFilter\"},{\"id\":\"36639\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36640\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34803\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36666\",\"type\":\"GroupFilter\"},{\"id\":\"36667\",\"type\":\"GroupFilter\"},{\"id\":\"36668\",\"type\":\"GroupFilter\"},{\"id\":\"36669\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36670\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34829\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34828\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35368\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36069\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36071\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36666\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35342\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36646\",\"type\":\"GroupFilter\"},{\"id\":\"36647\",\"type\":\"GroupFilter\"},{\"id\":\"36648\",\"type\":\"GroupFilter\"},{\"id\":\"36649\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36650\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35370\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35361\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35481\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34802\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36053\",\"type\":\"GroupFilter\"},{\"id\":\"36054\",\"type\":\"GroupFilter\"},{\"id\":\"36055\",\"type\":\"GroupFilter\"},{\"id\":\"36056\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36057\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34823\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35362\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34808\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35350\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36056\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36329\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34690\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36325\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34674\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34719\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36341\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36340\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34693\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34717\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36328\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36329\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36132\",\"type\":\"CDSView\"}},\"id\":\"36330\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":{\"id\":\"37297\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"None\"},\"id\":\"37298\",\"type\":\"Button\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34684\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34703\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34718\",\"type\":\"GroupFilter\"},{\"attributes\":{\"text\":\"Showing only configurations evaluated in:\"},\"id\":\"37294\",\"type\":\"Div\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34694\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34733\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36312\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"35958\",\"type\":\"GroupFilter\"},{\"id\":\"35959\",\"type\":\"GroupFilter\"},{\"id\":\"35960\",\"type\":\"GroupFilter\"},{\"id\":\"35961\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35962\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34672\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34727\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34712\",\"type\":\"GroupFilter\"},{\"id\":\"34713\",\"type\":\"GroupFilter\"},{\"id\":\"34714\",\"type\":\"GroupFilter\"},{\"id\":\"34715\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34716\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36336\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36337\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36142\",\"type\":\"CDSView\"}},\"id\":\"36338\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"active\":[0,1,2,3],\"callback\":{\"id\":\"37293\",\"type\":\"CustomJS\"},\"labels\":[\"budget 9\",\"budget 27\",\"budget 81\",\"budget 243\"]},\"id\":\"37292\",\"type\":\"CheckboxButtonGroup\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34708\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34722\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36638\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34687\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34704\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36337\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36336\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34688\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36333\",\"type\":\"Scatter\"},{\"attributes\":{\"callback\":{\"id\":\"37295\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"All\"},\"id\":\"37296\",\"type\":\"Button\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34702\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36340\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36341\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36147\",\"type\":\"CDSView\"}},\"id\":\"36342\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34673\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34715\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36312\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36313\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36112\",\"type\":\"CDSView\"}},\"id\":\"36314\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"34717\",\"type\":\"GroupFilter\"},{\"id\":\"34718\",\"type\":\"GroupFilter\"},{\"id\":\"34719\",\"type\":\"GroupFilter\"},{\"id\":\"34720\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34721\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34692\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false]},\"id\":\"34685\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34689\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true]},\"id\":\"34720\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36316\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36317\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36117\",\"type\":\"CDSView\"}},\"id\":\"36318\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34730\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36313\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36345\",\"type\":\"Scatter\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"37292\",\"type\":\"CheckboxButtonGroup\"},\"glyph0\":{\"id\":\"34267\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"34271\",\"type\":\"GlyphRenderer\"},\"glyph10\":{\"id\":\"34307\",\"type\":\"GlyphRenderer\"},\"glyph100\":{\"id\":\"35529\",\"type\":\"GlyphRenderer\"},\"glyph101\":{\"id\":\"35533\",\"type\":\"GlyphRenderer\"},\"glyph102\":{\"id\":\"35537\",\"type\":\"GlyphRenderer\"},\"glyph103\":{\"id\":\"35541\",\"type\":\"GlyphRenderer\"},\"glyph104\":{\"id\":\"35545\",\"type\":\"GlyphRenderer\"},\"glyph105\":{\"id\":\"35549\",\"type\":\"GlyphRenderer\"},\"glyph106\":{\"id\":\"35553\",\"type\":\"GlyphRenderer\"},\"glyph107\":{\"id\":\"35557\",\"type\":\"GlyphRenderer\"},\"glyph108\":{\"id\":\"35561\",\"type\":\"GlyphRenderer\"},\"glyph109\":{\"id\":\"35565\",\"type\":\"GlyphRenderer\"},\"glyph11\":{\"id\":\"34311\",\"type\":\"GlyphRenderer\"},\"glyph110\":{\"id\":\"35569\",\"type\":\"GlyphRenderer\"},\"glyph111\":{\"id\":\"35573\",\"type\":\"GlyphRenderer\"},\"glyph112\":{\"id\":\"35577\",\"type\":\"GlyphRenderer\"},\"glyph113\":{\"id\":\"35581\",\"type\":\"GlyphRenderer\"},\"glyph114\":{\"id\":\"35585\",\"type\":\"GlyphRenderer\"},\"glyph115\":{\"id\":\"35589\",\"type\":\"GlyphRenderer\"},\"glyph116\":{\"id\":\"35593\",\"type\":\"GlyphRenderer\"},\"glyph117\":{\"id\":\"35597\",\"type\":\"GlyphRenderer\"},\"glyph118\":{\"id\":\"35601\",\"type\":\"GlyphRenderer\"},\"glyph119\":{\"id\":\"35605\",\"type\":\"GlyphRenderer\"},\"glyph12\":{\"id\":\"34315\",\"type\":\"GlyphRenderer\"},\"glyph120\":{\"id\":\"35609\",\"type\":\"GlyphRenderer\"},\"glyph121\":{\"id\":\"35613\",\"type\":\"GlyphRenderer\"},\"glyph122\":{\"id\":\"35617\",\"type\":\"GlyphRenderer\"},\"glyph123\":{\"id\":\"35621\",\"type\":\"GlyphRenderer\"},\"glyph124\":{\"id\":\"35625\",\"type\":\"GlyphRenderer\"},\"glyph125\":{\"id\":\"35629\",\"type\":\"GlyphRenderer\"},\"glyph126\":{\"id\":\"35633\",\"type\":\"GlyphRenderer\"},\"glyph127\":{\"id\":\"35637\",\"type\":\"GlyphRenderer\"},\"glyph128\":{\"id\":\"35641\",\"type\":\"GlyphRenderer\"},\"glyph129\":{\"id\":\"35645\",\"type\":\"GlyphRenderer\"},\"glyph13\":{\"id\":\"34319\",\"type\":\"GlyphRenderer\"},\"glyph130\":{\"id\":\"35649\",\"type\":\"GlyphRenderer\"},\"glyph131\":{\"id\":\"35653\",\"type\":\"GlyphRenderer\"},\"glyph132\":{\"id\":\"35657\",\"type\":\"GlyphRenderer\"},\"glyph133\":{\"id\":\"35661\",\"type\":\"GlyphRenderer\"},\"glyph134\":{\"id\":\"35665\",\"type\":\"GlyphRenderer\"},\"glyph135\":{\"id\":\"35669\",\"type\":\"GlyphRenderer\"},\"glyph136\":{\"id\":\"35673\",\"type\":\"GlyphRenderer\"},\"glyph137\":{\"id\":\"35677\",\"type\":\"GlyphRenderer\"},\"glyph138\":{\"id\":\"35681\",\"type\":\"GlyphRenderer\"},\"glyph139\":{\"id\":\"35685\",\"type\":\"GlyphRenderer\"},\"glyph14\":{\"id\":\"34323\",\"type\":\"GlyphRenderer\"},\"glyph140\":{\"id\":\"35689\",\"type\":\"GlyphRenderer\"},\"glyph141\":{\"id\":\"35693\",\"type\":\"GlyphRenderer\"},\"glyph142\":{\"id\":\"35697\",\"type\":\"GlyphRenderer\"},\"glyph143\":{\"id\":\"35701\",\"type\":\"GlyphRenderer\"},\"glyph144\":{\"id\":\"36166\",\"type\":\"GlyphRenderer\"},\"glyph145\":{\"id\":\"36170\",\"type\":\"GlyphRenderer\"},\"glyph146\":{\"id\":\"36174\",\"type\":\"GlyphRenderer\"},\"glyph147\":{\"id\":\"36178\",\"type\":\"GlyphRenderer\"},\"glyph148\":{\"id\":\"36182\",\"type\":\"GlyphRenderer\"},\"glyph149\":{\"id\":\"36186\",\"type\":\"GlyphRenderer\"},\"glyph15\":{\"id\":\"34327\",\"type\":\"GlyphRenderer\"},\"glyph150\":{\"id\":\"36190\",\"type\":\"GlyphRenderer\"},\"glyph151\":{\"id\":\"36194\",\"type\":\"GlyphRenderer\"},\"glyph152\":{\"id\":\"36198\",\"type\":\"GlyphRenderer\"},\"glyph153\":{\"id\":\"36202\",\"type\":\"GlyphRenderer\"},\"glyph154\":{\"id\":\"36206\",\"type\":\"GlyphRenderer\"},\"glyph155\":{\"id\":\"36210\",\"type\":\"GlyphRenderer\"},\"glyph156\":{\"id\":\"36214\",\"type\":\"GlyphRenderer\"},\"glyph157\":{\"id\":\"36218\",\"type\":\"GlyphRenderer\"},\"glyph158\":{\"id\":\"36222\",\"type\":\"GlyphRenderer\"},\"glyph159\":{\"id\":\"36226\",\"type\":\"GlyphRenderer\"},\"glyph16\":{\"id\":\"34331\",\"type\":\"GlyphRenderer\"},\"glyph160\":{\"id\":\"36230\",\"type\":\"GlyphRenderer\"},\"glyph161\":{\"id\":\"36234\",\"type\":\"GlyphRenderer\"},\"glyph162\":{\"id\":\"36238\",\"type\":\"GlyphRenderer\"},\"glyph163\":{\"id\":\"36242\",\"type\":\"GlyphRenderer\"},\"glyph164\":{\"id\":\"36246\",\"type\":\"GlyphRenderer\"},\"glyph165\":{\"id\":\"36250\",\"type\":\"GlyphRenderer\"},\"glyph166\":{\"id\":\"36254\",\"type\":\"GlyphRenderer\"},\"glyph167\":{\"id\":\"36258\",\"type\":\"GlyphRenderer\"},\"glyph168\":{\"id\":\"36262\",\"type\":\"GlyphRenderer\"},\"glyph169\":{\"id\":\"36266\",\"type\":\"GlyphRenderer\"},\"glyph17\":{\"id\":\"34335\",\"type\":\"GlyphRenderer\"},\"glyph170\":{\"id\":\"36270\",\"type\":\"GlyphRenderer\"},\"glyph171\":{\"id\":\"36274\",\"type\":\"GlyphRenderer\"},\"glyph172\":{\"id\":\"36278\",\"type\":\"GlyphRenderer\"},\"glyph173\":{\"id\":\"36282\",\"type\":\"GlyphRenderer\"},\"glyph174\":{\"id\":\"36286\",\"type\":\"GlyphRenderer\"},\"glyph175\":{\"id\":\"36290\",\"type\":\"GlyphRenderer\"},\"glyph176\":{\"id\":\"36294\",\"type\":\"GlyphRenderer\"},\"glyph177\":{\"id\":\"36298\",\"type\":\"GlyphRenderer\"},\"glyph178\":{\"id\":\"36302\",\"type\":\"GlyphRenderer\"},\"glyph179\":{\"id\":\"36306\",\"type\":\"GlyphRenderer\"},\"glyph18\":{\"id\":\"34339\",\"type\":\"GlyphRenderer\"},\"glyph180\":{\"id\":\"36310\",\"type\":\"GlyphRenderer\"},\"glyph181\":{\"id\":\"36314\",\"type\":\"GlyphRenderer\"},\"glyph182\":{\"id\":\"36318\",\"type\":\"GlyphRenderer\"},\"glyph183\":{\"id\":\"36322\",\"type\":\"GlyphRenderer\"},\"glyph184\":{\"id\":\"36326\",\"type\":\"GlyphRenderer\"},\"glyph185\":{\"id\":\"36330\",\"type\":\"GlyphRenderer\"},\"glyph186\":{\"id\":\"36334\",\"type\":\"GlyphRenderer\"},\"glyph187\":{\"id\":\"36338\",\"type\":\"GlyphRenderer\"},\"glyph188\":{\"id\":\"36342\",\"type\":\"GlyphRenderer\"},\"glyph189\":{\"id\":\"36346\",\"type\":\"GlyphRenderer\"},\"glyph19\":{\"id\":\"34343\",\"type\":\"GlyphRenderer\"},\"glyph190\":{\"id\":\"36350\",\"type\":\"GlyphRenderer\"},\"glyph191\":{\"id\":\"36354\",\"type\":\"GlyphRenderer\"},\"glyph192\":{\"id\":\"36839\",\"type\":\"GlyphRenderer\"},\"glyph193\":{\"id\":\"36843\",\"type\":\"GlyphRenderer\"},\"glyph194\":{\"id\":\"36847\",\"type\":\"GlyphRenderer\"},\"glyph195\":{\"id\":\"36851\",\"type\":\"GlyphRenderer\"},\"glyph196\":{\"id\":\"36855\",\"type\":\"GlyphRenderer\"},\"glyph197\":{\"id\":\"36859\",\"type\":\"GlyphRenderer\"},\"glyph198\":{\"id\":\"36863\",\"type\":\"GlyphRenderer\"},\"glyph199\":{\"id\":\"36867\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"34275\",\"type\":\"GlyphRenderer\"},\"glyph20\":{\"id\":\"34347\",\"type\":\"GlyphRenderer\"},\"glyph200\":{\"id\":\"36871\",\"type\":\"GlyphRenderer\"},\"glyph201\":{\"id\":\"36875\",\"type\":\"GlyphRenderer\"},\"glyph202\":{\"id\":\"36879\",\"type\":\"GlyphRenderer\"},\"glyph203\":{\"id\":\"36883\",\"type\":\"GlyphRenderer\"},\"glyph204\":{\"id\":\"36887\",\"type\":\"GlyphRenderer\"},\"glyph205\":{\"id\":\"36891\",\"type\":\"GlyphRenderer\"},\"glyph206\":{\"id\":\"36895\",\"type\":\"GlyphRenderer\"},\"glyph207\":{\"id\":\"36899\",\"type\":\"GlyphRenderer\"},\"glyph208\":{\"id\":\"36903\",\"type\":\"GlyphRenderer\"},\"glyph209\":{\"id\":\"36907\",\"type\":\"GlyphRenderer\"},\"glyph21\":{\"id\":\"34351\",\"type\":\"GlyphRenderer\"},\"glyph210\":{\"id\":\"36911\",\"type\":\"GlyphRenderer\"},\"glyph211\":{\"id\":\"36915\",\"type\":\"GlyphRenderer\"},\"glyph212\":{\"id\":\"36919\",\"type\":\"GlyphRenderer\"},\"glyph213\":{\"id\":\"36923\",\"type\":\"GlyphRenderer\"},\"glyph214\":{\"id\":\"36927\",\"type\":\"GlyphRenderer\"},\"glyph215\":{\"id\":\"36931\",\"type\":\"GlyphRenderer\"},\"glyph216\":{\"id\":\"36935\",\"type\":\"GlyphRenderer\"},\"glyph217\":{\"id\":\"36939\",\"type\":\"GlyphRenderer\"},\"glyph218\":{\"id\":\"36943\",\"type\":\"GlyphRenderer\"},\"glyph219\":{\"id\":\"36947\",\"type\":\"GlyphRenderer\"},\"glyph22\":{\"id\":\"34355\",\"type\":\"GlyphRenderer\"},\"glyph220\":{\"id\":\"36951\",\"type\":\"GlyphRenderer\"},\"glyph221\":{\"id\":\"36955\",\"type\":\"GlyphRenderer\"},\"glyph222\":{\"id\":\"36959\",\"type\":\"GlyphRenderer\"},\"glyph223\":{\"id\":\"36963\",\"type\":\"GlyphRenderer\"},\"glyph224\":{\"id\":\"36967\",\"type\":\"GlyphRenderer\"},\"glyph225\":{\"id\":\"36971\",\"type\":\"GlyphRenderer\"},\"glyph226\":{\"id\":\"36975\",\"type\":\"GlyphRenderer\"},\"glyph227\":{\"id\":\"36979\",\"type\":\"GlyphRenderer\"},\"glyph228\":{\"id\":\"36983\",\"type\":\"GlyphRenderer\"},\"glyph229\":{\"id\":\"36987\",\"type\":\"GlyphRenderer\"},\"glyph23\":{\"id\":\"34359\",\"type\":\"GlyphRenderer\"},\"glyph230\":{\"id\":\"36991\",\"type\":\"GlyphRenderer\"},\"glyph231\":{\"id\":\"36995\",\"type\":\"GlyphRenderer\"},\"glyph232\":{\"id\":\"36999\",\"type\":\"GlyphRenderer\"},\"glyph233\":{\"id\":\"37003\",\"type\":\"GlyphRenderer\"},\"glyph234\":{\"id\":\"37007\",\"type\":\"GlyphRenderer\"},\"glyph235\":{\"id\":\"37011\",\"type\":\"GlyphRenderer\"},\"glyph236\":{\"id\":\"37015\",\"type\":\"GlyphRenderer\"},\"glyph237\":{\"id\":\"37019\",\"type\":\"GlyphRenderer\"},\"glyph238\":{\"id\":\"37023\",\"type\":\"GlyphRenderer\"},\"glyph239\":{\"id\":\"37027\",\"type\":\"GlyphRenderer\"},\"glyph24\":{\"id\":\"34363\",\"type\":\"GlyphRenderer\"},\"glyph25\":{\"id\":\"34367\",\"type\":\"GlyphRenderer\"},\"glyph26\":{\"id\":\"34371\",\"type\":\"GlyphRenderer\"},\"glyph27\":{\"id\":\"34375\",\"type\":\"GlyphRenderer\"},\"glyph28\":{\"id\":\"34379\",\"type\":\"GlyphRenderer\"},\"glyph29\":{\"id\":\"34383\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"34279\",\"type\":\"GlyphRenderer\"},\"glyph30\":{\"id\":\"34387\",\"type\":\"GlyphRenderer\"},\"glyph31\":{\"id\":\"34391\",\"type\":\"GlyphRenderer\"},\"glyph32\":{\"id\":\"34395\",\"type\":\"GlyphRenderer\"},\"glyph33\":{\"id\":\"34399\",\"type\":\"GlyphRenderer\"},\"glyph34\":{\"id\":\"34403\",\"type\":\"GlyphRenderer\"},\"glyph35\":{\"id\":\"34407\",\"type\":\"GlyphRenderer\"},\"glyph36\":{\"id\":\"34411\",\"type\":\"GlyphRenderer\"},\"glyph37\":{\"id\":\"34415\",\"type\":\"GlyphRenderer\"},\"glyph38\":{\"id\":\"34419\",\"type\":\"GlyphRenderer\"},\"glyph39\":{\"id\":\"34423\",\"type\":\"GlyphRenderer\"},\"glyph4\":{\"id\":\"34283\",\"type\":\"GlyphRenderer\"},\"glyph40\":{\"id\":\"34427\",\"type\":\"GlyphRenderer\"},\"glyph41\":{\"id\":\"34431\",\"type\":\"GlyphRenderer\"},\"glyph42\":{\"id\":\"34435\",\"type\":\"GlyphRenderer\"},\"glyph43\":{\"id\":\"34439\",\"type\":\"GlyphRenderer\"},\"glyph44\":{\"id\":\"34443\",\"type\":\"GlyphRenderer\"},\"glyph45\":{\"id\":\"34447\",\"type\":\"GlyphRenderer\"},\"glyph46\":{\"id\":\"34451\",\"type\":\"GlyphRenderer\"},\"glyph47\":{\"id\":\"34455\",\"type\":\"GlyphRenderer\"},\"glyph48\":{\"id\":\"34880\",\"type\":\"GlyphRenderer\"},\"glyph49\":{\"id\":\"34884\",\"type\":\"GlyphRenderer\"},\"glyph5\":{\"id\":\"34287\",\"type\":\"GlyphRenderer\"},\"glyph50\":{\"id\":\"34888\",\"type\":\"GlyphRenderer\"},\"glyph51\":{\"id\":\"34892\",\"type\":\"GlyphRenderer\"},\"glyph52\":{\"id\":\"34896\",\"type\":\"GlyphRenderer\"},\"glyph53\":{\"id\":\"34900\",\"type\":\"GlyphRenderer\"},\"glyph54\":{\"id\":\"34904\",\"type\":\"GlyphRenderer\"},\"glyph55\":{\"id\":\"34908\",\"type\":\"GlyphRenderer\"},\"glyph56\":{\"id\":\"34912\",\"type\":\"GlyphRenderer\"},\"glyph57\":{\"id\":\"34916\",\"type\":\"GlyphRenderer\"},\"glyph58\":{\"id\":\"34920\",\"type\":\"GlyphRenderer\"},\"glyph59\":{\"id\":\"34924\",\"type\":\"GlyphRenderer\"},\"glyph6\":{\"id\":\"34291\",\"type\":\"GlyphRenderer\"},\"glyph60\":{\"id\":\"34928\",\"type\":\"GlyphRenderer\"},\"glyph61\":{\"id\":\"34932\",\"type\":\"GlyphRenderer\"},\"glyph62\":{\"id\":\"34936\",\"type\":\"GlyphRenderer\"},\"glyph63\":{\"id\":\"34940\",\"type\":\"GlyphRenderer\"},\"glyph64\":{\"id\":\"34944\",\"type\":\"GlyphRenderer\"},\"glyph65\":{\"id\":\"34948\",\"type\":\"GlyphRenderer\"},\"glyph66\":{\"id\":\"34952\",\"type\":\"GlyphRenderer\"},\"glyph67\":{\"id\":\"34956\",\"type\":\"GlyphRenderer\"},\"glyph68\":{\"id\":\"34960\",\"type\":\"GlyphRenderer\"},\"glyph69\":{\"id\":\"34964\",\"type\":\"GlyphRenderer\"},\"glyph7\":{\"id\":\"34295\",\"type\":\"GlyphRenderer\"},\"glyph70\":{\"id\":\"34968\",\"type\":\"GlyphRenderer\"},\"glyph71\":{\"id\":\"34972\",\"type\":\"GlyphRenderer\"},\"glyph72\":{\"id\":\"34976\",\"type\":\"GlyphRenderer\"},\"glyph73\":{\"id\":\"34980\",\"type\":\"GlyphRenderer\"},\"glyph74\":{\"id\":\"34984\",\"type\":\"GlyphRenderer\"},\"glyph75\":{\"id\":\"34988\",\"type\":\"GlyphRenderer\"},\"glyph76\":{\"id\":\"34992\",\"type\":\"GlyphRenderer\"},\"glyph77\":{\"id\":\"34996\",\"type\":\"GlyphRenderer\"},\"glyph78\":{\"id\":\"35000\",\"type\":\"GlyphRenderer\"},\"glyph79\":{\"id\":\"35004\",\"type\":\"GlyphRenderer\"},\"glyph8\":{\"id\":\"34299\",\"type\":\"GlyphRenderer\"},\"glyph80\":{\"id\":\"35008\",\"type\":\"GlyphRenderer\"},\"glyph81\":{\"id\":\"35012\",\"type\":\"GlyphRenderer\"},\"glyph82\":{\"id\":\"35016\",\"type\":\"GlyphRenderer\"},\"glyph83\":{\"id\":\"35020\",\"type\":\"GlyphRenderer\"},\"glyph84\":{\"id\":\"35024\",\"type\":\"GlyphRenderer\"},\"glyph85\":{\"id\":\"35028\",\"type\":\"GlyphRenderer\"},\"glyph86\":{\"id\":\"35032\",\"type\":\"GlyphRenderer\"},\"glyph87\":{\"id\":\"35036\",\"type\":\"GlyphRenderer\"},\"glyph88\":{\"id\":\"35040\",\"type\":\"GlyphRenderer\"},\"glyph89\":{\"id\":\"35044\",\"type\":\"GlyphRenderer\"},\"glyph9\":{\"id\":\"34303\",\"type\":\"GlyphRenderer\"},\"glyph90\":{\"id\":\"35048\",\"type\":\"GlyphRenderer\"},\"glyph91\":{\"id\":\"35052\",\"type\":\"GlyphRenderer\"},\"glyph92\":{\"id\":\"35056\",\"type\":\"GlyphRenderer\"},\"glyph93\":{\"id\":\"35060\",\"type\":\"GlyphRenderer\"},\"glyph94\":{\"id\":\"35064\",\"type\":\"GlyphRenderer\"},\"glyph95\":{\"id\":\"35068\",\"type\":\"GlyphRenderer\"},\"glyph96\":{\"id\":\"35513\",\"type\":\"GlyphRenderer\"},\"glyph97\":{\"id\":\"35517\",\"type\":\"GlyphRenderer\"},\"glyph98\":{\"id\":\"35521\",\"type\":\"GlyphRenderer\"},\"glyph99\":{\"id\":\"35525\",\"type\":\"GlyphRenderer\"},\"time_slider\":{\"id\":\"37291\",\"type\":\"Slider\"}},\"code\":\"checkbox.active = [0, 1, 2, 3];var glyphs = [glyph0, glyph1, glyph2, glyph3, glyph4, glyph5, glyph6, glyph7, glyph8, glyph9, glyph10, glyph11, glyph12, glyph13, glyph14, glyph15, glyph16, glyph17, glyph18, glyph19, glyph20, glyph21, glyph22, glyph23, glyph24, glyph25, glyph26, glyph27, glyph28, glyph29, glyph30, glyph31, glyph32, glyph33, glyph34, glyph35, glyph36, glyph37, glyph38, glyph39, glyph40, glyph41, glyph42, glyph43, glyph44, glyph45, glyph46, glyph47, glyph48, glyph49, glyph50, glyph51, glyph52, glyph53, glyph54, glyph55, glyph56, glyph57, glyph58, glyph59, glyph60, glyph61, glyph62, glyph63, glyph64, glyph65, glyph66, glyph67, glyph68, glyph69, glyph70, glyph71, glyph72, glyph73, glyph74, glyph75, glyph76, glyph77, glyph78, glyph79, glyph80, glyph81, glyph82, glyph83, glyph84, glyph85, glyph86, glyph87, glyph88, glyph89, glyph90, glyph91, glyph92, glyph93, glyph94, glyph95, glyph96, glyph97, glyph98, glyph99, glyph100, glyph101, glyph102, glyph103, glyph104, glyph105, glyph106, glyph107, glyph108, glyph109, glyph110, glyph111, glyph112, glyph113, glyph114, glyph115, glyph116, glyph117, glyph118, glyph119, glyph120, glyph121, glyph122, glyph123, glyph124, glyph125, glyph126, glyph127, glyph128, glyph129, glyph130, glyph131, glyph132, glyph133, glyph134, glyph135, glyph136, glyph137, glyph138, glyph139, glyph140, glyph141, glyph142, glyph143, glyph144, glyph145, glyph146, glyph147, glyph148, glyph149, glyph150, glyph151, glyph152, glyph153, glyph154, glyph155, glyph156, glyph157, glyph158, glyph159, glyph160, glyph161, glyph162, glyph163, glyph164, glyph165, glyph166, glyph167, glyph168, glyph169, glyph170, glyph171, glyph172, glyph173, glyph174, glyph175, glyph176, glyph177, glyph178, glyph179, glyph180, glyph181, glyph182, glyph183, glyph184, glyph185, glyph186, glyph187, glyph188, glyph189, glyph190, glyph191, glyph192, glyph193, glyph194, glyph195, glyph196, glyph197, glyph198, glyph199, glyph200, glyph201, glyph202, glyph203, glyph204, glyph205, glyph206, glyph207, glyph208, glyph209, glyph210, glyph211, glyph212, glyph213, glyph214, glyph215, glyph216, glyph217, glyph218, glyph219, glyph220, glyph221, glyph222, glyph223, glyph224, glyph225, glyph226, glyph227, glyph228, glyph229, glyph230, glyph231, glyph232, glyph233, glyph234, glyph235, glyph236, glyph237, glyph238, glyph239];var overtime = [[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191],[192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239]];var runs = [[0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236],[1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237],[2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238],[3,7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83,87,91,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,163,167,171,175,179,183,187,191,195,199,203,207,211,215,219,223,227,231,235,239]];\\n glyphs.forEach(function(g) {\\n g.visible = false;\\n })\\n // union function\\n function union_arrays(x, y) {\\n var obj = {};\\n for (var i = x.length-1; i >= 0; -- i)\\n obj[x[i]] = x[i];\\n for (var i = y.length-1; i >= 0; -- i)\\n obj[y[i]] = y[i];\\n var res = []\\n for (var k in obj) {\\n if (obj.hasOwnProperty(k)) // <-- optional\\n res.push(obj[k]);\\n }\\n return res;\\n }\\n console.log(\\\"Timeslider: \\\" + time_slider.value);\\n console.log(\\\"Checkbox: \\\" + checkbox.active);var slider_labels = ['0.01', '0.03', '0.13', '0.32', '1.33'];console.log(\\\"Detected slider_labels: \\\" + slider_labels);time_slider.title = \\\"Until wallclocktime \\\" + slider_labels[time_slider.value - 1] + \\\". Step no.\\\"; \\n var activate = [];\\n // if we want multiple checkboxes at the same time, we need to combine the arrays\\n checkbox.active.forEach(function(c) {\\n activate = union_arrays(activate, runs[c]);\\n })\\n // now the intersection of timeslider-activated and checkbox-activated\\n activate = activate.filter(value => -1 !== overtime[time_slider.value - 1].indexOf(value));\\n activate.forEach(function(idx) {\\n glyphs[idx].visible = true;\\n })\\n \"},\"id\":\"37295\",\"type\":\"CustomJS\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36321\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"34722\",\"type\":\"GroupFilter\"},{\"id\":\"34723\",\"type\":\"GroupFilter\"},{\"id\":\"34724\",\"type\":\"GroupFilter\"},{\"id\":\"34725\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34726\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34683\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34713\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34727\",\"type\":\"GroupFilter\"},{\"id\":\"34728\",\"type\":\"GroupFilter\"},{\"id\":\"34729\",\"type\":\"GroupFilter\"},{\"id\":\"34730\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34731\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34712\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36324\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36325\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36127\",\"type\":\"CDSView\"}},\"id\":\"36326\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34707\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34675\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34723\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36320\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36321\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36122\",\"type\":\"CDSView\"}},\"id\":\"36322\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"34732\",\"type\":\"GroupFilter\"},{\"id\":\"34733\",\"type\":\"GroupFilter\"},{\"id\":\"34734\",\"type\":\"GroupFilter\"},{\"id\":\"34735\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34736\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34682\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false]},\"id\":\"34725\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36324\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true]},\"id\":\"34700\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34709\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34692\",\"type\":\"GroupFilter\"},{\"id\":\"34693\",\"type\":\"GroupFilter\"},{\"id\":\"34694\",\"type\":\"GroupFilter\"},{\"id\":\"34695\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34696\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34735\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36637\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36632\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34707\",\"type\":\"GroupFilter\"},{\"id\":\"34708\",\"type\":\"GroupFilter\"},{\"id\":\"34709\",\"type\":\"GroupFilter\"},{\"id\":\"34710\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34711\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34695\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false]},\"id\":\"34705\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34682\",\"type\":\"GroupFilter\"},{\"id\":\"34683\",\"type\":\"GroupFilter\"},{\"id\":\"34684\",\"type\":\"GroupFilter\"},{\"id\":\"34685\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34686\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36332\",\"type\":\"Scatter\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"37292\",\"type\":\"CheckboxButtonGroup\"},\"glyph0\":{\"id\":\"34267\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"34271\",\"type\":\"GlyphRenderer\"},\"glyph10\":{\"id\":\"34307\",\"type\":\"GlyphRenderer\"},\"glyph100\":{\"id\":\"35529\",\"type\":\"GlyphRenderer\"},\"glyph101\":{\"id\":\"35533\",\"type\":\"GlyphRenderer\"},\"glyph102\":{\"id\":\"35537\",\"type\":\"GlyphRenderer\"},\"glyph103\":{\"id\":\"35541\",\"type\":\"GlyphRenderer\"},\"glyph104\":{\"id\":\"35545\",\"type\":\"GlyphRenderer\"},\"glyph105\":{\"id\":\"35549\",\"type\":\"GlyphRenderer\"},\"glyph106\":{\"id\":\"35553\",\"type\":\"GlyphRenderer\"},\"glyph107\":{\"id\":\"35557\",\"type\":\"GlyphRenderer\"},\"glyph108\":{\"id\":\"35561\",\"type\":\"GlyphRenderer\"},\"glyph109\":{\"id\":\"35565\",\"type\":\"GlyphRenderer\"},\"glyph11\":{\"id\":\"34311\",\"type\":\"GlyphRenderer\"},\"glyph110\":{\"id\":\"35569\",\"type\":\"GlyphRenderer\"},\"glyph111\":{\"id\":\"35573\",\"type\":\"GlyphRenderer\"},\"glyph112\":{\"id\":\"35577\",\"type\":\"GlyphRenderer\"},\"glyph113\":{\"id\":\"35581\",\"type\":\"GlyphRenderer\"},\"glyph114\":{\"id\":\"35585\",\"type\":\"GlyphRenderer\"},\"glyph115\":{\"id\":\"35589\",\"type\":\"GlyphRenderer\"},\"glyph116\":{\"id\":\"35593\",\"type\":\"GlyphRenderer\"},\"glyph117\":{\"id\":\"35597\",\"type\":\"GlyphRenderer\"},\"glyph118\":{\"id\":\"35601\",\"type\":\"GlyphRenderer\"},\"glyph119\":{\"id\":\"35605\",\"type\":\"GlyphRenderer\"},\"glyph12\":{\"id\":\"34315\",\"type\":\"GlyphRenderer\"},\"glyph120\":{\"id\":\"35609\",\"type\":\"GlyphRenderer\"},\"glyph121\":{\"id\":\"35613\",\"type\":\"GlyphRenderer\"},\"glyph122\":{\"id\":\"35617\",\"type\":\"GlyphRenderer\"},\"glyph123\":{\"id\":\"35621\",\"type\":\"GlyphRenderer\"},\"glyph124\":{\"id\":\"35625\",\"type\":\"GlyphRenderer\"},\"glyph125\":{\"id\":\"35629\",\"type\":\"GlyphRenderer\"},\"glyph126\":{\"id\":\"35633\",\"type\":\"GlyphRenderer\"},\"glyph127\":{\"id\":\"35637\",\"type\":\"GlyphRenderer\"},\"glyph128\":{\"id\":\"35641\",\"type\":\"GlyphRenderer\"},\"glyph129\":{\"id\":\"35645\",\"type\":\"GlyphRenderer\"},\"glyph13\":{\"id\":\"34319\",\"type\":\"GlyphRenderer\"},\"glyph130\":{\"id\":\"35649\",\"type\":\"GlyphRenderer\"},\"glyph131\":{\"id\":\"35653\",\"type\":\"GlyphRenderer\"},\"glyph132\":{\"id\":\"35657\",\"type\":\"GlyphRenderer\"},\"glyph133\":{\"id\":\"35661\",\"type\":\"GlyphRenderer\"},\"glyph134\":{\"id\":\"35665\",\"type\":\"GlyphRenderer\"},\"glyph135\":{\"id\":\"35669\",\"type\":\"GlyphRenderer\"},\"glyph136\":{\"id\":\"35673\",\"type\":\"GlyphRenderer\"},\"glyph137\":{\"id\":\"35677\",\"type\":\"GlyphRenderer\"},\"glyph138\":{\"id\":\"35681\",\"type\":\"GlyphRenderer\"},\"glyph139\":{\"id\":\"35685\",\"type\":\"GlyphRenderer\"},\"glyph14\":{\"id\":\"34323\",\"type\":\"GlyphRenderer\"},\"glyph140\":{\"id\":\"35689\",\"type\":\"GlyphRenderer\"},\"glyph141\":{\"id\":\"35693\",\"type\":\"GlyphRenderer\"},\"glyph142\":{\"id\":\"35697\",\"type\":\"GlyphRenderer\"},\"glyph143\":{\"id\":\"35701\",\"type\":\"GlyphRenderer\"},\"glyph144\":{\"id\":\"36166\",\"type\":\"GlyphRenderer\"},\"glyph145\":{\"id\":\"36170\",\"type\":\"GlyphRenderer\"},\"glyph146\":{\"id\":\"36174\",\"type\":\"GlyphRenderer\"},\"glyph147\":{\"id\":\"36178\",\"type\":\"GlyphRenderer\"},\"glyph148\":{\"id\":\"36182\",\"type\":\"GlyphRenderer\"},\"glyph149\":{\"id\":\"36186\",\"type\":\"GlyphRenderer\"},\"glyph15\":{\"id\":\"34327\",\"type\":\"GlyphRenderer\"},\"glyph150\":{\"id\":\"36190\",\"type\":\"GlyphRenderer\"},\"glyph151\":{\"id\":\"36194\",\"type\":\"GlyphRenderer\"},\"glyph152\":{\"id\":\"36198\",\"type\":\"GlyphRenderer\"},\"glyph153\":{\"id\":\"36202\",\"type\":\"GlyphRenderer\"},\"glyph154\":{\"id\":\"36206\",\"type\":\"GlyphRenderer\"},\"glyph155\":{\"id\":\"36210\",\"type\":\"GlyphRenderer\"},\"glyph156\":{\"id\":\"36214\",\"type\":\"GlyphRenderer\"},\"glyph157\":{\"id\":\"36218\",\"type\":\"GlyphRenderer\"},\"glyph158\":{\"id\":\"36222\",\"type\":\"GlyphRenderer\"},\"glyph159\":{\"id\":\"36226\",\"type\":\"GlyphRenderer\"},\"glyph16\":{\"id\":\"34331\",\"type\":\"GlyphRenderer\"},\"glyph160\":{\"id\":\"36230\",\"type\":\"GlyphRenderer\"},\"glyph161\":{\"id\":\"36234\",\"type\":\"GlyphRenderer\"},\"glyph162\":{\"id\":\"36238\",\"type\":\"GlyphRenderer\"},\"glyph163\":{\"id\":\"36242\",\"type\":\"GlyphRenderer\"},\"glyph164\":{\"id\":\"36246\",\"type\":\"GlyphRenderer\"},\"glyph165\":{\"id\":\"36250\",\"type\":\"GlyphRenderer\"},\"glyph166\":{\"id\":\"36254\",\"type\":\"GlyphRenderer\"},\"glyph167\":{\"id\":\"36258\",\"type\":\"GlyphRenderer\"},\"glyph168\":{\"id\":\"36262\",\"type\":\"GlyphRenderer\"},\"glyph169\":{\"id\":\"36266\",\"type\":\"GlyphRenderer\"},\"glyph17\":{\"id\":\"34335\",\"type\":\"GlyphRenderer\"},\"glyph170\":{\"id\":\"36270\",\"type\":\"GlyphRenderer\"},\"glyph171\":{\"id\":\"36274\",\"type\":\"GlyphRenderer\"},\"glyph172\":{\"id\":\"36278\",\"type\":\"GlyphRenderer\"},\"glyph173\":{\"id\":\"36282\",\"type\":\"GlyphRenderer\"},\"glyph174\":{\"id\":\"36286\",\"type\":\"GlyphRenderer\"},\"glyph175\":{\"id\":\"36290\",\"type\":\"GlyphRenderer\"},\"glyph176\":{\"id\":\"36294\",\"type\":\"GlyphRenderer\"},\"glyph177\":{\"id\":\"36298\",\"type\":\"GlyphRenderer\"},\"glyph178\":{\"id\":\"36302\",\"type\":\"GlyphRenderer\"},\"glyph179\":{\"id\":\"36306\",\"type\":\"GlyphRenderer\"},\"glyph18\":{\"id\":\"34339\",\"type\":\"GlyphRenderer\"},\"glyph180\":{\"id\":\"36310\",\"type\":\"GlyphRenderer\"},\"glyph181\":{\"id\":\"36314\",\"type\":\"GlyphRenderer\"},\"glyph182\":{\"id\":\"36318\",\"type\":\"GlyphRenderer\"},\"glyph183\":{\"id\":\"36322\",\"type\":\"GlyphRenderer\"},\"glyph184\":{\"id\":\"36326\",\"type\":\"GlyphRenderer\"},\"glyph185\":{\"id\":\"36330\",\"type\":\"GlyphRenderer\"},\"glyph186\":{\"id\":\"36334\",\"type\":\"GlyphRenderer\"},\"glyph187\":{\"id\":\"36338\",\"type\":\"GlyphRenderer\"},\"glyph188\":{\"id\":\"36342\",\"type\":\"GlyphRenderer\"},\"glyph189\":{\"id\":\"36346\",\"type\":\"GlyphRenderer\"},\"glyph19\":{\"id\":\"34343\",\"type\":\"GlyphRenderer\"},\"glyph190\":{\"id\":\"36350\",\"type\":\"GlyphRenderer\"},\"glyph191\":{\"id\":\"36354\",\"type\":\"GlyphRenderer\"},\"glyph192\":{\"id\":\"36839\",\"type\":\"GlyphRenderer\"},\"glyph193\":{\"id\":\"36843\",\"type\":\"GlyphRenderer\"},\"glyph194\":{\"id\":\"36847\",\"type\":\"GlyphRenderer\"},\"glyph195\":{\"id\":\"36851\",\"type\":\"GlyphRenderer\"},\"glyph196\":{\"id\":\"36855\",\"type\":\"GlyphRenderer\"},\"glyph197\":{\"id\":\"36859\",\"type\":\"GlyphRenderer\"},\"glyph198\":{\"id\":\"36863\",\"type\":\"GlyphRenderer\"},\"glyph199\":{\"id\":\"36867\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"34275\",\"type\":\"GlyphRenderer\"},\"glyph20\":{\"id\":\"34347\",\"type\":\"GlyphRenderer\"},\"glyph200\":{\"id\":\"36871\",\"type\":\"GlyphRenderer\"},\"glyph201\":{\"id\":\"36875\",\"type\":\"GlyphRenderer\"},\"glyph202\":{\"id\":\"36879\",\"type\":\"GlyphRenderer\"},\"glyph203\":{\"id\":\"36883\",\"type\":\"GlyphRenderer\"},\"glyph204\":{\"id\":\"36887\",\"type\":\"GlyphRenderer\"},\"glyph205\":{\"id\":\"36891\",\"type\":\"GlyphRenderer\"},\"glyph206\":{\"id\":\"36895\",\"type\":\"GlyphRenderer\"},\"glyph207\":{\"id\":\"36899\",\"type\":\"GlyphRenderer\"},\"glyph208\":{\"id\":\"36903\",\"type\":\"GlyphRenderer\"},\"glyph209\":{\"id\":\"36907\",\"type\":\"GlyphRenderer\"},\"glyph21\":{\"id\":\"34351\",\"type\":\"GlyphRenderer\"},\"glyph210\":{\"id\":\"36911\",\"type\":\"GlyphRenderer\"},\"glyph211\":{\"id\":\"36915\",\"type\":\"GlyphRenderer\"},\"glyph212\":{\"id\":\"36919\",\"type\":\"GlyphRenderer\"},\"glyph213\":{\"id\":\"36923\",\"type\":\"GlyphRenderer\"},\"glyph214\":{\"id\":\"36927\",\"type\":\"GlyphRenderer\"},\"glyph215\":{\"id\":\"36931\",\"type\":\"GlyphRenderer\"},\"glyph216\":{\"id\":\"36935\",\"type\":\"GlyphRenderer\"},\"glyph217\":{\"id\":\"36939\",\"type\":\"GlyphRenderer\"},\"glyph218\":{\"id\":\"36943\",\"type\":\"GlyphRenderer\"},\"glyph219\":{\"id\":\"36947\",\"type\":\"GlyphRenderer\"},\"glyph22\":{\"id\":\"34355\",\"type\":\"GlyphRenderer\"},\"glyph220\":{\"id\":\"36951\",\"type\":\"GlyphRenderer\"},\"glyph221\":{\"id\":\"36955\",\"type\":\"GlyphRenderer\"},\"glyph222\":{\"id\":\"36959\",\"type\":\"GlyphRenderer\"},\"glyph223\":{\"id\":\"36963\",\"type\":\"GlyphRenderer\"},\"glyph224\":{\"id\":\"36967\",\"type\":\"GlyphRenderer\"},\"glyph225\":{\"id\":\"36971\",\"type\":\"GlyphRenderer\"},\"glyph226\":{\"id\":\"36975\",\"type\":\"GlyphRenderer\"},\"glyph227\":{\"id\":\"36979\",\"type\":\"GlyphRenderer\"},\"glyph228\":{\"id\":\"36983\",\"type\":\"GlyphRenderer\"},\"glyph229\":{\"id\":\"36987\",\"type\":\"GlyphRenderer\"},\"glyph23\":{\"id\":\"34359\",\"type\":\"GlyphRenderer\"},\"glyph230\":{\"id\":\"36991\",\"type\":\"GlyphRenderer\"},\"glyph231\":{\"id\":\"36995\",\"type\":\"GlyphRenderer\"},\"glyph232\":{\"id\":\"36999\",\"type\":\"GlyphRenderer\"},\"glyph233\":{\"id\":\"37003\",\"type\":\"GlyphRenderer\"},\"glyph234\":{\"id\":\"37007\",\"type\":\"GlyphRenderer\"},\"glyph235\":{\"id\":\"37011\",\"type\":\"GlyphRenderer\"},\"glyph236\":{\"id\":\"37015\",\"type\":\"GlyphRenderer\"},\"glyph237\":{\"id\":\"37019\",\"type\":\"GlyphRenderer\"},\"glyph238\":{\"id\":\"37023\",\"type\":\"GlyphRenderer\"},\"glyph239\":{\"id\":\"37027\",\"type\":\"GlyphRenderer\"},\"glyph24\":{\"id\":\"34363\",\"type\":\"GlyphRenderer\"},\"glyph25\":{\"id\":\"34367\",\"type\":\"GlyphRenderer\"},\"glyph26\":{\"id\":\"34371\",\"type\":\"GlyphRenderer\"},\"glyph27\":{\"id\":\"34375\",\"type\":\"GlyphRenderer\"},\"glyph28\":{\"id\":\"34379\",\"type\":\"GlyphRenderer\"},\"glyph29\":{\"id\":\"34383\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"34279\",\"type\":\"GlyphRenderer\"},\"glyph30\":{\"id\":\"34387\",\"type\":\"GlyphRenderer\"},\"glyph31\":{\"id\":\"34391\",\"type\":\"GlyphRenderer\"},\"glyph32\":{\"id\":\"34395\",\"type\":\"GlyphRenderer\"},\"glyph33\":{\"id\":\"34399\",\"type\":\"GlyphRenderer\"},\"glyph34\":{\"id\":\"34403\",\"type\":\"GlyphRenderer\"},\"glyph35\":{\"id\":\"34407\",\"type\":\"GlyphRenderer\"},\"glyph36\":{\"id\":\"34411\",\"type\":\"GlyphRenderer\"},\"glyph37\":{\"id\":\"34415\",\"type\":\"GlyphRenderer\"},\"glyph38\":{\"id\":\"34419\",\"type\":\"GlyphRenderer\"},\"glyph39\":{\"id\":\"34423\",\"type\":\"GlyphRenderer\"},\"glyph4\":{\"id\":\"34283\",\"type\":\"GlyphRenderer\"},\"glyph40\":{\"id\":\"34427\",\"type\":\"GlyphRenderer\"},\"glyph41\":{\"id\":\"34431\",\"type\":\"GlyphRenderer\"},\"glyph42\":{\"id\":\"34435\",\"type\":\"GlyphRenderer\"},\"glyph43\":{\"id\":\"34439\",\"type\":\"GlyphRenderer\"},\"glyph44\":{\"id\":\"34443\",\"type\":\"GlyphRenderer\"},\"glyph45\":{\"id\":\"34447\",\"type\":\"GlyphRenderer\"},\"glyph46\":{\"id\":\"34451\",\"type\":\"GlyphRenderer\"},\"glyph47\":{\"id\":\"34455\",\"type\":\"GlyphRenderer\"},\"glyph48\":{\"id\":\"34880\",\"type\":\"GlyphRenderer\"},\"glyph49\":{\"id\":\"34884\",\"type\":\"GlyphRenderer\"},\"glyph5\":{\"id\":\"34287\",\"type\":\"GlyphRenderer\"},\"glyph50\":{\"id\":\"34888\",\"type\":\"GlyphRenderer\"},\"glyph51\":{\"id\":\"34892\",\"type\":\"GlyphRenderer\"},\"glyph52\":{\"id\":\"34896\",\"type\":\"GlyphRenderer\"},\"glyph53\":{\"id\":\"34900\",\"type\":\"GlyphRenderer\"},\"glyph54\":{\"id\":\"34904\",\"type\":\"GlyphRenderer\"},\"glyph55\":{\"id\":\"34908\",\"type\":\"GlyphRenderer\"},\"glyph56\":{\"id\":\"34912\",\"type\":\"GlyphRenderer\"},\"glyph57\":{\"id\":\"34916\",\"type\":\"GlyphRenderer\"},\"glyph58\":{\"id\":\"34920\",\"type\":\"GlyphRenderer\"},\"glyph59\":{\"id\":\"34924\",\"type\":\"GlyphRenderer\"},\"glyph6\":{\"id\":\"34291\",\"type\":\"GlyphRenderer\"},\"glyph60\":{\"id\":\"34928\",\"type\":\"GlyphRenderer\"},\"glyph61\":{\"id\":\"34932\",\"type\":\"GlyphRenderer\"},\"glyph62\":{\"id\":\"34936\",\"type\":\"GlyphRenderer\"},\"glyph63\":{\"id\":\"34940\",\"type\":\"GlyphRenderer\"},\"glyph64\":{\"id\":\"34944\",\"type\":\"GlyphRenderer\"},\"glyph65\":{\"id\":\"34948\",\"type\":\"GlyphRenderer\"},\"glyph66\":{\"id\":\"34952\",\"type\":\"GlyphRenderer\"},\"glyph67\":{\"id\":\"34956\",\"type\":\"GlyphRenderer\"},\"glyph68\":{\"id\":\"34960\",\"type\":\"GlyphRenderer\"},\"glyph69\":{\"id\":\"34964\",\"type\":\"GlyphRenderer\"},\"glyph7\":{\"id\":\"34295\",\"type\":\"GlyphRenderer\"},\"glyph70\":{\"id\":\"34968\",\"type\":\"GlyphRenderer\"},\"glyph71\":{\"id\":\"34972\",\"type\":\"GlyphRenderer\"},\"glyph72\":{\"id\":\"34976\",\"type\":\"GlyphRenderer\"},\"glyph73\":{\"id\":\"34980\",\"type\":\"GlyphRenderer\"},\"glyph74\":{\"id\":\"34984\",\"type\":\"GlyphRenderer\"},\"glyph75\":{\"id\":\"34988\",\"type\":\"GlyphRenderer\"},\"glyph76\":{\"id\":\"34992\",\"type\":\"GlyphRenderer\"},\"glyph77\":{\"id\":\"34996\",\"type\":\"GlyphRenderer\"},\"glyph78\":{\"id\":\"35000\",\"type\":\"GlyphRenderer\"},\"glyph79\":{\"id\":\"35004\",\"type\":\"GlyphRenderer\"},\"glyph8\":{\"id\":\"34299\",\"type\":\"GlyphRenderer\"},\"glyph80\":{\"id\":\"35008\",\"type\":\"GlyphRenderer\"},\"glyph81\":{\"id\":\"35012\",\"type\":\"GlyphRenderer\"},\"glyph82\":{\"id\":\"35016\",\"type\":\"GlyphRenderer\"},\"glyph83\":{\"id\":\"35020\",\"type\":\"GlyphRenderer\"},\"glyph84\":{\"id\":\"35024\",\"type\":\"GlyphRenderer\"},\"glyph85\":{\"id\":\"35028\",\"type\":\"GlyphRenderer\"},\"glyph86\":{\"id\":\"35032\",\"type\":\"GlyphRenderer\"},\"glyph87\":{\"id\":\"35036\",\"type\":\"GlyphRenderer\"},\"glyph88\":{\"id\":\"35040\",\"type\":\"GlyphRenderer\"},\"glyph89\":{\"id\":\"35044\",\"type\":\"GlyphRenderer\"},\"glyph9\":{\"id\":\"34303\",\"type\":\"GlyphRenderer\"},\"glyph90\":{\"id\":\"35048\",\"type\":\"GlyphRenderer\"},\"glyph91\":{\"id\":\"35052\",\"type\":\"GlyphRenderer\"},\"glyph92\":{\"id\":\"35056\",\"type\":\"GlyphRenderer\"},\"glyph93\":{\"id\":\"35060\",\"type\":\"GlyphRenderer\"},\"glyph94\":{\"id\":\"35064\",\"type\":\"GlyphRenderer\"},\"glyph95\":{\"id\":\"35068\",\"type\":\"GlyphRenderer\"},\"glyph96\":{\"id\":\"35513\",\"type\":\"GlyphRenderer\"},\"glyph97\":{\"id\":\"35517\",\"type\":\"GlyphRenderer\"},\"glyph98\":{\"id\":\"35521\",\"type\":\"GlyphRenderer\"},\"glyph99\":{\"id\":\"35525\",\"type\":\"GlyphRenderer\"},\"time_slider\":{\"id\":\"37291\",\"type\":\"Slider\"}},\"code\":\"checkbox.active = [];var glyphs = [glyph0, glyph1, glyph2, glyph3, glyph4, glyph5, glyph6, glyph7, glyph8, glyph9, glyph10, glyph11, glyph12, glyph13, glyph14, glyph15, glyph16, glyph17, glyph18, glyph19, glyph20, glyph21, glyph22, glyph23, glyph24, glyph25, glyph26, glyph27, glyph28, glyph29, glyph30, glyph31, glyph32, glyph33, glyph34, glyph35, glyph36, glyph37, glyph38, glyph39, glyph40, glyph41, glyph42, glyph43, glyph44, glyph45, glyph46, glyph47, glyph48, glyph49, glyph50, glyph51, glyph52, glyph53, glyph54, glyph55, glyph56, glyph57, glyph58, glyph59, glyph60, glyph61, glyph62, glyph63, glyph64, glyph65, glyph66, glyph67, glyph68, glyph69, glyph70, glyph71, glyph72, glyph73, glyph74, glyph75, glyph76, glyph77, glyph78, glyph79, glyph80, glyph81, glyph82, glyph83, glyph84, glyph85, glyph86, glyph87, glyph88, glyph89, glyph90, glyph91, glyph92, glyph93, glyph94, glyph95, glyph96, glyph97, glyph98, glyph99, glyph100, glyph101, glyph102, glyph103, glyph104, glyph105, glyph106, glyph107, glyph108, glyph109, glyph110, glyph111, glyph112, glyph113, glyph114, glyph115, glyph116, glyph117, glyph118, glyph119, glyph120, glyph121, glyph122, glyph123, glyph124, glyph125, glyph126, glyph127, glyph128, glyph129, glyph130, glyph131, glyph132, glyph133, glyph134, glyph135, glyph136, glyph137, glyph138, glyph139, glyph140, glyph141, glyph142, glyph143, glyph144, glyph145, glyph146, glyph147, glyph148, glyph149, glyph150, glyph151, glyph152, glyph153, glyph154, glyph155, glyph156, glyph157, glyph158, glyph159, glyph160, glyph161, glyph162, glyph163, glyph164, glyph165, glyph166, glyph167, glyph168, glyph169, glyph170, glyph171, glyph172, glyph173, glyph174, glyph175, glyph176, glyph177, glyph178, glyph179, glyph180, glyph181, glyph182, glyph183, glyph184, glyph185, glyph186, glyph187, glyph188, glyph189, glyph190, glyph191, glyph192, glyph193, glyph194, glyph195, glyph196, glyph197, glyph198, glyph199, glyph200, glyph201, glyph202, glyph203, glyph204, glyph205, glyph206, glyph207, glyph208, glyph209, glyph210, glyph211, glyph212, glyph213, glyph214, glyph215, glyph216, glyph217, glyph218, glyph219, glyph220, glyph221, glyph222, glyph223, glyph224, glyph225, glyph226, glyph227, glyph228, glyph229, glyph230, glyph231, glyph232, glyph233, glyph234, glyph235, glyph236, glyph237, glyph238, glyph239];var overtime = [[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191],[192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239]];var runs = [[0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236],[1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237],[2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238],[3,7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83,87,91,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,163,167,171,175,179,183,187,191,195,199,203,207,211,215,219,223,227,231,235,239]];\\n glyphs.forEach(function(g) {\\n g.visible = false;\\n })\\n // union function\\n function union_arrays(x, y) {\\n var obj = {};\\n for (var i = x.length-1; i >= 0; -- i)\\n obj[x[i]] = x[i];\\n for (var i = y.length-1; i >= 0; -- i)\\n obj[y[i]] = y[i];\\n var res = []\\n for (var k in obj) {\\n if (obj.hasOwnProperty(k)) // <-- optional\\n res.push(obj[k]);\\n }\\n return res;\\n }\\n console.log(\\\"Timeslider: \\\" + time_slider.value);\\n console.log(\\\"Checkbox: \\\" + checkbox.active);var slider_labels = ['0.01', '0.03', '0.13', '0.32', '1.33'];console.log(\\\"Detected slider_labels: \\\" + slider_labels);time_slider.title = \\\"Until wallclocktime \\\" + slider_labels[time_slider.value - 1] + \\\". Step no.\\\"; \\n var activate = [];\\n // if we want multiple checkboxes at the same time, we need to combine the arrays\\n checkbox.active.forEach(function(c) {\\n activate = union_arrays(activate, runs[c]);\\n })\\n // now the intersection of timeslider-activated and checkbox-activated\\n activate = activate.filter(value => -1 !== overtime[time_slider.value - 1].indexOf(value));\\n activate.forEach(function(idx) {\\n glyphs[idx].visible = true;\\n })\\n \"},\"id\":\"37297\",\"type\":\"CustomJS\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36320\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34697\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34687\",\"type\":\"GroupFilter\"},{\"id\":\"34688\",\"type\":\"GroupFilter\"},{\"id\":\"34689\",\"type\":\"GroupFilter\"},{\"id\":\"34690\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34691\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34714\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34672\",\"type\":\"GroupFilter\"},{\"id\":\"34673\",\"type\":\"GroupFilter\"},{\"id\":\"34674\",\"type\":\"GroupFilter\"},{\"id\":\"34675\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34676\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34734\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,false,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,true,true,false,true,true,true,true,true,true]},\"id\":\"36639\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34728\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34702\",\"type\":\"GroupFilter\"},{\"id\":\"34703\",\"type\":\"GroupFilter\"},{\"id\":\"34704\",\"type\":\"GroupFilter\"},{\"id\":\"34705\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34706\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"34677\",\"type\":\"GroupFilter\"},{\"id\":\"34678\",\"type\":\"GroupFilter\"},{\"id\":\"34679\",\"type\":\"GroupFilter\"},{\"id\":\"34680\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34681\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34678\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34732\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true]},\"id\":\"34680\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34710\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36631\",\"type\":\"GroupFilter\"},{\"id\":\"36632\",\"type\":\"GroupFilter\"},{\"id\":\"36633\",\"type\":\"GroupFilter\"},{\"id\":\"36634\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36635\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36633\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34677\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36344\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34679\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36328\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36332\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36333\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36137\",\"type\":\"CDSView\"}},\"id\":\"36334\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"34697\",\"type\":\"GroupFilter\"},{\"id\":\"34698\",\"type\":\"GroupFilter\"},{\"id\":\"34699\",\"type\":\"GroupFilter\"},{\"id\":\"34700\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34701\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34729\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36316\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34699\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36634\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36317\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34724\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34698\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"36636\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36156\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36151\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36153\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36150\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36160\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36154\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36168\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"36153\",\"type\":\"GroupFilter\"},{\"id\":\"36154\",\"type\":\"GroupFilter\"},{\"id\":\"36155\",\"type\":\"GroupFilter\"},{\"id\":\"36156\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36157\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36144\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36148\",\"type\":\"GroupFilter\"},{\"id\":\"36149\",\"type\":\"GroupFilter\"},{\"id\":\"36150\",\"type\":\"GroupFilter\"},{\"id\":\"36151\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36152\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36164\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36165\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35927\",\"type\":\"CDSView\"}},\"id\":\"36166\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36149\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36292\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36293\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36087\",\"type\":\"CDSView\"}},\"id\":\"36294\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36172\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36158\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36168\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36169\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35932\",\"type\":\"CDSView\"}},\"id\":\"36170\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36165\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36143\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36145\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36158\",\"type\":\"GroupFilter\"},{\"id\":\"36159\",\"type\":\"GroupFilter\"},{\"id\":\"36160\",\"type\":\"GroupFilter\"},{\"id\":\"36161\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36162\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36159\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"36146\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36161\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36143\",\"type\":\"GroupFilter\"},{\"id\":\"36144\",\"type\":\"GroupFilter\"},{\"id\":\"36145\",\"type\":\"GroupFilter\"},{\"id\":\"36146\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36147\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36169\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36192\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36193\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35962\",\"type\":\"CDSView\"}},\"id\":\"36194\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36164\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36172\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36173\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35937\",\"type\":\"CDSView\"}},\"id\":\"36174\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36155\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36138\",\"type\":\"GroupFilter\"},{\"id\":\"36139\",\"type\":\"GroupFilter\"},{\"id\":\"36140\",\"type\":\"GroupFilter\"},{\"id\":\"36141\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36142\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36173\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36141\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36148\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36734\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35683\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35684\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35489\",\"type\":\"CDSView\"}},\"id\":\"35685\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35695\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35696\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35504\",\"type\":\"CDSView\"}},\"id\":\"35697\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"36611\",\"type\":\"GroupFilter\"},{\"id\":\"36612\",\"type\":\"GroupFilter\"},{\"id\":\"36613\",\"type\":\"GroupFilter\"},{\"id\":\"36614\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36615\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35683\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,false,true,true,true,false,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,false,true,true,false,true,false,false,true,false,false,false,false,false,false]},\"id\":\"36624\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35058\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35059\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34866\",\"type\":\"CDSView\"}},\"id\":\"35060\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"35953\",\"type\":\"GroupFilter\"},{\"id\":\"35954\",\"type\":\"GroupFilter\"},{\"id\":\"35955\",\"type\":\"GroupFilter\"},{\"id\":\"35956\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35957\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"36626\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35671\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35672\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35474\",\"type\":\"CDSView\"}},\"id\":\"35673\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,false,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,true,true,false,true,true,true,true,true,true]},\"id\":\"36619\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35671\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"36606\",\"type\":\"GroupFilter\"},{\"id\":\"36607\",\"type\":\"GroupFilter\"},{\"id\":\"36608\",\"type\":\"GroupFilter\"},{\"id\":\"36609\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36610\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35688\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"35087\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36612\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35691\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35692\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35499\",\"type\":\"CDSView\"}},\"id\":\"35693\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35066\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"36606\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"36611\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35063\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35687\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36722\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36838\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35958\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36628\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35699\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35699\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35700\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35509\",\"type\":\"CDSView\"}},\"id\":\"35701\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36603\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35687\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35688\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35494\",\"type\":\"CDSView\"}},\"id\":\"35689\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36623\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35676\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"36601\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36627\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35680\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35679\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35680\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35484\",\"type\":\"CDSView\"}},\"id\":\"35681\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,true,true,false,false,true,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36629\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36622\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35954\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36616\",\"type\":\"GroupFilter\"},{\"id\":\"36617\",\"type\":\"GroupFilter\"},{\"id\":\"36618\",\"type\":\"GroupFilter\"},{\"id\":\"36619\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36620\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36596\",\"type\":\"GroupFilter\"},{\"id\":\"36597\",\"type\":\"GroupFilter\"},{\"id\":\"36598\",\"type\":\"GroupFilter\"},{\"id\":\"36599\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36600\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"35721\",\"type\":\"Selection\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35062\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35063\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34871\",\"type\":\"CDSView\"}},\"id\":\"35064\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"36616\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35679\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35672\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36614\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36617\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36602\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35692\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36618\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35062\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35696\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36608\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35066\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35067\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"34876\",\"type\":\"CDSView\"}},\"id\":\"35068\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"36621\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"35956\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35675\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"35086\",\"type\":\"Selection\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36837\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36838\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36600\",\"type\":\"CDSView\"}},\"id\":\"36839\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35684\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"36631\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,false,true,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36609\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35675\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35676\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35479\",\"type\":\"CDSView\"}},\"id\":\"35677\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36613\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36621\",\"type\":\"GroupFilter\"},{\"id\":\"36622\",\"type\":\"GroupFilter\"},{\"id\":\"36623\",\"type\":\"GroupFilter\"},{\"id\":\"36624\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36625\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"35722\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"filters\":[{\"id\":\"36626\",\"type\":\"GroupFilter\"},{\"id\":\"36627\",\"type\":\"GroupFilter\"},{\"id\":\"36628\",\"type\":\"GroupFilter\"},{\"id\":\"36629\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36630\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36044\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35067\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"36601\",\"type\":\"GroupFilter\"},{\"id\":\"36602\",\"type\":\"GroupFilter\"},{\"id\":\"36603\",\"type\":\"GroupFilter\"},{\"id\":\"36604\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36605\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36045\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35691\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,false,true,true,true,false,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,false,true,true,false,true,false,false,true,false,false,false,false,false,false]},\"id\":\"36604\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36607\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35955\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35695\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35700\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36672\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34106\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36140\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,false,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,true,true,false,true,true,true,true,true,true]},\"id\":\"36699\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36733\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34179\",\"type\":\"GroupFilter\"},{\"id\":\"34180\",\"type\":\"GroupFilter\"},{\"id\":\"34181\",\"type\":\"GroupFilter\"},{\"id\":\"34182\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34183\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36681\",\"type\":\"GroupFilter\"},{\"id\":\"36682\",\"type\":\"GroupFilter\"},{\"id\":\"36683\",\"type\":\"GroupFilter\"},{\"id\":\"36684\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36685\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36751\",\"type\":\"GroupFilter\"},{\"id\":\"36752\",\"type\":\"GroupFilter\"},{\"id\":\"36753\",\"type\":\"GroupFilter\"},{\"id\":\"36754\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36755\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"34114\",\"type\":\"GroupFilter\"},{\"id\":\"34115\",\"type\":\"GroupFilter\"},{\"id\":\"34116\",\"type\":\"GroupFilter\"},{\"id\":\"34117\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34118\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36123\",\"type\":\"GroupFilter\"},{\"id\":\"36124\",\"type\":\"GroupFilter\"},{\"id\":\"36125\",\"type\":\"GroupFilter\"},{\"id\":\"36126\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36127\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36721\",\"type\":\"GroupFilter\"},{\"id\":\"36722\",\"type\":\"GroupFilter\"},{\"id\":\"36723\",\"type\":\"GroupFilter\"},{\"id\":\"36724\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36725\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34129\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false]},\"id\":\"34172\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"34187\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36128\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"red\",\"red\",\"white\",\"red\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\"],\"origin\":[\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\"],\"p_x0\":[-2.5065890763359486,-2.597501429651885,-2.4389584731894383,-4.39155001402561,-2.605059170531719,-2.618670731132614,-2.4613180705189155,-3.2065904362076485,-2.9414285851219595,-3.0305899635336218,-3.5055561540449935,-3.0835647413895377,-3.18029211845285,-5.332697396163201,-2.741053347908192,-2.0996798353729504,-2.2802604688167345,-2.4596484133137793,-5.071038723941209,-4.641929850961576,-2.8749501298075786,-5.81942628548133,-5.56701824248846,-5.88489393744292,-3.364637302249942,-5.795055637234213,-3.7734192966621105,-2.5005100891808203,-2.813250744625598,-2.2371680185168317,-5.386145185815302,-2.4235367177375675,-5.255129569615514,-4.2418083630408425,-5.012321047419874,-4.886926846497815,-2.861385294309301,-2.0337552827432726,-3.0693289223342353,-4.145066130035293,-3.6583101037812837,-3.948889996316198,-3.9790484220444364,-4.5723018430049684,-2.7103272780184215,-4.005640324114484],\"p_x1\":[4.461821665649573,6.344616533424656,6.6917451412864875,4.565362891367393,5.873161166859299,6.955007407910499,6.9376484078543506,3.228692950733555,6.8907175535874305,6.892563744268697,6.682080453489949,6.284888069398461,6.861411309718278,4.6463559753686745,6.750623716384487,4.9636374641303345,5.767016639530814,6.813299879031181,7.934812845671951,3.339901056210377,6.577661168022782,4.634740536791398,7.74160287044974,5.17839964400616,6.0795983890108065,7.271411779142536,4.85221290784018,6.966782059498742,3.9819921429075302,7.102875147968517,3.03875655614379,6.58794988296078,4.310772652677306,3.9798819752756884,3.676931150654368,5.551236637947849,6.820011063424848,3.8696364986538727,7.732668311145533,7.830890483427065,5.207792862950759,7.639302153455494,3.7611812413546466,4.698039208048985,6.541339485397708,6.953384666519639],\"p_x2\":[5.056698253106777,4.317481464780085,5.041646773429198,6.80641376776804,5.900602185452282,4.52910522835774,7.965576433021855,5.351343247762823,6.45111930547508,7.29558399760765,6.247078778942028,6.921161190685736,7.19027851707858,4.609203792320564,7.170450132564399,5.251965772720789,4.7537898775265885,6.7050713059400575,4.777892240069113,5.200425824857474,4.050986238565307,7.409125506730863,5.592845461139718,5.685082083236257,6.22827694740851,6.6835229229585815,6.53108629732704,7.367049836852322,4.89629926468183,7.455475906749537,4.925515177694803,4.018975933250277,6.279752674991901,5.341810937487686,6.2994617573102465,4.597774025475708,4.129778596157302,4.304395318737389,4.291607385609261,6.15392369400187,7.702262206384037,6.6356163859839175,7.043051984847846,4.833753354873139,5.985216563117403,5.473486145134563],\"p_x3\":[-1.1339098186925822,-0.7246768251757483,-0.2508662057236224,-1.716121020751443,-1.611896527656317,-0.3705258315383042,-0.36786445574663373,-0.9744191405551481,-0.2894199659137433,-0.20174735337500538,-3.0364110908090876,-2.2530655855198676,-0.4061422324695725,-3.0590630446045837,-1.0854812676629177,-3.9542735844598735,-0.7029591084292042,-0.5719797100784554,-0.4583313486066105,-0.5212975023690745,-0.5681045314663593,-2.8176024852168924,-2.063553368266295,-2.6149667109840964,-2.6319971256270325,-2.9651643870510416,-2.776226739066425,-0.028476140158216534,-0.7852044644013709,-0.3365030236827198,-1.7741013348886616,-0.42379313272078667,-0.7762734604447408,-2.59475476454976,-1.6883681213263606,-0.588179044116889,-0.20081671959651048,-3.8537245040315886,-3.461087400150263,-0.21870285116487453,-0.1335320077915978,-2.853360222310532,-1.6223624578756146,-0.19667071661663504,-0.8705067381762999,-1.7703276412633224],\"p_x4\":[3.7352004360676117,4.463311739230007,3.5760681880072744,4.1691131359272475,3.767737482085177,4.242278368997587,3.048152085463,2.2539640646424757,4.62916549063462,4.490882774750068,3.5644096213687586,4.311010692123949,4.103997057576186,1.6171970712369985,4.487838646274174,1.0963204568092517,3.427493490456716,3.0637829663413005,4.906213790602175,4.761333635543263,4.294611325878515,4.380728610180624,4.352250121413407,1.6079261377710985,4.571181871258345,2.483711901523497,4.985834103556041,3.2610943752637587,4.936927610225046,3.8983956348112865,4.940053646691746,3.8877678752931146,1.5166620597465226,1.801355217152981,4.761014379646836,4.468988087236539,4.148152494689819,4.2815969505536025,1.79415524663438,1.9282429105425147,2.175922592129343,3.8203767109704945,4.5483699934263955,2.2157236672652005,4.914567950320173,4.186620622950883],\"p_x5\":[0.2988768542025726,0.027538897696750275,0.030860650289091008,0.1330383388947161,0.49600703760094716,0.020481772678285076,0.008460649847695397,0.10052408766201831,0.1587986558174712,0.16065712305703558,0.13846276032774746,0.3291321154217501,0.1389781738235218,0.2949315845317597,0.05378721360846847,0.16374903702024013,0.48781773576874043,0.06452161453963498,0.27409995029401096,0.31433878008511557,0.1792971528650919,0.2972519845470536,0.09316593037279447,0.14365687112701336,0.126293515431755,0.31013359491394216,0.4551802357515008,0.016398081170998738,0.17989131371446282,0.03374414842578564,0.2433854651727428,0.17468530372590008,0.34533772208315044,0.08600410031760358,0.2396936089693511,0.4593672373559663,0.0782486576049661,0.4302018846887885,0.1559164322669218,0.050544970066844275,0.4598499467490786,0.030228190256577928,0.05331469280904799,0.13063797379053999,0.4546909324268388,0.33934527422531857],\"runs\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Incumbent\",\"Final Incumbent\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"ejtrdd5957/TrKgnjZjNP8YAj0LA4eU/x5gXnF/u1b/TIQ7hhyvqv4cRx+StRN8/Xh8WoGQx+D/yE4/p8/ToP44c0Zc8j9k/9d3316Xo5D+TKn4us/rgP6NNur0NLtC/uguQVz6u5T+rvCDTUVPov/k1HKmupOg/fIxWMbCM8T/6s9B4v7Lov3xOlUdsDvE/SH86avww9L9nJsmgoff2v97ZsRL/4XK/UESKYVNx9L+T6rOTGeeXv/UQciQwbbg/LllsNmAkwj+1kTWiFWXSv1ZkhKMmnve/f/GyIXaT9T8L9Z4v8n7lvw498VSrl/I/8Cj3REcU+r8687VVvxu5PwxV9QOoJee/QB9sEtSP1T9ldMMst8vxv8AY65t6MPe/4RlzobYA2T9oImDWgt0BwNOsKi+QdPc/lUUY/GIK+T8ZlzW+6SX8PyKtZJwsffA/vWGLW6ng1b+VkFNwbhzgPzsaqzVeIOS/d295FqSd4b8=\",\"dtype\":\"float64\",\"shape\":[46]},\"y\":{\"__ndarray__\":\"6lq3bSUE2r+KjsDU5pH0v3PUHLe7/fG/w+tiDqyd4T/SxHyHvU7uv/eNhYA8svS/1RnXz4pC7r/XLnPx2d/rP97ZCsjlrOW/UtEt8/kg5790SW9WZTvQPxmkvP4TK8G/dsQmo4D74b+nUO2q+4X/P1wAHet5tea/rs2+9gZI/T9v4KJjPqL2v3wQzYT2CeS/ul4HAGRP6r9sxt0y/NuzPzKDk73LafG/55TUHrd69D9100YD7tHpPwhy8K/59v0/aMDVQVVhuj9oHvFwRCH9P4/bNFRId9w/siCmS3XB7b/aP76+WB7kv3bWDTKG8fC/hC0uZS146D9YnMUaamL0v5CBRZzLLPk/XJXW5ijR+D81EaC5RWHmP0RmoeMSXt6/PEgEOcMK9L9EnlUhPMjXvyMBv4SCr/I/Hbrt26aTqT8QJ4IokoLgPxnJvCEhD88/Sf2M50NJ3z+jPYzIJVzwP0ET59y8ifK/U5ndIa3UqL8=\",\"dtype\":\"float64\",\"shape\":[46]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"37051\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"37052\",\"type\":\"UnionRenderers\"}},\"id\":\"33970\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"filters\":[{\"id\":\"36676\",\"type\":\"GroupFilter\"},{\"id\":\"36677\",\"type\":\"GroupFilter\"},{\"id\":\"36678\",\"type\":\"GroupFilter\"},{\"id\":\"36679\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36680\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34180\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"35475\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34124\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36135\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36678\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36121\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36698\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36711\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36721\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36741\",\"type\":\"GroupFilter\"},{\"id\":\"36742\",\"type\":\"GroupFilter\"},{\"id\":\"36743\",\"type\":\"GroupFilter\"},{\"id\":\"36744\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36745\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34182\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36708\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34114\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35477\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36701\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36758\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34117\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36731\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36118\",\"type\":\"GroupFilter\"},{\"id\":\"36119\",\"type\":\"GroupFilter\"},{\"id\":\"36120\",\"type\":\"GroupFilter\"},{\"id\":\"36121\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36122\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36681\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36714\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36701\",\"type\":\"GroupFilter\"},{\"id\":\"36702\",\"type\":\"GroupFilter\"},{\"id\":\"36703\",\"type\":\"GroupFilter\"},{\"id\":\"36704\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36705\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34116\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34195\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,false,true,true,true,false,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,false,true,true,false,true,false,false,true,false,false,false,false,false,false]},\"id\":\"36764\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35476\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,false,true,true,true,false,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,false,true,true,false,true,false,false,true,false,false,false,false,false,false]},\"id\":\"36684\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36706\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34115\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36732\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36743\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36746\",\"type\":\"GroupFilter\"},{\"id\":\"36747\",\"type\":\"GroupFilter\"},{\"id\":\"36748\",\"type\":\"GroupFilter\"},{\"id\":\"36749\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36750\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34122\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36131\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36712\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34169\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34119\",\"type\":\"GroupFilter\"},{\"id\":\"34120\",\"type\":\"GroupFilter\"},{\"id\":\"34121\",\"type\":\"GroupFilter\"},{\"id\":\"34122\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34123\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"35470\",\"type\":\"GroupFilter\"},{\"id\":\"35471\",\"type\":\"GroupFilter\"},{\"id\":\"35472\",\"type\":\"GroupFilter\"},{\"id\":\"35473\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35474\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36736\",\"type\":\"GroupFilter\"},{\"id\":\"36737\",\"type\":\"GroupFilter\"},{\"id\":\"36738\",\"type\":\"GroupFilter\"},{\"id\":\"36739\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36740\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,false,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,true,true,false,true,true,true,true,true,true]},\"id\":\"36719\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36727\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36751\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36123\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,false,true,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36709\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36768\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36726\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34120\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36138\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36711\",\"type\":\"GroupFilter\"},{\"id\":\"36712\",\"type\":\"GroupFilter\"},{\"id\":\"36713\",\"type\":\"GroupFilter\"},{\"id\":\"36714\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36715\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34181\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34196\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34121\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,false,true,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36749\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36766\",\"type\":\"GroupFilter\"},{\"id\":\"36767\",\"type\":\"GroupFilter\"},{\"id\":\"36768\",\"type\":\"GroupFilter\"},{\"id\":\"36769\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36770\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36113\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36707\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36130\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36747\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34174\",\"type\":\"GroupFilter\"},{\"id\":\"34175\",\"type\":\"GroupFilter\"},{\"id\":\"34176\",\"type\":\"GroupFilter\"},{\"id\":\"34177\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34178\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36731\",\"type\":\"GroupFilter\"},{\"id\":\"36732\",\"type\":\"GroupFilter\"},{\"id\":\"36733\",\"type\":\"GroupFilter\"},{\"id\":\"36734\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36735\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,false]},\"id\":\"34192\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,false]},\"id\":\"34112\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36697\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34109\",\"type\":\"GroupFilter\"},{\"id\":\"34110\",\"type\":\"GroupFilter\"},{\"id\":\"34111\",\"type\":\"GroupFilter\"},{\"id\":\"34112\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34113\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36109\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36677\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36754\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34119\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36696\",\"type\":\"GroupFilter\"},{\"id\":\"36697\",\"type\":\"GroupFilter\"},{\"id\":\"36698\",\"type\":\"GroupFilter\"},{\"id\":\"36699\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36700\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36717\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34111\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36723\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36752\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36763\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34184\",\"type\":\"GroupFilter\"},{\"id\":\"34185\",\"type\":\"GroupFilter\"},{\"id\":\"34186\",\"type\":\"GroupFilter\"},{\"id\":\"34187\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34188\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34126\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36119\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34177\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36748\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36108\",\"type\":\"GroupFilter\"},{\"id\":\"36109\",\"type\":\"GroupFilter\"},{\"id\":\"36110\",\"type\":\"GroupFilter\"},{\"id\":\"36111\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36112\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36686\",\"type\":\"GroupFilter\"},{\"id\":\"36687\",\"type\":\"GroupFilter\"},{\"id\":\"36688\",\"type\":\"GroupFilter\"},{\"id\":\"36689\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36690\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36737\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,false,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,true,true,false,true,true,true,true,true,true]},\"id\":\"36759\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34125\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36713\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34170\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36671\",\"type\":\"GroupFilter\"},{\"id\":\"36672\",\"type\":\"GroupFilter\"},{\"id\":\"36673\",\"type\":\"GroupFilter\"},{\"id\":\"36674\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36675\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36756\",\"type\":\"GroupFilter\"},{\"id\":\"36757\",\"type\":\"GroupFilter\"},{\"id\":\"36758\",\"type\":\"GroupFilter\"},{\"id\":\"36759\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36760\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34186\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34135\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34185\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36124\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"36126\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,false,true,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36729\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36762\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36113\",\"type\":\"GroupFilter\"},{\"id\":\"36114\",\"type\":\"GroupFilter\"},{\"id\":\"36115\",\"type\":\"GroupFilter\"},{\"id\":\"36116\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36117\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36696\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34124\",\"type\":\"GroupFilter\"},{\"id\":\"34125\",\"type\":\"GroupFilter\"},{\"id\":\"34126\",\"type\":\"GroupFilter\"},{\"id\":\"34127\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34128\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36133\",\"type\":\"GroupFilter\"},{\"id\":\"36134\",\"type\":\"GroupFilter\"},{\"id\":\"36135\",\"type\":\"GroupFilter\"},{\"id\":\"36136\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36137\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,false,true,true,true,false,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,false,true,true,false,true,false,false,true,false,false,false,false,false,false]},\"id\":\"36704\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36728\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34179\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34136\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,false,true,true,true,false,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,false,true,true,false,true,false,false,true,false,false,false,false,false,false]},\"id\":\"36744\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34184\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36692\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34199\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34191\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36726\",\"type\":\"GroupFilter\"},{\"id\":\"36727\",\"type\":\"GroupFilter\"},{\"id\":\"36728\",\"type\":\"GroupFilter\"},{\"id\":\"36729\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36730\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34131\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34197\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36115\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36125\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36682\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34175\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36688\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36691\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34194\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34109\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36134\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36683\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36128\",\"type\":\"GroupFilter\"},{\"id\":\"36129\",\"type\":\"GroupFilter\"},{\"id\":\"36130\",\"type\":\"GroupFilter\"},{\"id\":\"36131\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"36132\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36694\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,false,true,true,true,false,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,false,true,true,false,true,false,false,true,false,false,false,false,false,false]},\"id\":\"36724\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36118\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36757\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36766\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34190\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36674\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36761\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34105\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36129\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34104\",\"type\":\"GroupFilter\"},{\"id\":\"34105\",\"type\":\"GroupFilter\"},{\"id\":\"34106\",\"type\":\"GroupFilter\"},{\"id\":\"34107\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34108\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36139\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36746\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,false,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,true,true,false,true,true,true,true,true,true]},\"id\":\"36679\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36736\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36741\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34174\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36116\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36687\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34194\",\"type\":\"GroupFilter\"},{\"id\":\"34195\",\"type\":\"GroupFilter\"},{\"id\":\"34196\",\"type\":\"GroupFilter\"},{\"id\":\"34197\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34198\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"34107\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36111\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36718\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34171\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\"],\"origin\":[\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\"],\"p_x0\":[-2.5065890763359486,-4.39155001402561,-3.2065904362076485,-3.5055561540449935,-5.332697396163201,-4.641929850961576,-5.88489393744292,-3.7734192966621105,-5.386145185815302,-5.255129569615514,-4.886926846497815,-2.0337552827432726,-3.0693289223342353,-3.6583101037812837,-3.948889996316198,-3.9790484220444364],\"p_x1\":[4.461821665649573,4.565362891367393,3.228692950733555,6.682080453489949,4.6463559753686745,3.339901056210377,5.17839964400616,4.85221290784018,3.03875655614379,4.310772652677306,5.551236637947849,3.8696364986538727,7.732668311145533,5.207792862950759,7.639302153455494,3.7611812413546466],\"p_x2\":[5.056698253106777,6.80641376776804,5.351343247762823,6.247078778942028,4.609203792320564,5.200425824857474,5.685082083236257,6.53108629732704,4.925515177694803,6.279752674991901,4.597774025475708,4.304395318737389,4.291607385609261,7.702262206384037,6.6356163859839175,7.043051984847846],\"p_x3\":[-1.1339098186925822,-1.716121020751443,-0.9744191405551481,-3.0364110908090876,-3.0590630446045837,-0.5212975023690745,-2.6149667109840964,-2.776226739066425,-1.7741013348886616,-0.7762734604447408,-0.588179044116889,-3.8537245040315886,-3.461087400150263,-0.1335320077915978,-2.853360222310532,-1.6223624578756146],\"p_x4\":[3.7352004360676117,4.1691131359272475,2.2539640646424757,3.5644096213687586,1.6171970712369985,4.761333635543263,1.6079261377710985,4.985834103556041,4.940053646691746,1.5166620597465226,4.468988087236539,4.2815969505536025,1.79415524663438,2.175922592129343,3.8203767109704945,4.5483699934263955],\"p_x5\":[0.2988768542025726,0.1330383388947161,0.10052408766201831,0.13846276032774746,0.2949315845317597,0.31433878008511557,0.14365687112701336,0.4551802357515008,0.2433854651727428,0.34533772208315044,0.4593672373559663,0.4302018846887885,0.1559164322669218,0.4598499467490786,0.030228190256577928,0.05331469280904799],\"runs\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"ejtrdd5957/HmBecX+7Vv/ITj+nz9Og/kyp+LrP64D+rvCDTUVPov2cmyaCh9/a/9RByJDBtuD9WZISjJp73v/Ao90RHFPq/DFX1A6gl57/AGOubejD3v2giYNaC3QHA06wqL5B09z8ZlzW+6SX8PyKtZJwsffA/vWGLW6ng1b8=\",\"dtype\":\"float64\",\"shape\":[16]},\"y\":{\"__ndarray__\":\"6lq3bSUE2r/D62IOrJ3hP9cuc/HZ3+s/dElvVmU70D+nUO2q+4X/P2zG3TL827M/CHLwr/n2/T+P2zRUSHfcP4QtLmUteOg/kIFFnMss+T9EZqHjEl7ev0SeVSE8yNe/IwG/hIKv8j8QJ4IokoLgPxnJvCEhD88/Sf2M50NJ3z8=\",\"dtype\":\"float64\",\"shape\":[16]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"36376\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"36377\",\"type\":\"UnionRenderers\"}},\"id\":\"33969\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"34127\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36673\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36676\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36753\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34134\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36110\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,false,true,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36769\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34110\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"36114\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34164\",\"type\":\"GroupFilter\"},{\"id\":\"34165\",\"type\":\"GroupFilter\"},{\"id\":\"34166\",\"type\":\"GroupFilter\"},{\"id\":\"34167\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34168\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"36686\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35492\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,false,true,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36689\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36767\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34169\",\"type\":\"GroupFilter\"},{\"id\":\"34170\",\"type\":\"GroupFilter\"},{\"id\":\"34171\",\"type\":\"GroupFilter\"},{\"id\":\"34172\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34173\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36761\",\"type\":\"GroupFilter\"},{\"id\":\"36762\",\"type\":\"GroupFilter\"},{\"id\":\"36763\",\"type\":\"GroupFilter\"},{\"id\":\"36764\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36765\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34130\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34189\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false]},\"id\":\"34132\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36693\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"36716\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36716\",\"type\":\"GroupFilter\"},{\"id\":\"36717\",\"type\":\"GroupFilter\"},{\"id\":\"36718\",\"type\":\"GroupFilter\"},{\"id\":\"36719\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36720\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34176\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36133\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36136\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36703\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,false,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,true,true,false,true,true,true,true,true,true]},\"id\":\"36739\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36706\",\"type\":\"GroupFilter\"},{\"id\":\"36707\",\"type\":\"GroupFilter\"},{\"id\":\"36708\",\"type\":\"GroupFilter\"},{\"id\":\"36709\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36710\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"34189\",\"type\":\"GroupFilter\"},{\"id\":\"34190\",\"type\":\"GroupFilter\"},{\"id\":\"34191\",\"type\":\"GroupFilter\"},{\"id\":\"34192\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34193\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36691\",\"type\":\"GroupFilter\"},{\"id\":\"36692\",\"type\":\"GroupFilter\"},{\"id\":\"36693\",\"type\":\"GroupFilter\"},{\"id\":\"36694\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36695\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36120\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34129\",\"type\":\"GroupFilter\"},{\"id\":\"34130\",\"type\":\"GroupFilter\"},{\"id\":\"34131\",\"type\":\"GroupFilter\"},{\"id\":\"34132\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34133\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36702\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36738\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35531\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35532\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35299\",\"type\":\"CDSView\"}},\"id\":\"35533\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,false]},\"id\":\"34092\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35281\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"35976\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35290\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35555\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35556\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35329\",\"type\":\"CDSView\"}},\"id\":\"35557\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34074\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35301\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34091\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34084\",\"type\":\"GroupFilter\"},{\"id\":\"34085\",\"type\":\"GroupFilter\"},{\"id\":\"34086\",\"type\":\"GroupFilter\"},{\"id\":\"34087\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34088\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35640\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"35290\",\"type\":\"GroupFilter\"},{\"id\":\"35291\",\"type\":\"GroupFilter\"},{\"id\":\"35292\",\"type\":\"GroupFilter\"},{\"id\":\"35293\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35294\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35292\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35547\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35548\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35319\",\"type\":\"CDSView\"}},\"id\":\"35549\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34090\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true]},\"id\":\"34087\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35568\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35639\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35640\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35434\",\"type\":\"CDSView\"}},\"id\":\"35641\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34095\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35305\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35276\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35995\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35551\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34100\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35297\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35964\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35559\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35560\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35334\",\"type\":\"CDSView\"}},\"id\":\"35561\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"35285\",\"type\":\"GroupFilter\"},{\"id\":\"35286\",\"type\":\"GroupFilter\"},{\"id\":\"35287\",\"type\":\"GroupFilter\"},{\"id\":\"35288\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35289\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34086\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35978\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34096\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35548\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35277\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35300\",\"type\":\"GroupFilter\"},{\"id\":\"35301\",\"type\":\"GroupFilter\"},{\"id\":\"35302\",\"type\":\"GroupFilter\"},{\"id\":\"35303\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35304\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35563\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34085\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35965\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35983\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35535\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35536\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35304\",\"type\":\"CDSView\"}},\"id\":\"35537\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34079\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35287\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35556\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35968\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35975\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35639\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35636\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34094\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"36596\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35283\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35551\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35552\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35324\",\"type\":\"CDSView\"}},\"id\":\"35553\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"35280\",\"type\":\"GroupFilter\"},{\"id\":\"35281\",\"type\":\"GroupFilter\"},{\"id\":\"35282\",\"type\":\"GroupFilter\"},{\"id\":\"35283\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35284\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35980\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34089\",\"type\":\"GroupFilter\"},{\"id\":\"34090\",\"type\":\"GroupFilter\"},{\"id\":\"34091\",\"type\":\"GroupFilter\"},{\"id\":\"34092\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34093\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35295\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35535\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35300\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"35966\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35963\",\"type\":\"GroupFilter\"},{\"id\":\"35964\",\"type\":\"GroupFilter\"},{\"id\":\"35965\",\"type\":\"GroupFilter\"},{\"id\":\"35966\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35967\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35923\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35295\",\"type\":\"GroupFilter\"},{\"id\":\"35296\",\"type\":\"GroupFilter\"},{\"id\":\"35297\",\"type\":\"GroupFilter\"},{\"id\":\"35298\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35299\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"35978\",\"type\":\"GroupFilter\"},{\"id\":\"35979\",\"type\":\"GroupFilter\"},{\"id\":\"35980\",\"type\":\"GroupFilter\"},{\"id\":\"35981\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35982\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34075\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35547\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35303\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35543\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35544\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35314\",\"type\":\"CDSView\"}},\"id\":\"35545\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34076\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"35986\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35664\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34084\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35286\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35539\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"35973\",\"type\":\"GroupFilter\"},{\"id\":\"35974\",\"type\":\"GroupFilter\"},{\"id\":\"35975\",\"type\":\"GroupFilter\"},{\"id\":\"35976\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35977\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false]},\"id\":\"35298\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34077\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35275\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35960\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35552\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35994\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"35971\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34079\",\"type\":\"GroupFilter\"},{\"id\":\"34080\",\"type\":\"GroupFilter\"},{\"id\":\"34081\",\"type\":\"GroupFilter\"},{\"id\":\"34082\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34083\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"35968\",\"type\":\"GroupFilter\"},{\"id\":\"35969\",\"type\":\"GroupFilter\"},{\"id\":\"35970\",\"type\":\"GroupFilter\"},{\"id\":\"35971\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35972\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35291\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35969\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35663\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35664\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35464\",\"type\":\"CDSView\"}},\"id\":\"35665\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34104\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35531\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34099\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35979\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34069\",\"type\":\"GroupFilter\"},{\"id\":\"34070\",\"type\":\"GroupFilter\"},{\"id\":\"34071\",\"type\":\"GroupFilter\"},{\"id\":\"34072\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34073\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35559\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"35988\",\"type\":\"GroupFilter\"},{\"id\":\"35989\",\"type\":\"GroupFilter\"},{\"id\":\"35990\",\"type\":\"GroupFilter\"},{\"id\":\"35991\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35992\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"34094\",\"type\":\"GroupFilter\"},{\"id\":\"34095\",\"type\":\"GroupFilter\"},{\"id\":\"34096\",\"type\":\"GroupFilter\"},{\"id\":\"34097\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34098\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35282\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35993\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35988\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35567\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35568\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35344\",\"type\":\"CDSView\"}},\"id\":\"35569\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35990\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35635\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35636\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35429\",\"type\":\"CDSView\"}},\"id\":\"35637\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"35270\",\"type\":\"GroupFilter\"},{\"id\":\"35271\",\"type\":\"GroupFilter\"},{\"id\":\"35272\",\"type\":\"GroupFilter\"},{\"id\":\"35273\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35274\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"35983\",\"type\":\"GroupFilter\"},{\"id\":\"35984\",\"type\":\"GroupFilter\"},{\"id\":\"35985\",\"type\":\"GroupFilter\"},{\"id\":\"35986\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"}},\"id\":\"35987\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35567\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34097\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35285\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35985\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35563\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35564\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35339\",\"type\":\"CDSView\"}},\"id\":\"35565\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34102\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35296\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"35527\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"35528\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"35294\",\"type\":\"CDSView\"}},\"id\":\"35529\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false]},\"id\":\"34082\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"35991\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35275\",\"type\":\"GroupFilter\"},{\"id\":\"35276\",\"type\":\"GroupFilter\"},{\"id\":\"35277\",\"type\":\"GroupFilter\"},{\"id\":\"35278\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35279\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false]},\"id\":\"35278\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34074\",\"type\":\"GroupFilter\"},{\"id\":\"34075\",\"type\":\"GroupFilter\"},{\"id\":\"34076\",\"type\":\"GroupFilter\"},{\"id\":\"34077\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34078\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35560\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35555\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"35981\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35984\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34081\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"34089\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35532\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34101\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35280\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35989\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34099\",\"type\":\"GroupFilter\"},{\"id\":\"34100\",\"type\":\"GroupFilter\"},{\"id\":\"34101\",\"type\":\"GroupFilter\"},{\"id\":\"34102\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33966\",\"type\":\"ColumnDataSource\"}},\"id\":\"34103\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35536\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35663\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"35564\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35302\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35974\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34080\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true]},\"id\":\"35293\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35959\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35970\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35973\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35288\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false]},\"id\":\"34645\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34652\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34642\",\"type\":\"GroupFilter\"},{\"id\":\"34643\",\"type\":\"GroupFilter\"},{\"id\":\"34644\",\"type\":\"GroupFilter\"},{\"id\":\"34645\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34646\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34657\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34642\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34643\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34655\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34663\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36841\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36842\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36605\",\"type\":\"CDSView\"}},\"id\":\"36843\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"37292\",\"type\":\"CheckboxButtonGroup\"},\"glyph0\":{\"id\":\"34267\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"34271\",\"type\":\"GlyphRenderer\"},\"glyph10\":{\"id\":\"34307\",\"type\":\"GlyphRenderer\"},\"glyph100\":{\"id\":\"35529\",\"type\":\"GlyphRenderer\"},\"glyph101\":{\"id\":\"35533\",\"type\":\"GlyphRenderer\"},\"glyph102\":{\"id\":\"35537\",\"type\":\"GlyphRenderer\"},\"glyph103\":{\"id\":\"35541\",\"type\":\"GlyphRenderer\"},\"glyph104\":{\"id\":\"35545\",\"type\":\"GlyphRenderer\"},\"glyph105\":{\"id\":\"35549\",\"type\":\"GlyphRenderer\"},\"glyph106\":{\"id\":\"35553\",\"type\":\"GlyphRenderer\"},\"glyph107\":{\"id\":\"35557\",\"type\":\"GlyphRenderer\"},\"glyph108\":{\"id\":\"35561\",\"type\":\"GlyphRenderer\"},\"glyph109\":{\"id\":\"35565\",\"type\":\"GlyphRenderer\"},\"glyph11\":{\"id\":\"34311\",\"type\":\"GlyphRenderer\"},\"glyph110\":{\"id\":\"35569\",\"type\":\"GlyphRenderer\"},\"glyph111\":{\"id\":\"35573\",\"type\":\"GlyphRenderer\"},\"glyph112\":{\"id\":\"35577\",\"type\":\"GlyphRenderer\"},\"glyph113\":{\"id\":\"35581\",\"type\":\"GlyphRenderer\"},\"glyph114\":{\"id\":\"35585\",\"type\":\"GlyphRenderer\"},\"glyph115\":{\"id\":\"35589\",\"type\":\"GlyphRenderer\"},\"glyph116\":{\"id\":\"35593\",\"type\":\"GlyphRenderer\"},\"glyph117\":{\"id\":\"35597\",\"type\":\"GlyphRenderer\"},\"glyph118\":{\"id\":\"35601\",\"type\":\"GlyphRenderer\"},\"glyph119\":{\"id\":\"35605\",\"type\":\"GlyphRenderer\"},\"glyph12\":{\"id\":\"34315\",\"type\":\"GlyphRenderer\"},\"glyph120\":{\"id\":\"35609\",\"type\":\"GlyphRenderer\"},\"glyph121\":{\"id\":\"35613\",\"type\":\"GlyphRenderer\"},\"glyph122\":{\"id\":\"35617\",\"type\":\"GlyphRenderer\"},\"glyph123\":{\"id\":\"35621\",\"type\":\"GlyphRenderer\"},\"glyph124\":{\"id\":\"35625\",\"type\":\"GlyphRenderer\"},\"glyph125\":{\"id\":\"35629\",\"type\":\"GlyphRenderer\"},\"glyph126\":{\"id\":\"35633\",\"type\":\"GlyphRenderer\"},\"glyph127\":{\"id\":\"35637\",\"type\":\"GlyphRenderer\"},\"glyph128\":{\"id\":\"35641\",\"type\":\"GlyphRenderer\"},\"glyph129\":{\"id\":\"35645\",\"type\":\"GlyphRenderer\"},\"glyph13\":{\"id\":\"34319\",\"type\":\"GlyphRenderer\"},\"glyph130\":{\"id\":\"35649\",\"type\":\"GlyphRenderer\"},\"glyph131\":{\"id\":\"35653\",\"type\":\"GlyphRenderer\"},\"glyph132\":{\"id\":\"35657\",\"type\":\"GlyphRenderer\"},\"glyph133\":{\"id\":\"35661\",\"type\":\"GlyphRenderer\"},\"glyph134\":{\"id\":\"35665\",\"type\":\"GlyphRenderer\"},\"glyph135\":{\"id\":\"35669\",\"type\":\"GlyphRenderer\"},\"glyph136\":{\"id\":\"35673\",\"type\":\"GlyphRenderer\"},\"glyph137\":{\"id\":\"35677\",\"type\":\"GlyphRenderer\"},\"glyph138\":{\"id\":\"35681\",\"type\":\"GlyphRenderer\"},\"glyph139\":{\"id\":\"35685\",\"type\":\"GlyphRenderer\"},\"glyph14\":{\"id\":\"34323\",\"type\":\"GlyphRenderer\"},\"glyph140\":{\"id\":\"35689\",\"type\":\"GlyphRenderer\"},\"glyph141\":{\"id\":\"35693\",\"type\":\"GlyphRenderer\"},\"glyph142\":{\"id\":\"35697\",\"type\":\"GlyphRenderer\"},\"glyph143\":{\"id\":\"35701\",\"type\":\"GlyphRenderer\"},\"glyph144\":{\"id\":\"36166\",\"type\":\"GlyphRenderer\"},\"glyph145\":{\"id\":\"36170\",\"type\":\"GlyphRenderer\"},\"glyph146\":{\"id\":\"36174\",\"type\":\"GlyphRenderer\"},\"glyph147\":{\"id\":\"36178\",\"type\":\"GlyphRenderer\"},\"glyph148\":{\"id\":\"36182\",\"type\":\"GlyphRenderer\"},\"glyph149\":{\"id\":\"36186\",\"type\":\"GlyphRenderer\"},\"glyph15\":{\"id\":\"34327\",\"type\":\"GlyphRenderer\"},\"glyph150\":{\"id\":\"36190\",\"type\":\"GlyphRenderer\"},\"glyph151\":{\"id\":\"36194\",\"type\":\"GlyphRenderer\"},\"glyph152\":{\"id\":\"36198\",\"type\":\"GlyphRenderer\"},\"glyph153\":{\"id\":\"36202\",\"type\":\"GlyphRenderer\"},\"glyph154\":{\"id\":\"36206\",\"type\":\"GlyphRenderer\"},\"glyph155\":{\"id\":\"36210\",\"type\":\"GlyphRenderer\"},\"glyph156\":{\"id\":\"36214\",\"type\":\"GlyphRenderer\"},\"glyph157\":{\"id\":\"36218\",\"type\":\"GlyphRenderer\"},\"glyph158\":{\"id\":\"36222\",\"type\":\"GlyphRenderer\"},\"glyph159\":{\"id\":\"36226\",\"type\":\"GlyphRenderer\"},\"glyph16\":{\"id\":\"34331\",\"type\":\"GlyphRenderer\"},\"glyph160\":{\"id\":\"36230\",\"type\":\"GlyphRenderer\"},\"glyph161\":{\"id\":\"36234\",\"type\":\"GlyphRenderer\"},\"glyph162\":{\"id\":\"36238\",\"type\":\"GlyphRenderer\"},\"glyph163\":{\"id\":\"36242\",\"type\":\"GlyphRenderer\"},\"glyph164\":{\"id\":\"36246\",\"type\":\"GlyphRenderer\"},\"glyph165\":{\"id\":\"36250\",\"type\":\"GlyphRenderer\"},\"glyph166\":{\"id\":\"36254\",\"type\":\"GlyphRenderer\"},\"glyph167\":{\"id\":\"36258\",\"type\":\"GlyphRenderer\"},\"glyph168\":{\"id\":\"36262\",\"type\":\"GlyphRenderer\"},\"glyph169\":{\"id\":\"36266\",\"type\":\"GlyphRenderer\"},\"glyph17\":{\"id\":\"34335\",\"type\":\"GlyphRenderer\"},\"glyph170\":{\"id\":\"36270\",\"type\":\"GlyphRenderer\"},\"glyph171\":{\"id\":\"36274\",\"type\":\"GlyphRenderer\"},\"glyph172\":{\"id\":\"36278\",\"type\":\"GlyphRenderer\"},\"glyph173\":{\"id\":\"36282\",\"type\":\"GlyphRenderer\"},\"glyph174\":{\"id\":\"36286\",\"type\":\"GlyphRenderer\"},\"glyph175\":{\"id\":\"36290\",\"type\":\"GlyphRenderer\"},\"glyph176\":{\"id\":\"36294\",\"type\":\"GlyphRenderer\"},\"glyph177\":{\"id\":\"36298\",\"type\":\"GlyphRenderer\"},\"glyph178\":{\"id\":\"36302\",\"type\":\"GlyphRenderer\"},\"glyph179\":{\"id\":\"36306\",\"type\":\"GlyphRenderer\"},\"glyph18\":{\"id\":\"34339\",\"type\":\"GlyphRenderer\"},\"glyph180\":{\"id\":\"36310\",\"type\":\"GlyphRenderer\"},\"glyph181\":{\"id\":\"36314\",\"type\":\"GlyphRenderer\"},\"glyph182\":{\"id\":\"36318\",\"type\":\"GlyphRenderer\"},\"glyph183\":{\"id\":\"36322\",\"type\":\"GlyphRenderer\"},\"glyph184\":{\"id\":\"36326\",\"type\":\"GlyphRenderer\"},\"glyph185\":{\"id\":\"36330\",\"type\":\"GlyphRenderer\"},\"glyph186\":{\"id\":\"36334\",\"type\":\"GlyphRenderer\"},\"glyph187\":{\"id\":\"36338\",\"type\":\"GlyphRenderer\"},\"glyph188\":{\"id\":\"36342\",\"type\":\"GlyphRenderer\"},\"glyph189\":{\"id\":\"36346\",\"type\":\"GlyphRenderer\"},\"glyph19\":{\"id\":\"34343\",\"type\":\"GlyphRenderer\"},\"glyph190\":{\"id\":\"36350\",\"type\":\"GlyphRenderer\"},\"glyph191\":{\"id\":\"36354\",\"type\":\"GlyphRenderer\"},\"glyph192\":{\"id\":\"36839\",\"type\":\"GlyphRenderer\"},\"glyph193\":{\"id\":\"36843\",\"type\":\"GlyphRenderer\"},\"glyph194\":{\"id\":\"36847\",\"type\":\"GlyphRenderer\"},\"glyph195\":{\"id\":\"36851\",\"type\":\"GlyphRenderer\"},\"glyph196\":{\"id\":\"36855\",\"type\":\"GlyphRenderer\"},\"glyph197\":{\"id\":\"36859\",\"type\":\"GlyphRenderer\"},\"glyph198\":{\"id\":\"36863\",\"type\":\"GlyphRenderer\"},\"glyph199\":{\"id\":\"36867\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"34275\",\"type\":\"GlyphRenderer\"},\"glyph20\":{\"id\":\"34347\",\"type\":\"GlyphRenderer\"},\"glyph200\":{\"id\":\"36871\",\"type\":\"GlyphRenderer\"},\"glyph201\":{\"id\":\"36875\",\"type\":\"GlyphRenderer\"},\"glyph202\":{\"id\":\"36879\",\"type\":\"GlyphRenderer\"},\"glyph203\":{\"id\":\"36883\",\"type\":\"GlyphRenderer\"},\"glyph204\":{\"id\":\"36887\",\"type\":\"GlyphRenderer\"},\"glyph205\":{\"id\":\"36891\",\"type\":\"GlyphRenderer\"},\"glyph206\":{\"id\":\"36895\",\"type\":\"GlyphRenderer\"},\"glyph207\":{\"id\":\"36899\",\"type\":\"GlyphRenderer\"},\"glyph208\":{\"id\":\"36903\",\"type\":\"GlyphRenderer\"},\"glyph209\":{\"id\":\"36907\",\"type\":\"GlyphRenderer\"},\"glyph21\":{\"id\":\"34351\",\"type\":\"GlyphRenderer\"},\"glyph210\":{\"id\":\"36911\",\"type\":\"GlyphRenderer\"},\"glyph211\":{\"id\":\"36915\",\"type\":\"GlyphRenderer\"},\"glyph212\":{\"id\":\"36919\",\"type\":\"GlyphRenderer\"},\"glyph213\":{\"id\":\"36923\",\"type\":\"GlyphRenderer\"},\"glyph214\":{\"id\":\"36927\",\"type\":\"GlyphRenderer\"},\"glyph215\":{\"id\":\"36931\",\"type\":\"GlyphRenderer\"},\"glyph216\":{\"id\":\"36935\",\"type\":\"GlyphRenderer\"},\"glyph217\":{\"id\":\"36939\",\"type\":\"GlyphRenderer\"},\"glyph218\":{\"id\":\"36943\",\"type\":\"GlyphRenderer\"},\"glyph219\":{\"id\":\"36947\",\"type\":\"GlyphRenderer\"},\"glyph22\":{\"id\":\"34355\",\"type\":\"GlyphRenderer\"},\"glyph220\":{\"id\":\"36951\",\"type\":\"GlyphRenderer\"},\"glyph221\":{\"id\":\"36955\",\"type\":\"GlyphRenderer\"},\"glyph222\":{\"id\":\"36959\",\"type\":\"GlyphRenderer\"},\"glyph223\":{\"id\":\"36963\",\"type\":\"GlyphRenderer\"},\"glyph224\":{\"id\":\"36967\",\"type\":\"GlyphRenderer\"},\"glyph225\":{\"id\":\"36971\",\"type\":\"GlyphRenderer\"},\"glyph226\":{\"id\":\"36975\",\"type\":\"GlyphRenderer\"},\"glyph227\":{\"id\":\"36979\",\"type\":\"GlyphRenderer\"},\"glyph228\":{\"id\":\"36983\",\"type\":\"GlyphRenderer\"},\"glyph229\":{\"id\":\"36987\",\"type\":\"GlyphRenderer\"},\"glyph23\":{\"id\":\"34359\",\"type\":\"GlyphRenderer\"},\"glyph230\":{\"id\":\"36991\",\"type\":\"GlyphRenderer\"},\"glyph231\":{\"id\":\"36995\",\"type\":\"GlyphRenderer\"},\"glyph232\":{\"id\":\"36999\",\"type\":\"GlyphRenderer\"},\"glyph233\":{\"id\":\"37003\",\"type\":\"GlyphRenderer\"},\"glyph234\":{\"id\":\"37007\",\"type\":\"GlyphRenderer\"},\"glyph235\":{\"id\":\"37011\",\"type\":\"GlyphRenderer\"},\"glyph236\":{\"id\":\"37015\",\"type\":\"GlyphRenderer\"},\"glyph237\":{\"id\":\"37019\",\"type\":\"GlyphRenderer\"},\"glyph238\":{\"id\":\"37023\",\"type\":\"GlyphRenderer\"},\"glyph239\":{\"id\":\"37027\",\"type\":\"GlyphRenderer\"},\"glyph24\":{\"id\":\"34363\",\"type\":\"GlyphRenderer\"},\"glyph25\":{\"id\":\"34367\",\"type\":\"GlyphRenderer\"},\"glyph26\":{\"id\":\"34371\",\"type\":\"GlyphRenderer\"},\"glyph27\":{\"id\":\"34375\",\"type\":\"GlyphRenderer\"},\"glyph28\":{\"id\":\"34379\",\"type\":\"GlyphRenderer\"},\"glyph29\":{\"id\":\"34383\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"34279\",\"type\":\"GlyphRenderer\"},\"glyph30\":{\"id\":\"34387\",\"type\":\"GlyphRenderer\"},\"glyph31\":{\"id\":\"34391\",\"type\":\"GlyphRenderer\"},\"glyph32\":{\"id\":\"34395\",\"type\":\"GlyphRenderer\"},\"glyph33\":{\"id\":\"34399\",\"type\":\"GlyphRenderer\"},\"glyph34\":{\"id\":\"34403\",\"type\":\"GlyphRenderer\"},\"glyph35\":{\"id\":\"34407\",\"type\":\"GlyphRenderer\"},\"glyph36\":{\"id\":\"34411\",\"type\":\"GlyphRenderer\"},\"glyph37\":{\"id\":\"34415\",\"type\":\"GlyphRenderer\"},\"glyph38\":{\"id\":\"34419\",\"type\":\"GlyphRenderer\"},\"glyph39\":{\"id\":\"34423\",\"type\":\"GlyphRenderer\"},\"glyph4\":{\"id\":\"34283\",\"type\":\"GlyphRenderer\"},\"glyph40\":{\"id\":\"34427\",\"type\":\"GlyphRenderer\"},\"glyph41\":{\"id\":\"34431\",\"type\":\"GlyphRenderer\"},\"glyph42\":{\"id\":\"34435\",\"type\":\"GlyphRenderer\"},\"glyph43\":{\"id\":\"34439\",\"type\":\"GlyphRenderer\"},\"glyph44\":{\"id\":\"34443\",\"type\":\"GlyphRenderer\"},\"glyph45\":{\"id\":\"34447\",\"type\":\"GlyphRenderer\"},\"glyph46\":{\"id\":\"34451\",\"type\":\"GlyphRenderer\"},\"glyph47\":{\"id\":\"34455\",\"type\":\"GlyphRenderer\"},\"glyph48\":{\"id\":\"34880\",\"type\":\"GlyphRenderer\"},\"glyph49\":{\"id\":\"34884\",\"type\":\"GlyphRenderer\"},\"glyph5\":{\"id\":\"34287\",\"type\":\"GlyphRenderer\"},\"glyph50\":{\"id\":\"34888\",\"type\":\"GlyphRenderer\"},\"glyph51\":{\"id\":\"34892\",\"type\":\"GlyphRenderer\"},\"glyph52\":{\"id\":\"34896\",\"type\":\"GlyphRenderer\"},\"glyph53\":{\"id\":\"34900\",\"type\":\"GlyphRenderer\"},\"glyph54\":{\"id\":\"34904\",\"type\":\"GlyphRenderer\"},\"glyph55\":{\"id\":\"34908\",\"type\":\"GlyphRenderer\"},\"glyph56\":{\"id\":\"34912\",\"type\":\"GlyphRenderer\"},\"glyph57\":{\"id\":\"34916\",\"type\":\"GlyphRenderer\"},\"glyph58\":{\"id\":\"34920\",\"type\":\"GlyphRenderer\"},\"glyph59\":{\"id\":\"34924\",\"type\":\"GlyphRenderer\"},\"glyph6\":{\"id\":\"34291\",\"type\":\"GlyphRenderer\"},\"glyph60\":{\"id\":\"34928\",\"type\":\"GlyphRenderer\"},\"glyph61\":{\"id\":\"34932\",\"type\":\"GlyphRenderer\"},\"glyph62\":{\"id\":\"34936\",\"type\":\"GlyphRenderer\"},\"glyph63\":{\"id\":\"34940\",\"type\":\"GlyphRenderer\"},\"glyph64\":{\"id\":\"34944\",\"type\":\"GlyphRenderer\"},\"glyph65\":{\"id\":\"34948\",\"type\":\"GlyphRenderer\"},\"glyph66\":{\"id\":\"34952\",\"type\":\"GlyphRenderer\"},\"glyph67\":{\"id\":\"34956\",\"type\":\"GlyphRenderer\"},\"glyph68\":{\"id\":\"34960\",\"type\":\"GlyphRenderer\"},\"glyph69\":{\"id\":\"34964\",\"type\":\"GlyphRenderer\"},\"glyph7\":{\"id\":\"34295\",\"type\":\"GlyphRenderer\"},\"glyph70\":{\"id\":\"34968\",\"type\":\"GlyphRenderer\"},\"glyph71\":{\"id\":\"34972\",\"type\":\"GlyphRenderer\"},\"glyph72\":{\"id\":\"34976\",\"type\":\"GlyphRenderer\"},\"glyph73\":{\"id\":\"34980\",\"type\":\"GlyphRenderer\"},\"glyph74\":{\"id\":\"34984\",\"type\":\"GlyphRenderer\"},\"glyph75\":{\"id\":\"34988\",\"type\":\"GlyphRenderer\"},\"glyph76\":{\"id\":\"34992\",\"type\":\"GlyphRenderer\"},\"glyph77\":{\"id\":\"34996\",\"type\":\"GlyphRenderer\"},\"glyph78\":{\"id\":\"35000\",\"type\":\"GlyphRenderer\"},\"glyph79\":{\"id\":\"35004\",\"type\":\"GlyphRenderer\"},\"glyph8\":{\"id\":\"34299\",\"type\":\"GlyphRenderer\"},\"glyph80\":{\"id\":\"35008\",\"type\":\"GlyphRenderer\"},\"glyph81\":{\"id\":\"35012\",\"type\":\"GlyphRenderer\"},\"glyph82\":{\"id\":\"35016\",\"type\":\"GlyphRenderer\"},\"glyph83\":{\"id\":\"35020\",\"type\":\"GlyphRenderer\"},\"glyph84\":{\"id\":\"35024\",\"type\":\"GlyphRenderer\"},\"glyph85\":{\"id\":\"35028\",\"type\":\"GlyphRenderer\"},\"glyph86\":{\"id\":\"35032\",\"type\":\"GlyphRenderer\"},\"glyph87\":{\"id\":\"35036\",\"type\":\"GlyphRenderer\"},\"glyph88\":{\"id\":\"35040\",\"type\":\"GlyphRenderer\"},\"glyph89\":{\"id\":\"35044\",\"type\":\"GlyphRenderer\"},\"glyph9\":{\"id\":\"34303\",\"type\":\"GlyphRenderer\"},\"glyph90\":{\"id\":\"35048\",\"type\":\"GlyphRenderer\"},\"glyph91\":{\"id\":\"35052\",\"type\":\"GlyphRenderer\"},\"glyph92\":{\"id\":\"35056\",\"type\":\"GlyphRenderer\"},\"glyph93\":{\"id\":\"35060\",\"type\":\"GlyphRenderer\"},\"glyph94\":{\"id\":\"35064\",\"type\":\"GlyphRenderer\"},\"glyph95\":{\"id\":\"35068\",\"type\":\"GlyphRenderer\"},\"glyph96\":{\"id\":\"35513\",\"type\":\"GlyphRenderer\"},\"glyph97\":{\"id\":\"35517\",\"type\":\"GlyphRenderer\"},\"glyph98\":{\"id\":\"35521\",\"type\":\"GlyphRenderer\"},\"glyph99\":{\"id\":\"35525\",\"type\":\"GlyphRenderer\"},\"time_slider\":{\"id\":\"37291\",\"type\":\"Slider\"}},\"code\":\"var glyphs = [glyph0, glyph1, glyph2, glyph3, glyph4, glyph5, glyph6, glyph7, glyph8, glyph9, glyph10, glyph11, glyph12, glyph13, glyph14, glyph15, glyph16, glyph17, glyph18, glyph19, glyph20, glyph21, glyph22, glyph23, glyph24, glyph25, glyph26, glyph27, glyph28, glyph29, glyph30, glyph31, glyph32, glyph33, glyph34, glyph35, glyph36, glyph37, glyph38, glyph39, glyph40, glyph41, glyph42, glyph43, glyph44, glyph45, glyph46, glyph47, glyph48, glyph49, glyph50, glyph51, glyph52, glyph53, glyph54, glyph55, glyph56, glyph57, glyph58, glyph59, glyph60, glyph61, glyph62, glyph63, glyph64, glyph65, glyph66, glyph67, glyph68, glyph69, glyph70, glyph71, glyph72, glyph73, glyph74, glyph75, glyph76, glyph77, glyph78, glyph79, glyph80, glyph81, glyph82, glyph83, glyph84, glyph85, glyph86, glyph87, glyph88, glyph89, glyph90, glyph91, glyph92, glyph93, glyph94, glyph95, glyph96, glyph97, glyph98, glyph99, glyph100, glyph101, glyph102, glyph103, glyph104, glyph105, glyph106, glyph107, glyph108, glyph109, glyph110, glyph111, glyph112, glyph113, glyph114, glyph115, glyph116, glyph117, glyph118, glyph119, glyph120, glyph121, glyph122, glyph123, glyph124, glyph125, glyph126, glyph127, glyph128, glyph129, glyph130, glyph131, glyph132, glyph133, glyph134, glyph135, glyph136, glyph137, glyph138, glyph139, glyph140, glyph141, glyph142, glyph143, glyph144, glyph145, glyph146, glyph147, glyph148, glyph149, glyph150, glyph151, glyph152, glyph153, glyph154, glyph155, glyph156, glyph157, glyph158, glyph159, glyph160, glyph161, glyph162, glyph163, glyph164, glyph165, glyph166, glyph167, glyph168, glyph169, glyph170, glyph171, glyph172, glyph173, glyph174, glyph175, glyph176, glyph177, glyph178, glyph179, glyph180, glyph181, glyph182, glyph183, glyph184, glyph185, glyph186, glyph187, glyph188, glyph189, glyph190, glyph191, glyph192, glyph193, glyph194, glyph195, glyph196, glyph197, glyph198, glyph199, glyph200, glyph201, glyph202, glyph203, glyph204, glyph205, glyph206, glyph207, glyph208, glyph209, glyph210, glyph211, glyph212, glyph213, glyph214, glyph215, glyph216, glyph217, glyph218, glyph219, glyph220, glyph221, glyph222, glyph223, glyph224, glyph225, glyph226, glyph227, glyph228, glyph229, glyph230, glyph231, glyph232, glyph233, glyph234, glyph235, glyph236, glyph237, glyph238, glyph239];var overtime = [[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191],[192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239]];var runs = [[0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236],[1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237],[2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238],[3,7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83,87,91,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,163,167,171,175,179,183,187,191,195,199,203,207,211,215,219,223,227,231,235,239]];\\n glyphs.forEach(function(g) {\\n g.visible = false;\\n })\\n // union function\\n function union_arrays(x, y) {\\n var obj = {};\\n for (var i = x.length-1; i >= 0; -- i)\\n obj[x[i]] = x[i];\\n for (var i = y.length-1; i >= 0; -- i)\\n obj[y[i]] = y[i];\\n var res = []\\n for (var k in obj) {\\n if (obj.hasOwnProperty(k)) // <-- optional\\n res.push(obj[k]);\\n }\\n return res;\\n }\\n console.log(\\\"Timeslider: \\\" + time_slider.value);\\n console.log(\\\"Checkbox: \\\" + checkbox.active);var slider_labels = ['0.01', '0.03', '0.13', '0.32', '1.33'];console.log(\\\"Detected slider_labels: \\\" + slider_labels);time_slider.title = \\\"Until wallclocktime \\\" + slider_labels[time_slider.value - 1] + \\\". Step no.\\\"; \\n var activate = [];\\n // if we want multiple checkboxes at the same time, we need to combine the arrays\\n checkbox.active.forEach(function(c) {\\n activate = union_arrays(activate, runs[c]);\\n })\\n // now the intersection of timeslider-activated and checkbox-activated\\n activate = activate.filter(value => -1 !== overtime[time_slider.value - 1].indexOf(value));\\n activate.forEach(function(idx) {\\n glyphs[idx].visible = true;\\n })\\n \"},\"id\":\"37293\",\"type\":\"CustomJS\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34649\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true]},\"id\":\"34640\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34658\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false]},\"id\":\"34665\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34652\",\"type\":\"GroupFilter\"},{\"id\":\"34653\",\"type\":\"GroupFilter\"},{\"id\":\"34654\",\"type\":\"GroupFilter\"},{\"id\":\"34655\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34656\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"34667\",\"type\":\"GroupFilter\"},{\"id\":\"34668\",\"type\":\"GroupFilter\"},{\"id\":\"34669\",\"type\":\"GroupFilter\"},{\"id\":\"34670\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34671\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36842\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34650\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34662\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34647\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34647\",\"type\":\"GroupFilter\"},{\"id\":\"34648\",\"type\":\"GroupFilter\"},{\"id\":\"34649\",\"type\":\"GroupFilter\"},{\"id\":\"34650\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34651\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"34637\",\"type\":\"GroupFilter\"},{\"id\":\"34638\",\"type\":\"GroupFilter\"},{\"id\":\"34639\",\"type\":\"GroupFilter\"},{\"id\":\"34640\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34641\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34644\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34664\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34669\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"35961\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34670\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36865\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34653\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"34667\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34668\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true]},\"id\":\"34660\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34657\",\"type\":\"GroupFilter\"},{\"id\":\"34658\",\"type\":\"GroupFilter\"},{\"id\":\"34659\",\"type\":\"GroupFilter\"},{\"id\":\"34660\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34661\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34659\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34648\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34662\",\"type\":\"GroupFilter\"},{\"id\":\"34663\",\"type\":\"GroupFilter\"},{\"id\":\"34664\",\"type\":\"GroupFilter\"},{\"id\":\"34665\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34666\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34654\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36833\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35332\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36301\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36822\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true]},\"id\":\"35333\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36256\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36257\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36042\",\"type\":\"CDSView\"}},\"id\":\"36258\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"35330\",\"type\":\"GroupFilter\"},{\"id\":\"35331\",\"type\":\"GroupFilter\"},{\"id\":\"35332\",\"type\":\"GroupFilter\"},{\"id\":\"35333\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35334\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36260\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35307\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36268\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36269\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36057\",\"type\":\"CDSView\"}},\"id\":\"36270\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"35315\",\"type\":\"GroupFilter\"},{\"id\":\"35316\",\"type\":\"GroupFilter\"},{\"id\":\"35317\",\"type\":\"GroupFilter\"},{\"id\":\"35318\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35319\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36811\",\"type\":\"GroupFilter\"},{\"id\":\"36812\",\"type\":\"GroupFilter\"},{\"id\":\"36813\",\"type\":\"GroupFilter\"},{\"id\":\"36814\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36815\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36812\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35310\",\"type\":\"GroupFilter\"},{\"id\":\"35311\",\"type\":\"GroupFilter\"},{\"id\":\"35312\",\"type\":\"GroupFilter\"},{\"id\":\"35313\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35314\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"35480\",\"type\":\"GroupFilter\"},{\"id\":\"35481\",\"type\":\"GroupFilter\"},{\"id\":\"35482\",\"type\":\"GroupFilter\"},{\"id\":\"35483\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35484\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"36821\",\"type\":\"GroupFilter\"},{\"id\":\"36822\",\"type\":\"GroupFilter\"},{\"id\":\"36823\",\"type\":\"GroupFilter\"},{\"id\":\"36824\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36825\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,false,false,false,false,false,false,false]},\"id\":\"35318\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36252\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36253\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36037\",\"type\":\"CDSView\"}},\"id\":\"36254\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36261\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35306\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36813\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36296\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35335\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36818\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36296\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36297\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36092\",\"type\":\"CDSView\"}},\"id\":\"36298\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35316\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36814\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35322\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,false,true,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36809\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36276\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36277\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36067\",\"type\":\"CDSView\"}},\"id\":\"36278\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"35305\",\"type\":\"GroupFilter\"},{\"id\":\"35306\",\"type\":\"GroupFilter\"},{\"id\":\"35307\",\"type\":\"GroupFilter\"},{\"id\":\"35308\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35309\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35310\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36806\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36808\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35337\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36827\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36277\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,false,true,true,true,false,true,false,false,true,false,false,true,false,true,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,false,true,true,false,true,false,false,true,false,false,false,false,false,false]},\"id\":\"36824\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35315\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35325\",\"type\":\"GroupFilter\"},{\"id\":\"35326\",\"type\":\"GroupFilter\"},{\"id\":\"35327\",\"type\":\"GroupFilter\"},{\"id\":\"35328\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35329\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36264\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36817\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36269\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36256\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35311\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36265\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36821\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36272\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36273\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36062\",\"type\":\"CDSView\"}},\"id\":\"36274\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36823\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36276\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"36801\",\"type\":\"GroupFilter\"},{\"id\":\"36802\",\"type\":\"GroupFilter\"},{\"id\":\"36803\",\"type\":\"GroupFilter\"},{\"id\":\"36804\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36805\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35323\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36300\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36301\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36097\",\"type\":\"CDSView\"}},\"id\":\"36302\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,true,true,false,false,true,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36829\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36305\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"36806\",\"type\":\"GroupFilter\"},{\"id\":\"36807\",\"type\":\"GroupFilter\"},{\"id\":\"36808\",\"type\":\"GroupFilter\"},{\"id\":\"36809\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36810\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35331\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36837\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35317\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36831\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35321\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36826\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36826\",\"type\":\"GroupFilter\"},{\"id\":\"36827\",\"type\":\"GroupFilter\"},{\"id\":\"36828\",\"type\":\"GroupFilter\"},{\"id\":\"36829\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36830\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35483\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"36831\",\"type\":\"GroupFilter\"},{\"id\":\"36832\",\"type\":\"GroupFilter\"},{\"id\":\"36833\",\"type\":\"GroupFilter\"},{\"id\":\"36834\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36835\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35320\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"35485\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,false,true,true,false,true,true,false,true,false,false,true,false,false,true,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,true,true,false,true,true,true,true,true,true]},\"id\":\"36819\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36257\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35327\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"36807\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"36834\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36300\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"35326\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36260\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36261\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36047\",\"type\":\"CDSView\"}},\"id\":\"36262\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"35325\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36268\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36273\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"36816\",\"type\":\"GroupFilter\"},{\"id\":\"36817\",\"type\":\"GroupFilter\"},{\"id\":\"36818\",\"type\":\"GroupFilter\"},{\"id\":\"36819\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33970\",\"type\":\"ColumnDataSource\"}},\"id\":\"36820\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"35336\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36811\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36304\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36305\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36102\",\"type\":\"CDSView\"}},\"id\":\"36306\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"36816\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true]},\"id\":\"35313\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"35320\",\"type\":\"GroupFilter\"},{\"id\":\"35321\",\"type\":\"GroupFilter\"},{\"id\":\"35322\",\"type\":\"GroupFilter\"},{\"id\":\"35323\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33968\",\"type\":\"ColumnDataSource\"}},\"id\":\"35324\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36272\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"33969\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"36264\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"36265\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"36052\",\"type\":\"CDSView\"}},\"id\":\"36266\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35482\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36309\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"36832\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35328\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36297\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35312\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"35486\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36304\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,false,false,false,false,false,false]},\"id\":\"35308\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"35487\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"36828\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"36308\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"35330\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34777\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34767\",\"type\":\"GroupFilter\"},{\"id\":\"34768\",\"type\":\"GroupFilter\"},{\"id\":\"34769\",\"type\":\"GroupFilter\"},{\"id\":\"34770\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34771\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"34772\",\"type\":\"GroupFilter\"},{\"id\":\"34773\",\"type\":\"GroupFilter\"},{\"id\":\"34774\",\"type\":\"GroupFilter\"},{\"id\":\"34775\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34776\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34779\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34784\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"34773\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34778\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,false,false,false]},\"id\":\"34785\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true]},\"id\":\"34780\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34782\",\"type\":\"GroupFilter\"},{\"id\":\"34783\",\"type\":\"GroupFilter\"},{\"id\":\"34784\",\"type\":\"GroupFilter\"},{\"id\":\"34785\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34786\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34782\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34783\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"35435\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34775\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34777\",\"type\":\"GroupFilter\"},{\"id\":\"34778\",\"type\":\"GroupFilter\"},{\"id\":\"34779\",\"type\":\"GroupFilter\"},{\"id\":\"34780\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34781\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34774\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34795\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34789\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34788\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34794\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34792\",\"type\":\"GroupFilter\"},{\"id\":\"34793\",\"type\":\"GroupFilter\"},{\"id\":\"34794\",\"type\":\"GroupFilter\"},{\"id\":\"34795\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34796\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"34798\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34790\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34772\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34792\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"34793\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"34787\",\"type\":\"GroupFilter\"},{\"id\":\"34788\",\"type\":\"GroupFilter\"},{\"id\":\"34789\",\"type\":\"GroupFilter\"},{\"id\":\"34790\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"33967\",\"type\":\"ColumnDataSource\"}},\"id\":\"34791\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34797\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,false,false]},\"id\":\"34770\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"35470\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"34787\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"34769\",\"type\":\"GroupFilter\"}],\"root_ids\":[\"37312\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"45939952-d802-47c3-b67b-89ef065e97a2\",\"roots\":{\"37312\":\"4178ec04-8e21-4063-b2b3-673e74b2771f\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "37312" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.configurator_footprint(use_timeslider=True, num_quantiles=5);" ] }, { "cell_type": "code", - "execution_count": 26, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"37790\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"37790\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '37790' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"37790\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"37790\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"37790\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '37790' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"37790\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"bc523d1b-3a81-4094-a478-c93e30fd29d9\":{\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"37793\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"37897\",\"type\":\"Column\"}]},\"id\":\"37898\",\"type\":\"Row\"},{\"attributes\":{},\"id\":\"37813\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"37799\",\"type\":\"LogScale\"},{\"attributes\":{\"callback\":null,\"data\":{\"lower\":[0.334506454154526,0.334506454154526,0.3263791466513958,0.3263791466513958,0.3094280427916326,0.3094280427916326,0.296116233189415,0.296116233189415,0.3099538710070052,0.3099538710070052,0.30136530975725273,0.30136530975725273,0.2919095936149524,0.2919095936149524,0.28842711833061657,0.28842711833061657,0.28766143557674007,0.28766143557674007,0.28679427791180645,0.28679427791180645,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.334506454154526,0.334506454154526,0.3263791466513958,0.3263791466513958,0.3094280427916326,0.3094280427916326,0.296116233189415,0.296116233189415,0.296116233189415,0.3099538710070052,0.3099538710070052,0.30136530975725273,0.30136530975725273,0.2919095936149524,0.2919095936149524,0.28842711833061657,0.28842711833061657,0.28766143557674007,0.28766143557674007,0.28766143557674007,0.28679427791180645,0.28679427791180645,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529],\"mean\":[0.334506454154526,0.334506454154526,0.3263791466513958,0.3263791466513958,0.3094280427916326,0.3094280427916326,0.296116233189415,0.296116233189415,0.3099538710070052,0.3099538710070052,0.30136530975725273,0.30136530975725273,0.2919095936149524,0.2919095936149524,0.28842711833061657,0.28842711833061657,0.28766143557674007,0.28766143557674007,0.28679427791180645,0.28679427791180645,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.334506454154526,0.334506454154526,0.3263791466513958,0.3263791466513958,0.3094280427916326,0.3094280427916326,0.296116233189415,0.296116233189415,0.296116233189415,0.3099538710070052,0.3099538710070052,0.30136530975725273,0.30136530975725273,0.2919095936149524,0.2919095936149524,0.28842711833061657,0.28842711833061657,0.28766143557674007,0.28766143557674007,0.28766143557674007,0.28679427791180645,0.28679427791180645,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529],\"name\":[\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"budget 9\",\"budget 9\",\"budget 9\",\"budget 9\",\"budget 9\",\"budget 9\",\"budget 9\",\"budget 9\",\"budget 9\",\"budget 27\",\"budget 27\",\"budget 27\",\"budget 27\",\"budget 27\",\"budget 27\",\"budget 27\",\"budget 27\",\"budget 27\",\"budget 27\",\"budget 27\",\"budget 81\",\"budget 81\",\"budget 81\",\"budget 81\",\"budget 81\",\"budget 243\",\"budget 243\",\"budget 243\"],\"time\":[0.004393339157104492,0.10699939727783203,0.10699939727783203,0.14000320434570312,0.14000320434570312,0.25003552436828613,0.25003552436828613,0.5927796363830566,0.5927796363830566,0.5992898941040039,0.5992898941040039,0.6053023338317871,0.6053023338317871,0.6205613613128662,0.6205613613128662,0.6531562805175781,0.6531562805175781,0.6622121334075928,0.6622121334075928,0.6747868061065674,0.6747868061065674,0.6808278560638428,0.6808278560638428,1.3263158798217773,1.3263158798217773,0.004393339157104492,0.10699939727783203,0.10699939727783203,0.14000320434570312,0.14000320434570312,0.25003552436828613,0.25003552436828613,0.5841596126556396,0.5841596126556396,0.5927796363830566,0.5992898941040039,0.5992898941040039,0.6053023338317871,0.6053023338317871,0.6205613613128662,0.6205613613128662,0.6531562805175781,0.6531562805175781,1.004554271697998,1.004554271697998,0.6622121334075928,0.6747868061065674,0.6747868061065674,1.2844526767730713,1.2844526767730713,0.6808278560638428,1.3263158798217773,1.3263158798217773],\"upper\":[0.334506454154526,0.334506454154526,0.3263791466513958,0.3263791466513958,0.3094280427916326,0.3094280427916326,0.296116233189415,0.296116233189415,0.3099538710070052,0.3099538710070052,0.30136530975725273,0.30136530975725273,0.2919095936149524,0.2919095936149524,0.28842711833061657,0.28842711833061657,0.28766143557674007,0.28766143557674007,0.28679427791180645,0.28679427791180645,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.334506454154526,0.334506454154526,0.3263791466513958,0.3263791466513958,0.3094280427916326,0.3094280427916326,0.296116233189415,0.296116233189415,0.296116233189415,0.3099538710070052,0.3099538710070052,0.30136530975725273,0.30136530975725273,0.2919095936149524,0.2919095936149524,0.28842711833061657,0.28842711833061657,0.28766143557674007,0.28766143557674007,0.28766143557674007,0.28679427791180645,0.28679427791180645,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529,0.2857472291602529],\"x0\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"x1\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"x2\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"x3\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"x4\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"x5\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"]},\"selected\":{\"id\":\"37904\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"37905\",\"type\":\"UnionRenderers\"}},\"id\":\"37791\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"dimension\":1,\"ticker\":{\"id\":\"37809\",\"type\":\"BasicTicker\"}},\"id\":\"37812\",\"type\":\"Grid\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"all budgets\"},\"id\":\"37824\",\"type\":\"GroupFilter\"},{\"attributes\":{\"background_fill_color\":{\"value\":null},\"below\":[{\"id\":\"37803\",\"type\":\"LogAxis\"}],\"border_fill_color\":{\"value\":null},\"center\":[{\"id\":\"37807\",\"type\":\"Grid\"},{\"id\":\"37812\",\"type\":\"Grid\"}],\"left\":[{\"id\":\"37808\",\"type\":\"LinearAxis\"}],\"plot_height\":500,\"plot_width\":700,\"renderers\":[{\"id\":\"37829\",\"type\":\"GlyphRenderer\"},{\"id\":\"37833\",\"type\":\"GlyphRenderer\"},{\"id\":\"37840\",\"type\":\"GlyphRenderer\"},{\"id\":\"37844\",\"type\":\"GlyphRenderer\"},{\"id\":\"37851\",\"type\":\"GlyphRenderer\"},{\"id\":\"37855\",\"type\":\"GlyphRenderer\"},{\"id\":\"37862\",\"type\":\"GlyphRenderer\"},{\"id\":\"37866\",\"type\":\"GlyphRenderer\"},{\"id\":\"37873\",\"type\":\"GlyphRenderer\"},{\"id\":\"37877\",\"type\":\"GlyphRenderer\"}],\"right\":[{\"id\":\"37887\",\"type\":\"Legend\"}],\"title\":{\"id\":\"37794\",\"type\":\"Title\"},\"toolbar\":{\"id\":\"37818\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"37792\",\"type\":\"Range1d\"},\"x_scale\":{\"id\":\"37799\",\"type\":\"LogScale\"},\"y_range\":{\"id\":\"37797\",\"type\":\"DataRange1d\"},\"y_scale\":{\"id\":\"37801\",\"type\":\"LinearScale\"}},\"id\":\"37793\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"37910\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"37906\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"37809\",\"type\":\"BasicTicker\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"37813\",\"type\":\"SaveTool\"},{\"id\":\"37814\",\"type\":\"PanTool\"},{\"id\":\"37815\",\"type\":\"BoxZoomTool\"},{\"id\":\"37816\",\"type\":\"WheelZoomTool\"},{\"id\":\"37817\",\"type\":\"ResetTool\"},{\"id\":\"37879\",\"type\":\"HoverTool\"}]},\"id\":\"37818\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"37904\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"37900\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"num_minor_ticks\":10},\"id\":\"37804\",\"type\":\"LogTicker\"},{\"attributes\":{\"children\":[{\"id\":\"37893\",\"type\":\"WidgetBox\"},{\"id\":\"37896\",\"type\":\"Row\"}]},\"id\":\"37897\",\"type\":\"Column\"},{\"attributes\":{\"axis_label\":\"estimated cost\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"37900\",\"type\":\"BasicTickFormatter\"},\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"37809\",\"type\":\"BasicTicker\"}},\"id\":\"37808\",\"type\":\"LinearAxis\"},{\"attributes\":{\"ticker\":{\"id\":\"37804\",\"type\":\"LogTicker\"}},\"id\":\"37807\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"37911\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"37817\",\"type\":\"ResetTool\"},{\"attributes\":{\"filters\":[{\"id\":\"37824\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"37791\",\"type\":\"ColumnDataSource\"}},\"id\":\"37825\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"37816\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"37814\",\"type\":\"PanTool\"},{\"attributes\":{\"callback\":null},\"id\":\"37797\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"37908\",\"type\":\"Selection\"},{\"attributes\":{\"overlay\":{\"id\":\"37916\",\"type\":\"BoxAnnotation\"}},\"id\":\"37815\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"text\":\"Cost over time\",\"text_font_size\":{\"value\":\"15pt\"}},\"id\":\"37794\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"37801\",\"type\":\"LinearScale\"},{\"attributes\":{\"ticker\":null},\"id\":\"37902\",\"type\":\"LogTickFormatter\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"37829\",\"type\":\"GlyphRenderer\"},{\"id\":\"37833\",\"type\":\"GlyphRenderer\"},{\"id\":\"37840\",\"type\":\"GlyphRenderer\"},{\"id\":\"37844\",\"type\":\"GlyphRenderer\"},{\"id\":\"37851\",\"type\":\"GlyphRenderer\"},{\"id\":\"37855\",\"type\":\"GlyphRenderer\"},{\"id\":\"37862\",\"type\":\"GlyphRenderer\"},{\"id\":\"37866\",\"type\":\"GlyphRenderer\"},{\"id\":\"37873\",\"type\":\"GlyphRenderer\"},{\"id\":\"37877\",\"type\":\"GlyphRenderer\"}],\"tooltips\":[[\"estimated performance\",\"@mean\"],[\"at-time\",\"@time\"]]},\"id\":\"37879\",\"type\":\"HoverTool\"},{\"attributes\":{\"axis_label\":\"time (sec)\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"37902\",\"type\":\"LogTickFormatter\"},\"major_label_orientation\":0.75,\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"37804\",\"type\":\"LogTicker\"}},\"id\":\"37803\",\"type\":\"LogAxis\"},{\"attributes\":{},\"id\":\"37909\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"37905\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAgFfJ5T8AAAAAlzj1PwAAAACXOPU/AAAAAJc49T8AAAAAlzj1PwAAAIBXyeU/\",\"dtype\":\"float64\",\"shape\":[6]},\"y\":{\"__ndarray__\":\"K54Kv65J0j8rngq/rknSPyueCr+uSdI/K54Kv65J0j8rngq/rknSPyueCr+uSdI/\",\"dtype\":\"float64\",\"shape\":[6]}},\"selected\":{\"id\":\"37914\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"37915\",\"type\":\"UnionRenderers\"}},\"id\":\"37874\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"37912\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"37907\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"source\":{\"id\":\"37830\",\"type\":\"ColumnDataSource\"}},\"id\":\"37834\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"37791\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37871\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37872\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"37869\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"37873\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"label\":{\"value\":\"budget 27\"},\"renderers\":[{\"id\":\"37851\",\"type\":\"GlyphRenderer\"},{\"id\":\"37855\",\"type\":\"GlyphRenderer\"}]},\"id\":\"37890\",\"type\":\"LegendItem\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAAMD+cT8AAAAAUGS7PwAAAABQZLs/AAAAAKDrwT8AAAAAoOvBPwAAAACVANA/AAAAAJUA0D8AAACAb7HiPwAAAIBvseI/AAAAgG+x4j8AAACAb7HiPwAAAACVANA/AAAAAJUA0D8AAAAAoOvBPwAAAACg68E/AAAAAFBkuz8AAAAAUGS7PwAAAADA/nE/\",\"dtype\":\"float64\",\"shape\":[18]},\"y\":{\"__ndarray__\":\"VUE5wo1o1T9VQTnCjWjVP1q0PVxl49Q/WrQ9XGXj1D+qVxBHq83TP6pXEEerzdM/cT9XgJHz0j9xP1eAkfPSP3E/V4CR89I/cT9XgJHz0j9xP1eAkfPSP3E/V4CR89I/qlcQR6vN0z+qVxBHq83TP1q0PVxl49Q/WrQ9XGXj1D9VQTnCjWjVP1VBOcKNaNU/\",\"dtype\":\"float64\",\"shape\":[18]}},\"selected\":{\"id\":\"37908\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"37909\",\"type\":\"UnionRenderers\"}},\"id\":\"37841\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"source\":{\"id\":\"37863\",\"type\":\"ColumnDataSource\"}},\"id\":\"37867\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37864\",\"type\":\"Patch\"},{\"attributes\":{\"filters\":[{\"id\":\"37835\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"37791\",\"type\":\"ColumnDataSource\"}},\"id\":\"37836\",\"type\":\"CDSView\"},{\"attributes\":{\"active\":[0],\"callback\":{\"id\":\"37881\",\"type\":\"CustomJS\"},\"labels\":[\"all budgets\",\"budget 9\",\"budget 27\",\"budget 81\",\"budget 243\"]},\"id\":\"37882\",\"type\":\"CheckboxButtonGroup\"},{\"attributes\":{\"data_source\":{\"id\":\"37874\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37875\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37876\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"37878\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"37877\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"37913\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"filters\":[{\"id\":\"37846\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"37791\",\"type\":\"ColumnDataSource\"}},\"id\":\"37847\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"37868\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"37791\",\"type\":\"ColumnDataSource\"}},\"id\":\"37869\",\"type\":\"CDSView\"},{\"attributes\":{\"source\":{\"id\":\"37852\",\"type\":\"ColumnDataSource\"}},\"id\":\"37856\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"37857\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"37791\",\"type\":\"ColumnDataSource\"}},\"id\":\"37858\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 9\"},\"id\":\"37835\",\"type\":\"GroupFilter\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"37882\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"37829\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"37833\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"37840\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"37844\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"37851\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"37855\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"37862\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"37866\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"37873\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"37877\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = []; checkbox.active = labels;len_labels = 5;glyph_renderers = [[glyph_renderer0,glyph_renderer1],[glyph_renderer2,glyph_renderer3],[glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7],[glyph_renderer8,glyph_renderer9]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"37885\",\"type\":\"CustomJS\"},{\"attributes\":{\"label\":{\"value\":\"budget 9\"},\"renderers\":[{\"id\":\"37840\",\"type\":\"GlyphRenderer\"},{\"id\":\"37844\",\"type\":\"GlyphRenderer\"}]},\"id\":\"37889\",\"type\":\"LegendItem\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37876\",\"type\":\"Patch\"},{\"attributes\":{\"line_color\":\"#66a61e\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"37871\",\"type\":\"Line\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"37839\",\"type\":\"Line\"},{\"attributes\":{\"callback\":{\"id\":\"37885\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"None\"},\"id\":\"37886\",\"type\":\"Button\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"37916\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"line_color\":\"#d95f02\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"37838\",\"type\":\"Line\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 243\"},\"id\":\"37868\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAgNcw5T8AAACA2pflPwAAAIDal+U/AAAAQB6N9D8AAABAHo30PwAAAEAejfQ/AAAAQB6N9D8AAACA2pflPwAAAIDal+U/AAAAgNcw5T8=\",\"dtype\":\"float64\",\"shape\":[10]},\"y\":{\"__ndarray__\":\"yOkTY9Za0j/I6RNj1lrSPyueCr+uSdI/K54Kv65J0j8rngq/rknSPyueCr+uSdI/K54Kv65J0j8rngq/rknSP8jpE2PWWtI/yOkTY9Za0j8=\",\"dtype\":\"float64\",\"shape\":[10]}},\"selected\":{\"id\":\"37912\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"37913\",\"type\":\"UnionRenderers\"}},\"id\":\"37863\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"line_color\":\"#1b9e77\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"37827\",\"type\":\"Line\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 81\"},\"id\":\"37857\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"37915\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"37791\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37838\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37839\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"37836\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"37840\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37832\",\"type\":\"Patch\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAAMD+cT8AAAAAUGS7PwAAAABQZLs/AAAAAKDrwT8AAAAAoOvBPwAAAACVANA/AAAAAJUA0D8AAAAADfjiPwAAAAAN+OI/AAAAAGIt4z8AAAAAYi3jPwAAAACjXuM/AAAAAKNe4z8AAACAo9vjPwAAAICj2+M/AAAAAKjm5D8AAAAAqObkPwAAAIDXMOU/AAAAgNcw5T8AAACA2pflPwAAAIDal+U/AAAAgFfJ5T8AAACAV8nlPwAAAACXOPU/AAAAAJc49T8AAAAAlzj1PwAAAACXOPU/AAAAgFfJ5T8AAACAV8nlPwAAAIDal+U/AAAAgNqX5T8AAACA1zDlPwAAAIDXMOU/AAAAAKjm5D8AAAAAqObkPwAAAICj2+M/AAAAgKPb4z8AAAAAo17jPwAAAACjXuM/AAAAAGIt4z8AAAAAYi3jPwAAAAAN+OI/AAAAAA344j8AAAAAlQDQPwAAAACVANA/AAAAAKDrwT8AAAAAoOvBPwAAAABQZLs/AAAAAFBkuz8AAAAAwP5xPw==\",\"dtype\":\"float64\",\"shape\":[50]},\"y\":{\"__ndarray__\":\"VUE5wo1o1T9VQTnCjWjVP1q0PVxl49Q/WrQ9XGXj1D+qVxBHq83TP6pXEEerzdM/cT9XgJHz0j9xP1eAkfPSP56Yz8JI1tM/npjPwkjW0z+WmmO5kUnTP5aaY7mRSdM/csB9k6Wu0j9ywH2Tpa7SP/ubIASXddI/+5sgBJd10j8y14eCC2nSPzLXh4ILadI/yOkTY9Za0j/I6RNj1lrSPyueCr+uSdI/K54Kv65J0j8rngq/rknSPyueCr+uSdI/K54Kv65J0j8rngq/rknSPyueCr+uSdI/K54Kv65J0j8rngq/rknSPyueCr+uSdI/yOkTY9Za0j/I6RNj1lrSPzLXh4ILadI/MteHggtp0j/7myAEl3XSP/ubIASXddI/csB9k6Wu0j9ywH2Tpa7SP5aaY7mRSdM/lppjuZFJ0z+emM/CSNbTP56Yz8JI1tM/cT9XgJHz0j9xP1eAkfPSP6pXEEerzdM/qlcQR6vN0z9atD1cZePUP1q0PVxl49Q/VUE5wo1o1T9VQTnCjWjVPw==\",\"dtype\":\"float64\",\"shape\":[50]}},\"selected\":{\"id\":\"37906\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"37907\",\"type\":\"UnionRenderers\"}},\"id\":\"37830\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"children\":[{\"id\":\"37884\",\"type\":\"Button\"}],\"width\":50},\"id\":\"37894\",\"type\":\"WidgetBox\"},{\"attributes\":{\"callback\":null,\"end\":1.3263158798217773,\"start\":0.004393339157104492},\"id\":\"37792\",\"type\":\"Range1d\"},{\"attributes\":{\"data_source\":{\"id\":\"37791\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37860\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37861\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"37858\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"37862\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"click_policy\":\"hide\",\"items\":[{\"id\":\"37888\",\"type\":\"LegendItem\"},{\"id\":\"37889\",\"type\":\"LegendItem\"},{\"id\":\"37890\",\"type\":\"LegendItem\"},{\"id\":\"37891\",\"type\":\"LegendItem\"},{\"id\":\"37892\",\"type\":\"LegendItem\"}],\"label_text_font_size\":{\"value\":\"8pt\"},\"location\":\"bottom_left\"},\"id\":\"37887\",\"type\":\"Legend\"},{\"attributes\":{\"line_color\":\"#e7298a\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"37860\",\"type\":\"Line\"},{\"attributes\":{\"label\":{\"value\":\"budget 81\"},\"renderers\":[{\"id\":\"37862\",\"type\":\"GlyphRenderer\"},{\"id\":\"37866\",\"type\":\"GlyphRenderer\"}]},\"id\":\"37891\",\"type\":\"LegendItem\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"37882\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"37829\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"37833\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"37840\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"37844\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"37851\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"37855\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"37862\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"37866\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"37873\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"37877\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = [0, 1, 2, 3, 4]; checkbox.active = labels;len_labels = 5;glyph_renderers = [[glyph_renderer0,glyph_renderer1],[glyph_renderer2,glyph_renderer3],[glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7],[glyph_renderer8,glyph_renderer9]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"37883\",\"type\":\"CustomJS\"},{\"attributes\":{\"data_source\":{\"id\":\"37791\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37849\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37850\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"37847\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"37851\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"37828\",\"type\":\"Line\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 27\"},\"id\":\"37846\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37854\",\"type\":\"Patch\"},{\"attributes\":{\"data_source\":{\"id\":\"37830\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37831\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37832\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"37834\",\"type\":\"CDSView\"}},\"id\":\"37833\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"args\":{\"glyph_renderer0\":{\"id\":\"37829\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"37833\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"37840\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"37844\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"37851\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"37855\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"37862\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"37866\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"37873\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"37877\",\"type\":\"GlyphRenderer\"}},\"code\":\"len_labels = 5;glyph_renderers = [[glyph_renderer0,glyph_renderer1],[glyph_renderer2,glyph_renderer3],[glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7],[glyph_renderer8,glyph_renderer9]];\\n for (i = 0; i < len_labels; i++) {\\n if (cb_obj.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"37881\",\"type\":\"CustomJS\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"37850\",\"type\":\"Line\"},{\"attributes\":{\"callback\":{\"id\":\"37883\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"All\"},\"id\":\"37884\",\"type\":\"Button\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"37872\",\"type\":\"Line\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37865\",\"type\":\"Patch\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"37861\",\"type\":\"Line\"},{\"attributes\":{\"data_source\":{\"id\":\"37791\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37827\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37828\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"37825\",\"type\":\"CDSView\"}},\"id\":\"37829\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAAA344j8AAAAAYi3jPwAAAABiLeM/AAAAAKNe4z8AAAAAo17jPwAAAICj2+M/AAAAgKPb4z8AAAAAqObkPwAAAACo5uQ/AAAAgKcS8D8AAACApxLwPwAAAICnEvA/AAAAgKcS8D8AAAAAqObkPwAAAACo5uQ/AAAAgKPb4z8AAACAo9vjPwAAAACjXuM/AAAAAKNe4z8AAAAAYi3jPwAAAABiLeM/AAAAAA344j8=\",\"dtype\":\"float64\",\"shape\":[22]},\"y\":{\"__ndarray__\":\"npjPwkjW0z+emM/CSNbTP5aaY7mRSdM/lppjuZFJ0z9ywH2Tpa7SP3LAfZOlrtI/+5sgBJd10j/7myAEl3XSPzLXh4ILadI/MteHggtp0j8y14eCC2nSPzLXh4ILadI/MteHggtp0j8y14eCC2nSP/ubIASXddI/+5sgBJd10j9ywH2Tpa7SP3LAfZOlrtI/lppjuZFJ0z+WmmO5kUnTP56Yz8JI1tM/npjPwkjW0z8=\",\"dtype\":\"float64\",\"shape\":[22]}},\"selected\":{\"id\":\"37910\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"37911\",\"type\":\"UnionRenderers\"}},\"id\":\"37852\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"37841\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37842\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37843\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"37845\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"37844\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37875\",\"type\":\"Patch\"},{\"attributes\":{\"line_color\":\"#7570b3\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"37849\",\"type\":\"Line\"},{\"attributes\":{\"source\":{\"id\":\"37874\",\"type\":\"ColumnDataSource\"}},\"id\":\"37878\",\"type\":\"CDSView\"},{\"attributes\":{\"source\":{\"id\":\"37841\",\"type\":\"ColumnDataSource\"}},\"id\":\"37845\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"37914\",\"type\":\"Selection\"},{\"attributes\":{\"label\":{\"value\":\"budget 243\"},\"renderers\":[{\"id\":\"37873\",\"type\":\"GlyphRenderer\"},{\"id\":\"37877\",\"type\":\"GlyphRenderer\"}]},\"id\":\"37892\",\"type\":\"LegendItem\"},{\"attributes\":{\"label\":{\"value\":\"all budgets\"},\"renderers\":[{\"id\":\"37829\",\"type\":\"GlyphRenderer\"},{\"id\":\"37833\",\"type\":\"GlyphRenderer\"}]},\"id\":\"37888\",\"type\":\"LegendItem\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37843\",\"type\":\"Patch\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37842\",\"type\":\"Patch\"},{\"attributes\":{\"children\":[{\"id\":\"37886\",\"type\":\"Button\"}],\"width\":50},\"id\":\"37895\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37831\",\"type\":\"Patch\"},{\"attributes\":{\"children\":[{\"id\":\"37882\",\"type\":\"CheckboxButtonGroup\"}],\"width\":100},\"id\":\"37893\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"37853\",\"type\":\"Patch\"},{\"attributes\":{\"data_source\":{\"id\":\"37863\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37864\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37865\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"37867\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"37866\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"children\":[{\"id\":\"37894\",\"type\":\"WidgetBox\"},{\"id\":\"37895\",\"type\":\"WidgetBox\"}]},\"id\":\"37896\",\"type\":\"Row\"},{\"attributes\":{\"data_source\":{\"id\":\"37852\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"37853\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"37854\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"37856\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"37855\",\"type\":\"GlyphRenderer\"}],\"root_ids\":[\"37898\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"bc523d1b-3a81-4094-a478-c93e30fd29d9\",\"roots\":{\"37898\":\"d5336ad4-2559-4e20-81f5-480a7d8068c5\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "37898" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.cost_over_time();" ] }, { "cell_type": "code", - "execution_count": 31, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABDgAAAFoCAYAAACypkvfAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzsnXl4U1X6xz/nJt3ShZZ9KYusBVGUVREBRUVAxm1E1HFD0BkdfzOjo86ijqPjNuqsjvuGK4gILoCKIqggyCKL0EKhpVDaAi3d0qZpknt+f5w0C03atLTQlvN5njxJ7r3n3pM2uffc73nf7yuklBKNRqPRaDQajUaj0Wg0mlaMcaI7oNFoNBqNRqPRaDQajUZzrGiBQ6PRaDQajUaj0Wg0Gk2rRwscGo1Go9FoNBqNRqPRaFo9WuDQaDQajUaj0Wg0Go1G0+rRAodGo9FoNBqNRqPRaDSaVo8WODQajUaj0Wg0Go1Go9G0erTAodFoNBqNRqPRaDQajabVowUOjUaj0Wg0Go1Go9FoNK0eLXBoNBqNRqPRaDQajUajafVogUOj0Wg0Go1Go9FoNBpNq0cLHBqNRqPRaDQajUaj0WhaPVrg0Gg0Go1Go9FoNBqNRtPq0QKHRqPRaDQajUaj0Wg0mlaPFjg0Go1Go9FoNBqNRqPRtHq0wKHRaDQajUaj0Wg0Go2m1aMFDo1Go9FoNBqNRqPRaDStHi1waDQajUaj0Wg0Go1Go2n1aIFDo9FoNBqNRqPRaDQaTatHCxwajUaj0Wg0Go1Go9FoWj1a4NBoNBqNRqPRaDQajUbT6rGe6A4cLzp27EifPn1OdDc0mhPC3r179fdfc1KjfwOakx39G9Cc7GzatIm4uLgT3Q2N5oThcDgwTfNEd6PZOWkEjj59+rBhw4YT3Q2N5oQwcuRI/f3XnNTo34DmZEf/BjQnO/Hx8VRUVJzobmg0J4z4+PgT3YXjgk5R0Wg0Go1Go9FoNBqNRtPq0QKHRqPRaDQajUaj0Wg0mlaPFjg0Go1Go9FoNBqNRqPRtHq0wKHRaDQajUaj0Wg0Go2m1XPSCBwHDx6kurr6RHdDo9FoNBqNRqPRaDQaTTNw3AWO3bt3c9ttt3H66adjsViYOHFiRO1KS0u5+eabSUlJoV27dlx33XUUFRVFfNzc3Fzuv//+RvZao6mfiRMnIoQI+fj+++9DtnnooYfCtnn88cd92/3lL3/htNNOIykpicTEREaOHMn8+fOP10fTaOolPz+fe+65h2HDhpGQkEDPnj258cYbycvLi6j96tWrGTNmDLGxsZxyyin85z//CVpfUFDApZdeSq9evYiNjaVbt25cddVVZGZmNsfH0WianR07djBp0iRsNhvdu3fnwQcfxOPx1Nlm7969Ia8XM2fOPE691miahuYcM2k0mqbhwIEDJCQkIITAbrfXue327du56KKLsNlsdOzYkV/96le12kgpefTRR31jueHDh/P55583eb+Pe5nY7du3s3TpUs466yxcLlfE7WbMmMGuXbt45ZVXMAyD++67j8suu4xvv/024n089dRTTJ48mUmTJjWm6xpNnTz33HOUlZUFLXvwwQf58ccfGTVqVMg2s2fP5uKLLw5atnjxYp588kmmTJniW1ZWVsZNN93EkCFDsFgsfPDBB8ycOROLxcLPf/7zpv8wGk0D2bhxI4sWLWL27NmMGTOGgwcP8tBDDzF27Fh++uknEhISwrbdvXs3kydP5pJLLuHxxx/nhx9+4K677sJmszF79mwAKisrSUlJ4ZFHHqF3794UFBTw2GOPcf7557Nt2zaSk5OP10fVaI6Z4uJiLrjgAoYMGcJHH33Enj17uPvuuzFNk7/97W/1tn/66ac555xzfO87duzYnN3VaJqc5hwzaTSapuGee+4hISGh3vLKpaWlnH/++QwcOJD58+dTVFTEvffeS35+PosXL/Zt98QTT/Dwww/z8MMPc8YZZ/D2228zffp0Vq9eHfZ33yjkccbj8fheX3nllXLChAn1tlmzZo0E5KpVq3zL1q1bJwG5fPnyiI47jvskILt37y4LCwsb3G+NpqE4nU6ZkpIif/nLXzao3dSpU2VaWlq9240dO1ZOnz49on2OGDGiQX3QaBpKcXGxdLlcQct27twpAfnGG2/U2fbWW2+VAwYMCGr/q1/9SqampkrTNMO227VrlwTkwoUL6+2f/g1oWhKPPfaYTE5OlqWlpb5lTz75pIyLiwtadjTZ2dkSkJ988kmDj6l/A5qWTHOPmaSU0mazNaZrGk2bwDTNBv0GVq1aJVNSUuRTTz0lAVleXh5228cee0wmJibK4uJi37KPP/5YAnL9+vVSSvUbT0xMlPfff39Q2+HDh8tp06Y1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dCWTX7JLRr///vs88cQTRXynQty/mjRpwt69e+nduzcHDhygL4dYSsN7egw5c7/b54D2nMPu2F0Jm+TjzTffVN7e3urGjRvmbfPmzVMuLi7q+vXrhXqtkydPKkAtX768wH3dsiO1jz32mNLr9YU+biGKYsmSJflmcOzevVsB6vfffzdv279/vwLU9u3blVJKnTlzRv3yyy8WP926dVN169ZVv/zyi7py5YrN13777beVs7OzzbtxVapUUd27d1dTpkxRX331lTp27JhkZYhid/ToUaXT6dSHH36Y5z5XrlxRgFqyZInF9sWLFytAxcXFKaWUGjVqlKpevbrKyMgw75Oenq6qVatm8w7AtWvX1OjRo5WDg4PV5//hhx9Wy5YtU0lJScX0ToUwKeocx55zgVKmLKUaNWqo1q1bq5SUlHyPxWAwqGnTpimtVmvzPFC9enXVu3dvNX36dLV69Wp1+vRpZTAY7uDdC2HKyrt9zjJlyhQFqM2bN6uTJ0/afJ69Y+B2qampqkaNGqpv374W241Go/r1119V9+7drT773t7eau3atcXzhoW4jyUnJ6u+ffsqQDmiuacZHB9//LEC1OHDh83bCnMOuxP3PMCRmJioKleurDp37qy2b9+uli5dqtzc3NS0adMs9gsJCVH//ve/zX+eOHGimjJlilq7dq3auXOnWrRokQoODlYhISEqOTm5wN8LqO7du0twQ9w13bp1U/PmzVObN29WQEruHAAAEr5JREFUW7duVTNnzlRubm7qiSeeMO9z++daKaW6du2qatasqb7//nu1bt06VbduXdWuXbt8f9czzzyjmjdvXuAxJSQkqE8++UQFBQWpBQsWqB07dqj4+PiivUEh8rFp0yb15JNPqpUrV6qdO3eqxYsXqypVqqiaNWtaXNh98cUXSqfTqfPnz5u39enTR3l6eqoPPvhA7dy5U7333nvKw8NDDRgwwLzP33//rRwcHFSPHj3Upk2b1MaNG1X37t2Vg4OD+t///pfncV28eFF9/PHHKjAwUH3++ecqKirqrrx/IZQq+hxHqYLPBampqSosLEx5enqqTZs2qT179ph/Dh48mOcxxcTEqMWLF6ugoCC1cOFC9euvv6rExMTifeNC5OOzzz5TgLp586Z5W1HGwLVr11S7du3UkiVL1M8//6y+/fZb1apVK+Xk5KT279+f5+8/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\n", - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.parallel_coordinates(run='budget_9');" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { diff --git a/examples/icml_2018_experiments/run_experiment.py b/examples/icml_2018_experiments/run_experiment.py deleted file mode 100644 index b5f1c83..0000000 --- a/examples/icml_2018_experiments/run_experiment.py +++ /dev/null @@ -1,126 +0,0 @@ -import os -import pickle - -import numpy as np - -import hpbandster.core.nameserver as hpns -from hpbandster.optimizers import RandomSearch, BOHB, HyperBand -import hpbandster.core.result as hpres - -from workers.bnn_worker import BNNWorker -from workers.cartpole_worker import CartpoleReducedWorker as CartpoleWorker - -def standard_parser_args(parser): - parser.add_argument('--dest_dir', type=str, help='the destination directory. A new subfolder is created for each benchmark/dataset.', default='../results/') - parser.add_argument('--num_iterations', type=int, help='number of Hyperband iterations performed.', default=4) - parser.add_argument('--exp_name', type=str, default='bnn', help='Possible choices: bnn, cartpole, svm_surrogate, paramnet_surrogate') - parser.add_argument('--method', type=str, default='randomsearch', help='Possible choices: randomsearch, bohb, hyperband, tpe, smac') - parser.add_argument('--min_budget', type=float, help='Minimum budget for Hyperband and BOHB.') - parser.add_argument('--max_budget', type=float, help='Maximum budget for all methods.') - parser.add_argument('--eta', type=float, help='Eta value for Hyperband/BOHB.', default=3) - # Network / cluster args for HpBandSter-methods - parser.add_argument('--n_workers', type=int, help='Number of workers to run in parallel.', default=4) - parser.add_argument('--worker', help='Flag to turn this into a worker process', action='store_true') - parser.add_argument('--nic_name', type=str, default='lo', help='name of the network interface used for communication. Note: default is only for local execution on *nix!') - parser.add_argument('--run_id', type=str, default=0) - parser.add_argument('--working_directory', type=str, help='Directory holding live rundata. Should be shared across all nodes for parallel optimization.', default='/tmp/') - # Only relevant for some experiments - parser.add_argument('--dataset_bnn', type=str, help='Only for bnn. Choose from toyfunction, bostonhousing, proteinstructure.', default=None) - parser.add_argument('--dataset_paramnet_surrogates', choices=['adult', 'higgs', 'letter', 'mnist', 'optdigits', 'poker'], help="name of the dataset used", default='mnist') - parser.add_argument('--surrogate_path', type=str, help='Path to the pickled surrogate models. If None, HPOlib2 will automatically download the surrogates to the .hpolib directory in your home directory.', default=None) - return parser - -def get_optimizer(parsed_args, config_space, **kwargs): - eta = parsed_args.eta - opt = None - if parsed_args.method == 'randomsearch': - opt = RandomSearch - if parsed_args.method == 'bohb': - opt = BOHB - if parsed_args.method == 'hyperband': - opt = HyperBand - if opt is None: - raise ValueError("Unknown method %s"%parsed_args.method) - return opt(config_space, eta=eta, **kwargs) - -def get_worker(args, host=None): - exp_name = args.exp_name - if exp_name == 'bnn': - if not args.dataset_bnn: - raise ValueError("Specify a dataset for bnn experiment!") - worker = BNNWorker(dataset=args.dataset_bnn, measure_test_loss=False, run_id=args.run_id, - max_budget=args.max_budget, host=host) - elif exp_name == 'cartpole': - worker = CartpoleWorker(measure_test_loss=False, run_id=args.run_id, host=host) - elif exp_name == 'svm_surrogate': - # this is a synthetic benchmark, so we will use the run_id to separate the independent runs JM: what's that supposed to mean? - worker = Worker(surrogate_path=args.surrogate_path, measure_test_loss=True, run_id=args.run_id, host=host) - elif exp_name == 'paramnet_surrogates': - worker = Worker(dataset=args.dataset_paramnet_surrogates, surrogate_path=args.surrogate_path, - measure_test_loss=False, run_id=args.run_id, host=host) - else: - raise ValueError("{} not a valid experiment name".format(exp_name)) - return worker - -def run_experiment(args, worker, dest_dir, smac_deterministic, store_all_runs=False): - # make sure the working and dest directory exist - os.makedirs(args.working_directory, exist_ok=True) - os.makedirs(dest_dir, exist_ok=True) - - if args.method in ['randomsearch', 'bohb', 'hyperband']: - # Every process has to lookup the hostname - host = hpns.nic_name_to_host(args.nic_name) - - # setup a nameserver - NS = hpns.NameServer(run_id=args.run_id, nic_name=args.nic_name, host=host, working_directory=args.working_directory) - ns_host, ns_port = NS.start() - - if args.worker: - time.sleep(5) # short artificial delay to make sure the nameserver is already running - worker = get_worker(args, host=host) - worker.load_nameserver_credentials(working_directory=args.working_directory) - worker.run(background=False) - exit(0) - - # start worker in the background - worker.load_nameserver_credentials(args.working_directory) - worker.run(background=True) - - configspace = worker.configspace - - result_logger = hpres.json_result_logger(directory=dest_dir, overwrite=True) - - opt = get_optimizer(args, configspace, working_directory=args.dest_dir, - run_id = args.run_id, - min_budget=args.min_budget, max_budget=args.max_budget, - host=ns_host, - nameserver=ns_host, - nameserver_port = ns_port, - ping_interval=3600, - result_logger=result_logger, - ) - - result = opt.run(n_iterations=args.num_iterations, min_n_workers=args.n_workers) - - # shutdown the worker and the dispatcher - opt.shutdown(shutdown_workers=True) - NS.shutdown() - - - from ConfigSpace.read_and_write import pcs_new - with open(os.path.join(dest_dir, 'configspace.pcs'), 'w') as fh: - fh.write(pcs_new.write(opt.config_generator.configspace)) - - # the number of iterations for the blackbox optimizers must be increased so they have comparable total budgets - bb_iterations = int(args.num_iterations * (1+(np.log(args.max_budget) - np.log(args.min_budget))/np.log(args.eta))) - - if args.method == 'tpe': - result = worker.run_tpe(bb_iterations) - - if args.method == 'smac': - result = worker.run_smac(bb_iterations, deterministic=smac_deterministic) - - if result is None: - raise ValueError("Unknown method %s!"%args.method) - - return result diff --git a/examples/icml_2018_experiments/scripts/cluster/job_bnn.sh b/examples/icml_2018_experiments/scripts/cluster/job_bnn.sh index 45c052f..485bfd1 100644 --- a/examples/icml_2018_experiments/scripts/cluster/job_bnn.sh +++ b/examples/icml_2018_experiments/scripts/cluster/job_bnn.sh @@ -1,5 +1,5 @@ #!/bin/bash -#SBATCH -p cpu_ivy # partition (queue) +#SBATCH -p queue-name # partition (queue) #SBATCH --mem 4000 # memory pool for all cores (4GB) #SBATCH -t 0-10:00 # time (D-HH:MM) #SBATCH -c 4 # number of cores @@ -19,9 +19,9 @@ source ~/BOHBsCAVE/.ve_BOHBsCAVE/bin/activate; # Job to perform if [ $SLURM_ARRAY_TASK_ID -eq 1 ] - then python run_experiment.py --exp_name bnn --run_id 42 --nic_name eth0 --dataset bostonhousing --opt_method bohb --max_budget 10000 --min_budget 300 + then python run_experiment.py --exp_name bnn --run_id 42 --nic_name eth0 --dataset_bnn bostonhousing --opt_method bohb --max_budget 10000 --min_budget 300 --n_workers 3 else - python run_experiment.py --exp_name bnn --run_id 42 --nic_name eth0 --worker --dataset bostonhousing --opt_method bohb --max_budget 10000 --min_budget 300 + python run_experiment.py --exp_name bnn --run_id 42 --nic_name eth0 --worker --dataset_bnn bostonhousing --opt_method bohb --max_budget 10000 --min_budget 300 --n_workers 3 fi # Print some Information about the end-time to STDOUT diff --git a/examples/icml_2018_experiments/scripts/cluster/job_cartpole.sh b/examples/icml_2018_experiments/scripts/cluster/job_cartpole.sh index 8a5fe72..51b2516 100644 --- a/examples/icml_2018_experiments/scripts/cluster/job_cartpole.sh +++ b/examples/icml_2018_experiments/scripts/cluster/job_cartpole.sh @@ -1,13 +1,13 @@ #!/bin/bash -#SBATCH -p cpu_ivy # partition (queue) -#SBATCH --mem 6000 # memory pool for all cores (4GB) -#SBATCH -t 2-10:00 # time (D-HH:MM) -#SBATCH -c 6 # number of cores +#SBATCH -p queue-name # partition (queue) +#SBATCH --mem 4000 # memory pool for all cores (4GB) +#SBATCH -t 1-10:00 # time (D-HH:MM) +#SBATCH -c 4 # number of cores #SBATCH -o log/%x.%N.%j.out # STDOUT (the folder log has to be created prior to running or this won't work) #SBATCH -e log/%x.%N.%j.err # STDERR (the folder log has to be created prior to running or this won't work) #SBATCH -J cartpole # sets the job name. If not specified, the file name will be used as job name #SBATCH --mail-type=END,FAIL # (recive mails about end and timeouts/crashes of your job) -#SBATCH --array 0-5 +#SBATCH --array 0-3 # Print some information about the job to STDOUT echo "Workingdir: $PWD"; echo "NOTE: Always submit from dir with run_experiment.py"; @@ -18,10 +18,11 @@ echo "SLURM_ARRAY_TASK_ID: $SLURM_ARRAY_TASK_ID"; source ~/BOHBsCAVE/.ve_BOHBsCAVE/bin/activate; # Job to perform -if [ $SLURM_ARRAY_TASK_ID -eq 1 ] - then python run_experiment.py --exp_name cartpole --run_id 43 --nic_name eth0 --opt_method bohb --max_budget 9 --min_budget 1 +if [ $SLURM_ARRAY_TASK_ID -eq 0 ] +then + python run_experiment.py --exp_name cartpole --run_id 43 --nic_name eth0 --no_worker --opt_method bohb --dest_dir opt_results/cartpole/bohb --max_budget 9 --min_budget 1 --n_workers 4 else - python run_experiment.py --exp_name cartpole --run_id 43 --nic_name eth0 --worker --opt_method bohb --max_budget 9 --min_budget 1 + python run_experiment.py --exp_name cartpole --run_id 43 --nic_name eth0 --worker --opt_method bohb --dest_dir opt_results/cartpole/bohb --max_budget 9 --min_budget 1 --n_workers 4 fi # Print some Information about the end-time to STDOUT diff --git a/examples/icml_2018_experiments/scripts/generate_all_cave_reports.py b/examples/icml_2018_experiments/scripts/generate_all_cave_reports.py new file mode 100644 index 0000000..f9fd459 --- /dev/null +++ b/examples/icml_2018_experiments/scripts/generate_all_cave_reports.py @@ -0,0 +1,20 @@ +import os + +from cave.cavefacade import CAVE + +def analyze_all(): + for dirpath, dirnames, filenames in os.walk('../opt_results/'): + if not dirnames: + print(dirpath) + cave = CAVE(folders=[dirpath], + output_dir=os.path.join("../CAVE_reports", dirpath[15:]), # output for debug/images/etc + ta_exec_dir=["."], # Only important for SMAC-results + file_format='BOHB' if os.path.exists(os.path.join(dirpath, 'configs.json')) else 'SMAC3', + #verbose_level='DEV_DEBUG', + verbose_level='OFF', + show_jupyter=False, + ) + cave.analyze() + +if __name__ == '__main__': + analyze_all() diff --git a/examples/icml_2018_experiments/scripts/run_all_cave_results.sh b/examples/icml_2018_experiments/scripts/run_all_cave_results.sh deleted file mode 100644 index 923ca89..0000000 --- a/examples/icml_2018_experiments/scripts/run_all_cave_results.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/bash - -cave --folders opt_results/bnn/bostonhousing/bohb --file_format BOHB --output CAVE_reports/bnn_bostonhousing_bohb --verbose_level OFF -cave --folders opt_results/bnn/bostonhousing/hyperband --file_format BOHB --output CAVE_reports/bnn_bostonhousing_hyperband --verbose_level OFF -cave --folders opt_results/bnn/bostonhousing/randomsearch --file_format BOHB --output CAVE_reports/bnn_bostonhousing_randomsearch --verbose_level OFF -cave --folders opt_results/bnn/bostonhousing/smac/* --file_format SMAC3 --output CAVE_reports/bnn_bostonhousing_smac --verbose_level OFF - -cave --folders opt_results/bnn/toyfunction/bohb --file_format BOHB --output CAVE_reports/bnn_toyfunction_bohb --verbose_level OFF -cave --folders opt_results/bnn/toyfunction/hyperband --file_format BOHB --output CAVE_reports/bnn_toyfunction_hyperband --verbose_level OFF -cave --folders opt_results/bnn/toyfunction/randomsearch --file_format BOHB --output CAVE_reports/bnn_toyfunction_randomsearch --verbose_level OFF -cave --folders opt_results/bnn/toyfunction/smac/* --file_format SMAC3 --output CAVE_reports/bnn_toyfunction_smac --verbose_level OFF - -cave --folders opt_results/bnn/proteinstructure/bohb --file_format BOHB --output CAVE_reports/bnn_proteinstructure_bohb --verbose_level OFF -cave --folders opt_results/bnn/proteinstructure/hyperband --file_format BOHB --output CAVE_reports/bnn_proteinstructure_hyperband --verbose_level OFF -cave --folders opt_results/bnn/proteinstructure/randomsearch --file_format BOHB --output CAVE_reports/bnn_proteinstructure_randomsearch --verbose_level OFF -cave --folders opt_results/bnn/proteinstructure/smac/* --file_format SMAC3 --output CAVE_reports/bnn_proteinstructure_smac --verbose_level OFF - -cave --folders opt_results/cartpole/bohb --file_format BOHB --output CAVE_reports/cartpole_bohb --verbose_level OFF -cave --folders opt_results/cartpole/hyperband --file_format BOHB --output CAVE_reports/cartpole_hyperband --verbose_level OFF -cave --folders opt_results/cartpole/randomsearch --file_format BOHB --output CAVE_reports/cartpole_randomsearch --verbose_level OFF -cave --folders opt_results/cartpole/smac/* --file_format SMAC3 --output CAVE_reports/cartpole_smac --verbose_level OFF - -cave --folders opt_results/svm_surrogate/bohb --file_format BOHB --output CAVE_reports/svm_surrogate_bohb --verbose_level OFF -cave --folders opt_results/svm_surrogate/hyperband --file_format BOHB --output CAVE_reports/svm_surrogate_hyperband --verbose_level OFF -cave --folders opt_results/svm_surrogate/randomsearch --file_format BOHB --output CAVE_reports/svm_surrogate_randomsearch --verbose_level OFF -cave --folders opt_results/svm_surrogate/smac/* --file_format SMAC3 --output CAVE_reports/svm_surrogate_smac --verbose_level OFF - -cave --folders opt_results/paramnet_surrogate/adult/bohb --file_format BOHB --output CAVE_reports/paramnet_surrogate_adult_bohb --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/adult/hyperband --file_format BOHB --output CAVE_reports/paramnet_surrogate_adult_hyperband --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/adult/randomsearch --file_format BOHB --output CAVE_reports/paramnet_surrogate_adult_randomsearch --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/adult/smac/* --file_format SMAC3 --output CAVE_reports/paramnet_surrogate_adult_smac --verbose_level OFF - -cave --folders opt_results/paramnet_surrogate/higgs/bohb --file_format BOHB --output CAVE_reports/paramnet_surrogate_higgs_bohb --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/higgs/hyperband --file_format BOHB --output CAVE_reports/paramnet_surrogate_higgs_hyperband --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/higgs/randomsearch --file_format BOHB --output CAVE_reports/paramnet_surrogate_higgs_randomsearch --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/higgs/smac/* --file_format SMAC3 --output CAVE_reports/paramnet_surrogate_higgs_smac --verbose_level OFF - -cave --folders opt_results/paramnet_surrogate/letter/bohb --file_format BOHB --output CAVE_reports/paramnet_surrogate_letter_bohb --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/letter/hyperband --file_format BOHB --output CAVE_reports/paramnet_surrogate_letter_hyperband --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/letter/randomsearch --file_format BOHB --output CAVE_reports/paramnet_surrogate_letter_randomsearch --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/letter/smac/* --file_format SMAC3 --output CAVE_reports/paramnet_surrogate_letter_smac --verbose_level OFF - -cave --folders opt_results/paramnet_surrogate/mnist/bohb --file_format BOHB --output CAVE_reports/paramnet_surrogate_mnist_bohb --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/mnist/hyperband --file_format BOHB --output CAVE_reports/paramnet_surrogate_mnist_hyperband --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/mnist/randomsearch --file_format BOHB --output CAVE_reports/paramnet_surrogate_mnist_randomsearch --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/mnist/smac/* --file_format SMAC3 --output CAVE_reports/paramnet_surrogate_mnist_smac --verbose_level OFF - -cave --folders opt_results/paramnet_surrogate/optdigits/bohb --file_format BOHB --output CAVE_reports/paramnet_surrogate_optdigits_bohb --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/optdigits/hyperband --file_format BOHB --output CAVE_reports/paramnet_surrogate_optdigits_hyperband --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/optdigits/randomsearch --file_format BOHB --output CAVE_reports/paramnet_surrogate_optdigits_randomsearch --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/optdigits/smac/* --file_format SMAC3 --output CAVE_reports/paramnet_surrogate_optdigits_smac --verbose_level OFF - -cave --folders opt_results/paramnet_surrogate/poker/bohb --file_format BOHB --output CAVE_reports/paramnet_surrogate_poker_bohb --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/poker/hyperband --file_format BOHB --output CAVE_reports/paramnet_surrogate_poker_hyperband --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/poker/randomsearch --file_format BOHB --output CAVE_reports/paramnet_surrogate_poker_randomsearch --verbose_level OFF -cave --folders opt_results/paramnet_surrogate/poker/smac/* --file_format SMAC3 --output CAVE_reports/paramnet_surrogate_poker_smac --verbose_level OFF diff --git a/examples/icml_2018_experiments/scripts/run_all_exps.py b/examples/icml_2018_experiments/scripts/run_all_exps.py new file mode 100644 index 0000000..37ac064 --- /dev/null +++ b/examples/icml_2018_experiments/scripts/run_all_exps.py @@ -0,0 +1,116 @@ +# This script will generate job-files for execution on a SLURM cluster. +# You can modify the template (you'll have to set the queue at the very least). +# It is also possible to just run this for a couple of days on a local machine (set submit2cluster=False). +# You might need to change variables when executing the script from a different folder than (...)/scripts/ +# To change the number of iterations etc. just set the variables here: + +queue_name = ? +n_iterations = { + 'bnn' : 4, + 'cartpole' : 4, + 'paramnet_surrogates' : 10, + 'svm_surrogate' : 10 + } +submit2cluster = True +optimizers = ['randomsearch', 'bohb', 'hyperband', 'smac'] +experiments = ['bnn', 'cartpole', 'svm_surrogate', 'paramnet_surrogates'] + +############################################################################################################## +############################################################################################################## +##### no modifications should be necessary from here on to run on SLURM cluster, but adapt what you need ##### +############################################################################################################## +############################################################################################################## + +cluster_job_template = """#!/bin/bash +#SBATCH -p {queue_name} # partition (queue) +#SBATCH --mem 4000 # memory pool for all cores (4GB) +#SBATCH -t 1-10:00 # time (D-HH:MM) +#SBATCH -c 4 # number of cores +#SBATCH -o log/%x.%N.%j.out # STDOUT (the folder log has to be created prior to running or this won't work) +#SBATCH -e log/%x.%N.%j.err # STDERR (the folder log has to be created prior to running or this won't work) +#SBATCH -J {job} # sets the job name. If not specified, the file name will be used as job name +#SBATCH --mail-type=END,FAIL # (recive mails about end and timeouts/crashes of your job) +#SBATCH --array 0-3 + +# Print some information about the job to STDOUT +echo "Workingdir: $PWD"; +echo "NOTE: Always submit from dir with run_experiment.py"; +echo "Started at $(date)"; +echo "Running job $SLURM_JOB_NAME using $SLURM_JOB_CPUS_PER_NODE cpus per node with given JID $SLURM_JOB_ID on queue $SLURM_JOB_PARTITION"; +echo "SLURM_ARRAY_TASK_ID: $SLURM_ARRAY_TASK_ID"; + +# Activate virtual-environment +source ~/BOHBsCAVE/.ve_BOHBsCAVE/bin/activate; + +# Job to perform +if [ $SLURM_ARRAY_TASK_ID -eq 0 ] +then + python run_experiment.py --exp_name {exp} --run_id {run_id} --nic_name eth0 --no_worker --opt_method {opt} --dest_dir opt_results/ --max_budget {max_b} --min_budget {min_b} --n_workers 4 {additional} --num_iterations {num_it} +else + python run_experiment.py --exp_name {exp} --run_id {run_id} --nic_name eth0 --worker --opt_method {opt} --dest_dir opt_results/ --max_budget {max_b} --min_budget {min_b} --n_workers 4 {additional} --num_iterations {num_it} +fi + +# Print some Information about the end-time to STDOUT +echo "DONE"; +echo "Finished at $(date)"; +""" + +import os +import random + +def gen_script(script, job_str): + """ This will write the script to file """ + path = 'cluster/job_' + job_str + with open(path, 'w') as fh: + fh.write(script) + if submit2cluster: + os.system('sbatch ' + path) + +def run_cartpole(): + for opt in optimizers: + job_str = '_'.join(['cartpole', opt]) + script = cluster_job_template.format(job=job_str, exp='cartpole', run_id=random.randint(1, 1000000), opt=opt, + max_b=9, min_b=1, additional='', + num_it=n_iterations['cartpole'], queue_name=queue_name) + gen_script(script, job_str) + +def run_svm_surrogate(): + for opt in optimizers: + job_str = '_'.join(['svm_surrogate', opt]) + script = cluster_job_template.format(job=job_str, exp='svm_surrogate', run_id=random.randint(1, 1000000), opt=opt, + max_b=1, min_b=0.001953125, additional='', + num_it=n_iterations['svm_surrogate'], queue_name=queue_name) + gen_script(script, job_str) + +def run_paramnet_surrogates(): + for dataset in ['adult', 'higgs', 'letter', 'mnist', 'optdigits', 'poker']: + for opt in optimizers: + job_str = '_'.join(['paramnet_surrogates', dataset, opt]) + script = cluster_job_template.format(job=job_str, exp='paramnet_surrogates', run_id=random.randint(1, 1000000), opt=opt, + max_b=0, min_b=0, additional='--dataset_paramnet_surrogates ' + dataset, + num_it=n_iterations['paramnet_surrogates'], queue_name=queue_name) + gen_script(script, job_str) + if not submit2cluster: + os.system("python run_experiment.py --exp_name paramnet_surrogates --opt_method {opt} " + "--dataset_paramnet_surrogates {dataset} --num_iterations 10 --n_workers 1 " + "--dest_dir ../opt_results".format(opt=opt, dataset=dataset)) + +def run_bnn(): + for dataset in ['bostonhousing', 'toyfunction', 'proteinstructure']: + for opt in optimizers: + job_str = '_'.join(['bnn', dataset, opt]) + script = cluster_job_template.format(job=job_str, exp='bnn', run_id=random.randint(1, 1000000), opt=opt, + max_b=10000, min_b=300, additional='--dataset_bnn ' + dataset, + num_it=n_iterations['bnn'], queue_name=queue_name) + gen_script(script, job_str) + + +if __name__ == '__main__': + if 'bnn' in experiments: + run_bnn() + if 'cartpole' in experiments: + run_cartpole() + if 'paramnet_surrogates' in experiments: + run_paramnet_surrogates() + if 'svm_surrogate' in experiments: + run_svm_surrogate() diff --git a/examples/icml_2018_experiments/scripts/run_experiment.py b/examples/icml_2018_experiments/scripts/run_experiment.py new file mode 100644 index 0000000..f0958c0 --- /dev/null +++ b/examples/icml_2018_experiments/scripts/run_experiment.py @@ -0,0 +1,190 @@ +# This script will run any of the experiments described in HpBandSter's icml_2018_experiments +# Use the script with the --help flag to receive info on usage. + +import os +import pickle +import argparse +import copy + +import numpy as np + +import hpbandster.core.nameserver as hpns +from hpbandster.optimizers import RandomSearch, BOHB, HyperBand +import hpbandster.core.result as hpres + +from workers.bnn_worker import BNNWorker +from workers.cartpole_worker import CartpoleReducedWorker as CartpoleWorker +from workers.paramnet_surrogates import ParamNetSurrogateWorker +from workers.svm_surrogate import SVMSurrogateWorker + +def standard_parser_args(parser): + parser.add_argument('--exp_name', type=str, required=True, help='Possible choices: bnn, cartpole, svm_surrogate, paramnet_surrogates') + parser.add_argument('--opt_method', type=str, default='bohb', help='Possible choices: randomsearch, bohb, hyperband, smac') + + parser.add_argument('--dest_dir', type=str, help='the destination directory. A new subfolder is created for each benchmark/dataset.', + default='../opt_results') + parser.add_argument('--num_iterations', type=int, help='number of Hyperband iterations performed.', default=4) + parser.add_argument('--min_budget', type=float, help='Minimum budget for Hyperband and BOHB.') + parser.add_argument('--max_budget', type=float, help='Maximum budget for all methods.') + parser.add_argument('--eta', type=float, help='Eta value for Hyperband/BOHB.', default=3) + # Network / cluster args for HpBandSter-methods + parser.add_argument('--n_workers', type=int, help='Number of workers to run in parallel.', default=1) + parser.add_argument('--worker', help='Flag to turn this into a worker process', action='store_true') + parser.add_argument('--no_worker', help='Flag to turn this into a worker process', + dest='worker', action='store_false') + parser.add_argument('--nic_name', type=str, default='lo', help='name of the network interface used for communication. Note: default is only for local execution on *nix!') + parser.add_argument('--run_id', type=str, default=0) + parser.add_argument('--working_directory', type=str, help='Directory holding live rundata. Should be shared across all nodes for parallel optimization.', + default='./tmp/') + # Only relevant for some experiments + parser.add_argument('--dataset_bnn', choices=['toyfunction', 'bostonhousing', 'proteinstructure'], help='Only for bnn. ', default=None) + parser.add_argument('--dataset_paramnet_surrogates', choices=['adult', 'higgs', 'letter', 'mnist', 'optdigits', 'poker'], + help="Only for paramnet_surrogates. ", default=None) + parser.add_argument('--surrogate_path', type=str, help="Path to the pickled surrogate models. If None, HPOlib2 " + "will automatically download the surrogates to the .hpolib " + "directory in your home directory.", default=None) + return parser + +def get_optimizer(parsed_args, config_space, **kwargs): + """ Get the right hpbandster-optimizer """ + eta = parsed_args.eta + opt = None + if parsed_args.opt_method == 'randomsearch': + opt = RandomSearch + if parsed_args.opt_method == 'bohb': + opt = BOHB + if parsed_args.opt_method == 'hyperband': + opt = HyperBand + if opt is None: + raise ValueError("Unknown method %s" % parsed_args.method) + return opt(config_space, eta=eta, **kwargs) + +def get_worker(args, host=None): + exp_name = args.exp_name + if exp_name == 'bnn': + if not args.dataset_bnn: + raise ValueError("Specify a dataset for bnn experiment!") + worker = BNNWorker(dataset=args.dataset_bnn, measure_test_loss=False, run_id=args.run_id, + max_budget=args.max_budget, host=host) + elif exp_name == 'cartpole': + worker = CartpoleWorker(measure_test_loss=False, run_id=args.run_id, host=host) + elif exp_name == 'svm_surrogate': + # this is a synthetic benchmark, so we will use the run_id to separate the independent runs (JM: what's that supposed to mean?) + worker = SVMSurrogateWorker(surrogate_path=args.surrogate_path, measure_test_loss=True, run_id=args.run_id, host=host) + elif exp_name == 'paramnet_surrogates': + if not args.dataset_paramnet_surrogates: + raise ValueError("Specify a dataset for paramnet surrogates experiment!") + worker = ParamNetSurrogateWorker(dataset=args.dataset_paramnet_surrogates, surrogate_path=args.surrogate_path, + measure_test_loss=False, run_id=args.run_id, host=host) + else: + raise ValueError("{} not a valid experiment name".format(exp_name)) + return worker + +def run_experiment(args, worker, dest_dir, smac_deterministic, store_all_runs=False): + print("Running experiment (args: %s)" % str(args)) + # make sure the working and dest directory exist + os.makedirs(args.working_directory, exist_ok=True) + os.makedirs(dest_dir, exist_ok=True) + + if args.opt_method in ['randomsearch', 'bohb', 'hyperband']: + print("Using hpbandster-optimizer (%s)" % args.opt_method) + # Every process has to lookup the hostname + host = hpns.nic_name_to_host(args.nic_name) + print("Host: %s" % str(host)) + + # setup a nameserver + NS = hpns.NameServer(run_id=args.run_id, + nic_name=args.nic_name, + port=0, + host=host, + working_directory=args.working_directory) + ns_host, ns_port = NS.start() + print("Initialized nameserver (ns_host: %s; ns_port: %s)" % (str(ns_host), str(ns_port))) + + if args.worker: + print("This is a pure worker-thread.") + worker = get_worker(args, host=host) + worker.load_nameserver_credentials(working_directory=args.working_directory) + worker.run(background=False) + print("Exiting...") + exit(0) + + print("This is the name-server thread, however there will be a worker running in the background.") + worker = get_worker(args, host=host) + + # start worker in the background + worker.load_nameserver_credentials(working_directory=args.working_directory) + worker.run(background=True) + + if args.exp_name == 'paramnet_surrogates': + print("This is the paramnet_surrogates experiment, so any custom budgets will be replaced by the " + "dataset-specific budgets.") + args.min_budget, args.max_budget = worker.budgets[args.dataset_paramnet_surrogates] + + print("Background-worker is running, grabbing configspace from worker and initializing result_logger " + "(with dest_dir %s)" % dest_dir) + configspace = worker.configspace + + result_logger = hpres.json_result_logger(directory=dest_dir, overwrite=True) + + print("Getting optimizer.") + + opt = get_optimizer(args, configspace, working_directory=args.working_directory, + run_id=args.run_id, + min_budget=args.min_budget, max_budget=args.max_budget, + host=host, + nameserver=ns_host, + nameserver_port = ns_port, + ping_interval=30, + result_logger=result_logger, + ) + + print("Initialization successful, starting optimization.") + + from ConfigSpace.read_and_write import pcs_new + with open(os.path.join(dest_dir, 'configspace.pcs'), 'w') as fh: + fh.write(pcs_new.write(opt.config_generator.configspace)) + + result = opt.run(n_iterations=args.num_iterations, min_n_workers=args.n_workers) + + print("Finished optimization") + # shutdown the worker and the dispatcher + opt.shutdown(shutdown_workers=True) + NS.shutdown() + + if args.exp_name == 'paramnet_surrogates': + # This if block is necessary to set budgets for paramnet_surrogates - for nothing else + args_tmp = copy.deepcopy(args) + args_tmp.opt_method = 'bohb' + worker = get_worker(args_tmp) + args.min_budget, args.max_budget = worker.budgets[args.dataset_paramnet_surrogates] + + # the number of iterations for the blackbox optimizers must be increased so they have comparable total budgets + bb_iterations = int(args.num_iterations * (1+(np.log(args.max_budget) - np.log(args.min_budget))/np.log(args.eta))) + + #if args.opt_method == 'tpe': + # result = worker.run_tpe(bb_iterations) + + if args.opt_method == 'smac': + result = worker.run_smac(bb_iterations, deterministic=smac_deterministic, working_directory=args.dest_dir) + + if result is None: + raise ValueError("Unknown method %s!"%args.method) + + return result + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Running one of the icml 2018 experiments.', conflict_handler='resolve') + parser = standard_parser_args(parser) + + # Parsing args and creating sub-folders for experiments + args = parser.parse_args() + args.dest_dir = os.path.join(args.dest_dir, args.exp_name) + if args.exp_name == 'bnn': + args.dest_dir = os.path.join(args.dest_dir, args.dataset_bnn) + if args.exp_name == 'paramnet_surrogates': + args.dest_dir = os.path.join(args.dest_dir, args.dataset_paramnet_surrogates) + args.dest_dir = os.path.join(args.dest_dir, args.opt_method) + + run_experiment(args, args.worker, args.dest_dir, smac_deterministic=True, store_all_runs=False) diff --git a/examples/icml_2018_experiments/workers/base_worker.py b/examples/icml_2018_experiments/scripts/workers/base_worker.py similarity index 98% rename from examples/icml_2018_experiments/workers/base_worker.py rename to examples/icml_2018_experiments/scripts/workers/base_worker.py index a87c496..03ea64e 100644 --- a/examples/icml_2018_experiments/workers/base_worker.py +++ b/examples/icml_2018_experiments/scripts/workers/base_worker.py @@ -125,7 +125,7 @@ def smac_objective(config, **kwargs): return loss, [] - scenario = Scenario({ "run_obj": "quality", + scenario = Scenario({ "run_obj": "quality", "runcount-limit": num_iterations, "cs": self.configspace, "deterministic": deterministic, diff --git a/examples/icml_2018_experiments/workers/bnn_worker.py b/examples/icml_2018_experiments/scripts/workers/bnn_worker.py similarity index 100% rename from examples/icml_2018_experiments/workers/bnn_worker.py rename to examples/icml_2018_experiments/scripts/workers/bnn_worker.py diff --git a/examples/icml_2018_experiments/workers/cartpole_worker.py b/examples/icml_2018_experiments/scripts/workers/cartpole_worker.py similarity index 100% rename from examples/icml_2018_experiments/workers/cartpole_worker.py rename to examples/icml_2018_experiments/scripts/workers/cartpole_worker.py diff --git a/examples/icml_2018_experiments/workers/paramnet_surrogates.py b/examples/icml_2018_experiments/scripts/workers/paramnet_surrogates.py similarity index 100% rename from examples/icml_2018_experiments/workers/paramnet_surrogates.py rename to examples/icml_2018_experiments/scripts/workers/paramnet_surrogates.py diff --git a/examples/icml_2018_experiments/workers/svm_surrogate.py b/examples/icml_2018_experiments/scripts/workers/svm_surrogate.py similarity index 100% rename from examples/icml_2018_experiments/workers/svm_surrogate.py rename to examples/icml_2018_experiments/scripts/workers/svm_surrogate.py diff --git a/examples/icml_2018_experiments/svm_surrogate.ipynb b/examples/icml_2018_experiments/svm_surrogate.ipynb index bfd25a9..61dbf23 100644 --- a/examples/icml_2018_experiments/svm_surrogate.ipynb +++ b/examples/icml_2018_experiments/svm_surrogate.ipynb @@ -11,7 +11,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "In this series of notebooks, we will replicate and analyze the ICML 2018 experiments that where used for benchmarking in BOHB (Falkner et al. 2018).\n", + "In this series of notebooks, we will replicate and analyze the ICML 2018 experiments that were used for benchmarking in BOHB (Falkner et al. 2018).\n", "In addition to HpBandSter, we will use CAVE to analyze and visualize the optimization process." ] }, @@ -19,7 +19,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## About the frameworks\n", + "## About this experiment\n", "\n", "### SVM Surrogate\n", "\n", @@ -44,38 +44,19 @@ ] }, { - "cell_type": "code", - "execution_count": 3, + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [ - "# We deactivate logging to ensure readability\n", - "import logging\n", - "logging.basicConfig(level=logging.ERROR)\n", - "# Also, we suppress warnings.\n", - "# If there are problems for you executing this notebook, you might want to comment this out.\n", - "import warnings\n", - "warnings.filterwarnings(\"ignore\")" + "This examples ships with all the code necessary to reproduce the experiment. Because it takes a few days to generate the data, the results of the optimization are provided in `examples/icml_2018_experiments/opt_results/`. If you want to generate the data (from examples/icml_2018_experiments), just run:" ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": null, "metadata": {}, + "outputs": [], "source": [ - "### 1.1) References\n", - "*Worker*: We need a Worker to define the kind of computation we want to optimize. The worker used for the experiments is located in `workers/svm_surrogate.py`\n", - "\n", - "\n", - "\n", - "*ConfigSpace*: Every problem needs a description of the search space to be complete. In HpBandSter, a ConfigurationSpace-object defines all hyperparameters, their ranges and dependencies between them.\n", - "\n", - "In our example here, the search space consists of the hyperparameters:\n", - "\n", - "\n", - "| Name | Type | Values |\n", - "|:---------:|:-------:|:------------:|\n", - "| x0 | real | [-10.0, 10.0] |\n", - "| x1 | real | [-10.0, 10.0] |" + "! python scripts/run_experiment.py --exp_name svm_surrogate --num_iterations 1 --min_budget 0.001953125 --max_budget 1 --n_workers 1" ] }, { @@ -84,90 +65,8 @@ "scrolled": false }, "source": [ - "### 1.3) Setting up the experiment and running the optimizer(s)\n", - "\n", - "Please note that the execution of the experiment with all datasets might take up to a few days, depending on your hardware. You can also skip this step and process with the precomputed results saved in `opt_results/svm_surrogate`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "import os\n", - "from itertools import product\n", - "import numpy as np\n", - "\n", - "import hpbandster.core.nameserver as hpns\n", - "import hpbandster.core.result as hpres\n", - "from hpbandster.optimizers import BOHB, RandomSearch, HyperBand\n", - "\n", - "from workers.svm_surrogate import SVMSurrogateWorker\n", - "\n", - "# Run the experiment\n", - "opt_methods = [\"smac\", \"bohb\", \"randomsearch\", \"hyperband\"]\n", - "num_iterations = 32\n", - "min_budget = 1/512\n", - "max_budget = 1\n", - "\n", - "eta = 3\n", - "\n", - "for opt_method in opt_methods:\n", - "\n", - " print(opt_method)\n", - " \n", - " output_dir = \"opt_results/svm_surrogate/{}\".format(opt_method)\n", - " if not os.path.exists(output_dir):\n", - " os.makedirs(output_dir)\n", - "\n", - " run_id = '0' # Every run has to have a unique (at runtime) id.\n", - " \n", - " # create a worker\n", - " worker = SVMSurrogateWorker(surrogate_path=None, measure_test_loss=True, run_id=run_id)\n", - " configspace = worker.configspace\n", - "\n", - " if opt_method in ['randomsearch', 'bohb', 'hyperband']:\n", - " # setup a nameserver\n", - " NS = hpns.NameServer(run_id=run_id, host='localhost', port=0, working_directory=output_dir)\n", - " ns_host, ns_port = NS.start()\n", - "\n", - " worker.load_nameserver_credentials(output_dir)\n", - " worker.run(background=True)\n", - "\n", - " # instantiate and run optimizer\n", - " opt = RandomSearch if opt_method == 'randomsearch' else BOHB if opt_method == 'bohb' else HyperBand\n", - "\n", - " result_logger = hpres.json_result_logger(directory=output_dir, overwrite=True)\n", - "\n", - " opt = opt(configspace, eta=3,\n", - " working_directory=output_dir,\n", - " run_id=run_id,\n", - " min_budget=min_budget, max_budget=max_budget,\n", - " host=ns_host,\n", - " nameserver=ns_host,\n", - " nameserver_port = ns_port,\n", - " ping_interval=3600,\n", - " result_logger=result_logger)\n", - "\n", - " result = opt.run(n_iterations=num_iterations)\n", - " \n", - " # **NOTE:** Unfortunately, the configuration space is *not yet saved automatically* to file\n", - " # but this step is mandatory for the analysis with CAVE. \n", - " # We recommend to save the configuration space every time you use BOHB.\n", - " # We do this by using the ConfigSpace-to-json-writer.\n", - "\n", - " from ConfigSpace.read_and_write import pcs_new\n", - " with open(os.path.join(output_dir, 'configspace.pcs'), 'w') as fh:\n", - " fh.write(pcs_new.write(opt.config_generator.configspace))\n", - " \n", - " else:\n", - " # the number of iterations for the blackbox optimizers must be increased so they have comparable total budgets\n", - " bb_iterations = int(num_iterations * (1+(np.log(max_budget) - np.log(min_budget))/np.log(eta)))\n", - " if opt_method == 'smac':\n", - " result = worker.run_smac(bb_iterations, deterministic=True, working_directory=output_dir)" + "You can use this script to generate the optimization data for a variety of optimizers, the results will (by default) be stored in `examples/icml_2018_experiments/EXPERIMENT/OPTIMIZER`. Use `python run_experiment --help` to see how to use the script.\n", + "If you have access to a cluster, take a look at the scripts provided for cluster computation on a SLURM cluster at `examples/icml_2018_experiments/scripts/cluster/`." ] }, { @@ -178,12 +77,12 @@ "\n", "### Instantiate CAVE\n", "\n", - "Analyzing the optimization results with CAVE is very straight-forward. If you want to use CAVE interactively in a notebook, set `show_jupyter=True`. Specify which optimization you want to analyze via the `folders` argument and specify `file_format==SMAC3` or `file_format==BOHB`, depending on which optimizer was used for the results. To analyze how BOHB optimized on the *bostenhousing* dataset, run:" + "Analyzing the optimization results with CAVE is very straight-forward. If you want to use CAVE interactively in a notebook, set `show_jupyter=True`. Specify which optimization you want to analyze via the `folders` argument and specify `file_format==SMAC3` or `file_format==BOHB`, depending on which optimizer was used for the results. To analyze how BOHB optimized on the *svm_surrogate* experiment, run:" ] }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "metadata": { "scrolled": false }, @@ -213,6 +112,7 @@ "metadata": {}, "outputs": [], "source": [ + "%%capture\n", "cave.analyze()\n", "! firefox CAVE_reports/svm_notebook/report.html" ] @@ -228,467 +128,22 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"10413\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"10413\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '10413' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"10413\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"10413\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"10413\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '10413' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"10413\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"498d9e37-3070-47b1-a557-9cd10ff09054\":{\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"10420\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"11102\",\"type\":\"Column\"}]},\"id\":\"11103\",\"type\":\"Row\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10920\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10919\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10920\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10917\",\"type\":\"CDSView\"}},\"id\":\"10921\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"3\"},\"id\":\"10922\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10923\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10922\",\"type\":\"GroupFilter\"},{\"id\":\"10923\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10924\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10963\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10926\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10927\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10926\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10927\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10924\",\"type\":\"CDSView\"}},\"id\":\"10928\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"30\"},\"id\":\"10929\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10929\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10930\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"31\"},\"id\":\"10962\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10932\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10933\",\"type\":\"MultiLine\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10932\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10933\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10930\",\"type\":\"CDSView\"}},\"id\":\"10934\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"30\"},\"id\":\"10935\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10936\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10935\",\"type\":\"GroupFilter\"},{\"id\":\"10936\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10937\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10959\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10960\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10957\",\"type\":\"CDSView\"}},\"id\":\"10961\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10939\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10940\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10939\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10940\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10937\",\"type\":\"CDSView\"}},\"id\":\"10941\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"30\"},\"id\":\"10942\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10943\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10942\",\"type\":\"GroupFilter\"},{\"id\":\"10943\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10944\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10960\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10946\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10947\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10946\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10947\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10944\",\"type\":\"CDSView\"}},\"id\":\"10948\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"31\"},\"id\":\"10949\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10949\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10950\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10959\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10952\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10953\",\"type\":\"MultiLine\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10952\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10953\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10950\",\"type\":\"CDSView\"}},\"id\":\"10954\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10473\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10673\",\"type\":\"MultiLine\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10472\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10473\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10470\",\"type\":\"CDSView\"}},\"id\":\"10474\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10672\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10673\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10670\",\"type\":\"CDSView\"}},\"id\":\"10674\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11086\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11087\",\"type\":\"Circle\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"1\"},\"id\":\"10475\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"19\"},\"id\":\"10675\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11086\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11087\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"11084\",\"type\":\"CDSView\"}},\"id\":\"11088\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10476\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10676\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10475\",\"type\":\"GroupFilter\"},{\"id\":\"10476\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10477\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10675\",\"type\":\"GroupFilter\"},{\"id\":\"10676\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10677\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10715\",\"type\":\"GroupFilter\"},{\"id\":\"10716\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10717\",\"type\":\"CDSView\"},{\"attributes\":{\"active\":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31],\"callback\":{\"id\":\"11089\",\"type\":\"CustomJS\"},\"labels\":[\"00\",\"01\",\"02\",\"03\",\"04\",\"05\",\"06\",\"07\",\"08\",\"09\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\",\"20\",\"21\",\"22\",\"23\",\"24\",\"25\",\"26\",\"27\",\"28\",\"29\",\"30\",\"31\"]},\"id\":\"11090\",\"type\":\"CheckboxButtonGroup\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"12\"},\"id\":\"10542\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10479\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10679\",\"type\":\"CircleX\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"11090\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"10454\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"10461\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"10921\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"10928\",\"type\":\"GlyphRenderer\"},\"glyph_renderer12\":{\"id\":\"10974\",\"type\":\"GlyphRenderer\"},\"glyph_renderer13\":{\"id\":\"10981\",\"type\":\"GlyphRenderer\"},\"glyph_renderer14\":{\"id\":\"10988\",\"type\":\"GlyphRenderer\"},\"glyph_renderer15\":{\"id\":\"10994\",\"type\":\"GlyphRenderer\"},\"glyph_renderer16\":{\"id\":\"11001\",\"type\":\"GlyphRenderer\"},\"glyph_renderer17\":{\"id\":\"11008\",\"type\":\"GlyphRenderer\"},\"glyph_renderer18\":{\"id\":\"11014\",\"type\":\"GlyphRenderer\"},\"glyph_renderer19\":{\"id\":\"11021\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"10468\",\"type\":\"GlyphRenderer\"},\"glyph_renderer20\":{\"id\":\"11028\",\"type\":\"GlyphRenderer\"},\"glyph_renderer21\":{\"id\":\"11034\",\"type\":\"GlyphRenderer\"},\"glyph_renderer22\":{\"id\":\"11041\",\"type\":\"GlyphRenderer\"},\"glyph_renderer23\":{\"id\":\"11048\",\"type\":\"GlyphRenderer\"},\"glyph_renderer24\":{\"id\":\"11054\",\"type\":\"GlyphRenderer\"},\"glyph_renderer25\":{\"id\":\"11061\",\"type\":\"GlyphRenderer\"},\"glyph_renderer26\":{\"id\":\"11068\",\"type\":\"GlyphRenderer\"},\"glyph_renderer27\":{\"id\":\"11074\",\"type\":\"GlyphRenderer\"},\"glyph_renderer28\":{\"id\":\"11081\",\"type\":\"GlyphRenderer\"},\"glyph_renderer29\":{\"id\":\"11088\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"10474\",\"type\":\"GlyphRenderer\"},\"glyph_renderer30\":{\"id\":\"10494\",\"type\":\"GlyphRenderer\"},\"glyph_renderer31\":{\"id\":\"10501\",\"type\":\"GlyphRenderer\"},\"glyph_renderer32\":{\"id\":\"10508\",\"type\":\"GlyphRenderer\"},\"glyph_renderer33\":{\"id\":\"10514\",\"type\":\"GlyphRenderer\"},\"glyph_renderer34\":{\"id\":\"10521\",\"type\":\"GlyphRenderer\"},\"glyph_renderer35\":{\"id\":\"10528\",\"type\":\"GlyphRenderer\"},\"glyph_renderer36\":{\"id\":\"10534\",\"type\":\"GlyphRenderer\"},\"glyph_renderer37\":{\"id\":\"10541\",\"type\":\"GlyphRenderer\"},\"glyph_renderer38\":{\"id\":\"10548\",\"type\":\"GlyphRenderer\"},\"glyph_renderer39\":{\"id\":\"10554\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"10481\",\"type\":\"GlyphRenderer\"},\"glyph_renderer40\":{\"id\":\"10561\",\"type\":\"GlyphRenderer\"},\"glyph_renderer41\":{\"id\":\"10568\",\"type\":\"GlyphRenderer\"},\"glyph_renderer42\":{\"id\":\"10574\",\"type\":\"GlyphRenderer\"},\"glyph_renderer43\":{\"id\":\"10581\",\"type\":\"GlyphRenderer\"},\"glyph_renderer44\":{\"id\":\"10588\",\"type\":\"GlyphRenderer\"},\"glyph_renderer45\":{\"id\":\"10594\",\"type\":\"GlyphRenderer\"},\"glyph_renderer46\":{\"id\":\"10601\",\"type\":\"GlyphRenderer\"},\"glyph_renderer47\":{\"id\":\"10608\",\"type\":\"GlyphRenderer\"},\"glyph_renderer48\":{\"id\":\"10614\",\"type\":\"GlyphRenderer\"},\"glyph_renderer49\":{\"id\":\"10621\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"10488\",\"type\":\"GlyphRenderer\"},\"glyph_renderer50\":{\"id\":\"10628\",\"type\":\"GlyphRenderer\"},\"glyph_renderer51\":{\"id\":\"10634\",\"type\":\"GlyphRenderer\"},\"glyph_renderer52\":{\"id\":\"10641\",\"type\":\"GlyphRenderer\"},\"glyph_renderer53\":{\"id\":\"10648\",\"type\":\"GlyphRenderer\"},\"glyph_renderer54\":{\"id\":\"10654\",\"type\":\"GlyphRenderer\"},\"glyph_renderer55\":{\"id\":\"10661\",\"type\":\"GlyphRenderer\"},\"glyph_renderer56\":{\"id\":\"10668\",\"type\":\"GlyphRenderer\"},\"glyph_renderer57\":{\"id\":\"10674\",\"type\":\"GlyphRenderer\"},\"glyph_renderer58\":{\"id\":\"10681\",\"type\":\"GlyphRenderer\"},\"glyph_renderer59\":{\"id\":\"10688\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"10694\",\"type\":\"GlyphRenderer\"},\"glyph_renderer60\":{\"id\":\"10714\",\"type\":\"GlyphRenderer\"},\"glyph_renderer61\":{\"id\":\"10721\",\"type\":\"GlyphRenderer\"},\"glyph_renderer62\":{\"id\":\"10728\",\"type\":\"GlyphRenderer\"},\"glyph_renderer63\":{\"id\":\"10734\",\"type\":\"GlyphRenderer\"},\"glyph_renderer64\":{\"id\":\"10741\",\"type\":\"GlyphRenderer\"},\"glyph_renderer65\":{\"id\":\"10748\",\"type\":\"GlyphRenderer\"},\"glyph_renderer66\":{\"id\":\"10754\",\"type\":\"GlyphRenderer\"},\"glyph_renderer67\":{\"id\":\"10761\",\"type\":\"GlyphRenderer\"},\"glyph_renderer68\":{\"id\":\"10768\",\"type\":\"GlyphRenderer\"},\"glyph_renderer69\":{\"id\":\"10774\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"10701\",\"type\":\"GlyphRenderer\"},\"glyph_renderer70\":{\"id\":\"10781\",\"type\":\"GlyphRenderer\"},\"glyph_renderer71\":{\"id\":\"10788\",\"type\":\"GlyphRenderer\"},\"glyph_renderer72\":{\"id\":\"10794\",\"type\":\"GlyphRenderer\"},\"glyph_renderer73\":{\"id\":\"10801\",\"type\":\"GlyphRenderer\"},\"glyph_renderer74\":{\"id\":\"10808\",\"type\":\"GlyphRenderer\"},\"glyph_renderer75\":{\"id\":\"10814\",\"type\":\"GlyphRenderer\"},\"glyph_renderer76\":{\"id\":\"10821\",\"type\":\"GlyphRenderer\"},\"glyph_renderer77\":{\"id\":\"10828\",\"type\":\"GlyphRenderer\"},\"glyph_renderer78\":{\"id\":\"10834\",\"type\":\"GlyphRenderer\"},\"glyph_renderer79\":{\"id\":\"10841\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"10708\",\"type\":\"GlyphRenderer\"},\"glyph_renderer80\":{\"id\":\"10848\",\"type\":\"GlyphRenderer\"},\"glyph_renderer81\":{\"id\":\"10854\",\"type\":\"GlyphRenderer\"},\"glyph_renderer82\":{\"id\":\"10861\",\"type\":\"GlyphRenderer\"},\"glyph_renderer83\":{\"id\":\"10868\",\"type\":\"GlyphRenderer\"},\"glyph_renderer84\":{\"id\":\"10874\",\"type\":\"GlyphRenderer\"},\"glyph_renderer85\":{\"id\":\"10881\",\"type\":\"GlyphRenderer\"},\"glyph_renderer86\":{\"id\":\"10888\",\"type\":\"GlyphRenderer\"},\"glyph_renderer87\":{\"id\":\"10894\",\"type\":\"GlyphRenderer\"},\"glyph_renderer88\":{\"id\":\"10901\",\"type\":\"GlyphRenderer\"},\"glyph_renderer89\":{\"id\":\"10908\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"10914\",\"type\":\"GlyphRenderer\"},\"glyph_renderer90\":{\"id\":\"10934\",\"type\":\"GlyphRenderer\"},\"glyph_renderer91\":{\"id\":\"10941\",\"type\":\"GlyphRenderer\"},\"glyph_renderer92\":{\"id\":\"10948\",\"type\":\"GlyphRenderer\"},\"glyph_renderer93\":{\"id\":\"10954\",\"type\":\"GlyphRenderer\"},\"glyph_renderer94\":{\"id\":\"10961\",\"type\":\"GlyphRenderer\"},\"glyph_renderer95\":{\"id\":\"10968\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31]; checkbox.active = labels;len_labels = 32;glyph_renderers = [[glyph_renderer0,glyph_renderer1,glyph_renderer2],[glyph_renderer3,glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7,glyph_renderer8],[glyph_renderer9,glyph_renderer10,glyph_renderer11],[glyph_renderer12,glyph_renderer13,glyph_renderer14],[glyph_renderer15,glyph_renderer16,glyph_renderer17],[glyph_renderer18,glyph_renderer19,glyph_renderer20],[glyph_renderer21,glyph_renderer22,glyph_renderer23],[glyph_renderer24,glyph_renderer25,glyph_renderer26],[glyph_renderer27,glyph_renderer28,glyph_renderer29],[glyph_renderer30,glyph_renderer31,glyph_renderer32],[glyph_renderer33,glyph_renderer34,glyph_renderer35],[glyph_renderer36,glyph_renderer37,glyph_renderer38],[glyph_renderer39,glyph_renderer40,glyph_renderer41],[glyph_renderer42,glyph_renderer43,glyph_renderer44],[glyph_renderer45,glyph_renderer46,glyph_renderer47],[glyph_renderer48,glyph_renderer49,glyph_renderer50],[glyph_renderer51,glyph_renderer52,glyph_renderer53],[glyph_renderer54,glyph_renderer55,glyph_renderer56],[glyph_renderer57,glyph_renderer58,glyph_renderer59],[glyph_renderer60,glyph_renderer61,glyph_renderer62],[glyph_renderer63,glyph_renderer64,glyph_renderer65],[glyph_renderer66,glyph_renderer67,glyph_renderer68],[glyph_renderer69,glyph_renderer70,glyph_renderer71],[glyph_renderer72,glyph_renderer73,glyph_renderer74],[glyph_renderer75,glyph_renderer76,glyph_renderer77],[glyph_renderer78,glyph_renderer79,glyph_renderer80],[glyph_renderer81,glyph_renderer82,glyph_renderer83],[glyph_renderer84,glyph_renderer85,glyph_renderer86],[glyph_renderer87,glyph_renderer88,glyph_renderer89],[glyph_renderer90,glyph_renderer91,glyph_renderer92],[glyph_renderer93,glyph_renderer94,glyph_renderer95]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"11091\",\"type\":\"CustomJS\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10480\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10680\",\"type\":\"CircleX\"},{\"attributes\":{\"callback\":{\"id\":\"11091\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"All\"},\"id\":\"11092\",\"type\":\"Button\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10479\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10480\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10477\",\"type\":\"CDSView\"}},\"id\":\"10481\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10679\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10680\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10677\",\"type\":\"CDSView\"}},\"id\":\"10681\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"11090\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"10454\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"10461\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"10921\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"10928\",\"type\":\"GlyphRenderer\"},\"glyph_renderer12\":{\"id\":\"10974\",\"type\":\"GlyphRenderer\"},\"glyph_renderer13\":{\"id\":\"10981\",\"type\":\"GlyphRenderer\"},\"glyph_renderer14\":{\"id\":\"10988\",\"type\":\"GlyphRenderer\"},\"glyph_renderer15\":{\"id\":\"10994\",\"type\":\"GlyphRenderer\"},\"glyph_renderer16\":{\"id\":\"11001\",\"type\":\"GlyphRenderer\"},\"glyph_renderer17\":{\"id\":\"11008\",\"type\":\"GlyphRenderer\"},\"glyph_renderer18\":{\"id\":\"11014\",\"type\":\"GlyphRenderer\"},\"glyph_renderer19\":{\"id\":\"11021\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"10468\",\"type\":\"GlyphRenderer\"},\"glyph_renderer20\":{\"id\":\"11028\",\"type\":\"GlyphRenderer\"},\"glyph_renderer21\":{\"id\":\"11034\",\"type\":\"GlyphRenderer\"},\"glyph_renderer22\":{\"id\":\"11041\",\"type\":\"GlyphRenderer\"},\"glyph_renderer23\":{\"id\":\"11048\",\"type\":\"GlyphRenderer\"},\"glyph_renderer24\":{\"id\":\"11054\",\"type\":\"GlyphRenderer\"},\"glyph_renderer25\":{\"id\":\"11061\",\"type\":\"GlyphRenderer\"},\"glyph_renderer26\":{\"id\":\"11068\",\"type\":\"GlyphRenderer\"},\"glyph_renderer27\":{\"id\":\"11074\",\"type\":\"GlyphRenderer\"},\"glyph_renderer28\":{\"id\":\"11081\",\"type\":\"GlyphRenderer\"},\"glyph_renderer29\":{\"id\":\"11088\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"10474\",\"type\":\"GlyphRenderer\"},\"glyph_renderer30\":{\"id\":\"10494\",\"type\":\"GlyphRenderer\"},\"glyph_renderer31\":{\"id\":\"10501\",\"type\":\"GlyphRenderer\"},\"glyph_renderer32\":{\"id\":\"10508\",\"type\":\"GlyphRenderer\"},\"glyph_renderer33\":{\"id\":\"10514\",\"type\":\"GlyphRenderer\"},\"glyph_renderer34\":{\"id\":\"10521\",\"type\":\"GlyphRenderer\"},\"glyph_renderer35\":{\"id\":\"10528\",\"type\":\"GlyphRenderer\"},\"glyph_renderer36\":{\"id\":\"10534\",\"type\":\"GlyphRenderer\"},\"glyph_renderer37\":{\"id\":\"10541\",\"type\":\"GlyphRenderer\"},\"glyph_renderer38\":{\"id\":\"10548\",\"type\":\"GlyphRenderer\"},\"glyph_renderer39\":{\"id\":\"10554\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"10481\",\"type\":\"GlyphRenderer\"},\"glyph_renderer40\":{\"id\":\"10561\",\"type\":\"GlyphRenderer\"},\"glyph_renderer41\":{\"id\":\"10568\",\"type\":\"GlyphRenderer\"},\"glyph_renderer42\":{\"id\":\"10574\",\"type\":\"GlyphRenderer\"},\"glyph_renderer43\":{\"id\":\"10581\",\"type\":\"GlyphRenderer\"},\"glyph_renderer44\":{\"id\":\"10588\",\"type\":\"GlyphRenderer\"},\"glyph_renderer45\":{\"id\":\"10594\",\"type\":\"GlyphRenderer\"},\"glyph_renderer46\":{\"id\":\"10601\",\"type\":\"GlyphRenderer\"},\"glyph_renderer47\":{\"id\":\"10608\",\"type\":\"GlyphRenderer\"},\"glyph_renderer48\":{\"id\":\"10614\",\"type\":\"GlyphRenderer\"},\"glyph_renderer49\":{\"id\":\"10621\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"10488\",\"type\":\"GlyphRenderer\"},\"glyph_renderer50\":{\"id\":\"10628\",\"type\":\"GlyphRenderer\"},\"glyph_renderer51\":{\"id\":\"10634\",\"type\":\"GlyphRenderer\"},\"glyph_renderer52\":{\"id\":\"10641\",\"type\":\"GlyphRenderer\"},\"glyph_renderer53\":{\"id\":\"10648\",\"type\":\"GlyphRenderer\"},\"glyph_renderer54\":{\"id\":\"10654\",\"type\":\"GlyphRenderer\"},\"glyph_renderer55\":{\"id\":\"10661\",\"type\":\"GlyphRenderer\"},\"glyph_renderer56\":{\"id\":\"10668\",\"type\":\"GlyphRenderer\"},\"glyph_renderer57\":{\"id\":\"10674\",\"type\":\"GlyphRenderer\"},\"glyph_renderer58\":{\"id\":\"10681\",\"type\":\"GlyphRenderer\"},\"glyph_renderer59\":{\"id\":\"10688\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"10694\",\"type\":\"GlyphRenderer\"},\"glyph_renderer60\":{\"id\":\"10714\",\"type\":\"GlyphRenderer\"},\"glyph_renderer61\":{\"id\":\"10721\",\"type\":\"GlyphRenderer\"},\"glyph_renderer62\":{\"id\":\"10728\",\"type\":\"GlyphRenderer\"},\"glyph_renderer63\":{\"id\":\"10734\",\"type\":\"GlyphRenderer\"},\"glyph_renderer64\":{\"id\":\"10741\",\"type\":\"GlyphRenderer\"},\"glyph_renderer65\":{\"id\":\"10748\",\"type\":\"GlyphRenderer\"},\"glyph_renderer66\":{\"id\":\"10754\",\"type\":\"GlyphRenderer\"},\"glyph_renderer67\":{\"id\":\"10761\",\"type\":\"GlyphRenderer\"},\"glyph_renderer68\":{\"id\":\"10768\",\"type\":\"GlyphRenderer\"},\"glyph_renderer69\":{\"id\":\"10774\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"10701\",\"type\":\"GlyphRenderer\"},\"glyph_renderer70\":{\"id\":\"10781\",\"type\":\"GlyphRenderer\"},\"glyph_renderer71\":{\"id\":\"10788\",\"type\":\"GlyphRenderer\"},\"glyph_renderer72\":{\"id\":\"10794\",\"type\":\"GlyphRenderer\"},\"glyph_renderer73\":{\"id\":\"10801\",\"type\":\"GlyphRenderer\"},\"glyph_renderer74\":{\"id\":\"10808\",\"type\":\"GlyphRenderer\"},\"glyph_renderer75\":{\"id\":\"10814\",\"type\":\"GlyphRenderer\"},\"glyph_renderer76\":{\"id\":\"10821\",\"type\":\"GlyphRenderer\"},\"glyph_renderer77\":{\"id\":\"10828\",\"type\":\"GlyphRenderer\"},\"glyph_renderer78\":{\"id\":\"10834\",\"type\":\"GlyphRenderer\"},\"glyph_renderer79\":{\"id\":\"10841\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"10708\",\"type\":\"GlyphRenderer\"},\"glyph_renderer80\":{\"id\":\"10848\",\"type\":\"GlyphRenderer\"},\"glyph_renderer81\":{\"id\":\"10854\",\"type\":\"GlyphRenderer\"},\"glyph_renderer82\":{\"id\":\"10861\",\"type\":\"GlyphRenderer\"},\"glyph_renderer83\":{\"id\":\"10868\",\"type\":\"GlyphRenderer\"},\"glyph_renderer84\":{\"id\":\"10874\",\"type\":\"GlyphRenderer\"},\"glyph_renderer85\":{\"id\":\"10881\",\"type\":\"GlyphRenderer\"},\"glyph_renderer86\":{\"id\":\"10888\",\"type\":\"GlyphRenderer\"},\"glyph_renderer87\":{\"id\":\"10894\",\"type\":\"GlyphRenderer\"},\"glyph_renderer88\":{\"id\":\"10901\",\"type\":\"GlyphRenderer\"},\"glyph_renderer89\":{\"id\":\"10908\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"10914\",\"type\":\"GlyphRenderer\"},\"glyph_renderer90\":{\"id\":\"10934\",\"type\":\"GlyphRenderer\"},\"glyph_renderer91\":{\"id\":\"10941\",\"type\":\"GlyphRenderer\"},\"glyph_renderer92\":{\"id\":\"10948\",\"type\":\"GlyphRenderer\"},\"glyph_renderer93\":{\"id\":\"10954\",\"type\":\"GlyphRenderer\"},\"glyph_renderer94\":{\"id\":\"10961\",\"type\":\"GlyphRenderer\"},\"glyph_renderer95\":{\"id\":\"10968\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = []; checkbox.active = labels;len_labels = 32;glyph_renderers = [[glyph_renderer0,glyph_renderer1,glyph_renderer2],[glyph_renderer3,glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7,glyph_renderer8],[glyph_renderer9,glyph_renderer10,glyph_renderer11],[glyph_renderer12,glyph_renderer13,glyph_renderer14],[glyph_renderer15,glyph_renderer16,glyph_renderer17],[glyph_renderer18,glyph_renderer19,glyph_renderer20],[glyph_renderer21,glyph_renderer22,glyph_renderer23],[glyph_renderer24,glyph_renderer25,glyph_renderer26],[glyph_renderer27,glyph_renderer28,glyph_renderer29],[glyph_renderer30,glyph_renderer31,glyph_renderer32],[glyph_renderer33,glyph_renderer34,glyph_renderer35],[glyph_renderer36,glyph_renderer37,glyph_renderer38],[glyph_renderer39,glyph_renderer40,glyph_renderer41],[glyph_renderer42,glyph_renderer43,glyph_renderer44],[glyph_renderer45,glyph_renderer46,glyph_renderer47],[glyph_renderer48,glyph_renderer49,glyph_renderer50],[glyph_renderer51,glyph_renderer52,glyph_renderer53],[glyph_renderer54,glyph_renderer55,glyph_renderer56],[glyph_renderer57,glyph_renderer58,glyph_renderer59],[glyph_renderer60,glyph_renderer61,glyph_renderer62],[glyph_renderer63,glyph_renderer64,glyph_renderer65],[glyph_renderer66,glyph_renderer67,glyph_renderer68],[glyph_renderer69,glyph_renderer70,glyph_renderer71],[glyph_renderer72,glyph_renderer73,glyph_renderer74],[glyph_renderer75,glyph_renderer76,glyph_renderer77],[glyph_renderer78,glyph_renderer79,glyph_renderer80],[glyph_renderer81,glyph_renderer82,glyph_renderer83],[glyph_renderer84,glyph_renderer85,glyph_renderer86],[glyph_renderer87,glyph_renderer88,glyph_renderer89],[glyph_renderer90,glyph_renderer91,glyph_renderer92],[glyph_renderer93,glyph_renderer94,glyph_renderer95]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"11093\",\"type\":\"CustomJS\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"19\"},\"id\":\"10682\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":{\"id\":\"11093\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"None\"},\"id\":\"11094\",\"type\":\"Button\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"1\"},\"id\":\"10482\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10483\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10683\",\"type\":\"GroupFilter\"},{\"attributes\":{\"args\":{\"cm\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"},\"source_multiline\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"source_scatter\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"code\":\"\\n var data_multiline = source_multiline.data;\\n var data_scatter = source_scatter.data;\\n var min_perf = 0.015045801948051959;\\n var max_perf = 0.90683;\\n var min_iter = 0;\\n var max_iter = 31;\\n if (cb_obj.value == 'performance') {\\n data_multiline['colors'] = data_multiline['colors_performance'];\\n data_scatter['colors'] = data_scatter['colors_performance'];\\n cm.low = min_perf;\\n cm.high = max_perf;\\n } else {\\n data_multiline['colors'] = data_multiline['colors_iteration'];\\n data_scatter['colors'] = data_scatter['colors_iteration'];\\n cm.low = min_iter;\\n cm.high = max_iter;\\n }\\n source.change.emit();\\n \"},\"id\":\"11095\",\"type\":\"CustomJS\"},{\"attributes\":{\"filters\":[{\"id\":\"10482\",\"type\":\"GroupFilter\"},{\"id\":\"10483\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10484\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10682\",\"type\":\"GroupFilter\"},{\"id\":\"10683\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10684\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":{\"id\":\"11095\",\"type\":\"CustomJS\"},\"options\":[\"performance\",\"iteration\"],\"title\":\"Select colors\",\"value\":\"performance\"},\"id\":\"11096\",\"type\":\"Select\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10539\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10540\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10537\",\"type\":\"CDSView\"}},\"id\":\"10541\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"children\":[{\"id\":\"11090\",\"type\":\"CheckboxButtonGroup\"}],\"width\":400},\"id\":\"11097\",\"type\":\"WidgetBox\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10716\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10486\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10686\",\"type\":\"Circle\"},{\"attributes\":{\"children\":[{\"id\":\"11092\",\"type\":\"Button\"}],\"width\":50},\"id\":\"11098\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10487\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10687\",\"type\":\"Circle\"},{\"attributes\":{\"children\":[{\"id\":\"11094\",\"type\":\"Button\"}],\"width\":50},\"id\":\"11099\",\"type\":\"WidgetBox\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10486\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10487\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10484\",\"type\":\"CDSView\"}},\"id\":\"10488\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10686\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10687\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10684\",\"type\":\"CDSView\"}},\"id\":\"10688\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"children\":[{\"id\":\"11098\",\"type\":\"WidgetBox\"},{\"id\":\"11099\",\"type\":\"WidgetBox\"}]},\"id\":\"11100\",\"type\":\"Row\"},{\"attributes\":{\"children\":[{\"id\":\"11096\",\"type\":\"Select\"}],\"width\":200},\"id\":\"11101\",\"type\":\"WidgetBox\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"10\"},\"id\":\"10489\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"2\"},\"id\":\"10689\",\"type\":\"GroupFilter\"},{\"attributes\":{\"children\":[{\"id\":\"11097\",\"type\":\"WidgetBox\"},{\"id\":\"11100\",\"type\":\"Row\"},{\"id\":\"11101\",\"type\":\"WidgetBox\"}]},\"id\":\"11102\",\"type\":\"Column\"},{\"attributes\":{\"filters\":[{\"id\":\"10489\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10490\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10689\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10690\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10540\",\"type\":\"CircleX\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"20\"},\"id\":\"10715\",\"type\":\"GroupFilter\"},{\"attributes\":{\"text\":\"\"},\"id\":\"11115\",\"type\":\"Title\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10492\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10692\",\"type\":\"MultiLine\"},{\"attributes\":{},\"id\":\"11118\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10493\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10693\",\"type\":\"MultiLine\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10492\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10493\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10490\",\"type\":\"CDSView\"}},\"id\":\"10494\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10692\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10693\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10690\",\"type\":\"CDSView\"}},\"id\":\"10694\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"ticker\":null},\"id\":\"11120\",\"type\":\"LogTickFormatter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"10\"},\"id\":\"10495\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"2\"},\"id\":\"10695\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10496\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10696\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10495\",\"type\":\"GroupFilter\"},{\"id\":\"10496\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10497\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10695\",\"type\":\"GroupFilter\"},{\"id\":\"10696\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10697\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10712\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10713\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10710\",\"type\":\"CDSView\"}},\"id\":\"10714\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10539\",\"type\":\"CircleX\"},{\"attributes\":{\"callback\":null,\"tooltips\":[[\"config_id\",\"@config_id\"],[\"config_info\",\"@config_info\"],[\"losses\",\"@losses\"],[\"HB_iteration\",\"@HB_iteration\"],[\"duration (sec)\",\"@duration\"],[\"Configuration\",\" \"],[\"x0\",\"@x0\"],[\"x1\",\"@x1\"]]},\"id\":\"10414\",\"type\":\"HoverTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10499\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10699\",\"type\":\"CircleX\"},{\"attributes\":{\"callback\":null,\"data\":{\"HB_iteration\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"4\",\"4\",\"4\",\"4\",\"4\",\"4\",\"4\",\"4\",\"4\",\"5\",\"5\",\"5\",\"5\",\"5\",\"5\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"10\",\"10\",\"10\",\"10\",\"10\",\"10\",\"10\",\"10\",\"10\",\"11\",\"11\",\"11\",\"11\",\"11\",\"11\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"16\",\"16\",\"16\",\"16\",\"16\",\"16\",\"16\",\"16\",\"16\",\"17\",\"17\",\"17\",\"17\",\"17\",\"17\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"22\",\"22\",\"22\",\"22\",\"22\",\"22\",\"22\",\"22\",\"22\",\"23\",\"23\",\"23\",\"23\",\"23\",\"23\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"28\",\"28\",\"28\",\"28\",\"28\",\"28\",\"28\",\"28\",\"28\",\"29\",\"29\",\"29\",\"29\",\"29\",\"29\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\"],\"colors\":[0.89155,0.9063299999999999,0.8925199999999999,0.8997399999999999,0.8865300000000002,0.9011199999999999,0.8958499999999999,0.45043000000000005,0.8989900000000001,0.17017999999999994,0.07366,0.17499000000000003,0.17081999999999997,0.903646,0.17017999999999994,0.90044,0.9009463333333333,0.89868,0.17423000000000002,0.89909,0.17017999999999994,0.83568,0.7838300000000001,0.88056,0.8845700000000001,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.9020699999999999,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.482245,0.07826666666666669,0.9014,0.9014942857142856,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.89345,0.8935442857142858,0.8529000000000003,0.17017999999999994,0.4863199999999999,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.8936142857142858,0.8912599999999999,0.17017999999999994,0.89497,0.17017999999999994,0.17017999999999994,0.17123,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.88914,0.17017999999999994,0.89502,0.17423000000000002,0.8173300000000001,0.17017999999999994,0.7856799999999998,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.8999492857142858,0.17017999999999994,0.17017999999999994,0.8927999999999999,0.17017999999999994,0.17017999999999994,0.90107,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17556,0.17017999999999994,0.17017999999999994,0.90044,0.03140999999999998,0.89345,0.11531999999999998,0.8980600000000001,0.7178549999999999,0.17017999999999994,0.17017999999999994,0.89879,0.17017999999999994,0.17017999999999994,0.11531999999999998,0.17017999999999994,0.07826666666666669,0.11531999999999998,0.9055,0.9028699999999998,0.17017999999999994,0.11531999999999998,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.89978,0.77368,0.17017999999999994,0.12017,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.11531999999999998,0.17017999999999994,0.17017999999999994,0.8935500000000001,0.11531999999999998,0.8965,0.11531999999999998,0.9014033333333333,0.11531999999999998,0.11531999999999998,0.84779,0.11531999999999998,0.11531999999999998,0.8207099999999998,0.11531999999999998,0.8925199999999999,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.8943099999999999,0.11531999999999998,0.8951199999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.47030000000000005,0.8999300000000001,0.11531999999999998,0.8928200000000001,0.9008158333333334,0.89809,0.11531999999999998,0.11531999999999998,0.8997399999999999,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.89326,0.87884,0.11531999999999998,0.11531999999999998,0.09771999999999997,0.11531999999999998,0.8996000000000001,0.8969300000000002,0.89606,0.08268,0.09771999999999997,0.8997399999999999,0.09771999999999997,0.8949300000000001,0.17800999999999995,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.8943579999999999,0.03721999999999999,0.09771999999999997,0.024980000000000023,0.09771999999999997,0.17017999999999994,0.12017,0.17423000000000002,0.901408,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.903646,0.11531999999999998,0.17017999999999994,0.09771999999999997,0.015045801948051959,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.17017999999999994,0.8942400000000001,0.12017,0.08268,0.09771999999999997,0.11531999999999998,0.17423000000000002,0.9009336666666667,0.89326,0.11531999999999998,0.83568,0.883915,0.12017,0.11531999999999998,0.11531999999999998,0.89415,0.11531999999999998,0.12017,0.11531999999999998,0.90137,0.8123999999999999,0.12017,0.11531999999999998,0.8987999999999999,0.8980600000000001,0.8997999999999999,0.8940666666666667,0.12017,0.17017999999999994,0.12017,0.11531999999999998,0.12017,0.09771999999999997,0.12017,0.89365,0.9017499999999998,0.8624,0.17423000000000002,0.16054000000000004,0.05443000000000002,0.16054000000000004,0.894946,0.89557,0.19322999999999996,0.015045801948051959,0.9013899999999999,0.16054000000000004,0.16054000000000004,0.8948899999999999,0.16054000000000004,0.05506000000000003,0.8978100000000001,0.16054000000000004,0.7924399999999999,0.024544166666666672,0.16054000000000004,0.024544166666666672,0.16054000000000004,0.90093,0.16054000000000004,0.032140666666666644,0.21563000000000004,0.032140666666666644,0.16054000000000004,0.16054000000000004,0.78122,0.16054000000000004,0.16054000000000004,0.032140666666666644,0.032140666666666644,0.8950099999999999,0.8967866666666667,0.09879000000000002,0.09879000000000002,0.09666999999999999,0.11479000000000003,0.17005000000000003,0.87278,0.032140666666666644,0.032140666666666644,0.89463,0.79756,0.11479000000000003,0.7517400000000001,0.09879000000000002,0.89566,0.05443000000000002,0.18278000000000003,0.8959800000000001,0.09879000000000002,0.89307,0.8932650000000001,0.8960649999999999,0.8934199999999999,0.16054000000000004,0.055541666666666656,0.17005000000000003,0.17005000000000003,0.18278000000000003,0.17005000000000003,0.06438333333333335,0.09879000000000002,0.11479000000000003,0.17005000000000003,0.16054000000000004,0.8956299999999999,0.09879000000000002,0.11479000000000003,0.05443000000000002,0.18278000000000003,0.17005000000000003,0.16054000000000004,0.17005000000000003,0.7023099999999998,0.88192,0.7924399999999999,0.11479000000000003,0.898985,0.8936258137768662,0.015045801948051959,0.054220000000000025,0.054220000000000025,0.8952200000000001,0.8933099999999999,0.8989199999999998,0.73987,0.054220000000000025,0.054220000000000025,0.07837999999999996,0.024544166666666672,0.024544166666666672,0.09654500000000002,0.89428,0.032140666666666644,0.90184,0.032140666666666644,0.8953000000000001,0.89753,0.8936,0.89672,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.11228000000000002,0.032140666666666644,0.054220000000000025,0.893602121212121,0.8944070542547292,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.015045801948051959,0.015045801948051959,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.8935989075630248,0.89978,0.024544166666666672,0.8935989075630246,0.8935989075630248,0.032140666666666644,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8935989075630235,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.8935997290145989,0.024544166666666672,0.015045801948051959,0.015045801948051959,0.01513580194805196,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.05443000000000002,0.17607000000000003,0.07435999999999997,0.901408,0.07435999999999997,0.07435999999999997,0.8411500000000001,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15744999999999998,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.8954033333333333,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89954,0.07435999999999997,0.07435999999999997,0.1016,0.07435999999999997,0.15203999999999998,0.89186,0.15203999999999998,0.89489,0.07435999999999997,0.16276000000000002,0.89223,0.07435999999999997,0.15744999999999998,0.15203999999999998,0.89809,0.8144499999999999,0.8854958333333333,0.07435999999999997,0.07435999999999997,0.15744999999999998,0.8934399999999998,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.8482199999999999,0.8957033333333333,0.15203999999999998,0.15203999999999998,0.15744999999999998,0.5750200000000001,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.9014900000000001,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.89365,0.8970849999999999,0.15566999999999998,0.8988200000000001,0.90267,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.15744999999999998,0.07435999999999997,0.50613,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.90076,0.89984,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.8997399999999999,0.8945400000000001,0.8524299999999998,0.15203999999999998,0.15203999999999998,0.15297000000000002,0.89968,0.9018642857142858,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.1670899999999999,0.9012800000000001,0.07435999999999997,0.9000400000000001,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.17115,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.8956439999999999,0.8950999999999999,0.8997999999999999,0.15203999999999998,0.15203999999999998,0.8933399999999999,0.15203999999999998,0.9014900000000001,0.15203999999999998,0.015045801948051959,0.15203999999999998,0.05443000000000002,0.8679300000000001,0.47030000000000005,0.45043000000000005,0.1016,0.77368,0.4801,0.024544166666666672,0.05443000000000002,0.024544166666666672,0.032140666666666644,0.032140666666666644,0.05443000000000002,0.897818,0.15203999999999998,0.15203999999999998,0.032140666666666644,0.89635,0.05443000000000002,0.84515,0.8943579999999999,0.05443000000000002,0.032140666666666644,0.05443000000000002,0.16008,0.15744999999999998,0.032140666666666644,0.8997999999999999,0.05443000000000002,0.032140666666666644,0.15203999999999998,0.15203999999999998,0.05443000000000002,0.05443000000000002,0.15203999999999998,0.07435999999999997,0.89704,0.8933399999999999,0.89976,0.15203999999999998,0.07435999999999997,0.05443000000000002,0.8942400000000001,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.89688,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89975,0.07435999999999997,0.891676,0.8794500000000001,0.15203999999999998,0.89239,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.90123,0.8913599999999999,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89879,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.8962499999999999,0.8962766666666668,0.15744999999999998,0.15203999999999998,0.89779,0.15203999999999998,0.8975142857142856,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.89642,0.07435999999999997,0.07435999999999997,0.8936,0.15203999999999998,0.05443000000000002,0.15203999999999998,0.89968,0.05443000000000002,0.15203999999999998,0.8984099999999999,0.15203999999999998,0.05443000000000002,0.15744999999999998,0.8845700000000001,0.05506000000000003,0.891676,0.05443000000000002,0.89489,0.05443000000000002,0.15203999999999998,0.15203999999999998,0.05506000000000003,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.8978742857142858,0.015045801948051959,0.8536800000000001,0.07200200000000001,0.8950699999999999,0.07200200000000001,0.054700000000000026,0.054700000000000026,0.5188999999999999,0.07435999999999997,0.10813083333333333,0.8930799999999998,0.7722399999999999,0.8138400000000001,0.07435999999999997,0.07200200000000001,0.07300999999999999,0.07435999999999997,0.9001699999999999,0.07200200000000001,0.054700000000000026,0.054700000000000026,0.84887,0.07435999999999997,0.054700000000000026,0.89516,0.054700000000000026,0.09616999999999999,0.07300999999999999,0.8933399999999999,0.89368,0.07300999999999999,0.89308,0.07300999999999999,0.054700000000000026,0.054700000000000026,0.8874300000000002,0.054700000000000026,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07300999999999999,0.07300999999999999,0.054700000000000026,0.07435999999999997,0.07435999999999997,0.054700000000000026,0.07300999999999999,0.8933399999999999,0.054700000000000026,0.8511200000000001,0.054700000000000026,0.07300999999999999,0.02486416666666668,0.02486416666666668,0.8734100000000001,0.031035666666666694,0.16746,0.84673,0.031035666666666694,0.05506000000000003,0.05506000000000003,0.07300999999999999,0.8996666666666666,0.89204,0.031035666666666694,0.07435999999999997,0.031035666666666694,0.05506000000000003,0.031035666666666694,0.07300999999999999,0.07300999999999999,0.031035666666666694,0.8950699999999999,0.07435999999999997,0.891,0.90075,0.07435999999999997,0.054700000000000026,0.07300999999999999,0.07435999999999997,0.05506000000000003,0.015045801948051959,0.8936,0.05443000000000002,0.054700000000000026,0.8992699999999999,0.8935999999999998,0.054220000000000025,0.054700000000000026,0.9028699999999998,0.8943300000000001,0.024544166666666672,0.90055,0.8937299999999999,0.024544166666666672,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.05443000000000002,0.09841000000000003,0.05443000000000002,0.89394,0.032140666666666644,0.10395999999999997,0.054700000000000026,0.032140666666666644,0.10138,0.032140666666666644,0.015045801948051959,0.02486416666666668,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.89978,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07494999999999995,0.02486416666666668,0.015045801948051959,0.024687500000000008,0.052745,0.893602121212121,0.86765,0.02486416666666668,0.54587,0.015045801948051959,0.12595000000000003,0.8936,0.8935999999999998,0.015045801948051959,0.02486416666666668,0.015045801948051959,0.02486416666666668,0.893602121212121,0.015045801948051959,0.8935989075630235,0.015045801948051959,0.8935989075630235,0.015045801948051959,0.8371200000000002,0.89161,0.14847000000000002,0.8997399999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.14847000000000002,0.14847000000000002,0.8144499999999999,0.14847000000000002,0.17115,0.89657,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89621,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.87884,0.14847000000000002,0.9007339999999999,0.89779,0.14847000000000002,0.7725100000000001,0.14847000000000002,0.8207099999999998,0.89764,0.17497000000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8207099999999998,0.8565799999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.7098199999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17553000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.77368,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.84863,0.90267,0.14847000000000002,0.90076,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.49789000000000005,0.14847000000000002,0.14847000000000002,0.89326,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.90267,0.9011866666666666,0.9009333333333333,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.015045801948051959,0.8793000000000001,0.07200200000000001,0.8997999999999999,0.8728499999999999,0.07200200000000001,0.07200200000000001,0.77368,0.8958499999999999,0.86894,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8468899999999999,0.32880000000000004,0.18816000000000005,0.8953724999999999,0.07200200000000001,0.8955399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8865300000000002,0.17012999999999998,0.07200200000000001,0.8949883333333334,0.90044,0.07200200000000001,0.56715,0.07200200000000001,0.8933399999999999,0.9036033333333334,0.07200200000000001,0.45043000000000005,0.9011866666666666,0.07200200000000001,0.9012600000000001,0.07200200000000001,0.90107,0.535245,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.17607000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.15322999999999998,0.07200200000000001,0.07200200000000001,0.9009333333333333,0.8679300000000001,0.07200200000000001,0.9059899999999999,0.8987400000000001,0.89978,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.88726,0.07200200000000001,0.07200200000000001,0.89606,0.07200200000000001,0.07200200000000001,0.90615,0.16608533333333336,0.4863199999999999,0.8358500000000001,0.8953699999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8781599999999999,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.9055,0.05506000000000003,0.14847000000000002,0.8679300000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9011199999999999,0.15297000000000002,0.8943299999999998,0.9000429999999999,0.05506000000000003,0.8939776666666667,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.8953099999999999,0.18816000000000005,0.9014942857142856,0.14847000000000002,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.89832,0.07200200000000001,0.07200200000000001,0.8953699999999998,0.8987400000000001,0.9031399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9004100000000002,0.171086,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.17115,0.03175066666666667,0.03175066666666667,0.8958699999999998,0.05506000000000003,0.05506000000000003,0.9000429999999999,0.07200200000000001,0.86894,0.9036033333333334,0.14847000000000002,0.14847000000000002,0.8881899999999998,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16662,0.8927999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89223,0.07200200000000001,0.85964,0.09433999999999998,0.07200200000000001,0.07200200000000001,0.8936,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9008899999999999,0.07200200000000001,0.11297800000000002,0.07200200000000001,0.8625700000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8943399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89564,0.07200200000000001,0.90683,0.015045801948051959,0.05506000000000003,0.07265750000000003,0.112998,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8933399999999999,0.9015657142857142,0.9014599999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.1038,0.05506000000000003,0.024687500000000008,0.8979799999999999,0.024687500000000008,0.03175066666666667,0.07200200000000001,0.9017771428571428,0.03175066666666667,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8978000000000002,0.03175066666666667,0.18030000000000002,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.9056700000000001,0.89308,0.05506000000000003,0.90184,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8991000000000001,0.02486416666666668,0.015045801948051959,0.891415,0.8481433333333334,0.024687500000000008,0.03175066666666667,0.8920399999999999,0.03175066666666667,0.9003099999999999,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.8935999999999998,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.8935989075630248,0.024687500000000008,0.06353999999999999,0.893602121212121,0.8928189075630251,0.8935989075630248,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.024687500000000008,0.8935989075630246,0.015045801948051959,0.3148099999999999,0.015045801948051959,0.015045801948051959,0.8935989075630235,0.024687500000000008,0.024687500000000008,0.04050399999999999,0.8935989075630237,0.04490000000000003,0.015045801948051959,0.015045801948051959,0.08565000000000002,0.02158344696969698,0.015045801948051959,0.015045801948051959,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.90302,0.14847000000000002,0.7841199999999999,0.89497,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.8955399999999999,0.14847000000000002,0.90076,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17499000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8791,0.14847000000000002,0.8963700000000001,0.89954,0.14847000000000002,0.8997800000000001,0.89975,0.14847000000000002,0.16942533333333337,0.14847000000000002,0.14847000000000002,0.8950999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.84154,0.8679300000000001,0.14847000000000002,0.14847000000000002,0.5209499999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8999499999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16913600000000004,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.9009336666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89204,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89657,0.16948000000000008,0.14847000000000002,0.14847000000000002,0.9024999999999999,0.14847000000000002,0.07435999999999997,0.4720599999999999,0.89901,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17199,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89901,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89305,0.8777199999999998,0.07200200000000001,0.89985,0.8927999999999999,0.9001500000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89326,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.08343000000000003,0.07200200000000001,0.07200200000000001,0.4801,0.07200200000000001,0.07200200000000001,0.8883300000000001,0.07200200000000001,0.8987400000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9017499999999998,0.07200200000000001,0.07200200000000001,0.8993767857142858,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89779,0.07200200000000001,0.51675,0.84154,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8865300000000002,0.05506000000000003,0.05506000000000003,0.5803400000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89986,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8940666666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89627,0.14847000000000002,0.8529500000000001,0.14847000000000002,0.14847000000000002,0.9023900000000001,0.14847000000000002,0.89161,0.05506000000000003,0.14847000000000002,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.8968700000000001,0.89155,0.15297000000000002,0.03175066666666667,0.03175066666666667,0.07200200000000001,0.9063299999999999,0.8814033333333333,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.84863,0.8916633333333334,0.032250666666666664,0.9,0.89448,0.07200200000000001,0.8615999999999999,0.07200200000000001,0.9016,0.896396,0.4604000000000001,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.9001199999999999,0.05506000000000003,0.89223,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.14847000000000002,0.015045801948051959,0.07200200000000001,0.07200200000000001,0.7886,0.07200200000000001,0.8970999999999998,0.09616999999999999,0.8933399999999999,0.9002283333333333,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.11031500000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.13490000000000002,0.07200200000000001,0.8967866666666667,0.07200200000000001,0.88465,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.02486416666666668,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8936258137768662,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.8936258137768662,0.05506000000000003,0.05506000000000003,0.113455,0.05506000000000003,0.05506000000000003,0.89381,0.8933399999999999,0.05506000000000003,0.9015249999999998,0.89394,0.05506000000000003,0.26664000000000004,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.8948899999999999,0.05506000000000003,0.9034760000000001,0.05506000000000003,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8933399999999999,0.10247000000000002,0.8999499999999999,0.20915,0.08343000000000003,0.03175066666666667,0.05506000000000003,0.84887,0.8957099999999999,0.8934750000000001,0.07200200000000001,0.8867199999999998,0.05506000000000003,0.8943399999999999,0.015045801948051959,0.89564,0.7775200000000001,0.9000220000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.88501,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07829,0.03175066666666667,0.8929499999999999,0.03175066666666667,0.89944,0.05506000000000003,0.05301999999999998,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.032250666666666664,0.893598907563025,0.024687500000000008,0.893598907563025,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.88673,0.03175066666666667,0.8935989075630248,0.015045801948051959,0.015045801948051959,0.8935996166550485,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.03637999999999999,0.015045801948051959,0.89901,0.14847000000000002,0.14847000000000002,0.9007339999999999,0.14847000000000002,0.14847000000000002,0.89621,0.14847000000000002,0.8938900000000002,0.9001000000000001,0.9,0.14847000000000002,0.14847000000000002,0.9055199999999999,0.14847000000000002,0.8999583333333334,0.14847000000000002,0.89968,0.14847000000000002,0.14847000000000002,0.8958699999999998,0.14847000000000002,0.14847000000000002,0.9017842857142858,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8506600000000001,0.8981199999999998,0.17199,0.14847000000000002,0.8524299999999998,0.14847000000000002,0.89315,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.87568,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8936300000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89207,0.8953699999999998,0.14847000000000002,0.14847000000000002,0.89657,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8942400000000001,0.14847000000000002,0.8173300000000001,0.15895,0.14847000000000002,0.14847000000000002,0.90267,0.14847000000000002,0.8950699999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8954033333333333,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8933399999999999,0.14847000000000002,0.14847000000000002,0.889225,0.7725100000000001,0.8934399999999998,0.4720599999999999,0.14847000000000002,0.14847000000000002,0.8746700000000001,0.14847000000000002,0.7856799999999998,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.90076,0.07200200000000001,0.8123999999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89693,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8984500000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.84601,0.89497,0.07200200000000001,0.8350500000000002,0.8764800000000001,0.6744999999999999,0.07200200000000001,0.8984500000000001,0.15744999999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.84473,0.07200200000000001,0.07200200000000001,0.9000429999999999,0.89621,0.07200200000000001,0.9008158333333334,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8990500000000001,0.7098199999999999,0.07200200000000001,0.8986600000000001,0.50613,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.51675,0.8941799999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.88354,0.05506000000000003,0.05506000000000003,0.16662,0.8777199999999998,0.89832,0.05506000000000003,0.8256900000000001,0.89984,0.05506000000000003,0.8144499999999999,0.05506000000000003,0.171086,0.05506000000000003,0.8981199999999998,0.9016,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8123999999999999,0.14847000000000002,0.8207099999999998,0.14847000000000002,0.48869999999999997,0.89779,0.14847000000000002,0.14847000000000002,0.8746700000000001,0.9001500000000002,0.14847000000000002,0.90073,0.8781599999999999,0.14847000000000002,0.14847000000000002,0.16784533333333335,0.14847000000000002,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.8882300000000001,0.89954,0.03175066666666667,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.15844999999999995,0.8953724999999999,0.07200200000000001,0.8912599999999999,0.88989,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8939776666666667,0.15844999999999995,0.05506000000000003,0.8998099999999999,0.16111999999999999,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.14847000000000002,0.015045801948051959,0.8946,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.90155,0.07200200000000001,0.07200200000000001,0.89581,0.10675000000000001,0.8968499999999999,0.8978399999999999,0.8947199999999998,0.27225,0.07200200000000001,0.07200200000000001,0.8956500000000001,0.07200200000000001,0.8536800000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.083197,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8982299999999999,0.07200200000000001,0.89853,0.07200200000000001,0.27225,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.89564,0.88465,0.8854799999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.11110957142857143,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.1028,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.10660399999999999,0.9016771428571427,0.05506000000000003,0.7329600000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.9056700000000001,0.03175066666666667,0.08343000000000003,0.03175066666666667,0.03175066666666667,0.8962199999999999,0.03175066666666667,0.09931999999999999,0.03175066666666667,0.05506000000000003,0.8969199999999999,0.8138400000000001,0.07200200000000001,0.8456199999999999,0.90075,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.015045801948051959,0.05506000000000003,0.05506000000000003,0.8912599999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9026349999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.9005099999999999,0.032140666666666644,0.11219000000000001,0.8951399999999999,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.89505,0.03175066666666667,0.49933999999999995,0.03175066666666667,0.03175066666666667,0.25558000000000003,0.05506000000000003,0.06287333333333334,0.015045801948051959,0.81565,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.024687500000000008,0.03175066666666667,0.07862,0.03175066666666667,0.03175066666666667,0.8935999999999996,0.03175066666666667,0.024687500000000008,0.03175066666666667,0.05196333333333334,0.893596387347932,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.025540000000000007,0.024687500000000008,0.8935999999999996,0.04099000000000001,0.024687500000000008,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.021319974747474754,0.28351,0.015045801948051959,0.90107,0.9000400000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8679300000000001,0.27691999999999994,0.17974999999999994,0.9060599999999999,0.83568,0.14847000000000002,0.14847000000000002,0.89161,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8987999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89635,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8933399999999999,0.896396,0.14847000000000002,0.8764800000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8915200000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8978742857142858,0.8956439999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8883300000000001,0.14847000000000002,0.14847000000000002,0.19768999999999998,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8969300000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16412,0.89976,0.14847000000000002,0.8940666666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8999583333333334,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89764,0.89986,0.9028699999999998,0.45043000000000005,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.14847000000000002,0.14847000000000002,0.8785449999999999,0.015045801948051959,0.07200200000000001,0.9009336666666667,0.17497000000000001,0.07200200000000001,0.07200200000000001,0.8990500000000001,0.90076,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8949300000000001,0.14847000000000002,0.15203999999999998,0.8927999999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8977199999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9028699999999998,0.8969299999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89621,0.07200200000000001,0.89204,0.8870000000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8918623333333334,0.07200200000000001,0.07200200000000001,0.8928199999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8971699999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.83812,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.9058699999999998,0.14847000000000002,0.89978,0.14847000000000002,0.14847000000000002,0.89734,0.14847000000000002,0.89976,0.14847000000000002,0.14847000000000002,0.05506000000000003,0.27226999999999996,0.05506000000000003,0.05506000000000003,0.16276000000000002,0.024687500000000008,0.024687500000000008,0.8207099999999998,0.89497,0.03175066666666667,0.03175066666666667,0.8965200000000001,0.8969299999999999,0.9055,0.07200200000000001,0.8934399999999998,0.47296000000000005,0.07200200000000001,0.07200200000000001,0.89832,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.8955399999999999,0.89345,0.14847000000000002,0.84108,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.14847000000000002,0.8350500000000002,0.9010058333333333,0.015045801948051959,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8176499999999999,0.07200200000000001,0.87331,0.07200200000000001,0.07200200000000001,0.07300999999999999,0.8625700000000001,0.07200200000000001,0.8947199999999998,0.07200200000000001,0.07200200000000001,0.73879,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8962199999999999,0.07200200000000001,0.07200200000000001,0.8959800000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8836291666666666,0.07200200000000001,0.89709,0.12962999999999997,0.07200200000000001,0.07200200000000001,0.61423,0.05506000000000003,0.05506000000000003,0.8852500000000001,0.05506000000000003,0.8868941666666667,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.89229,0.05506000000000003,0.05506000000000003,0.9000799999999998,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.024687500000000008,0.8734100000000001,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.87278,0.03175066666666667,0.900666,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.8625700000000001,0.07200200000000001,0.07200200000000001,0.8950799999999999,0.07200200000000001,0.9028700000000001,0.9024190000000001,0.20915,0.07200200000000001,0.9009320000000001,0.05506000000000003,0.07200200000000001],\"colors_iteration\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,22,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,28,29,29,29,29,29,29,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31],\"colors_performance\":[0.89155,0.9063299999999999,0.8925199999999999,0.8997399999999999,0.8865300000000002,0.9011199999999999,0.8958499999999999,0.45043000000000005,0.8989900000000001,0.17017999999999994,0.07366,0.17499000000000003,0.17081999999999997,0.903646,0.17017999999999994,0.90044,0.9009463333333333,0.89868,0.17423000000000002,0.89909,0.17017999999999994,0.83568,0.7838300000000001,0.88056,0.8845700000000001,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.9020699999999999,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.482245,0.07826666666666669,0.9014,0.9014942857142856,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.89345,0.8935442857142858,0.8529000000000003,0.17017999999999994,0.4863199999999999,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.8936142857142858,0.8912599999999999,0.17017999999999994,0.89497,0.17017999999999994,0.17017999999999994,0.17123,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.88914,0.17017999999999994,0.89502,0.17423000000000002,0.8173300000000001,0.17017999999999994,0.7856799999999998,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.8999492857142858,0.17017999999999994,0.17017999999999994,0.8927999999999999,0.17017999999999994,0.17017999999999994,0.90107,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17556,0.17017999999999994,0.17017999999999994,0.90044,0.03140999999999998,0.89345,0.11531999999999998,0.8980600000000001,0.7178549999999999,0.17017999999999994,0.17017999999999994,0.89879,0.17017999999999994,0.17017999999999994,0.11531999999999998,0.17017999999999994,0.07826666666666669,0.11531999999999998,0.9055,0.9028699999999998,0.17017999999999994,0.11531999999999998,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.89978,0.77368,0.17017999999999994,0.12017,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.11531999999999998,0.17017999999999994,0.17017999999999994,0.8935500000000001,0.11531999999999998,0.8965,0.11531999999999998,0.9014033333333333,0.11531999999999998,0.11531999999999998,0.84779,0.11531999999999998,0.11531999999999998,0.8207099999999998,0.11531999999999998,0.8925199999999999,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.8943099999999999,0.11531999999999998,0.8951199999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.47030000000000005,0.8999300000000001,0.11531999999999998,0.8928200000000001,0.9008158333333334,0.89809,0.11531999999999998,0.11531999999999998,0.8997399999999999,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.89326,0.87884,0.11531999999999998,0.11531999999999998,0.09771999999999997,0.11531999999999998,0.8996000000000001,0.8969300000000002,0.89606,0.08268,0.09771999999999997,0.8997399999999999,0.09771999999999997,0.8949300000000001,0.17800999999999995,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.8943579999999999,0.03721999999999999,0.09771999999999997,0.024980000000000023,0.09771999999999997,0.17017999999999994,0.12017,0.17423000000000002,0.901408,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.903646,0.11531999999999998,0.17017999999999994,0.09771999999999997,0.015045801948051959,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.17017999999999994,0.8942400000000001,0.12017,0.08268,0.09771999999999997,0.11531999999999998,0.17423000000000002,0.9009336666666667,0.89326,0.11531999999999998,0.83568,0.883915,0.12017,0.11531999999999998,0.11531999999999998,0.89415,0.11531999999999998,0.12017,0.11531999999999998,0.90137,0.8123999999999999,0.12017,0.11531999999999998,0.8987999999999999,0.8980600000000001,0.8997999999999999,0.8940666666666667,0.12017,0.17017999999999994,0.12017,0.11531999999999998,0.12017,0.09771999999999997,0.12017,0.89365,0.9017499999999998,0.8624,0.17423000000000002,0.16054000000000004,0.05443000000000002,0.16054000000000004,0.894946,0.89557,0.19322999999999996,0.015045801948051959,0.9013899999999999,0.16054000000000004,0.16054000000000004,0.8948899999999999,0.16054000000000004,0.05506000000000003,0.8978100000000001,0.16054000000000004,0.7924399999999999,0.024544166666666672,0.16054000000000004,0.024544166666666672,0.16054000000000004,0.90093,0.16054000000000004,0.032140666666666644,0.21563000000000004,0.032140666666666644,0.16054000000000004,0.16054000000000004,0.78122,0.16054000000000004,0.16054000000000004,0.032140666666666644,0.032140666666666644,0.8950099999999999,0.8967866666666667,0.09879000000000002,0.09879000000000002,0.09666999999999999,0.11479000000000003,0.17005000000000003,0.87278,0.032140666666666644,0.032140666666666644,0.89463,0.79756,0.11479000000000003,0.7517400000000001,0.09879000000000002,0.89566,0.05443000000000002,0.18278000000000003,0.8959800000000001,0.09879000000000002,0.89307,0.8932650000000001,0.8960649999999999,0.8934199999999999,0.16054000000000004,0.055541666666666656,0.17005000000000003,0.17005000000000003,0.18278000000000003,0.17005000000000003,0.06438333333333335,0.09879000000000002,0.11479000000000003,0.17005000000000003,0.16054000000000004,0.8956299999999999,0.09879000000000002,0.11479000000000003,0.05443000000000002,0.18278000000000003,0.17005000000000003,0.16054000000000004,0.17005000000000003,0.7023099999999998,0.88192,0.7924399999999999,0.11479000000000003,0.898985,0.8936258137768662,0.015045801948051959,0.054220000000000025,0.054220000000000025,0.8952200000000001,0.8933099999999999,0.8989199999999998,0.73987,0.054220000000000025,0.054220000000000025,0.07837999999999996,0.024544166666666672,0.024544166666666672,0.09654500000000002,0.89428,0.032140666666666644,0.90184,0.032140666666666644,0.8953000000000001,0.89753,0.8936,0.89672,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.11228000000000002,0.032140666666666644,0.054220000000000025,0.893602121212121,0.8944070542547292,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.015045801948051959,0.015045801948051959,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.8935989075630248,0.89978,0.024544166666666672,0.8935989075630246,0.8935989075630248,0.032140666666666644,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8935989075630235,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.8935997290145989,0.024544166666666672,0.015045801948051959,0.015045801948051959,0.01513580194805196,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.05443000000000002,0.17607000000000003,0.07435999999999997,0.901408,0.07435999999999997,0.07435999999999997,0.8411500000000001,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15744999999999998,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.8954033333333333,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89954,0.07435999999999997,0.07435999999999997,0.1016,0.07435999999999997,0.15203999999999998,0.89186,0.15203999999999998,0.89489,0.07435999999999997,0.16276000000000002,0.89223,0.07435999999999997,0.15744999999999998,0.15203999999999998,0.89809,0.8144499999999999,0.8854958333333333,0.07435999999999997,0.07435999999999997,0.15744999999999998,0.8934399999999998,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.8482199999999999,0.8957033333333333,0.15203999999999998,0.15203999999999998,0.15744999999999998,0.5750200000000001,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.9014900000000001,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.89365,0.8970849999999999,0.15566999999999998,0.8988200000000001,0.90267,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.15744999999999998,0.07435999999999997,0.50613,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.90076,0.89984,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.8997399999999999,0.8945400000000001,0.8524299999999998,0.15203999999999998,0.15203999999999998,0.15297000000000002,0.89968,0.9018642857142858,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.1670899999999999,0.9012800000000001,0.07435999999999997,0.9000400000000001,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.17115,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.8956439999999999,0.8950999999999999,0.8997999999999999,0.15203999999999998,0.15203999999999998,0.8933399999999999,0.15203999999999998,0.9014900000000001,0.15203999999999998,0.015045801948051959,0.15203999999999998,0.05443000000000002,0.8679300000000001,0.47030000000000005,0.45043000000000005,0.1016,0.77368,0.4801,0.024544166666666672,0.05443000000000002,0.024544166666666672,0.032140666666666644,0.032140666666666644,0.05443000000000002,0.897818,0.15203999999999998,0.15203999999999998,0.032140666666666644,0.89635,0.05443000000000002,0.84515,0.8943579999999999,0.05443000000000002,0.032140666666666644,0.05443000000000002,0.16008,0.15744999999999998,0.032140666666666644,0.8997999999999999,0.05443000000000002,0.032140666666666644,0.15203999999999998,0.15203999999999998,0.05443000000000002,0.05443000000000002,0.15203999999999998,0.07435999999999997,0.89704,0.8933399999999999,0.89976,0.15203999999999998,0.07435999999999997,0.05443000000000002,0.8942400000000001,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.89688,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89975,0.07435999999999997,0.891676,0.8794500000000001,0.15203999999999998,0.89239,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.90123,0.8913599999999999,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89879,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.8962499999999999,0.8962766666666668,0.15744999999999998,0.15203999999999998,0.89779,0.15203999999999998,0.8975142857142856,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.89642,0.07435999999999997,0.07435999999999997,0.8936,0.15203999999999998,0.05443000000000002,0.15203999999999998,0.89968,0.05443000000000002,0.15203999999999998,0.8984099999999999,0.15203999999999998,0.05443000000000002,0.15744999999999998,0.8845700000000001,0.05506000000000003,0.891676,0.05443000000000002,0.89489,0.05443000000000002,0.15203999999999998,0.15203999999999998,0.05506000000000003,0.15203999999999998,0.07435999999999997,0.15203999999999998,0.8978742857142858,0.015045801948051959,0.8536800000000001,0.07200200000000001,0.8950699999999999,0.07200200000000001,0.054700000000000026,0.054700000000000026,0.5188999999999999,0.07435999999999997,0.10813083333333333,0.8930799999999998,0.7722399999999999,0.8138400000000001,0.07435999999999997,0.07200200000000001,0.07300999999999999,0.07435999999999997,0.9001699999999999,0.07200200000000001,0.054700000000000026,0.054700000000000026,0.84887,0.07435999999999997,0.054700000000000026,0.89516,0.054700000000000026,0.09616999999999999,0.07300999999999999,0.8933399999999999,0.89368,0.07300999999999999,0.89308,0.07300999999999999,0.054700000000000026,0.054700000000000026,0.8874300000000002,0.054700000000000026,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07300999999999999,0.07300999999999999,0.054700000000000026,0.07435999999999997,0.07435999999999997,0.054700000000000026,0.07300999999999999,0.8933399999999999,0.054700000000000026,0.8511200000000001,0.054700000000000026,0.07300999999999999,0.02486416666666668,0.02486416666666668,0.8734100000000001,0.031035666666666694,0.16746,0.84673,0.031035666666666694,0.05506000000000003,0.05506000000000003,0.07300999999999999,0.8996666666666666,0.89204,0.031035666666666694,0.07435999999999997,0.031035666666666694,0.05506000000000003,0.031035666666666694,0.07300999999999999,0.07300999999999999,0.031035666666666694,0.8950699999999999,0.07435999999999997,0.891,0.90075,0.07435999999999997,0.054700000000000026,0.07300999999999999,0.07435999999999997,0.05506000000000003,0.015045801948051959,0.8936,0.05443000000000002,0.054700000000000026,0.8992699999999999,0.8935999999999998,0.054220000000000025,0.054700000000000026,0.9028699999999998,0.8943300000000001,0.024544166666666672,0.90055,0.8937299999999999,0.024544166666666672,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.05443000000000002,0.09841000000000003,0.05443000000000002,0.89394,0.032140666666666644,0.10395999999999997,0.054700000000000026,0.032140666666666644,0.10138,0.032140666666666644,0.015045801948051959,0.02486416666666668,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.89978,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07494999999999995,0.02486416666666668,0.015045801948051959,0.024687500000000008,0.052745,0.893602121212121,0.86765,0.02486416666666668,0.54587,0.015045801948051959,0.12595000000000003,0.8936,0.8935999999999998,0.015045801948051959,0.02486416666666668,0.015045801948051959,0.02486416666666668,0.893602121212121,0.015045801948051959,0.8935989075630235,0.015045801948051959,0.8935989075630235,0.015045801948051959,0.8371200000000002,0.89161,0.14847000000000002,0.8997399999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.14847000000000002,0.14847000000000002,0.8144499999999999,0.14847000000000002,0.17115,0.89657,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89621,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.87884,0.14847000000000002,0.9007339999999999,0.89779,0.14847000000000002,0.7725100000000001,0.14847000000000002,0.8207099999999998,0.89764,0.17497000000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8207099999999998,0.8565799999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.7098199999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17553000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.77368,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.84863,0.90267,0.14847000000000002,0.90076,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.49789000000000005,0.14847000000000002,0.14847000000000002,0.89326,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.90267,0.9011866666666666,0.9009333333333333,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.015045801948051959,0.8793000000000001,0.07200200000000001,0.8997999999999999,0.8728499999999999,0.07200200000000001,0.07200200000000001,0.77368,0.8958499999999999,0.86894,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8468899999999999,0.32880000000000004,0.18816000000000005,0.8953724999999999,0.07200200000000001,0.8955399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8865300000000002,0.17012999999999998,0.07200200000000001,0.8949883333333334,0.90044,0.07200200000000001,0.56715,0.07200200000000001,0.8933399999999999,0.9036033333333334,0.07200200000000001,0.45043000000000005,0.9011866666666666,0.07200200000000001,0.9012600000000001,0.07200200000000001,0.90107,0.535245,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.17607000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.15322999999999998,0.07200200000000001,0.07200200000000001,0.9009333333333333,0.8679300000000001,0.07200200000000001,0.9059899999999999,0.8987400000000001,0.89978,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.88726,0.07200200000000001,0.07200200000000001,0.89606,0.07200200000000001,0.07200200000000001,0.90615,0.16608533333333336,0.4863199999999999,0.8358500000000001,0.8953699999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8781599999999999,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.9055,0.05506000000000003,0.14847000000000002,0.8679300000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9011199999999999,0.15297000000000002,0.8943299999999998,0.9000429999999999,0.05506000000000003,0.8939776666666667,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.8953099999999999,0.18816000000000005,0.9014942857142856,0.14847000000000002,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.89832,0.07200200000000001,0.07200200000000001,0.8953699999999998,0.8987400000000001,0.9031399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9004100000000002,0.171086,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.17115,0.03175066666666667,0.03175066666666667,0.8958699999999998,0.05506000000000003,0.05506000000000003,0.9000429999999999,0.07200200000000001,0.86894,0.9036033333333334,0.14847000000000002,0.14847000000000002,0.8881899999999998,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16662,0.8927999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89223,0.07200200000000001,0.85964,0.09433999999999998,0.07200200000000001,0.07200200000000001,0.8936,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9008899999999999,0.07200200000000001,0.11297800000000002,0.07200200000000001,0.8625700000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8943399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89564,0.07200200000000001,0.90683,0.015045801948051959,0.05506000000000003,0.07265750000000003,0.112998,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8933399999999999,0.9015657142857142,0.9014599999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.1038,0.05506000000000003,0.024687500000000008,0.8979799999999999,0.024687500000000008,0.03175066666666667,0.07200200000000001,0.9017771428571428,0.03175066666666667,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8978000000000002,0.03175066666666667,0.18030000000000002,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.9056700000000001,0.89308,0.05506000000000003,0.90184,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8991000000000001,0.02486416666666668,0.015045801948051959,0.891415,0.8481433333333334,0.024687500000000008,0.03175066666666667,0.8920399999999999,0.03175066666666667,0.9003099999999999,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.8935999999999998,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.8935989075630248,0.024687500000000008,0.06353999999999999,0.893602121212121,0.8928189075630251,0.8935989075630248,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.024687500000000008,0.8935989075630246,0.015045801948051959,0.3148099999999999,0.015045801948051959,0.015045801948051959,0.8935989075630235,0.024687500000000008,0.024687500000000008,0.04050399999999999,0.8935989075630237,0.04490000000000003,0.015045801948051959,0.015045801948051959,0.08565000000000002,0.02158344696969698,0.015045801948051959,0.015045801948051959,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.90302,0.14847000000000002,0.7841199999999999,0.89497,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.8955399999999999,0.14847000000000002,0.90076,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17499000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8791,0.14847000000000002,0.8963700000000001,0.89954,0.14847000000000002,0.8997800000000001,0.89975,0.14847000000000002,0.16942533333333337,0.14847000000000002,0.14847000000000002,0.8950999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.84154,0.8679300000000001,0.14847000000000002,0.14847000000000002,0.5209499999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8999499999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16913600000000004,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.9009336666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89204,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89657,0.16948000000000008,0.14847000000000002,0.14847000000000002,0.9024999999999999,0.14847000000000002,0.07435999999999997,0.4720599999999999,0.89901,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17199,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89901,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89305,0.8777199999999998,0.07200200000000001,0.89985,0.8927999999999999,0.9001500000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89326,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.08343000000000003,0.07200200000000001,0.07200200000000001,0.4801,0.07200200000000001,0.07200200000000001,0.8883300000000001,0.07200200000000001,0.8987400000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9017499999999998,0.07200200000000001,0.07200200000000001,0.8993767857142858,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89779,0.07200200000000001,0.51675,0.84154,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8865300000000002,0.05506000000000003,0.05506000000000003,0.5803400000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89986,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8940666666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89627,0.14847000000000002,0.8529500000000001,0.14847000000000002,0.14847000000000002,0.9023900000000001,0.14847000000000002,0.89161,0.05506000000000003,0.14847000000000002,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.8968700000000001,0.89155,0.15297000000000002,0.03175066666666667,0.03175066666666667,0.07200200000000001,0.9063299999999999,0.8814033333333333,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.84863,0.8916633333333334,0.032250666666666664,0.9,0.89448,0.07200200000000001,0.8615999999999999,0.07200200000000001,0.9016,0.896396,0.4604000000000001,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.9001199999999999,0.05506000000000003,0.89223,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.14847000000000002,0.015045801948051959,0.07200200000000001,0.07200200000000001,0.7886,0.07200200000000001,0.8970999999999998,0.09616999999999999,0.8933399999999999,0.9002283333333333,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.11031500000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.13490000000000002,0.07200200000000001,0.8967866666666667,0.07200200000000001,0.88465,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.02486416666666668,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8936258137768662,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.8936258137768662,0.05506000000000003,0.05506000000000003,0.113455,0.05506000000000003,0.05506000000000003,0.89381,0.8933399999999999,0.05506000000000003,0.9015249999999998,0.89394,0.05506000000000003,0.26664000000000004,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.8948899999999999,0.05506000000000003,0.9034760000000001,0.05506000000000003,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8933399999999999,0.10247000000000002,0.8999499999999999,0.20915,0.08343000000000003,0.03175066666666667,0.05506000000000003,0.84887,0.8957099999999999,0.8934750000000001,0.07200200000000001,0.8867199999999998,0.05506000000000003,0.8943399999999999,0.015045801948051959,0.89564,0.7775200000000001,0.9000220000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.88501,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07829,0.03175066666666667,0.8929499999999999,0.03175066666666667,0.89944,0.05506000000000003,0.05301999999999998,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.032250666666666664,0.893598907563025,0.024687500000000008,0.893598907563025,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.88673,0.03175066666666667,0.8935989075630248,0.015045801948051959,0.015045801948051959,0.8935996166550485,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.03637999999999999,0.015045801948051959,0.89901,0.14847000000000002,0.14847000000000002,0.9007339999999999,0.14847000000000002,0.14847000000000002,0.89621,0.14847000000000002,0.8938900000000002,0.9001000000000001,0.9,0.14847000000000002,0.14847000000000002,0.9055199999999999,0.14847000000000002,0.8999583333333334,0.14847000000000002,0.89968,0.14847000000000002,0.14847000000000002,0.8958699999999998,0.14847000000000002,0.14847000000000002,0.9017842857142858,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8506600000000001,0.8981199999999998,0.17199,0.14847000000000002,0.8524299999999998,0.14847000000000002,0.89315,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.87568,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8936300000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89207,0.8953699999999998,0.14847000000000002,0.14847000000000002,0.89657,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8942400000000001,0.14847000000000002,0.8173300000000001,0.15895,0.14847000000000002,0.14847000000000002,0.90267,0.14847000000000002,0.8950699999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8954033333333333,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8933399999999999,0.14847000000000002,0.14847000000000002,0.889225,0.7725100000000001,0.8934399999999998,0.4720599999999999,0.14847000000000002,0.14847000000000002,0.8746700000000001,0.14847000000000002,0.7856799999999998,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.90076,0.07200200000000001,0.8123999999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89693,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8984500000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.84601,0.89497,0.07200200000000001,0.8350500000000002,0.8764800000000001,0.6744999999999999,0.07200200000000001,0.8984500000000001,0.15744999999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.84473,0.07200200000000001,0.07200200000000001,0.9000429999999999,0.89621,0.07200200000000001,0.9008158333333334,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8990500000000001,0.7098199999999999,0.07200200000000001,0.8986600000000001,0.50613,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.51675,0.8941799999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.88354,0.05506000000000003,0.05506000000000003,0.16662,0.8777199999999998,0.89832,0.05506000000000003,0.8256900000000001,0.89984,0.05506000000000003,0.8144499999999999,0.05506000000000003,0.171086,0.05506000000000003,0.8981199999999998,0.9016,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8123999999999999,0.14847000000000002,0.8207099999999998,0.14847000000000002,0.48869999999999997,0.89779,0.14847000000000002,0.14847000000000002,0.8746700000000001,0.9001500000000002,0.14847000000000002,0.90073,0.8781599999999999,0.14847000000000002,0.14847000000000002,0.16784533333333335,0.14847000000000002,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.8882300000000001,0.89954,0.03175066666666667,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.15844999999999995,0.8953724999999999,0.07200200000000001,0.8912599999999999,0.88989,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8939776666666667,0.15844999999999995,0.05506000000000003,0.8998099999999999,0.16111999999999999,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.14847000000000002,0.015045801948051959,0.8946,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.90155,0.07200200000000001,0.07200200000000001,0.89581,0.10675000000000001,0.8968499999999999,0.8978399999999999,0.8947199999999998,0.27225,0.07200200000000001,0.07200200000000001,0.8956500000000001,0.07200200000000001,0.8536800000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.083197,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8982299999999999,0.07200200000000001,0.89853,0.07200200000000001,0.27225,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.89564,0.88465,0.8854799999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.11110957142857143,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.1028,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.10660399999999999,0.9016771428571427,0.05506000000000003,0.7329600000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.9056700000000001,0.03175066666666667,0.08343000000000003,0.03175066666666667,0.03175066666666667,0.8962199999999999,0.03175066666666667,0.09931999999999999,0.03175066666666667,0.05506000000000003,0.8969199999999999,0.8138400000000001,0.07200200000000001,0.8456199999999999,0.90075,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.015045801948051959,0.05506000000000003,0.05506000000000003,0.8912599999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9026349999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.9005099999999999,0.032140666666666644,0.11219000000000001,0.8951399999999999,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.89505,0.03175066666666667,0.49933999999999995,0.03175066666666667,0.03175066666666667,0.25558000000000003,0.05506000000000003,0.06287333333333334,0.015045801948051959,0.81565,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.024687500000000008,0.03175066666666667,0.07862,0.03175066666666667,0.03175066666666667,0.8935999999999996,0.03175066666666667,0.024687500000000008,0.03175066666666667,0.05196333333333334,0.893596387347932,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.025540000000000007,0.024687500000000008,0.8935999999999996,0.04099000000000001,0.024687500000000008,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.021319974747474754,0.28351,0.015045801948051959,0.90107,0.9000400000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8679300000000001,0.27691999999999994,0.17974999999999994,0.9060599999999999,0.83568,0.14847000000000002,0.14847000000000002,0.89161,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8987999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89635,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8933399999999999,0.896396,0.14847000000000002,0.8764800000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8915200000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8978742857142858,0.8956439999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8883300000000001,0.14847000000000002,0.14847000000000002,0.19768999999999998,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8969300000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16412,0.89976,0.14847000000000002,0.8940666666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8999583333333334,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89764,0.89986,0.9028699999999998,0.45043000000000005,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.14847000000000002,0.14847000000000002,0.8785449999999999,0.015045801948051959,0.07200200000000001,0.9009336666666667,0.17497000000000001,0.07200200000000001,0.07200200000000001,0.8990500000000001,0.90076,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8949300000000001,0.14847000000000002,0.15203999999999998,0.8927999999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8977199999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9028699999999998,0.8969299999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89621,0.07200200000000001,0.89204,0.8870000000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8918623333333334,0.07200200000000001,0.07200200000000001,0.8928199999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8971699999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.83812,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.9058699999999998,0.14847000000000002,0.89978,0.14847000000000002,0.14847000000000002,0.89734,0.14847000000000002,0.89976,0.14847000000000002,0.14847000000000002,0.05506000000000003,0.27226999999999996,0.05506000000000003,0.05506000000000003,0.16276000000000002,0.024687500000000008,0.024687500000000008,0.8207099999999998,0.89497,0.03175066666666667,0.03175066666666667,0.8965200000000001,0.8969299999999999,0.9055,0.07200200000000001,0.8934399999999998,0.47296000000000005,0.07200200000000001,0.07200200000000001,0.89832,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.8955399999999999,0.89345,0.14847000000000002,0.84108,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.14847000000000002,0.8350500000000002,0.9010058333333333,0.015045801948051959,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8176499999999999,0.07200200000000001,0.87331,0.07200200000000001,0.07200200000000001,0.07300999999999999,0.8625700000000001,0.07200200000000001,0.8947199999999998,0.07200200000000001,0.07200200000000001,0.73879,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8962199999999999,0.07200200000000001,0.07200200000000001,0.8959800000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8836291666666666,0.07200200000000001,0.89709,0.12962999999999997,0.07200200000000001,0.07200200000000001,0.61423,0.05506000000000003,0.05506000000000003,0.8852500000000001,0.05506000000000003,0.8868941666666667,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.89229,0.05506000000000003,0.05506000000000003,0.9000799999999998,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.024687500000000008,0.8734100000000001,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.87278,0.03175066666666667,0.900666,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.8625700000000001,0.07200200000000001,0.07200200000000001,0.8950799999999999,0.07200200000000001,0.9028700000000001,0.9024190000000001,0.20915,0.07200200000000001,0.9009320000000001,0.05506000000000003,0.07200200000000001],\"config_id\":[\"(0, 0, 0)\",\"(0, 0, 1)\",\"(0, 0, 2)\",\"(0, 0, 3)\",\"(0, 0, 4)\",\"(0, 0, 5)\",\"(0, 0, 6)\",\"(0, 0, 7)\",\"(0, 0, 8)\",\"(0, 0, 9)\",\"(0, 0, 10)\",\"(0, 0, 11)\",\"(0, 0, 12)\",\"(0, 0, 13)\",\"(0, 0, 14)\",\"(0, 0, 15)\",\"(0, 0, 16)\",\"(0, 0, 17)\",\"(0, 0, 18)\",\"(0, 0, 19)\",\"(0, 0, 20)\",\"(0, 0, 21)\",\"(0, 0, 22)\",\"(0, 0, 23)\",\"(0, 0, 24)\",\"(0, 0, 25)\",\"(0, 0, 26)\",\"(0, 0, 27)\",\"(0, 0, 28)\",\"(0, 0, 29)\",\"(0, 0, 30)\",\"(0, 0, 31)\",\"(0, 0, 32)\",\"(0, 0, 33)\",\"(0, 0, 34)\",\"(0, 0, 35)\",\"(0, 0, 36)\",\"(0, 0, 37)\",\"(0, 0, 38)\",\"(0, 0, 39)\",\"(0, 0, 40)\",\"(0, 0, 41)\",\"(0, 0, 42)\",\"(0, 0, 43)\",\"(0, 0, 44)\",\"(0, 0, 45)\",\"(0, 0, 46)\",\"(0, 0, 47)\",\"(0, 0, 48)\",\"(0, 0, 49)\",\"(0, 0, 50)\",\"(0, 0, 51)\",\"(0, 0, 52)\",\"(0, 0, 53)\",\"(0, 0, 54)\",\"(0, 0, 55)\",\"(0, 0, 56)\",\"(0, 0, 57)\",\"(0, 0, 58)\",\"(0, 0, 59)\",\"(0, 0, 60)\",\"(0, 0, 61)\",\"(0, 0, 62)\",\"(0, 0, 63)\",\"(0, 0, 64)\",\"(0, 0, 65)\",\"(0, 0, 66)\",\"(0, 0, 67)\",\"(0, 0, 68)\",\"(0, 0, 69)\",\"(0, 0, 70)\",\"(0, 0, 71)\",\"(0, 0, 72)\",\"(0, 0, 73)\",\"(0, 0, 74)\",\"(0, 0, 75)\",\"(0, 0, 76)\",\"(0, 0, 77)\",\"(0, 0, 78)\",\"(0, 0, 79)\",\"(0, 0, 80)\",\"(0, 0, 81)\",\"(0, 0, 82)\",\"(0, 0, 83)\",\"(0, 0, 84)\",\"(0, 0, 85)\",\"(0, 0, 86)\",\"(0, 0, 87)\",\"(0, 0, 88)\",\"(0, 0, 89)\",\"(0, 0, 90)\",\"(0, 0, 91)\",\"(0, 0, 92)\",\"(0, 0, 93)\",\"(0, 0, 94)\",\"(0, 0, 95)\",\"(0, 0, 96)\",\"(0, 0, 97)\",\"(0, 0, 98)\",\"(0, 0, 99)\",\"(0, 0, 100)\",\"(0, 0, 101)\",\"(0, 0, 102)\",\"(0, 0, 103)\",\"(0, 0, 104)\",\"(0, 0, 105)\",\"(0, 0, 106)\",\"(0, 0, 107)\",\"(0, 0, 108)\",\"(0, 0, 109)\",\"(0, 0, 110)\",\"(0, 0, 111)\",\"(0, 0, 112)\",\"(0, 0, 113)\",\"(0, 0, 114)\",\"(0, 0, 115)\",\"(0, 0, 116)\",\"(0, 0, 117)\",\"(0, 0, 118)\",\"(0, 0, 119)\",\"(0, 0, 120)\",\"(0, 0, 121)\",\"(0, 0, 122)\",\"(0, 0, 123)\",\"(0, 0, 124)\",\"(0, 0, 125)\",\"(0, 0, 126)\",\"(0, 0, 127)\",\"(0, 0, 128)\",\"(0, 0, 129)\",\"(0, 0, 130)\",\"(0, 0, 131)\",\"(0, 0, 132)\",\"(0, 0, 133)\",\"(0, 0, 134)\",\"(0, 0, 135)\",\"(0, 0, 136)\",\"(0, 0, 137)\",\"(0, 0, 138)\",\"(0, 0, 139)\",\"(0, 0, 140)\",\"(0, 0, 141)\",\"(0, 0, 142)\",\"(0, 0, 143)\",\"(0, 0, 144)\",\"(0, 0, 145)\",\"(0, 0, 146)\",\"(0, 0, 147)\",\"(0, 0, 148)\",\"(0, 0, 149)\",\"(0, 0, 150)\",\"(0, 0, 151)\",\"(0, 0, 152)\",\"(0, 0, 153)\",\"(0, 0, 154)\",\"(0, 0, 155)\",\"(0, 0, 156)\",\"(0, 0, 157)\",\"(0, 0, 158)\",\"(0, 0, 159)\",\"(0, 0, 160)\",\"(0, 0, 161)\",\"(0, 0, 162)\",\"(0, 0, 163)\",\"(0, 0, 164)\",\"(0, 0, 165)\",\"(0, 0, 166)\",\"(0, 0, 167)\",\"(0, 0, 168)\",\"(0, 0, 169)\",\"(0, 0, 170)\",\"(0, 0, 171)\",\"(0, 0, 172)\",\"(0, 0, 173)\",\"(0, 0, 174)\",\"(0, 0, 175)\",\"(0, 0, 176)\",\"(0, 0, 177)\",\"(0, 0, 178)\",\"(0, 0, 179)\",\"(0, 0, 180)\",\"(0, 0, 181)\",\"(0, 0, 182)\",\"(0, 0, 183)\",\"(0, 0, 184)\",\"(0, 0, 185)\",\"(0, 0, 186)\",\"(0, 0, 187)\",\"(0, 0, 188)\",\"(0, 0, 189)\",\"(0, 0, 190)\",\"(0, 0, 191)\",\"(0, 0, 192)\",\"(0, 0, 193)\",\"(0, 0, 194)\",\"(0, 0, 195)\",\"(0, 0, 196)\",\"(0, 0, 197)\",\"(0, 0, 198)\",\"(0, 0, 199)\",\"(0, 0, 200)\",\"(0, 0, 201)\",\"(0, 0, 202)\",\"(0, 0, 203)\",\"(0, 0, 204)\",\"(0, 0, 205)\",\"(0, 0, 206)\",\"(0, 0, 207)\",\"(0, 0, 208)\",\"(0, 0, 209)\",\"(0, 0, 210)\",\"(0, 0, 211)\",\"(0, 0, 212)\",\"(0, 0, 213)\",\"(0, 0, 214)\",\"(0, 0, 215)\",\"(0, 0, 216)\",\"(0, 0, 217)\",\"(0, 0, 218)\",\"(0, 0, 219)\",\"(0, 0, 220)\",\"(0, 0, 221)\",\"(0, 0, 222)\",\"(0, 0, 223)\",\"(0, 0, 224)\",\"(0, 0, 225)\",\"(0, 0, 226)\",\"(0, 0, 227)\",\"(0, 0, 228)\",\"(0, 0, 229)\",\"(0, 0, 230)\",\"(0, 0, 231)\",\"(0, 0, 232)\",\"(0, 0, 233)\",\"(0, 0, 234)\",\"(0, 0, 235)\",\"(0, 0, 236)\",\"(0, 0, 237)\",\"(0, 0, 238)\",\"(0, 0, 239)\",\"(0, 0, 240)\",\"(0, 0, 241)\",\"(0, 0, 242)\",\"(1, 0, 0)\",\"(1, 0, 1)\",\"(1, 0, 2)\",\"(1, 0, 3)\",\"(1, 0, 4)\",\"(1, 0, 5)\",\"(1, 0, 6)\",\"(1, 0, 7)\",\"(1, 0, 8)\",\"(1, 0, 9)\",\"(1, 0, 10)\",\"(1, 0, 11)\",\"(1, 0, 12)\",\"(1, 0, 13)\",\"(1, 0, 14)\",\"(1, 0, 15)\",\"(1, 0, 16)\",\"(1, 0, 17)\",\"(1, 0, 18)\",\"(1, 0, 19)\",\"(1, 0, 20)\",\"(1, 0, 21)\",\"(1, 0, 22)\",\"(1, 0, 23)\",\"(1, 0, 24)\",\"(1, 0, 25)\",\"(1, 0, 26)\",\"(1, 0, 27)\",\"(1, 0, 28)\",\"(1, 0, 29)\",\"(1, 0, 30)\",\"(1, 0, 31)\",\"(1, 0, 32)\",\"(1, 0, 33)\",\"(1, 0, 34)\",\"(1, 0, 35)\",\"(1, 0, 36)\",\"(1, 0, 37)\",\"(1, 0, 38)\",\"(1, 0, 39)\",\"(1, 0, 40)\",\"(1, 0, 41)\",\"(1, 0, 42)\",\"(1, 0, 43)\",\"(1, 0, 44)\",\"(1, 0, 45)\",\"(1, 0, 46)\",\"(1, 0, 47)\",\"(1, 0, 48)\",\"(1, 0, 49)\",\"(1, 0, 50)\",\"(1, 0, 51)\",\"(1, 0, 52)\",\"(1, 0, 53)\",\"(1, 0, 54)\",\"(1, 0, 55)\",\"(1, 0, 56)\",\"(1, 0, 57)\",\"(1, 0, 58)\",\"(1, 0, 59)\",\"(1, 0, 60)\",\"(1, 0, 61)\",\"(1, 0, 62)\",\"(1, 0, 63)\",\"(1, 0, 64)\",\"(1, 0, 65)\",\"(1, 0, 66)\",\"(1, 0, 67)\",\"(1, 0, 68)\",\"(1, 0, 69)\",\"(1, 0, 70)\",\"(1, 0, 71)\",\"(1, 0, 72)\",\"(1, 0, 73)\",\"(1, 0, 74)\",\"(1, 0, 75)\",\"(1, 0, 76)\",\"(1, 0, 77)\",\"(1, 0, 78)\",\"(1, 0, 79)\",\"(1, 0, 80)\",\"(2, 0, 0)\",\"(2, 0, 1)\",\"(2, 0, 2)\",\"(2, 0, 3)\",\"(2, 0, 4)\",\"(2, 0, 5)\",\"(2, 0, 6)\",\"(2, 0, 7)\",\"(2, 0, 8)\",\"(2, 0, 9)\",\"(2, 0, 10)\",\"(2, 0, 11)\",\"(2, 0, 12)\",\"(2, 0, 13)\",\"(2, 0, 14)\",\"(2, 0, 15)\",\"(2, 0, 16)\",\"(2, 0, 17)\",\"(2, 0, 18)\",\"(2, 0, 19)\",\"(2, 0, 20)\",\"(2, 0, 21)\",\"(2, 0, 22)\",\"(2, 0, 23)\",\"(2, 0, 24)\",\"(2, 0, 25)\",\"(2, 0, 26)\",\"(3, 0, 0)\",\"(3, 0, 1)\",\"(3, 0, 2)\",\"(3, 0, 3)\",\"(3, 0, 4)\",\"(3, 0, 5)\",\"(3, 0, 6)\",\"(3, 0, 7)\",\"(3, 0, 8)\",\"(3, 0, 9)\",\"(3, 0, 10)\",\"(3, 0, 11)\",\"(3, 0, 12)\",\"(3, 0, 13)\",\"(3, 0, 14)\",\"(3, 0, 15)\",\"(3, 0, 16)\",\"(3, 0, 17)\",\"(4, 0, 0)\",\"(4, 0, 1)\",\"(4, 0, 2)\",\"(4, 0, 3)\",\"(4, 0, 4)\",\"(4, 0, 5)\",\"(4, 0, 6)\",\"(4, 0, 7)\",\"(4, 0, 8)\",\"(5, 0, 0)\",\"(5, 0, 1)\",\"(5, 0, 2)\",\"(5, 0, 3)\",\"(5, 0, 4)\",\"(5, 0, 5)\",\"(6, 0, 0)\",\"(6, 0, 1)\",\"(6, 0, 2)\",\"(6, 0, 3)\",\"(6, 0, 4)\",\"(6, 0, 5)\",\"(6, 0, 6)\",\"(6, 0, 7)\",\"(6, 0, 8)\",\"(6, 0, 9)\",\"(6, 0, 10)\",\"(6, 0, 11)\",\"(6, 0, 12)\",\"(6, 0, 13)\",\"(6, 0, 14)\",\"(6, 0, 15)\",\"(6, 0, 16)\",\"(6, 0, 17)\",\"(6, 0, 18)\",\"(6, 0, 19)\",\"(6, 0, 20)\",\"(6, 0, 21)\",\"(6, 0, 22)\",\"(6, 0, 23)\",\"(6, 0, 24)\",\"(6, 0, 25)\",\"(6, 0, 26)\",\"(6, 0, 27)\",\"(6, 0, 28)\",\"(6, 0, 29)\",\"(6, 0, 30)\",\"(6, 0, 31)\",\"(6, 0, 32)\",\"(6, 0, 33)\",\"(6, 0, 34)\",\"(6, 0, 35)\",\"(6, 0, 36)\",\"(6, 0, 37)\",\"(6, 0, 38)\",\"(6, 0, 39)\",\"(6, 0, 40)\",\"(6, 0, 41)\",\"(6, 0, 42)\",\"(6, 0, 43)\",\"(6, 0, 44)\",\"(6, 0, 45)\",\"(6, 0, 46)\",\"(6, 0, 47)\",\"(6, 0, 48)\",\"(6, 0, 49)\",\"(6, 0, 50)\",\"(6, 0, 51)\",\"(6, 0, 52)\",\"(6, 0, 53)\",\"(6, 0, 54)\",\"(6, 0, 55)\",\"(6, 0, 56)\",\"(6, 0, 57)\",\"(6, 0, 58)\",\"(6, 0, 59)\",\"(6, 0, 60)\",\"(6, 0, 61)\",\"(6, 0, 62)\",\"(6, 0, 63)\",\"(6, 0, 64)\",\"(6, 0, 65)\",\"(6, 0, 66)\",\"(6, 0, 67)\",\"(6, 0, 68)\",\"(6, 0, 69)\",\"(6, 0, 70)\",\"(6, 0, 71)\",\"(6, 0, 72)\",\"(6, 0, 73)\",\"(6, 0, 74)\",\"(6, 0, 75)\",\"(6, 0, 76)\",\"(6, 0, 77)\",\"(6, 0, 78)\",\"(6, 0, 79)\",\"(6, 0, 80)\",\"(6, 0, 81)\",\"(6, 0, 82)\",\"(6, 0, 83)\",\"(6, 0, 84)\",\"(6, 0, 85)\",\"(6, 0, 86)\",\"(6, 0, 87)\",\"(6, 0, 88)\",\"(6, 0, 89)\",\"(6, 0, 90)\",\"(6, 0, 91)\",\"(6, 0, 92)\",\"(6, 0, 93)\",\"(6, 0, 94)\",\"(6, 0, 95)\",\"(6, 0, 96)\",\"(6, 0, 97)\",\"(6, 0, 98)\",\"(6, 0, 99)\",\"(6, 0, 100)\",\"(6, 0, 101)\",\"(6, 0, 102)\",\"(6, 0, 103)\",\"(6, 0, 104)\",\"(6, 0, 105)\",\"(6, 0, 106)\",\"(6, 0, 107)\",\"(6, 0, 108)\",\"(6, 0, 109)\",\"(6, 0, 110)\",\"(6, 0, 111)\",\"(6, 0, 112)\",\"(6, 0, 113)\",\"(6, 0, 114)\",\"(6, 0, 115)\",\"(6, 0, 116)\",\"(6, 0, 117)\",\"(6, 0, 118)\",\"(6, 0, 119)\",\"(6, 0, 120)\",\"(6, 0, 121)\",\"(6, 0, 122)\",\"(6, 0, 123)\",\"(6, 0, 124)\",\"(6, 0, 125)\",\"(6, 0, 126)\",\"(6, 0, 127)\",\"(6, 0, 128)\",\"(6, 0, 129)\",\"(6, 0, 130)\",\"(6, 0, 131)\",\"(6, 0, 132)\",\"(6, 0, 133)\",\"(6, 0, 134)\",\"(6, 0, 135)\",\"(6, 0, 136)\",\"(6, 0, 137)\",\"(6, 0, 138)\",\"(6, 0, 139)\",\"(6, 0, 140)\",\"(6, 0, 141)\",\"(6, 0, 142)\",\"(6, 0, 143)\",\"(6, 0, 144)\",\"(6, 0, 145)\",\"(6, 0, 146)\",\"(6, 0, 147)\",\"(6, 0, 148)\",\"(6, 0, 149)\",\"(6, 0, 150)\",\"(6, 0, 151)\",\"(6, 0, 152)\",\"(6, 0, 153)\",\"(6, 0, 154)\",\"(6, 0, 155)\",\"(6, 0, 156)\",\"(6, 0, 157)\",\"(6, 0, 158)\",\"(6, 0, 159)\",\"(6, 0, 160)\",\"(6, 0, 161)\",\"(6, 0, 162)\",\"(6, 0, 163)\",\"(6, 0, 164)\",\"(6, 0, 165)\",\"(6, 0, 166)\",\"(6, 0, 167)\",\"(6, 0, 168)\",\"(6, 0, 169)\",\"(6, 0, 170)\",\"(6, 0, 171)\",\"(6, 0, 172)\",\"(6, 0, 173)\",\"(6, 0, 174)\",\"(6, 0, 175)\",\"(6, 0, 176)\",\"(6, 0, 177)\",\"(6, 0, 178)\",\"(6, 0, 179)\",\"(6, 0, 180)\",\"(6, 0, 181)\",\"(6, 0, 182)\",\"(6, 0, 183)\",\"(6, 0, 184)\",\"(6, 0, 185)\",\"(6, 0, 186)\",\"(6, 0, 187)\",\"(6, 0, 188)\",\"(6, 0, 189)\",\"(6, 0, 190)\",\"(6, 0, 191)\",\"(6, 0, 192)\",\"(6, 0, 193)\",\"(6, 0, 194)\",\"(6, 0, 195)\",\"(6, 0, 196)\",\"(6, 0, 197)\",\"(6, 0, 198)\",\"(6, 0, 199)\",\"(6, 0, 200)\",\"(6, 0, 201)\",\"(6, 0, 202)\",\"(6, 0, 203)\",\"(6, 0, 204)\",\"(6, 0, 205)\",\"(6, 0, 206)\",\"(6, 0, 207)\",\"(6, 0, 208)\",\"(6, 0, 209)\",\"(6, 0, 210)\",\"(6, 0, 211)\",\"(6, 0, 212)\",\"(6, 0, 213)\",\"(6, 0, 214)\",\"(6, 0, 215)\",\"(6, 0, 216)\",\"(6, 0, 217)\",\"(6, 0, 218)\",\"(6, 0, 219)\",\"(6, 0, 220)\",\"(6, 0, 221)\",\"(6, 0, 222)\",\"(6, 0, 223)\",\"(6, 0, 224)\",\"(6, 0, 225)\",\"(6, 0, 226)\",\"(6, 0, 227)\",\"(6, 0, 228)\",\"(6, 0, 229)\",\"(6, 0, 230)\",\"(6, 0, 231)\",\"(6, 0, 232)\",\"(6, 0, 233)\",\"(6, 0, 234)\",\"(6, 0, 235)\",\"(6, 0, 236)\",\"(6, 0, 237)\",\"(6, 0, 238)\",\"(6, 0, 239)\",\"(6, 0, 240)\",\"(6, 0, 241)\",\"(6, 0, 242)\",\"(7, 0, 0)\",\"(7, 0, 1)\",\"(7, 0, 2)\",\"(7, 0, 3)\",\"(7, 0, 4)\",\"(7, 0, 5)\",\"(7, 0, 6)\",\"(7, 0, 7)\",\"(7, 0, 8)\",\"(7, 0, 9)\",\"(7, 0, 10)\",\"(7, 0, 11)\",\"(7, 0, 12)\",\"(7, 0, 13)\",\"(7, 0, 14)\",\"(7, 0, 15)\",\"(7, 0, 16)\",\"(7, 0, 17)\",\"(7, 0, 18)\",\"(7, 0, 19)\",\"(7, 0, 20)\",\"(7, 0, 21)\",\"(7, 0, 22)\",\"(7, 0, 23)\",\"(7, 0, 24)\",\"(7, 0, 25)\",\"(7, 0, 26)\",\"(7, 0, 27)\",\"(7, 0, 28)\",\"(7, 0, 29)\",\"(7, 0, 30)\",\"(7, 0, 31)\",\"(7, 0, 32)\",\"(7, 0, 33)\",\"(7, 0, 34)\",\"(7, 0, 35)\",\"(7, 0, 36)\",\"(7, 0, 37)\",\"(7, 0, 38)\",\"(7, 0, 39)\",\"(7, 0, 40)\",\"(7, 0, 41)\",\"(7, 0, 42)\",\"(7, 0, 43)\",\"(7, 0, 44)\",\"(7, 0, 45)\",\"(7, 0, 46)\",\"(7, 0, 47)\",\"(7, 0, 48)\",\"(7, 0, 49)\",\"(7, 0, 50)\",\"(7, 0, 51)\",\"(7, 0, 52)\",\"(7, 0, 53)\",\"(7, 0, 54)\",\"(7, 0, 55)\",\"(7, 0, 56)\",\"(7, 0, 57)\",\"(7, 0, 58)\",\"(7, 0, 59)\",\"(7, 0, 60)\",\"(7, 0, 61)\",\"(7, 0, 62)\",\"(7, 0, 63)\",\"(7, 0, 64)\",\"(7, 0, 65)\",\"(7, 0, 66)\",\"(7, 0, 67)\",\"(7, 0, 68)\",\"(7, 0, 69)\",\"(7, 0, 70)\",\"(7, 0, 71)\",\"(7, 0, 72)\",\"(7, 0, 73)\",\"(7, 0, 74)\",\"(7, 0, 75)\",\"(7, 0, 76)\",\"(7, 0, 77)\",\"(7, 0, 78)\",\"(7, 0, 79)\",\"(7, 0, 80)\",\"(8, 0, 0)\",\"(8, 0, 1)\",\"(8, 0, 2)\",\"(8, 0, 3)\",\"(8, 0, 4)\",\"(8, 0, 5)\",\"(8, 0, 6)\",\"(8, 0, 7)\",\"(8, 0, 8)\",\"(8, 0, 9)\",\"(8, 0, 10)\",\"(8, 0, 11)\",\"(8, 0, 12)\",\"(8, 0, 13)\",\"(8, 0, 14)\",\"(8, 0, 15)\",\"(8, 0, 16)\",\"(8, 0, 17)\",\"(8, 0, 18)\",\"(8, 0, 19)\",\"(8, 0, 20)\",\"(8, 0, 21)\",\"(8, 0, 22)\",\"(8, 0, 23)\",\"(8, 0, 24)\",\"(8, 0, 25)\",\"(8, 0, 26)\",\"(9, 0, 0)\",\"(9, 0, 1)\",\"(9, 0, 2)\",\"(9, 0, 3)\",\"(9, 0, 4)\",\"(9, 0, 5)\",\"(9, 0, 6)\",\"(9, 0, 7)\",\"(9, 0, 8)\",\"(9, 0, 9)\",\"(9, 0, 10)\",\"(9, 0, 11)\",\"(9, 0, 12)\",\"(9, 0, 13)\",\"(9, 0, 14)\",\"(9, 0, 15)\",\"(9, 0, 16)\",\"(9, 0, 17)\",\"(10, 0, 0)\",\"(10, 0, 1)\",\"(10, 0, 2)\",\"(10, 0, 3)\",\"(10, 0, 4)\",\"(10, 0, 5)\",\"(10, 0, 6)\",\"(10, 0, 7)\",\"(10, 0, 8)\",\"(11, 0, 0)\",\"(11, 0, 1)\",\"(11, 0, 2)\",\"(11, 0, 3)\",\"(11, 0, 4)\",\"(11, 0, 5)\",\"(12, 0, 0)\",\"(12, 0, 1)\",\"(12, 0, 2)\",\"(12, 0, 3)\",\"(12, 0, 4)\",\"(12, 0, 5)\",\"(12, 0, 6)\",\"(12, 0, 7)\",\"(12, 0, 8)\",\"(12, 0, 9)\",\"(12, 0, 10)\",\"(12, 0, 11)\",\"(12, 0, 12)\",\"(12, 0, 13)\",\"(12, 0, 14)\",\"(12, 0, 15)\",\"(12, 0, 16)\",\"(12, 0, 17)\",\"(12, 0, 18)\",\"(12, 0, 19)\",\"(12, 0, 20)\",\"(12, 0, 21)\",\"(12, 0, 22)\",\"(12, 0, 23)\",\"(12, 0, 24)\",\"(12, 0, 25)\",\"(12, 0, 26)\",\"(12, 0, 27)\",\"(12, 0, 28)\",\"(12, 0, 29)\",\"(12, 0, 30)\",\"(12, 0, 31)\",\"(12, 0, 32)\",\"(12, 0, 33)\",\"(12, 0, 34)\",\"(12, 0, 35)\",\"(12, 0, 36)\",\"(12, 0, 37)\",\"(12, 0, 38)\",\"(12, 0, 39)\",\"(12, 0, 40)\",\"(12, 0, 41)\",\"(12, 0, 42)\",\"(12, 0, 43)\",\"(12, 0, 44)\",\"(12, 0, 45)\",\"(12, 0, 46)\",\"(12, 0, 47)\",\"(12, 0, 48)\",\"(12, 0, 49)\",\"(12, 0, 50)\",\"(12, 0, 51)\",\"(12, 0, 52)\",\"(12, 0, 53)\",\"(12, 0, 54)\",\"(12, 0, 55)\",\"(12, 0, 56)\",\"(12, 0, 57)\",\"(12, 0, 58)\",\"(12, 0, 59)\",\"(12, 0, 60)\",\"(12, 0, 61)\",\"(12, 0, 62)\",\"(12, 0, 63)\",\"(12, 0, 64)\",\"(12, 0, 65)\",\"(12, 0, 66)\",\"(12, 0, 67)\",\"(12, 0, 68)\",\"(12, 0, 69)\",\"(12, 0, 70)\",\"(12, 0, 71)\",\"(12, 0, 72)\",\"(12, 0, 73)\",\"(12, 0, 74)\",\"(12, 0, 75)\",\"(12, 0, 76)\",\"(12, 0, 77)\",\"(12, 0, 78)\",\"(12, 0, 79)\",\"(12, 0, 80)\",\"(12, 0, 81)\",\"(12, 0, 82)\",\"(12, 0, 83)\",\"(12, 0, 84)\",\"(12, 0, 85)\",\"(12, 0, 86)\",\"(12, 0, 87)\",\"(12, 0, 88)\",\"(12, 0, 89)\",\"(12, 0, 90)\",\"(12, 0, 91)\",\"(12, 0, 92)\",\"(12, 0, 93)\",\"(12, 0, 94)\",\"(12, 0, 95)\",\"(12, 0, 96)\",\"(12, 0, 97)\",\"(12, 0, 98)\",\"(12, 0, 99)\",\"(12, 0, 100)\",\"(12, 0, 101)\",\"(12, 0, 102)\",\"(12, 0, 103)\",\"(12, 0, 104)\",\"(12, 0, 105)\",\"(12, 0, 106)\",\"(12, 0, 107)\",\"(12, 0, 108)\",\"(12, 0, 109)\",\"(12, 0, 110)\",\"(12, 0, 111)\",\"(12, 0, 112)\",\"(12, 0, 113)\",\"(12, 0, 114)\",\"(12, 0, 115)\",\"(12, 0, 116)\",\"(12, 0, 117)\",\"(12, 0, 118)\",\"(12, 0, 119)\",\"(12, 0, 120)\",\"(12, 0, 121)\",\"(12, 0, 122)\",\"(12, 0, 123)\",\"(12, 0, 124)\",\"(12, 0, 125)\",\"(12, 0, 126)\",\"(12, 0, 127)\",\"(12, 0, 128)\",\"(12, 0, 129)\",\"(12, 0, 130)\",\"(12, 0, 131)\",\"(12, 0, 132)\",\"(12, 0, 133)\",\"(12, 0, 134)\",\"(12, 0, 135)\",\"(12, 0, 136)\",\"(12, 0, 137)\",\"(12, 0, 138)\",\"(12, 0, 139)\",\"(12, 0, 140)\",\"(12, 0, 141)\",\"(12, 0, 142)\",\"(12, 0, 143)\",\"(12, 0, 144)\",\"(12, 0, 145)\",\"(12, 0, 146)\",\"(12, 0, 147)\",\"(12, 0, 148)\",\"(12, 0, 149)\",\"(12, 0, 150)\",\"(12, 0, 151)\",\"(12, 0, 152)\",\"(12, 0, 153)\",\"(12, 0, 154)\",\"(12, 0, 155)\",\"(12, 0, 156)\",\"(12, 0, 157)\",\"(12, 0, 158)\",\"(12, 0, 159)\",\"(12, 0, 160)\",\"(12, 0, 161)\",\"(12, 0, 162)\",\"(12, 0, 163)\",\"(12, 0, 164)\",\"(12, 0, 165)\",\"(12, 0, 166)\",\"(12, 0, 167)\",\"(12, 0, 168)\",\"(12, 0, 169)\",\"(12, 0, 170)\",\"(12, 0, 171)\",\"(12, 0, 172)\",\"(12, 0, 173)\",\"(12, 0, 174)\",\"(12, 0, 175)\",\"(12, 0, 176)\",\"(12, 0, 177)\",\"(12, 0, 178)\",\"(12, 0, 179)\",\"(12, 0, 180)\",\"(12, 0, 181)\",\"(12, 0, 182)\",\"(12, 0, 183)\",\"(12, 0, 184)\",\"(12, 0, 185)\",\"(12, 0, 186)\",\"(12, 0, 187)\",\"(12, 0, 188)\",\"(12, 0, 189)\",\"(12, 0, 190)\",\"(12, 0, 191)\",\"(12, 0, 192)\",\"(12, 0, 193)\",\"(12, 0, 194)\",\"(12, 0, 195)\",\"(12, 0, 196)\",\"(12, 0, 197)\",\"(12, 0, 198)\",\"(12, 0, 199)\",\"(12, 0, 200)\",\"(12, 0, 201)\",\"(12, 0, 202)\",\"(12, 0, 203)\",\"(12, 0, 204)\",\"(12, 0, 205)\",\"(12, 0, 206)\",\"(12, 0, 207)\",\"(12, 0, 208)\",\"(12, 0, 209)\",\"(12, 0, 210)\",\"(12, 0, 211)\",\"(12, 0, 212)\",\"(12, 0, 213)\",\"(12, 0, 214)\",\"(12, 0, 215)\",\"(12, 0, 216)\",\"(12, 0, 217)\",\"(12, 0, 218)\",\"(12, 0, 219)\",\"(12, 0, 220)\",\"(12, 0, 221)\",\"(12, 0, 222)\",\"(12, 0, 223)\",\"(12, 0, 224)\",\"(12, 0, 225)\",\"(12, 0, 226)\",\"(12, 0, 227)\",\"(12, 0, 228)\",\"(12, 0, 229)\",\"(12, 0, 230)\",\"(12, 0, 231)\",\"(12, 0, 232)\",\"(12, 0, 233)\",\"(12, 0, 234)\",\"(12, 0, 235)\",\"(12, 0, 236)\",\"(12, 0, 237)\",\"(12, 0, 238)\",\"(12, 0, 239)\",\"(12, 0, 240)\",\"(12, 0, 241)\",\"(12, 0, 242)\",\"(13, 0, 0)\",\"(13, 0, 1)\",\"(13, 0, 2)\",\"(13, 0, 3)\",\"(13, 0, 4)\",\"(13, 0, 5)\",\"(13, 0, 6)\",\"(13, 0, 7)\",\"(13, 0, 8)\",\"(13, 0, 9)\",\"(13, 0, 10)\",\"(13, 0, 11)\",\"(13, 0, 12)\",\"(13, 0, 13)\",\"(13, 0, 14)\",\"(13, 0, 15)\",\"(13, 0, 16)\",\"(13, 0, 17)\",\"(13, 0, 18)\",\"(13, 0, 19)\",\"(13, 0, 20)\",\"(13, 0, 21)\",\"(13, 0, 22)\",\"(13, 0, 23)\",\"(13, 0, 24)\",\"(13, 0, 25)\",\"(13, 0, 26)\",\"(13, 0, 27)\",\"(13, 0, 28)\",\"(13, 0, 29)\",\"(13, 0, 30)\",\"(13, 0, 31)\",\"(13, 0, 32)\",\"(13, 0, 33)\",\"(13, 0, 34)\",\"(13, 0, 35)\",\"(13, 0, 36)\",\"(13, 0, 37)\",\"(13, 0, 38)\",\"(13, 0, 39)\",\"(13, 0, 40)\",\"(13, 0, 41)\",\"(13, 0, 42)\",\"(13, 0, 43)\",\"(13, 0, 44)\",\"(13, 0, 45)\",\"(13, 0, 46)\",\"(13, 0, 47)\",\"(13, 0, 48)\",\"(13, 0, 49)\",\"(13, 0, 50)\",\"(13, 0, 51)\",\"(13, 0, 52)\",\"(13, 0, 53)\",\"(13, 0, 54)\",\"(13, 0, 55)\",\"(13, 0, 56)\",\"(13, 0, 57)\",\"(13, 0, 58)\",\"(13, 0, 59)\",\"(13, 0, 60)\",\"(13, 0, 61)\",\"(13, 0, 62)\",\"(13, 0, 63)\",\"(13, 0, 64)\",\"(13, 0, 65)\",\"(13, 0, 66)\",\"(13, 0, 67)\",\"(13, 0, 68)\",\"(13, 0, 69)\",\"(13, 0, 70)\",\"(13, 0, 71)\",\"(13, 0, 72)\",\"(13, 0, 73)\",\"(13, 0, 74)\",\"(13, 0, 75)\",\"(13, 0, 76)\",\"(13, 0, 77)\",\"(13, 0, 78)\",\"(13, 0, 79)\",\"(13, 0, 80)\",\"(14, 0, 0)\",\"(14, 0, 1)\",\"(14, 0, 2)\",\"(14, 0, 3)\",\"(14, 0, 4)\",\"(14, 0, 5)\",\"(14, 0, 6)\",\"(14, 0, 7)\",\"(14, 0, 8)\",\"(14, 0, 9)\",\"(14, 0, 10)\",\"(14, 0, 11)\",\"(14, 0, 12)\",\"(14, 0, 13)\",\"(14, 0, 14)\",\"(14, 0, 15)\",\"(14, 0, 16)\",\"(14, 0, 17)\",\"(14, 0, 18)\",\"(14, 0, 19)\",\"(14, 0, 20)\",\"(14, 0, 21)\",\"(14, 0, 22)\",\"(14, 0, 23)\",\"(14, 0, 24)\",\"(14, 0, 25)\",\"(14, 0, 26)\",\"(15, 0, 0)\",\"(15, 0, 1)\",\"(15, 0, 2)\",\"(15, 0, 3)\",\"(15, 0, 4)\",\"(15, 0, 5)\",\"(15, 0, 6)\",\"(15, 0, 7)\",\"(15, 0, 8)\",\"(15, 0, 9)\",\"(15, 0, 10)\",\"(15, 0, 11)\",\"(15, 0, 12)\",\"(15, 0, 13)\",\"(15, 0, 14)\",\"(15, 0, 15)\",\"(15, 0, 16)\",\"(15, 0, 17)\",\"(16, 0, 0)\",\"(16, 0, 1)\",\"(16, 0, 2)\",\"(16, 0, 3)\",\"(16, 0, 4)\",\"(16, 0, 5)\",\"(16, 0, 6)\",\"(16, 0, 7)\",\"(16, 0, 8)\",\"(17, 0, 0)\",\"(17, 0, 1)\",\"(17, 0, 2)\",\"(17, 0, 3)\",\"(17, 0, 4)\",\"(17, 0, 5)\",\"(18, 0, 0)\",\"(18, 0, 1)\",\"(18, 0, 2)\",\"(18, 0, 3)\",\"(18, 0, 4)\",\"(18, 0, 5)\",\"(18, 0, 6)\",\"(18, 0, 7)\",\"(18, 0, 8)\",\"(18, 0, 9)\",\"(18, 0, 10)\",\"(18, 0, 11)\",\"(18, 0, 12)\",\"(18, 0, 13)\",\"(18, 0, 14)\",\"(18, 0, 15)\",\"(18, 0, 16)\",\"(18, 0, 17)\",\"(18, 0, 18)\",\"(18, 0, 19)\",\"(18, 0, 20)\",\"(18, 0, 21)\",\"(18, 0, 22)\",\"(18, 0, 23)\",\"(18, 0, 24)\",\"(18, 0, 25)\",\"(18, 0, 26)\",\"(18, 0, 27)\",\"(18, 0, 28)\",\"(18, 0, 29)\",\"(18, 0, 30)\",\"(18, 0, 31)\",\"(18, 0, 32)\",\"(18, 0, 33)\",\"(18, 0, 34)\",\"(18, 0, 35)\",\"(18, 0, 36)\",\"(18, 0, 37)\",\"(18, 0, 38)\",\"(18, 0, 39)\",\"(18, 0, 40)\",\"(18, 0, 41)\",\"(18, 0, 42)\",\"(18, 0, 43)\",\"(18, 0, 44)\",\"(18, 0, 45)\",\"(18, 0, 46)\",\"(18, 0, 47)\",\"(18, 0, 48)\",\"(18, 0, 49)\",\"(18, 0, 50)\",\"(18, 0, 51)\",\"(18, 0, 52)\",\"(18, 0, 53)\",\"(18, 0, 54)\",\"(18, 0, 55)\",\"(18, 0, 56)\",\"(18, 0, 57)\",\"(18, 0, 58)\",\"(18, 0, 59)\",\"(18, 0, 60)\",\"(18, 0, 61)\",\"(18, 0, 62)\",\"(18, 0, 63)\",\"(18, 0, 64)\",\"(18, 0, 65)\",\"(18, 0, 66)\",\"(18, 0, 67)\",\"(18, 0, 68)\",\"(18, 0, 69)\",\"(18, 0, 70)\",\"(18, 0, 71)\",\"(18, 0, 72)\",\"(18, 0, 73)\",\"(18, 0, 74)\",\"(18, 0, 75)\",\"(18, 0, 76)\",\"(18, 0, 77)\",\"(18, 0, 78)\",\"(18, 0, 79)\",\"(18, 0, 80)\",\"(18, 0, 81)\",\"(18, 0, 82)\",\"(18, 0, 83)\",\"(18, 0, 84)\",\"(18, 0, 85)\",\"(18, 0, 86)\",\"(18, 0, 87)\",\"(18, 0, 88)\",\"(18, 0, 89)\",\"(18, 0, 90)\",\"(18, 0, 91)\",\"(18, 0, 92)\",\"(18, 0, 93)\",\"(18, 0, 94)\",\"(18, 0, 95)\",\"(18, 0, 96)\",\"(18, 0, 97)\",\"(18, 0, 98)\",\"(18, 0, 99)\",\"(18, 0, 100)\",\"(18, 0, 101)\",\"(18, 0, 102)\",\"(18, 0, 103)\",\"(18, 0, 104)\",\"(18, 0, 105)\",\"(18, 0, 106)\",\"(18, 0, 107)\",\"(18, 0, 108)\",\"(18, 0, 109)\",\"(18, 0, 110)\",\"(18, 0, 111)\",\"(18, 0, 112)\",\"(18, 0, 113)\",\"(18, 0, 114)\",\"(18, 0, 115)\",\"(18, 0, 116)\",\"(18, 0, 117)\",\"(18, 0, 118)\",\"(18, 0, 119)\",\"(18, 0, 120)\",\"(18, 0, 121)\",\"(18, 0, 122)\",\"(18, 0, 123)\",\"(18, 0, 124)\",\"(18, 0, 125)\",\"(18, 0, 126)\",\"(18, 0, 127)\",\"(18, 0, 128)\",\"(18, 0, 129)\",\"(18, 0, 130)\",\"(18, 0, 131)\",\"(18, 0, 132)\",\"(18, 0, 133)\",\"(18, 0, 134)\",\"(18, 0, 135)\",\"(18, 0, 136)\",\"(18, 0, 137)\",\"(18, 0, 138)\",\"(18, 0, 139)\",\"(18, 0, 140)\",\"(18, 0, 141)\",\"(18, 0, 142)\",\"(18, 0, 143)\",\"(18, 0, 144)\",\"(18, 0, 145)\",\"(18, 0, 146)\",\"(18, 0, 147)\",\"(18, 0, 148)\",\"(18, 0, 149)\",\"(18, 0, 150)\",\"(18, 0, 151)\",\"(18, 0, 152)\",\"(18, 0, 153)\",\"(18, 0, 154)\",\"(18, 0, 155)\",\"(18, 0, 156)\",\"(18, 0, 157)\",\"(18, 0, 158)\",\"(18, 0, 159)\",\"(18, 0, 160)\",\"(18, 0, 161)\",\"(18, 0, 162)\",\"(18, 0, 163)\",\"(18, 0, 164)\",\"(18, 0, 165)\",\"(18, 0, 166)\",\"(18, 0, 167)\",\"(18, 0, 168)\",\"(18, 0, 169)\",\"(18, 0, 170)\",\"(18, 0, 171)\",\"(18, 0, 172)\",\"(18, 0, 173)\",\"(18, 0, 174)\",\"(18, 0, 175)\",\"(18, 0, 176)\",\"(18, 0, 177)\",\"(18, 0, 178)\",\"(18, 0, 179)\",\"(18, 0, 180)\",\"(18, 0, 181)\",\"(18, 0, 182)\",\"(18, 0, 183)\",\"(18, 0, 184)\",\"(18, 0, 185)\",\"(18, 0, 186)\",\"(18, 0, 187)\",\"(18, 0, 188)\",\"(18, 0, 189)\",\"(18, 0, 190)\",\"(18, 0, 191)\",\"(18, 0, 192)\",\"(18, 0, 193)\",\"(18, 0, 194)\",\"(18, 0, 195)\",\"(18, 0, 196)\",\"(18, 0, 197)\",\"(18, 0, 198)\",\"(18, 0, 199)\",\"(18, 0, 200)\",\"(18, 0, 201)\",\"(18, 0, 202)\",\"(18, 0, 203)\",\"(18, 0, 204)\",\"(18, 0, 205)\",\"(18, 0, 206)\",\"(18, 0, 207)\",\"(18, 0, 208)\",\"(18, 0, 209)\",\"(18, 0, 210)\",\"(18, 0, 211)\",\"(18, 0, 212)\",\"(18, 0, 213)\",\"(18, 0, 214)\",\"(18, 0, 215)\",\"(18, 0, 216)\",\"(18, 0, 217)\",\"(18, 0, 218)\",\"(18, 0, 219)\",\"(18, 0, 220)\",\"(18, 0, 221)\",\"(18, 0, 222)\",\"(18, 0, 223)\",\"(18, 0, 224)\",\"(18, 0, 225)\",\"(18, 0, 226)\",\"(18, 0, 227)\",\"(18, 0, 228)\",\"(18, 0, 229)\",\"(18, 0, 230)\",\"(18, 0, 231)\",\"(18, 0, 232)\",\"(18, 0, 233)\",\"(18, 0, 234)\",\"(18, 0, 235)\",\"(18, 0, 236)\",\"(18, 0, 237)\",\"(18, 0, 238)\",\"(18, 0, 239)\",\"(18, 0, 240)\",\"(18, 0, 241)\",\"(18, 0, 242)\",\"(19, 0, 0)\",\"(19, 0, 1)\",\"(19, 0, 2)\",\"(19, 0, 3)\",\"(19, 0, 4)\",\"(19, 0, 5)\",\"(19, 0, 6)\",\"(19, 0, 7)\",\"(19, 0, 8)\",\"(19, 0, 9)\",\"(19, 0, 10)\",\"(19, 0, 11)\",\"(19, 0, 12)\",\"(19, 0, 13)\",\"(19, 0, 14)\",\"(19, 0, 15)\",\"(19, 0, 16)\",\"(19, 0, 17)\",\"(19, 0, 18)\",\"(19, 0, 19)\",\"(19, 0, 20)\",\"(19, 0, 21)\",\"(19, 0, 22)\",\"(19, 0, 23)\",\"(19, 0, 24)\",\"(19, 0, 25)\",\"(19, 0, 26)\",\"(19, 0, 27)\",\"(19, 0, 28)\",\"(19, 0, 29)\",\"(19, 0, 30)\",\"(19, 0, 31)\",\"(19, 0, 32)\",\"(19, 0, 33)\",\"(19, 0, 34)\",\"(19, 0, 35)\",\"(19, 0, 36)\",\"(19, 0, 37)\",\"(19, 0, 38)\",\"(19, 0, 39)\",\"(19, 0, 40)\",\"(19, 0, 41)\",\"(19, 0, 42)\",\"(19, 0, 43)\",\"(19, 0, 44)\",\"(19, 0, 45)\",\"(19, 0, 46)\",\"(19, 0, 47)\",\"(19, 0, 48)\",\"(19, 0, 49)\",\"(19, 0, 50)\",\"(19, 0, 51)\",\"(19, 0, 52)\",\"(19, 0, 53)\",\"(19, 0, 54)\",\"(19, 0, 55)\",\"(19, 0, 56)\",\"(19, 0, 57)\",\"(19, 0, 58)\",\"(19, 0, 59)\",\"(19, 0, 60)\",\"(19, 0, 61)\",\"(19, 0, 62)\",\"(19, 0, 63)\",\"(19, 0, 64)\",\"(19, 0, 65)\",\"(19, 0, 66)\",\"(19, 0, 67)\",\"(19, 0, 68)\",\"(19, 0, 69)\",\"(19, 0, 70)\",\"(19, 0, 71)\",\"(19, 0, 72)\",\"(19, 0, 73)\",\"(19, 0, 74)\",\"(19, 0, 75)\",\"(19, 0, 76)\",\"(19, 0, 77)\",\"(19, 0, 78)\",\"(19, 0, 79)\",\"(19, 0, 80)\",\"(20, 0, 0)\",\"(20, 0, 1)\",\"(20, 0, 2)\",\"(20, 0, 3)\",\"(20, 0, 4)\",\"(20, 0, 5)\",\"(20, 0, 6)\",\"(20, 0, 7)\",\"(20, 0, 8)\",\"(20, 0, 9)\",\"(20, 0, 10)\",\"(20, 0, 11)\",\"(20, 0, 12)\",\"(20, 0, 13)\",\"(20, 0, 14)\",\"(20, 0, 15)\",\"(20, 0, 16)\",\"(20, 0, 17)\",\"(20, 0, 18)\",\"(20, 0, 19)\",\"(20, 0, 20)\",\"(20, 0, 21)\",\"(20, 0, 22)\",\"(20, 0, 23)\",\"(20, 0, 24)\",\"(20, 0, 25)\",\"(20, 0, 26)\",\"(21, 0, 0)\",\"(21, 0, 1)\",\"(21, 0, 2)\",\"(21, 0, 3)\",\"(21, 0, 4)\",\"(21, 0, 5)\",\"(21, 0, 6)\",\"(21, 0, 7)\",\"(21, 0, 8)\",\"(21, 0, 9)\",\"(21, 0, 10)\",\"(21, 0, 11)\",\"(21, 0, 12)\",\"(21, 0, 13)\",\"(21, 0, 14)\",\"(21, 0, 15)\",\"(21, 0, 16)\",\"(21, 0, 17)\",\"(22, 0, 0)\",\"(22, 0, 1)\",\"(22, 0, 2)\",\"(22, 0, 3)\",\"(22, 0, 4)\",\"(22, 0, 5)\",\"(22, 0, 6)\",\"(22, 0, 7)\",\"(22, 0, 8)\",\"(23, 0, 0)\",\"(23, 0, 1)\",\"(23, 0, 2)\",\"(23, 0, 3)\",\"(23, 0, 4)\",\"(23, 0, 5)\",\"(24, 0, 0)\",\"(24, 0, 1)\",\"(24, 0, 2)\",\"(24, 0, 3)\",\"(24, 0, 4)\",\"(24, 0, 5)\",\"(24, 0, 6)\",\"(24, 0, 7)\",\"(24, 0, 8)\",\"(24, 0, 9)\",\"(24, 0, 10)\",\"(24, 0, 11)\",\"(24, 0, 12)\",\"(24, 0, 13)\",\"(24, 0, 14)\",\"(24, 0, 15)\",\"(24, 0, 16)\",\"(24, 0, 17)\",\"(24, 0, 18)\",\"(24, 0, 19)\",\"(24, 0, 20)\",\"(24, 0, 21)\",\"(24, 0, 22)\",\"(24, 0, 23)\",\"(24, 0, 24)\",\"(24, 0, 25)\",\"(24, 0, 26)\",\"(24, 0, 27)\",\"(24, 0, 28)\",\"(24, 0, 29)\",\"(24, 0, 30)\",\"(24, 0, 31)\",\"(24, 0, 32)\",\"(24, 0, 33)\",\"(24, 0, 34)\",\"(24, 0, 35)\",\"(24, 0, 36)\",\"(24, 0, 37)\",\"(24, 0, 38)\",\"(24, 0, 39)\",\"(24, 0, 40)\",\"(24, 0, 41)\",\"(24, 0, 42)\",\"(24, 0, 43)\",\"(24, 0, 44)\",\"(24, 0, 45)\",\"(24, 0, 46)\",\"(24, 0, 47)\",\"(24, 0, 48)\",\"(24, 0, 49)\",\"(24, 0, 50)\",\"(24, 0, 51)\",\"(24, 0, 52)\",\"(24, 0, 53)\",\"(24, 0, 54)\",\"(24, 0, 55)\",\"(24, 0, 56)\",\"(24, 0, 57)\",\"(24, 0, 58)\",\"(24, 0, 59)\",\"(24, 0, 60)\",\"(24, 0, 61)\",\"(24, 0, 62)\",\"(24, 0, 63)\",\"(24, 0, 64)\",\"(24, 0, 65)\",\"(24, 0, 66)\",\"(24, 0, 67)\",\"(24, 0, 68)\",\"(24, 0, 69)\",\"(24, 0, 70)\",\"(24, 0, 71)\",\"(24, 0, 72)\",\"(24, 0, 73)\",\"(24, 0, 74)\",\"(24, 0, 75)\",\"(24, 0, 76)\",\"(24, 0, 77)\",\"(24, 0, 78)\",\"(24, 0, 79)\",\"(24, 0, 80)\",\"(24, 0, 81)\",\"(24, 0, 82)\",\"(24, 0, 83)\",\"(24, 0, 84)\",\"(24, 0, 85)\",\"(24, 0, 86)\",\"(24, 0, 87)\",\"(24, 0, 88)\",\"(24, 0, 89)\",\"(24, 0, 90)\",\"(24, 0, 91)\",\"(24, 0, 92)\",\"(24, 0, 93)\",\"(24, 0, 94)\",\"(24, 0, 95)\",\"(24, 0, 96)\",\"(24, 0, 97)\",\"(24, 0, 98)\",\"(24, 0, 99)\",\"(24, 0, 100)\",\"(24, 0, 101)\",\"(24, 0, 102)\",\"(24, 0, 103)\",\"(24, 0, 104)\",\"(24, 0, 105)\",\"(24, 0, 106)\",\"(24, 0, 107)\",\"(24, 0, 108)\",\"(24, 0, 109)\",\"(24, 0, 110)\",\"(24, 0, 111)\",\"(24, 0, 112)\",\"(24, 0, 113)\",\"(24, 0, 114)\",\"(24, 0, 115)\",\"(24, 0, 116)\",\"(24, 0, 117)\",\"(24, 0, 118)\",\"(24, 0, 119)\",\"(24, 0, 120)\",\"(24, 0, 121)\",\"(24, 0, 122)\",\"(24, 0, 123)\",\"(24, 0, 124)\",\"(24, 0, 125)\",\"(24, 0, 126)\",\"(24, 0, 127)\",\"(24, 0, 128)\",\"(24, 0, 129)\",\"(24, 0, 130)\",\"(24, 0, 131)\",\"(24, 0, 132)\",\"(24, 0, 133)\",\"(24, 0, 134)\",\"(24, 0, 135)\",\"(24, 0, 136)\",\"(24, 0, 137)\",\"(24, 0, 138)\",\"(24, 0, 139)\",\"(24, 0, 140)\",\"(24, 0, 141)\",\"(24, 0, 142)\",\"(24, 0, 143)\",\"(24, 0, 144)\",\"(24, 0, 145)\",\"(24, 0, 146)\",\"(24, 0, 147)\",\"(24, 0, 148)\",\"(24, 0, 149)\",\"(24, 0, 150)\",\"(24, 0, 151)\",\"(24, 0, 152)\",\"(24, 0, 153)\",\"(24, 0, 154)\",\"(24, 0, 155)\",\"(24, 0, 156)\",\"(24, 0, 157)\",\"(24, 0, 158)\",\"(24, 0, 159)\",\"(24, 0, 160)\",\"(24, 0, 161)\",\"(24, 0, 162)\",\"(24, 0, 163)\",\"(24, 0, 164)\",\"(24, 0, 165)\",\"(24, 0, 166)\",\"(24, 0, 167)\",\"(24, 0, 168)\",\"(24, 0, 169)\",\"(24, 0, 170)\",\"(24, 0, 171)\",\"(24, 0, 172)\",\"(24, 0, 173)\",\"(24, 0, 174)\",\"(24, 0, 175)\",\"(24, 0, 176)\",\"(24, 0, 177)\",\"(24, 0, 178)\",\"(24, 0, 179)\",\"(24, 0, 180)\",\"(24, 0, 181)\",\"(24, 0, 182)\",\"(24, 0, 183)\",\"(24, 0, 184)\",\"(24, 0, 185)\",\"(24, 0, 186)\",\"(24, 0, 187)\",\"(24, 0, 188)\",\"(24, 0, 189)\",\"(24, 0, 190)\",\"(24, 0, 191)\",\"(24, 0, 192)\",\"(24, 0, 193)\",\"(24, 0, 194)\",\"(24, 0, 195)\",\"(24, 0, 196)\",\"(24, 0, 197)\",\"(24, 0, 198)\",\"(24, 0, 199)\",\"(24, 0, 200)\",\"(24, 0, 201)\",\"(24, 0, 202)\",\"(24, 0, 203)\",\"(24, 0, 204)\",\"(24, 0, 205)\",\"(24, 0, 206)\",\"(24, 0, 207)\",\"(24, 0, 208)\",\"(24, 0, 209)\",\"(24, 0, 210)\",\"(24, 0, 211)\",\"(24, 0, 212)\",\"(24, 0, 213)\",\"(24, 0, 214)\",\"(24, 0, 215)\",\"(24, 0, 216)\",\"(24, 0, 217)\",\"(24, 0, 218)\",\"(24, 0, 219)\",\"(24, 0, 220)\",\"(24, 0, 221)\",\"(24, 0, 222)\",\"(24, 0, 223)\",\"(24, 0, 224)\",\"(24, 0, 225)\",\"(24, 0, 226)\",\"(24, 0, 227)\",\"(24, 0, 228)\",\"(24, 0, 229)\",\"(24, 0, 230)\",\"(24, 0, 231)\",\"(24, 0, 232)\",\"(24, 0, 233)\",\"(24, 0, 234)\",\"(24, 0, 235)\",\"(24, 0, 236)\",\"(24, 0, 237)\",\"(24, 0, 238)\",\"(24, 0, 239)\",\"(24, 0, 240)\",\"(24, 0, 241)\",\"(24, 0, 242)\",\"(25, 0, 0)\",\"(25, 0, 1)\",\"(25, 0, 2)\",\"(25, 0, 3)\",\"(25, 0, 4)\",\"(25, 0, 5)\",\"(25, 0, 6)\",\"(25, 0, 7)\",\"(25, 0, 8)\",\"(25, 0, 9)\",\"(25, 0, 10)\",\"(25, 0, 11)\",\"(25, 0, 12)\",\"(25, 0, 13)\",\"(25, 0, 14)\",\"(25, 0, 15)\",\"(25, 0, 16)\",\"(25, 0, 17)\",\"(25, 0, 18)\",\"(25, 0, 19)\",\"(25, 0, 20)\",\"(25, 0, 21)\",\"(25, 0, 22)\",\"(25, 0, 23)\",\"(25, 0, 24)\",\"(25, 0, 25)\",\"(25, 0, 26)\",\"(25, 0, 27)\",\"(25, 0, 28)\",\"(25, 0, 29)\",\"(25, 0, 30)\",\"(25, 0, 31)\",\"(25, 0, 32)\",\"(25, 0, 33)\",\"(25, 0, 34)\",\"(25, 0, 35)\",\"(25, 0, 36)\",\"(25, 0, 37)\",\"(25, 0, 38)\",\"(25, 0, 39)\",\"(25, 0, 40)\",\"(25, 0, 41)\",\"(25, 0, 42)\",\"(25, 0, 43)\",\"(25, 0, 44)\",\"(25, 0, 45)\",\"(25, 0, 46)\",\"(25, 0, 47)\",\"(25, 0, 48)\",\"(25, 0, 49)\",\"(25, 0, 50)\",\"(25, 0, 51)\",\"(25, 0, 52)\",\"(25, 0, 53)\",\"(25, 0, 54)\",\"(25, 0, 55)\",\"(25, 0, 56)\",\"(25, 0, 57)\",\"(25, 0, 58)\",\"(25, 0, 59)\",\"(25, 0, 60)\",\"(25, 0, 61)\",\"(25, 0, 62)\",\"(25, 0, 63)\",\"(25, 0, 64)\",\"(25, 0, 65)\",\"(25, 0, 66)\",\"(25, 0, 67)\",\"(25, 0, 68)\",\"(25, 0, 69)\",\"(25, 0, 70)\",\"(25, 0, 71)\",\"(25, 0, 72)\",\"(25, 0, 73)\",\"(25, 0, 74)\",\"(25, 0, 75)\",\"(25, 0, 76)\",\"(25, 0, 77)\",\"(25, 0, 78)\",\"(25, 0, 79)\",\"(25, 0, 80)\",\"(26, 0, 0)\",\"(26, 0, 1)\",\"(26, 0, 2)\",\"(26, 0, 3)\",\"(26, 0, 4)\",\"(26, 0, 5)\",\"(26, 0, 6)\",\"(26, 0, 7)\",\"(26, 0, 8)\",\"(26, 0, 9)\",\"(26, 0, 10)\",\"(26, 0, 11)\",\"(26, 0, 12)\",\"(26, 0, 13)\",\"(26, 0, 14)\",\"(26, 0, 15)\",\"(26, 0, 16)\",\"(26, 0, 17)\",\"(26, 0, 18)\",\"(26, 0, 19)\",\"(26, 0, 20)\",\"(26, 0, 21)\",\"(26, 0, 22)\",\"(26, 0, 23)\",\"(26, 0, 24)\",\"(26, 0, 25)\",\"(26, 0, 26)\",\"(27, 0, 0)\",\"(27, 0, 1)\",\"(27, 0, 2)\",\"(27, 0, 3)\",\"(27, 0, 4)\",\"(27, 0, 5)\",\"(27, 0, 6)\",\"(27, 0, 7)\",\"(27, 0, 8)\",\"(27, 0, 9)\",\"(27, 0, 10)\",\"(27, 0, 11)\",\"(27, 0, 12)\",\"(27, 0, 13)\",\"(27, 0, 14)\",\"(27, 0, 15)\",\"(27, 0, 16)\",\"(27, 0, 17)\",\"(28, 0, 0)\",\"(28, 0, 1)\",\"(28, 0, 2)\",\"(28, 0, 3)\",\"(28, 0, 4)\",\"(28, 0, 5)\",\"(28, 0, 6)\",\"(28, 0, 7)\",\"(28, 0, 8)\",\"(29, 0, 0)\",\"(29, 0, 1)\",\"(29, 0, 2)\",\"(29, 0, 3)\",\"(29, 0, 4)\",\"(29, 0, 5)\",\"(30, 0, 0)\",\"(30, 0, 1)\",\"(30, 0, 2)\",\"(30, 0, 3)\",\"(30, 0, 4)\",\"(30, 0, 5)\",\"(30, 0, 6)\",\"(30, 0, 7)\",\"(30, 0, 8)\",\"(30, 0, 9)\",\"(30, 0, 10)\",\"(30, 0, 11)\",\"(30, 0, 12)\",\"(30, 0, 13)\",\"(30, 0, 14)\",\"(30, 0, 15)\",\"(30, 0, 16)\",\"(30, 0, 17)\",\"(30, 0, 18)\",\"(30, 0, 19)\",\"(30, 0, 20)\",\"(30, 0, 21)\",\"(30, 0, 22)\",\"(30, 0, 23)\",\"(30, 0, 24)\",\"(30, 0, 25)\",\"(30, 0, 26)\",\"(30, 0, 27)\",\"(30, 0, 28)\",\"(30, 0, 29)\",\"(30, 0, 30)\",\"(30, 0, 31)\",\"(30, 0, 32)\",\"(30, 0, 33)\",\"(30, 0, 34)\",\"(30, 0, 35)\",\"(30, 0, 36)\",\"(30, 0, 37)\",\"(30, 0, 38)\",\"(30, 0, 39)\",\"(30, 0, 40)\",\"(30, 0, 41)\",\"(30, 0, 42)\",\"(30, 0, 43)\",\"(30, 0, 44)\",\"(30, 0, 45)\",\"(30, 0, 46)\",\"(30, 0, 47)\",\"(30, 0, 48)\",\"(30, 0, 49)\",\"(30, 0, 50)\",\"(30, 0, 51)\",\"(30, 0, 52)\",\"(30, 0, 53)\",\"(30, 0, 54)\",\"(30, 0, 55)\",\"(30, 0, 56)\",\"(30, 0, 57)\",\"(30, 0, 58)\",\"(30, 0, 59)\",\"(30, 0, 60)\",\"(30, 0, 61)\",\"(30, 0, 62)\",\"(30, 0, 63)\",\"(30, 0, 64)\",\"(30, 0, 65)\",\"(30, 0, 66)\",\"(30, 0, 67)\",\"(30, 0, 68)\",\"(30, 0, 69)\",\"(30, 0, 70)\",\"(30, 0, 71)\",\"(30, 0, 72)\",\"(30, 0, 73)\",\"(30, 0, 74)\",\"(30, 0, 75)\",\"(30, 0, 76)\",\"(30, 0, 77)\",\"(30, 0, 78)\",\"(30, 0, 79)\",\"(30, 0, 80)\",\"(30, 0, 81)\",\"(30, 0, 82)\",\"(30, 0, 83)\",\"(30, 0, 84)\",\"(30, 0, 85)\",\"(30, 0, 86)\",\"(30, 0, 87)\",\"(30, 0, 88)\",\"(30, 0, 89)\",\"(30, 0, 90)\",\"(30, 0, 91)\",\"(30, 0, 92)\",\"(30, 0, 93)\",\"(30, 0, 94)\",\"(30, 0, 95)\",\"(30, 0, 96)\",\"(30, 0, 97)\",\"(30, 0, 98)\",\"(30, 0, 99)\",\"(30, 0, 100)\",\"(30, 0, 101)\",\"(30, 0, 102)\",\"(30, 0, 103)\",\"(30, 0, 104)\",\"(30, 0, 105)\",\"(30, 0, 106)\",\"(30, 0, 107)\",\"(30, 0, 108)\",\"(30, 0, 109)\",\"(30, 0, 110)\",\"(30, 0, 111)\",\"(30, 0, 112)\",\"(30, 0, 113)\",\"(30, 0, 114)\",\"(30, 0, 115)\",\"(30, 0, 116)\",\"(30, 0, 117)\",\"(30, 0, 118)\",\"(30, 0, 119)\",\"(30, 0, 120)\",\"(30, 0, 121)\",\"(30, 0, 122)\",\"(30, 0, 123)\",\"(30, 0, 124)\",\"(30, 0, 125)\",\"(30, 0, 126)\",\"(30, 0, 127)\",\"(30, 0, 128)\",\"(30, 0, 129)\",\"(30, 0, 130)\",\"(30, 0, 131)\",\"(30, 0, 132)\",\"(30, 0, 133)\",\"(30, 0, 134)\",\"(30, 0, 135)\",\"(30, 0, 136)\",\"(30, 0, 137)\",\"(30, 0, 138)\",\"(30, 0, 139)\",\"(30, 0, 140)\",\"(30, 0, 141)\",\"(30, 0, 142)\",\"(30, 0, 143)\",\"(30, 0, 144)\",\"(30, 0, 145)\",\"(30, 0, 146)\",\"(30, 0, 147)\",\"(30, 0, 148)\",\"(30, 0, 149)\",\"(30, 0, 150)\",\"(30, 0, 151)\",\"(30, 0, 152)\",\"(30, 0, 153)\",\"(30, 0, 154)\",\"(30, 0, 155)\",\"(30, 0, 156)\",\"(30, 0, 157)\",\"(30, 0, 158)\",\"(30, 0, 159)\",\"(30, 0, 160)\",\"(30, 0, 161)\",\"(30, 0, 162)\",\"(30, 0, 163)\",\"(30, 0, 164)\",\"(30, 0, 165)\",\"(30, 0, 166)\",\"(30, 0, 167)\",\"(30, 0, 168)\",\"(30, 0, 169)\",\"(30, 0, 170)\",\"(30, 0, 171)\",\"(30, 0, 172)\",\"(30, 0, 173)\",\"(30, 0, 174)\",\"(30, 0, 175)\",\"(30, 0, 176)\",\"(30, 0, 177)\",\"(30, 0, 178)\",\"(30, 0, 179)\",\"(30, 0, 180)\",\"(30, 0, 181)\",\"(30, 0, 182)\",\"(30, 0, 183)\",\"(30, 0, 184)\",\"(30, 0, 185)\",\"(30, 0, 186)\",\"(30, 0, 187)\",\"(30, 0, 188)\",\"(30, 0, 189)\",\"(30, 0, 190)\",\"(30, 0, 191)\",\"(30, 0, 192)\",\"(30, 0, 193)\",\"(30, 0, 194)\",\"(30, 0, 195)\",\"(30, 0, 196)\",\"(30, 0, 197)\",\"(30, 0, 198)\",\"(30, 0, 199)\",\"(30, 0, 200)\",\"(30, 0, 201)\",\"(30, 0, 202)\",\"(30, 0, 203)\",\"(30, 0, 204)\",\"(30, 0, 205)\",\"(30, 0, 206)\",\"(30, 0, 207)\",\"(30, 0, 208)\",\"(30, 0, 209)\",\"(30, 0, 210)\",\"(30, 0, 211)\",\"(30, 0, 212)\",\"(30, 0, 213)\",\"(30, 0, 214)\",\"(30, 0, 215)\",\"(30, 0, 216)\",\"(30, 0, 217)\",\"(30, 0, 218)\",\"(30, 0, 219)\",\"(30, 0, 220)\",\"(30, 0, 221)\",\"(30, 0, 222)\",\"(30, 0, 223)\",\"(30, 0, 224)\",\"(30, 0, 225)\",\"(30, 0, 226)\",\"(30, 0, 227)\",\"(30, 0, 228)\",\"(30, 0, 229)\",\"(30, 0, 230)\",\"(30, 0, 231)\",\"(30, 0, 232)\",\"(30, 0, 233)\",\"(30, 0, 234)\",\"(30, 0, 235)\",\"(30, 0, 236)\",\"(30, 0, 237)\",\"(30, 0, 238)\",\"(30, 0, 239)\",\"(30, 0, 240)\",\"(30, 0, 241)\",\"(30, 0, 242)\",\"(31, 0, 0)\",\"(31, 0, 1)\",\"(31, 0, 2)\",\"(31, 0, 3)\",\"(31, 0, 4)\",\"(31, 0, 5)\",\"(31, 0, 6)\",\"(31, 0, 7)\",\"(31, 0, 8)\",\"(31, 0, 9)\",\"(31, 0, 10)\",\"(31, 0, 11)\",\"(31, 0, 12)\",\"(31, 0, 13)\",\"(31, 0, 14)\",\"(31, 0, 15)\",\"(31, 0, 16)\",\"(31, 0, 17)\",\"(31, 0, 18)\",\"(31, 0, 19)\",\"(31, 0, 20)\",\"(31, 0, 21)\",\"(31, 0, 22)\",\"(31, 0, 23)\",\"(31, 0, 24)\",\"(31, 0, 25)\",\"(31, 0, 26)\",\"(31, 0, 27)\",\"(31, 0, 28)\",\"(31, 0, 29)\",\"(31, 0, 30)\",\"(31, 0, 31)\",\"(31, 0, 32)\",\"(31, 0, 33)\",\"(31, 0, 34)\",\"(31, 0, 35)\",\"(31, 0, 36)\",\"(31, 0, 37)\",\"(31, 0, 38)\",\"(31, 0, 39)\",\"(31, 0, 40)\",\"(31, 0, 41)\",\"(31, 0, 42)\",\"(31, 0, 43)\",\"(31, 0, 44)\",\"(31, 0, 45)\",\"(31, 0, 46)\",\"(31, 0, 47)\",\"(31, 0, 48)\",\"(31, 0, 49)\",\"(31, 0, 50)\",\"(31, 0, 51)\",\"(31, 0, 52)\",\"(31, 0, 53)\",\"(31, 0, 54)\",\"(31, 0, 55)\",\"(31, 0, 56)\",\"(31, 0, 57)\",\"(31, 0, 58)\",\"(31, 0, 59)\",\"(31, 0, 60)\",\"(31, 0, 61)\",\"(31, 0, 62)\",\"(31, 0, 63)\",\"(31, 0, 64)\",\"(31, 0, 65)\",\"(31, 0, 66)\",\"(31, 0, 67)\",\"(31, 0, 68)\",\"(31, 0, 69)\",\"(31, 0, 70)\",\"(31, 0, 71)\",\"(31, 0, 72)\",\"(31, 0, 73)\",\"(31, 0, 74)\",\"(31, 0, 75)\",\"(31, 0, 76)\",\"(31, 0, 77)\",\"(31, 0, 78)\",\"(31, 0, 79)\",\"(31, 0, 80)\"],\"config_info\":[\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\"],\"duration\":[0.02735114097595215,0.029101133346557617,0.021887779235839844,0.02600860595703125,0.02417135238647461,0.0418696403503418,0.03232097625732422,0.03471565246582031,0.027209997177124023,0.01741814613342285,0.02731490135192871,0.021733760833740234,0.03848743438720703,0.03444719314575195,0.027320384979248047,0.0335078239440918,0.047091007232666016,0.041289567947387695,0.036466121673583984,0.02857518196105957,0.02842402458190918,0.040688514709472656,0.02433943748474121,0.037073373794555664,0.029100418090820312,0.02924799919128418,0.028024673461914062,0.024789810180664062,0.03141665458679199,0.029238224029541016,0.05010724067687988,0.02811741828918457,0.05246448516845703,0.03863191604614258,0.0288546085357666,0.014179706573486328,0.026204586029052734,0.030404090881347656,0.03260469436645508,0.02130436897277832,0.026648521423339844,0.027103424072265625,0.019925355911254883,0.019120216369628906,0.028751611709594727,0.023546457290649414,0.0166623592376709,0.019289255142211914,0.015014886856079102,0.02306342124938965,0.015514373779296875,0.023374319076538086,0.02396988868713379,0.03274798393249512,0.023764371871948242,0.02348017692565918,0.02829599380493164,0.014193058013916016,0.024212360382080078,0.02564835548400879,0.015232086181640625,0.040228843688964844,0.022456645965576172,0.023456811904907227,0.015063285827636719,0.03301239013671875,0.03165626525878906,0.02762436866760254,0.03207588195800781,0.038805484771728516,0.042748451232910156,0.026046037673950195,0.026832103729248047,0.026651382446289062,0.03902864456176758,0.0351862907409668,0.015130043029785156,0.03213047981262207,0.025720596313476562,0.02277684211730957,0.03285551071166992,0.03756260871887207,0.025728464126586914,0.038825035095214844,0.044664621353149414,0.030246734619140625,0.019878625869750977,0.04718637466430664,0.034960269927978516,0.02283024787902832,0.015224933624267578,0.04385209083557129,0.0402989387512207,0.026955366134643555,0.025162458419799805,0.04158139228820801,0.03900718688964844,0.018368244171142578,0.020905017852783203,0.01873183250427246,0.029836654663085938,0.027221202850341797,0.042549848556518555,0.039551496505737305,0.047496795654296875,0.03447222709655762,0.0264737606048584,0.04255175590515137,0.02819085121154785,0.034078359603881836,0.027848482131958008,0.03702402114868164,0.02734851837158203,0.03330349922180176,0.03753781318664551,0.024662256240844727,0.02666306495666504,0.035758256912231445,0.03707766532897949,0.03281211853027344,0.0386807918548584,0.03709673881530762,0.029095172882080078,0.04410123825073242,0.03471851348876953,0.02464580535888672,0.040367841720581055,0.02172231674194336,0.03255462646484375,0.03139042854309082,0.04560589790344238,0.029748916625976562,0.03916525840759277,0.026894330978393555,0.031464576721191406,0.022194385528564453,0.03068375587463379,0.023792028427124023,0.021226167678833008,0.03260040283203125,0.022830963134765625,0.03189277648925781,0.02899479866027832,0.04011130332946777,0.04745078086853027,0.02950143814086914,0.0397341251373291,0.03356766700744629,0.03874802589416504,0.023839950561523438,0.03934311866760254,0.037786006927490234,0.025887012481689453,0.025651216506958008,0.01645660400390625,0.01793646812438965,0.03348422050476074,0.04345202445983887,0.02641010284423828,0.021341562271118164,0.03527116775512695,0.030626535415649414,0.018996238708496094,0.034600257873535156,0.029514789581298828,0.02947545051574707,0.020025968551635742,0.02446770668029785,0.02545022964477539,0.02696371078491211,0.032222747802734375,0.0326235294342041,0.02967214584350586,0.03724956512451172,0.0341646671295166,0.03202104568481445,0.035021066665649414,0.020435333251953125,0.029893159866333008,0.02185678482055664,0.026419878005981445,0.028783321380615234,0.015402555465698242,0.035537004470825195,0.020337343215942383,0.03231406211853027,0.04243946075439453,0.030641794204711914,0.02218008041381836,0.029880523681640625,0.021550416946411133,0.01880931854248047,0.019987821578979492,0.04154515266418457,0.028805017471313477,0.02722454071044922,0.03020000457763672,0.03227972984313965,0.02202439308166504,0.0245819091796875,0.028944730758666992,0.02869725227355957,0.03419089317321777,0.024150848388671875,0.03637218475341797,0.034772396087646484,0.02985858917236328,0.017345428466796875,0.030390501022338867,0.03328561782836914,0.026669740676879883,0.031246662139892578,0.037663936614990234,0.05161476135253906,0.027016162872314453,0.041838884353637695,0.03681230545043945,0.02277684211730957,0.019690513610839844,0.02445697784423828,0.017416715621948242,0.02774190902709961,0.026752233505249023,0.019785642623901367,0.030884981155395508,0.03569650650024414,0.03455853462219238,0.03509068489074707,0.018647193908691406,0.018126726150512695,0.018816709518432617,0.019918203353881836,0.03822803497314453,0.018502235412597656,0.030328989028930664,0.030911684036254883,0.03026556968688965,0.03510713577270508,0.032842159271240234,0.04208183288574219,0.021233081817626953,0.027344942092895508,0.03479433059692383,0.03925633430480957,0.01859307289123535,0.02883005142211914,0.033977508544921875,0.019930124282836914,0.02517557144165039,0.022149324417114258,0.0324399471282959,0.02393174171447754,0.022522687911987305,0.027875423431396484,0.032100677490234375,0.015688419342041016,0.017372846603393555,0.0265042781829834,0.01894092559814453,0.01611471176147461,0.0266721248626709,0.02400994300842285,0.019809246063232422,0.018311262130737305,0.020603656768798828,0.02313518524169922,0.04396462440490723,0.022016286849975586,0.04408884048461914,0.04975390434265137,0.039629459381103516,0.03276944160461426,0.03577899932861328,0.025621652603149414,0.02086663246154785,0.02811598777770996,0.03237128257751465,0.01817178726196289,0.018405675888061523,0.018512725830078125,0.01737070083618164,0.02516627311706543,0.01896953582763672,0.024820566177368164,0.02439713478088379,0.022106170654296875,0.019176006317138672,0.030165672302246094,0.01588153839111328,0.031039953231811523,0.018576860427856445,0.02125239372253418,0.027164220809936523,0.017034292221069336,0.02456212043762207,0.02748847007751465,0.05058884620666504,0.03278183937072754,0.027693986892700195,0.037703514099121094,0.023279666900634766,0.03955507278442383,0.020181655883789062,0.022360563278198242,0.019997119903564453,0.017863988876342773,0.017215490341186523,0.025648832321166992,0.01866769790649414,0.01930832862854004,0.018282413482666016,0.022238492965698242,0.018418073654174805,0.02044367790222168,0.018083810806274414,0.016635656356811523,0.0165557861328125,0.0190274715423584,0.01567530632019043,0.023943662643432617,0.022745132446289062,0.016513824462890625,0.017644643783569336,0.022522449493408203,0.029273033142089844,0.020690202713012695,0.023892641067504883,0.02441692352294922,0.024623870849609375,0.019978046417236328,0.02145671844482422,0.016685009002685547,0.0229036808013916,0.025432586669921875,0.022723913192749023,0.03939700126647949,0.019677400588989258,0.027825593948364258,0.024691104888916016,0.01721048355102539,0.021506071090698242,0.018377065658569336,0.024354219436645508,0.02164006233215332,0.020668745040893555,0.022733688354492188,0.02194666862487793,0.0175783634185791,0.016345977783203125,0.017357826232910156,0.020633935928344727,0.03188753128051758,0.03901863098144531,0.027473926544189453,0.023226261138916016,0.020551681518554688,0.01723003387451172,0.020823240280151367,0.0358881950378418,0.022576093673706055,0.02470684051513672,0.024272680282592773,0.01692342758178711,0.019644498825073242,0.02627396583557129,0.027713775634765625,0.027454376220703125,0.02938556671142578,0.02264118194580078,0.018833637237548828,0.026922941207885742,0.02347874641418457,0.034998416900634766,0.01858210563659668,0.01767134666442871,0.02277064323425293,0.017473220825195312,0.01914501190185547,0.022341012954711914,0.03073573112487793,0.021216392517089844,0.017275333404541016,0.03216671943664551,0.015577554702758789,0.020790576934814453,0.017440319061279297,0.026607036590576172,0.027042627334594727,0.029856443405151367,0.03948163986206055,0.017377138137817383,0.017720699310302734,0.01481938362121582,0.017726659774780273,0.01551055908203125,0.021114587783813477,0.018133878707885742,0.02440667152404785,0.02798295021057129,0.01536870002746582,0.023583412170410156,0.017967939376831055,0.026604413986206055,0.018197298049926758,0.034993648529052734,0.017812728881835938,0.015740633010864258,0.022437095642089844,0.019031524658203125,0.022388696670532227,0.016832590103149414,0.015965938568115234,0.01875782012939453,0.02646470069885254,0.028116226196289062,0.026278257369995117,0.024077653884887695,0.017386436462402344,0.02696681022644043,0.0228116512298584,0.019743680953979492,0.014307022094726562,0.02128124237060547,0.025058984756469727,0.022184371948242188,0.024252891540527344,0.024161815643310547,0.020969867706298828,0.020012855529785156,0.028942346572875977,0.030076265335083008,0.022370576858520508,0.017960071563720703,0.020985841751098633,0.02550053596496582,0.021805524826049805,0.017962932586669922,0.02846503257751465,0.022942543029785156,0.02166914939880371,0.02033710479736328,0.016515731811523438,0.01688361167907715,0.014084339141845703,0.023427963256835938,0.021463394165039062,0.02536630630493164,0.01705169677734375,0.01810431480407715,0.02542877197265625,0.018871068954467773,0.02333831787109375,0.0322418212890625,0.026192188262939453,0.02013111114501953,0.026302099227905273,0.02799201011657715,0.016666889190673828,0.022910118103027344,0.01580190658569336,0.019583702087402344,0.028796672821044922,0.021488428115844727,0.016794919967651367,0.026904821395874023,0.021892547607421875,0.0258028507232666,0.0234529972076416,0.01981353759765625,0.015238761901855469,0.021451950073242188,0.023960590362548828,0.02369523048400879,0.01688551902770996,0.02323436737060547,0.020961999893188477,0.020278453826904297,0.023222923278808594,0.019758224487304688,0.019467830657958984,0.023799419403076172,0.026015043258666992,0.024966716766357422,0.03194284439086914,0.018357515335083008,0.01809549331665039,0.030199289321899414,0.028767108917236328,0.02626204490661621,0.028003692626953125,0.027060270309448242,0.01998424530029297,0.029226064682006836,0.02494192123413086,0.020838022232055664,0.024605751037597656,0.03432965278625488,0.027199745178222656,0.022513389587402344,0.03236818313598633,0.031771183013916016,0.017598390579223633,0.02425074577331543,0.026734590530395508,0.025254011154174805,0.023276567459106445,0.02306199073791504,0.026500940322875977,0.024139404296875,0.02178788185119629,0.017578125,0.018469572067260742,0.034987688064575195,0.017268896102905273,0.018595457077026367,0.018424034118652344,0.016636371612548828,0.02601790428161621,0.01714324951171875,0.020092248916625977,0.031139612197875977,0.02080392837524414,0.016440391540527344,0.01779484748840332,0.015451669692993164,0.018997907638549805,0.021257400512695312,0.025732040405273438,0.019612550735473633,0.02513885498046875,0.017540693283081055,0.02435159683227539,0.016542911529541016,0.0159912109375,0.01954960823059082,0.03359341621398926,0.028116226196289062,0.026623249053955078,0.01734018325805664,0.03312540054321289,0.033571481704711914,0.01853156089782715,0.01687312126159668,0.02044510841369629,0.022864580154418945,0.025643587112426758,0.02704620361328125,0.02336859703063965,0.024532079696655273,0.018543243408203125,0.02944803237915039,0.02251911163330078,0.022672414779663086,0.023410558700561523,0.026488065719604492,0.02337193489074707,0.026302099227905273,0.01745295524597168,0.025136470794677734,0.01992654800415039,0.0286712646484375,0.023049354553222656,0.02350902557373047,0.0229184627532959,0.026454448699951172,0.018735408782958984,0.0226285457611084,0.02701282501220703,0.02027440071105957,0.02807164192199707,0.02134418487548828,0.024804353713989258,0.02675628662109375,0.021882295608520508,0.027388572692871094,0.023424863815307617,0.02127861976623535,0.019027233123779297,0.022342920303344727,0.02252936363220215,0.018239259719848633,0.022921085357666016,0.02404642105102539,0.022521495819091797,0.024931669235229492,0.017004013061523438,0.02144479751586914,0.025708913803100586,0.02036428451538086,0.0267484188079834,0.03063821792602539,0.02052783966064453,0.030414581298828125,0.02430558204650879,0.017992258071899414,0.017892837524414062,0.026143550872802734,0.0401608943939209,0.022595643997192383,0.033284902572631836,0.02590036392211914,0.018216848373413086,0.017748117446899414,0.022438764572143555,0.022937774658203125,0.027555227279663086,0.030530691146850586,0.023814916610717773,0.03307342529296875,0.02503228187561035,0.023685455322265625,0.023215293884277344,0.025460004806518555,0.024276256561279297,0.02420806884765625,0.019342899322509766,0.021857023239135742,0.022649288177490234,0.025787353515625,0.01749396324157715,0.024245262145996094,0.023658037185668945,0.026043415069580078,0.02298569679260254,0.027052640914916992,0.01910233497619629,0.02639150619506836,0.027508258819580078,0.024658918380737305,0.02739739418029785,0.048993587493896484,0.025945663452148438,0.027922868728637695,0.02565479278564453,0.025341510772705078,0.026768922805786133,0.02842116355895996,0.0289309024810791,0.03103351593017578,0.025472640991210938,0.019917011260986328,0.02374410629272461,0.024492502212524414,0.02294921875,0.023379087448120117,0.0245819091796875,0.029661893844604492,0.019307613372802734,0.030498981475830078,0.0280609130859375,0.0231173038482666,0.02866506576538086,0.020535707473754883,0.02734231948852539,0.03428816795349121,0.024323463439941406,0.029379606246948242,0.018488168716430664,0.017285823822021484,0.03044915199279785,0.027414321899414062,0.017456769943237305,0.028992891311645508,0.02370762825012207,0.028882265090942383,0.023701190948486328,0.019358158111572266,0.019104719161987305,0.021254539489746094,0.02646636962890625,0.021142005920410156,0.015994548797607422,0.017739057540893555,0.02126288414001465,0.025194644927978516,0.017937421798706055,0.016637802124023438,0.01693129539489746,0.020089149475097656,0.02543783187866211,0.031452178955078125,0.021063566207885742,0.027322769165039062,0.018292903900146484,0.017330646514892578,0.02018594741821289,0.025732040405273438,0.02688765525817871,0.02428412437438965,0.017416954040527344,0.029085636138916016,0.02622675895690918,0.026095867156982422,0.02685260772705078,0.021605253219604492,0.018626689910888672,0.019601821899414062,0.026568889617919922,0.022668838500976562,0.026957035064697266,0.02304244041442871,0.014774084091186523,0.022001981735229492,0.023659229278564453,0.025762081146240234,0.017171859741210938,0.021976709365844727,0.028408288955688477,0.02154684066772461,0.020635128021240234,0.01597452163696289,0.016434192657470703,0.025430917739868164,0.022977828979492188,0.024424076080322266,0.017195940017700195,0.022596120834350586,0.026175737380981445,0.022232770919799805,0.01688385009765625,0.016141653060913086,0.01815342903137207,0.024145126342773438,0.02010965347290039,0.026872634887695312,0.01582479476928711,0.022215843200683594,0.015216350555419922,0.01662158966064453,0.019002199172973633,0.026436805725097656,0.021315336227416992,0.023625850677490234,0.019572734832763672,0.02291703224182129,0.02189159393310547,0.028673648834228516,0.02127861976623535,0.019854307174682617,0.017621517181396484,0.015600442886352539,0.014276742935180664,0.017798423767089844,0.015910625457763672,0.014656305313110352,0.03737664222717285,0.030590534210205078,0.025536537170410156,0.014966964721679688,0.01554107666015625,0.01735401153564453,0.025435209274291992,0.01747441291809082,0.024329423904418945,0.019097089767456055,0.016383886337280273,0.0212247371673584,0.017528057098388672,0.030638933181762695,0.021781206130981445,0.018054962158203125,0.02244853973388672,0.021509885787963867,0.01743936538696289,0.018316984176635742,0.015583992004394531,0.017818212509155273,0.019186735153198242,0.0173642635345459,0.02506875991821289,0.019557714462280273,0.02321457862854004,0.01571178436279297,0.02625560760498047,0.015449285507202148,0.02550506591796875,0.01869940757751465,0.020175695419311523,0.01951909065246582,0.02359914779663086,0.02971172332763672,0.018091201782226562,0.01964879035949707,0.016158103942871094,0.022784709930419922,0.021625280380249023,0.02003955841064453,0.018013954162597656,0.02294135093688965,0.020755529403686523,0.02520751953125,0.0205996036529541,0.014844417572021484,0.022555112838745117,0.022481918334960938,0.016704797744750977,0.024587392807006836,0.022463321685791016,0.024016857147216797,0.024416685104370117,0.02082657814025879,0.02761530876159668,0.018058300018310547,0.020025014877319336,0.025068044662475586,0.02693629264831543,0.018433094024658203,0.024773836135864258,0.02278447151184082,0.02596569061279297,0.022603988647460938,0.02560734748840332,0.021263599395751953,0.03054976463317871,0.02054905891418457,0.0243985652923584,0.02688288688659668,0.023233652114868164,0.022669315338134766,0.02056574821472168,0.019353389739990234,0.017958402633666992,0.020499706268310547,0.021088600158691406,0.02260136604309082,0.025757551193237305,0.01914215087890625,0.019009113311767578,0.017818689346313477,0.019048690795898438,0.024042844772338867,0.02414870262145996,0.0242002010345459,0.015920400619506836,0.027254104614257812,0.026774883270263672,0.027805805206298828,0.02661609649658203,0.024121999740600586,0.030407190322875977,0.02747201919555664,0.026189804077148438,0.023810148239135742,0.017854690551757812,0.026125431060791016,0.023274660110473633,0.02351689338684082,0.025341033935546875,0.023834943771362305,0.022971391677856445,0.02086639404296875,0.02231764793395996,0.025132417678833008,0.0180509090423584,0.026133060455322266,0.025336265563964844,0.02317953109741211,0.023781776428222656,0.024480342864990234,0.027149200439453125,0.020842313766479492,0.02319788932800293,0.02364969253540039,0.02938532829284668,0.02557229995727539,0.023981809616088867,0.026363372802734375,0.02841663360595703,0.02514958381652832,0.02290201187133789,0.02533435821533203,0.027189254760742188,0.02234959602355957,0.019412994384765625,0.028726816177368164,0.016132593154907227,0.027234554290771484,0.0250394344329834,0.02721858024597168,0.022001266479492188,0.0170896053314209,0.017525911331176758,0.029196500778198242,0.025995969772338867,0.029124021530151367,0.02372455596923828,0.024669885635375977,0.01748514175415039,0.017069101333618164,0.01804947853088379,0.022423744201660156,0.028464317321777344,0.01734447479248047,0.024071216583251953,0.017705917358398438,0.024447202682495117,0.02658390998840332,0.024529218673706055,0.02267932891845703,0.01394200325012207,0.02120065689086914,0.01967930793762207,0.02464604377746582,0.02480340003967285,0.025257110595703125,0.0281221866607666,0.023342132568359375,0.024308204650878906,0.015609264373779297,0.017101287841796875,0.0229794979095459,0.024147987365722656,0.022928476333618164,0.022185802459716797,0.023679018020629883,0.022675275802612305,0.02233147621154785,0.023241281509399414,0.017398357391357422,0.02228689193725586,0.020622730255126953,0.026070356369018555,0.022216320037841797,0.025008678436279297,0.02028679847717285,0.030657529830932617,0.027451038360595703,0.02911520004272461,0.023412227630615234,0.02341604232788086,0.028778791427612305,0.02396249771118164,0.027853727340698242,0.024568557739257812,0.0274507999420166,0.02596306800842285,0.02349996566772461,0.029001712799072266,0.024025440216064453,0.028193950653076172,0.022568225860595703,0.02471923828125,0.026895999908447266,0.03789162635803223,0.03069782257080078,0.022756099700927734,0.027333498001098633,0.026089191436767578,0.024554014205932617,0.022798776626586914,0.024778127670288086,0.025144100189208984,0.029070377349853516,0.02846837043762207,0.04378032684326172,0.03422880172729492,0.024156808853149414,0.01669001579284668,0.016304492950439453,0.029105186462402344,0.0204923152923584,0.023257732391357422,0.024559736251831055,0.017058372497558594,0.02677297592163086,0.03212594985961914,0.022461891174316406,0.03592944145202637,0.024138450622558594,0.018304824829101562,0.023591995239257812,0.016793251037597656,0.022198200225830078,0.024227142333984375,0.025611400604248047,0.016768932342529297,0.018266677856445312,0.019246339797973633,0.021677732467651367,0.01902937889099121,0.019642114639282227,0.01697397232055664,0.016768217086791992,0.025690078735351562,0.02135467529296875,0.01849055290222168,0.021327972412109375,0.0342707633972168,0.018670082092285156,0.017930984497070312,0.018352985382080078,0.02100968360900879,0.017724990844726562,0.017024517059326172,0.017863988876342773,0.016433000564575195,0.02575540542602539,0.02557063102722168,0.01974940299987793,0.024545669555664062,0.02374410629272461,0.019433975219726562,0.022094011306762695,0.02511429786682129,0.030173063278198242,0.03034210205078125,0.029178857803344727,0.024160385131835938,0.020793437957763672,0.024432897567749023,0.017360925674438477,0.018310070037841797,0.020380258560180664,0.01693129539489746,0.01691913604736328,0.018228769302368164,0.016048669815063477,0.01969170570373535,0.025644302368164062,0.03182053565979004,0.0223543643951416,0.018090248107910156,0.024335861206054688,0.01807999610900879,0.022161245346069336,0.026070117950439453,0.028382539749145508,0.02428436279296875,0.025905847549438477,0.018431901931762695,0.02347087860107422,0.022749900817871094,0.026133060455322266,0.03109145164489746,0.03363466262817383,0.025621891021728516,0.025079011917114258,0.02768087387084961,0.01720571517944336,0.02442312240600586,0.02089095115661621,0.0171053409576416,0.024358749389648438,0.01821422576904297,0.02029132843017578,0.027266740798950195,0.02833843231201172,0.01741337776184082,0.01689457893371582,0.01783466339111328,0.01708221435546875,0.01833963394165039,0.018627166748046875,0.0179598331451416,0.02389216423034668,0.023221254348754883,0.02317070960998535,0.018686532974243164,0.017233848571777344,0.02423715591430664,0.03254532814025879,0.023526906967163086,0.025389432907104492,0.036171674728393555,0.028472185134887695,0.030691862106323242,0.03367137908935547,0.028166770935058594,0.01815509796142578,0.022999286651611328,0.02427840232849121,0.023169755935668945,0.02795100212097168,0.025444746017456055,0.022505521774291992,0.026118755340576172,0.02319788932800293,0.018815279006958008,0.017927169799804688,0.023277997970581055,0.022010326385498047,0.029221534729003906,0.02364349365234375,0.02474188804626465,0.025318384170532227,0.023741960525512695,0.02632427215576172,0.025290250778198242,0.024093151092529297,0.02149510383605957,0.024456024169921875,0.025265216827392578,0.022486448287963867,0.02200484275817871,0.021877527236938477,0.016899824142456055,0.023787498474121094,0.019624948501586914,0.014704704284667969,0.016845703125,0.017941713333129883,0.014827489852905273,0.0179443359375,0.02250981330871582,0.019384145736694336,0.01803874969482422,0.017737388610839844,0.018105030059814453,0.019752025604248047,0.017774343490600586,0.031259775161743164,0.015878677368164062,0.019461631774902344,0.017538785934448242,0.018035173416137695,0.019352436065673828,0.01918196678161621,0.02037644386291504,0.018234729766845703,0.017804622650146484,0.023566246032714844,0.016291141510009766,0.027074098587036133,0.028789281845092773,0.029782772064208984,0.02401590347290039,0.03268599510192871,0.02940082550048828,0.0276033878326416,0.02493453025817871,0.023666858673095703,0.02596759796142578,0.020435810089111328,0.0211639404296875,0.01676344871520996,0.026127099990844727,0.02327418327331543,0.01811504364013672,0.016449928283691406,0.019356966018676758,0.024754762649536133,0.019475221633911133,0.017737150192260742,0.018174409866333008,0.01834559440612793,0.015040874481201172,0.016343116760253906,0.01832866668701172,0.015455484390258789,0.016170024871826172,0.016133785247802734,0.02196955680847168,0.037203073501586914,0.01773858070373535,0.016040802001953125,0.027861356735229492,0.02199554443359375,0.02452540397644043,0.0259397029876709,0.02534031867980957,0.027599811553955078,0.018032073974609375,0.01760077476501465,0.015627145767211914,0.01890087127685547,0.01661062240600586,0.022919654846191406,0.03529858589172363,0.037362098693847656,0.0321202278137207,0.026106834411621094,0.030922412872314453,0.02974390983581543,0.0282742977142334,0.025160551071166992,0.01835012435913086,0.03240633010864258,0.026778697967529297,0.0269012451171875,0.02434062957763672,0.030555009841918945,0.024924516677856445,0.026888608932495117,0.025970458984375,0.023500919342041016,0.03719663619995117,0.020540237426757812,0.025529146194458008,0.024502038955688477,0.023839473724365234,0.02437758445739746,0.02226710319519043,0.018961668014526367,0.018074750900268555,0.019274473190307617,0.026247024536132812,0.017101764678955078,0.023752689361572266,0.022024154663085938,0.025370121002197266,0.024751663208007812,0.022945404052734375,0.0214993953704834,0.029112577438354492,0.024742841720581055,0.025376558303833008,0.02070331573486328,0.024140596389770508,0.026705265045166016,0.02861952781677246,0.03661036491394043,0.027927637100219727,0.0268399715423584,0.023586034774780273,0.02111053466796875,0.021292924880981445,0.025905132293701172,0.023376941680908203,0.024904727935791016,0.02048969268798828,0.022902488708496094,0.02198934555053711,0.019555330276489258,0.02527332305908203,0.017089366912841797,0.02203536033630371,0.023257732391357422,0.021654844284057617,0.028193235397338867,0.02284550666809082,0.02530670166015625,0.023541927337646484,0.026067018508911133,0.018614530563354492,0.023818016052246094,0.03142833709716797,0.02327418327331543,0.01945638656616211,0.02577829360961914,0.02823615074157715,0.019619226455688477,0.020900487899780273,0.016239404678344727,0.024436473846435547,0.024755477905273438,0.028816938400268555,0.01704096794128418,0.025868892669677734,0.02642655372619629,0.02152085304260254,0.020971059799194336,0.029097795486450195,0.02605271339416504,0.024463176727294922,0.02136087417602539,0.017351627349853516,0.028377771377563477,0.02593064308166504,0.02965378761291504,0.03119659423828125,0.02828216552734375,0.028397321701049805,0.032182931900024414,0.024744272232055664,0.027360916137695312,0.03229022026062012,0.030118227005004883,0.030284404754638672,0.02225804328918457,0.023581743240356445,0.027895450592041016,0.027775049209594727,0.02371811866760254,0.023911237716674805,0.025652647018432617,0.02650928497314453,0.02703094482421875,0.016579151153564453,0.026938915252685547,0.027820587158203125,0.029263973236083984,0.029955148696899414,0.024091005325317383,0.026367902755737305,0.0269472599029541,0.023389339447021484,0.024389028549194336,0.025423288345336914,0.016689777374267578,0.02629852294921875,0.022118330001831055,0.02877521514892578,0.028311491012573242,0.028170108795166016,0.01791524887084961,0.02542591094970703,0.018520593643188477,0.01711249351501465,0.01756739616394043,0.01661229133605957,0.017129898071289062,0.017668962478637695,0.02425098419189453,0.024089813232421875,0.025884628295898438,0.022655725479125977,0.028708457946777344,0.027011871337890625,0.02488398551940918,0.02444744110107422,0.02563166618347168,0.02686166763305664,0.026134967803955078,0.027345657348632812,0.017454147338867188,0.02928900718688965,0.026106595993041992,0.017074108123779297,0.028386354446411133,0.02889108657836914,0.02849125862121582,0.0273590087890625,0.027011632919311523,0.029126405715942383,0.03773927688598633,0.03683614730834961,0.0227203369140625,0.02398991584777832,0.0233156681060791,0.022887468338012695,0.026054859161376953,0.0182344913482666,0.023248672485351562,0.023040294647216797,0.014880180358886719,0.020520687103271484,0.020529508590698242,0.017133474349975586,0.027950525283813477,0.028181076049804688,0.022458791732788086,0.018480539321899414,0.018774032592773438,0.02433300018310547,0.026314735412597656,0.024501800537109375,0.022860050201416016,0.019509315490722656,0.01963520050048828,0.02488994598388672,0.02835679054260254,0.022002458572387695,0.03188920021057129,0.02323007583618164,0.03301668167114258,0.03232932090759277,0.022351503372192383,0.023479223251342773,0.02149510383605957,0.019196033477783203,0.017445802688598633,0.022772550582885742,0.02398228645324707,0.02974677085876465,0.02753615379333496,0.026888370513916016,0.024260520935058594,0.030802488327026367,0.03162431716918945,0.0373077392578125,0.027651071548461914,0.03470802307128906,0.023508787155151367,0.022482633590698242,0.022350311279296875,0.023808002471923828,0.02839183807373047,0.026137828826904297,0.01527094841003418,0.022533416748046875,0.0250856876373291,0.017368555068969727,0.01784062385559082,0.0181887149810791,0.01669907569885254,0.022411346435546875,0.02184009552001953,0.025841712951660156,0.015634536743164062,0.02411365509033203,0.017589330673217773,0.02325749397277832,0.025690078735351562,0.025592803955078125,0.022611141204833984,0.022397994995117188,0.028985977172851562,0.015738487243652344,0.016005992889404297,0.016265153884887695,0.01699995994567871,0.016602277755737305,0.016403675079345703,0.01708078384399414,0.01925826072692871,0.01696610450744629,0.017871856689453125,0.01641082763671875,0.017813920974731445,0.0186307430267334,0.01985645294189453,0.018226146697998047,0.023711681365966797,0.025365352630615234,0.03456282615661621,0.02515125274658203,0.033006906509399414,0.045926570892333984,0.028563499450683594,0.03407788276672363,0.034561872482299805,0.03370380401611328,0.023160934448242188,0.023781538009643555,0.01980423927307129,0.017572641372680664,0.016976118087768555,0.029321908950805664,0.020845890045166016,0.03314566612243652,0.034039974212646484,0.02975153923034668,0.01835775375366211,0.02995467185974121,0.029193878173828125,0.028984546661376953,0.02416515350341797,0.030936002731323242,0.028095006942749023,0.023459672927856445,0.025674819946289062,0.02750253677368164,0.027065515518188477,0.037029266357421875,0.027578115463256836,0.025243282318115234,0.026091337203979492,0.03187823295593262,0.017297983169555664,0.01787590980529785,0.028200864791870117,0.027771472930908203,0.016756772994995117,0.028163671493530273,0.03787827491760254,0.02815389633178711,0.0235745906829834,0.03047037124633789,0.019017696380615234,0.025463581085205078,0.017707347869873047,0.018043994903564453,0.019377708435058594,0.0173947811126709,0.018755674362182617,0.018007516860961914,0.017668724060058594,0.018271923065185547,0.032164573669433594,0.0227506160736084,0.032880544662475586,0.03129243850708008,0.016554594039916992,0.01685357093811035,0.029005050659179688,0.017700672149658203,0.025437355041503906,0.023081064224243164,0.024672985076904297,0.024615049362182617,0.02515721321105957,0.016771554946899414,0.015172719955444336,0.016121387481689453,0.01621532440185547,0.019458770751953125,0.021416425704956055,0.015272140502929688,0.023391008377075195,0.024445056915283203,0.025237560272216797,0.025753259658813477,0.024682283401489258,0.016089439392089844,0.017746925354003906,0.022510528564453125,0.028952598571777344,0.026574134826660156,0.031090736389160156,0.01659226417541504,0.03553318977355957,0.026978492736816406,0.028312206268310547,0.025265932083129883,0.024507761001586914,0.02345418930053711,0.03418922424316406,0.039214134216308594,0.03334808349609375,0.026433944702148438,0.026578426361083984,0.026633501052856445,0.022391080856323242,0.023223400115966797,0.018118858337402344,0.0174105167388916,0.017151832580566406,0.018080472946166992,0.01831364631652832,0.016936302185058594,0.023534774780273438,0.023271560668945312,0.022195816040039062,0.0242917537689209,0.02329707145690918,0.02098846435546875,0.019245386123657227,0.015358686447143555,0.023873567581176758,0.020784616470336914,0.027190446853637695,0.02420353889465332,0.02169036865234375,0.0254364013671875,0.025549888610839844,0.027138948440551758,0.018798351287841797,0.025406599044799805,0.016834735870361328,0.023012399673461914,0.029310941696166992,0.02092576026916504,0.025903940200805664,0.034348249435424805,0.02509164810180664,0.020032882690429688,0.02645134925842285,0.019486665725708008,0.022094249725341797,0.01978325843811035,0.02910304069519043,0.024685382843017578,0.03256869316101074,0.02725958824157715,0.029421567916870117,0.01695561408996582,0.023408174514770508,0.017815589904785156,0.01815056800842285,0.03726792335510254,0.04952669143676758,0.028658628463745117,0.023259401321411133,0.016654491424560547,0.017668485641479492,0.017695903778076172,0.01761770248413086,0.016120433807373047,0.017421245574951172,0.03050541877746582,0.02578258514404297,0.017423152923583984,0.0165097713470459,0.016980886459350586,0.017451763153076172,0.018271446228027344,0.02207493782043457,0.01717352867126465,0.017995834350585938,0.017038345336914062,0.03365731239318848,0.024712085723876953,0.037606000900268555,0.04040789604187012,0.03899049758911133,0.04152512550354004,0.021576404571533203,0.037459611892700195,0.05196356773376465,0.03790998458862305,0.02761983871459961,0.036212921142578125,0.04258441925048828,0.03487062454223633,0.052640676498413086,0.03611350059509277,0.04059553146362305,0.03545117378234863,0.030513525009155273,0.04385519027709961,0.027414560317993164,0.030498266220092773,0.027120113372802734,0.03607034683227539,0.034552574157714844,0.030669689178466797,0.018779277801513672,0.01712965965270996,0.024266958236694336,0.03111100196838379,0.01804494857788086,0.02037787437438965,0.023346662521362305,0.036722660064697266,0.046215057373046875,0.02905893325805664,0.035494327545166016,0.03149223327636719,0.030467510223388672,0.017330408096313477,0.028509855270385742,0.024723052978515625,0.023249387741088867,0.02693629264831543,0.022014379501342773,0.028326749801635742,0.02416849136352539,0.024644851684570312,0.016947507858276367,0.023958683013916016,0.024135351181030273,0.023060083389282227,0.02734541893005371,0.02825760841369629,0.017287015914916992,0.03401780128479004,0.032556772232055664,0.029066801071166992,0.02662801742553711,0.018997907638549805,0.026493549346923828,0.01787710189819336,0.027730941772460938,0.03211665153503418,0.02808690071105957,0.026378154754638672,0.0286257266998291,0.02250981330871582,0.023243188858032227,0.017981529235839844,0.026411771774291992,0.019399166107177734,0.017871856689453125,0.0168607234954834,0.01629948616027832,0.016467809677124023,0.02467799186706543,0.023234128952026367,0.01808953285217285,0.021075010299682617,0.017406940460205078,0.015324115753173828,0.01900935173034668,0.018438100814819336,0.018140077590942383,0.025489330291748047,0.015959501266479492,0.017235279083251953,0.03017139434814453,0.019112348556518555,0.017898082733154297,0.04693317413330078,0.027913808822631836,0.01781296730041504,0.027696609497070312,0.01649618148803711,0.020147323608398438,0.018970251083374023,0.01796412467956543,0.01802802085876465,0.026935577392578125,0.025984525680541992,0.018342018127441406,0.01838994026184082,0.016493558883666992,0.01844000816345215,0.02785468101501465,0.03484082221984863,0.029603958129882812,0.02993011474609375,0.026999950408935547,0.03124380111694336,0.02030181884765625,0.017076969146728516,0.033278703689575195,0.027762413024902344,0.03409743309020996,0.020497560501098633,0.028972625732421875,0.0281369686126709,0.02933955192565918,0.021454572677612305,0.017554759979248047,0.030513286590576172,0.02225637435913086,0.023082494735717773,0.03056049346923828,0.017225980758666992,0.03261590003967285,0.017901897430419922,0.024512290954589844,0.0185394287109375,0.018868446350097656,0.027730703353881836,0.028291940689086914,0.03484320640563965,0.030419588088989258,0.02807784080505371,0.02711629867553711,0.03076624870300293,0.02875828742980957,0.018733739852905273,0.018713951110839844,0.01734161376953125,0.016469240188598633,0.017943859100341797,0.01678609848022461,0.016698837280273438,0.017915964126586914,0.017588376998901367,0.020554542541503906,0.026384592056274414,0.025187015533447266,0.022755861282348633,0.024351835250854492,0.019522666931152344,0.02593994140625,0.03227591514587402,0.023166418075561523,0.01585841178894043,0.02377033233642578,0.024141788482666016,0.022625446319580078,0.025176286697387695,0.03049755096435547,0.019164562225341797,0.019233226776123047,0.01614236831665039,0.0154571533203125,0.017244338989257812,0.017206430435180664,0.024599075317382812,0.027304649353027344,0.031527042388916016,0.027660608291625977,0.028737783432006836,0.031510353088378906,0.036131858825683594,0.026294469833374023,0.02991795539855957,0.025783300399780273,0.02693462371826172,0.025902271270751953,0.029642581939697266,0.0229644775390625,0.02213740348815918,0.016489505767822266,0.01668691635131836,0.017805814743041992,0.018525362014770508,0.01876664161682129,0.017311573028564453,0.017760753631591797,0.016193151473999023,0.020560026168823242,0.017003774642944336,0.026126623153686523,0.025331735610961914,0.020909547805786133,0.023281574249267578,0.016399383544921875,0.021924495697021484,0.0167081356048584,0.014975786209106445,0.01699042320251465,0.01621389389038086,0.016500234603881836,0.017056941986083984,0.01743602752685547,0.014708280563354492,0.016986608505249023,0.016463518142700195,0.016511917114257812,0.01794910430908203,0.017165184020996094,0.018578529357910156,0.016322851181030273,0.016527414321899414,0.017262697219848633,0.01698589324951172,0.01990222930908203,0.017554044723510742,0.019016742706298828,0.017987489700317383,0.01674628257751465,0.016506671905517578,0.017700910568237305,0.01644444465637207,0.016445398330688477,0.021010637283325195,0.01821112632751465,0.01925969123840332,0.026625394821166992,0.023408174514770508,0.01598525047302246,0.015459775924682617,0.01748514175415039,0.02330756187438965,0.024048805236816406,0.023016929626464844,0.022235870361328125,0.018471479415893555,0.017340421676635742,0.02207040786743164,0.017820358276367188,0.017676591873168945,0.01637411117553711,0.021740436553955078,0.018476486206054688,0.017805814743041992,0.017612457275390625,0.017072439193725586,0.017240524291992188,0.01772332191467285,0.01634669303894043,0.01740241050720215,0.015592575073242188,0.017066240310668945,0.026131391525268555,0.024672746658325195,0.03228163719177246,0.017947912216186523,0.02885723114013672,0.02010822296142578,0.029538393020629883,0.030024290084838867,0.02719259262084961,0.028602123260498047,0.01940751075744629,0.02636408805847168,0.01913928985595703,0.027106046676635742,0.022244691848754883,0.018090009689331055,0.016520023345947266,0.017048120498657227,0.018598318099975586,0.021497249603271484,0.01882147789001465,0.017667531967163086,0.025943994522094727,0.0274808406829834,0.026792526245117188,0.029516935348510742,0.026831626892089844,0.02498173713684082,0.023996353149414062,0.023703575134277344,0.02491140365600586,0.025875329971313477,0.016387224197387695,0.015413522720336914,0.024200916290283203,0.021302223205566406,0.022983074188232422,0.02229022979736328,0.018759965896606445,0.021901369094848633,0.0231170654296875,0.025473356246948242,0.016483545303344727,0.02495574951171875,0.024655580520629883,0.025825023651123047,0.02544569969177246,0.02541208267211914,0.02880692481994629,0.026195526123046875,0.01585531234741211,0.021201372146606445,0.016188383102416992,0.016505002975463867,0.01725006103515625,0.023436784744262695,0.01692032814025879,0.028136730194091797,0.018055438995361328,0.018123865127563477,0.016141176223754883,0.0251767635345459,0.018644332885742188,0.016985177993774414,0.01857757568359375,0.01725459098815918,0.018278121948242188,0.0176236629486084,0.017099857330322266,0.016757726669311523,0.01637578010559082,0.017294883728027344,0.015463113784790039,0.018186330795288086,0.01725602149963379,0.01798391342163086,0.021252155303955078,0.01940155029296875,0.015569686889648438,0.01769399642944336,0.01795792579650879,0.03028726577758789,0.028039216995239258,0.02292490005493164,0.01817631721496582,0.017225027084350586,0.01926398277282715,0.017473697662353516,0.017012357711791992,0.017122745513916016,0.015612363815307617,0.016569852828979492,0.016078472137451172,0.015857934951782227,0.12776970863342285,0.016093015670776367,0.016031265258789062,0.016762495040893555,0.017559289932250977,0.016701459884643555,0.020732879638671875,0.016585588455200195,0.020118236541748047,0.017518997192382812,0.016881227493286133,0.01824021339416504,0.01788496971130371,0.020876646041870117,0.018926620483398438,0.018788814544677734,0.01697254180908203,0.02114701271057129,0.017817020416259766,0.01908111572265625,0.017513275146484375,0.016851425170898438,0.01725149154663086,0.019029617309570312,0.01706528663635254,0.017261743545532227,0.017794370651245117,0.016703128814697266,0.021891117095947266,0.022526025772094727,0.027742385864257812,0.029263734817504883,0.030185222625732422,0.028392791748046875,0.017708301544189453,0.01775813102722168,0.02180194854736328,0.016954660415649414,0.018768787384033203,0.022558927536010742,0.02672553062438965,0.028374195098876953,0.022977113723754883,0.022030115127563477,0.027558326721191406,0.017050981521606445,0.01724386215209961,0.016727209091186523,0.023009061813354492,0.021298646926879883,0.023622989654541016,0.023117780685424805,0.02268505096435547,0.02617168426513672,0.01677536964416504,0.018162965774536133,0.018628835678100586,0.01873302459716797,0.02155303955078125,0.015511751174926758,0.017893075942993164,0.025582075119018555,0.026726722717285156,0.021323680877685547,0.01911187171936035,0.01912522315979004,0.016605138778686523,0.016689538955688477,0.02146005630493164,0.0177462100982666,0.017342329025268555,0.02124619483947754,0.023415565490722656,0.01776885986328125,0.023426294326782227,0.018777132034301758,0.027527809143066406,0.025719165802001953,0.0246124267578125,0.02650904655456543,0.017447471618652344,0.01772475242614746,0.018640756607055664,0.01708078384399414,0.01670384407043457,0.027250051498413086,0.02458333969116211,0.02269124984741211,0.0218353271484375,0.02464008331298828,0.016951322555541992,0.016064167022705078,0.01796889305114746,0.036011695861816406,0.015410661697387695,0.02018117904663086,0.018073081970214844,0.01770925521850586,0.016889572143554688,0.018495559692382812,0.01939082145690918,0.015860557556152344,0.016994476318359375,0.020696401596069336,0.01728200912475586,0.017418861389160156,0.020351171493530273,0.019367456436157227,0.01664900779724121,0.017763853073120117,0.018213272094726562,0.01850748062133789,0.01900482177734375,0.016927242279052734,0.01848459243774414,0.016616106033325195,0.0172727108001709,0.017253398895263672,0.024262428283691406,0.01854562759399414,0.01752448081970215,0.017884254455566406,0.018591642379760742,0.017999649047851562,0.023197412490844727,0.018528461456298828,0.018192529678344727,0.032427072525024414,0.017249584197998047,0.01667308807373047,0.01930689811706543,0.019934892654418945,0.016003847122192383,0.017714738845825195,0.01923680305480957,0.01783895492553711,0.016890525817871094,0.02031874656677246,0.016572952270507812,0.0199432373046875,0.018683910369873047,0.020416736602783203,0.017485380172729492,0.017690420150756836,0.017534732818603516,0.016023874282836914,0.01636052131652832,0.01600503921508789,0.01759052276611328,0.017479658126831055,0.01665353775024414,0.030292272567749023,0.026291847229003906,0.026304960250854492,0.018587350845336914,0.025617599487304688,0.024821996688842773,0.025041818618774414,0.029979467391967773,0.045441389083862305,0.038578033447265625,0.03346657752990723,0.045290470123291016,0.031703948974609375,0.030675172805786133,0.027285337448120117,0.022743940353393555,0.023830413818359375,0.023540496826171875,0.01846003532409668,0.022281646728515625,0.02355670928955078,0.02476191520690918,0.025220155715942383,0.02404165267944336,0.023035049438476562,0.026711702346801758,0.016614437103271484,0.01690363883972168,0.01918792724609375,0.01600933074951172,0.016507387161254883,0.015553712844848633,0.020398855209350586,0.01669478416442871,0.017159461975097656,0.025964975357055664,0.015688180923461914,0.029450416564941406,0.0283660888671875,0.01716780662536621,0.03239750862121582,0.02962183952331543,0.01949787139892578,0.019028425216674805,0.027460336685180664,0.028962135314941406,0.024631023406982422,0.02598714828491211,0.023219585418701172,0.01845574378967285,0.02766895294189453,0.02951669692993164,0.019185304641723633,0.01813793182373047,0.018847942352294922,0.01716899871826172,0.021550416946411133,0.024013042449951172,0.022661685943603516,0.02623605728149414,0.02691936492919922,0.02310657501220703,0.02347731590270996,0.024819374084472656,0.017048120498657227,0.03831315040588379,0.03441309928894043,0.031147480010986328,0.03140711784362793,0.03364825248718262,0.01788806915283203,0.015808820724487305,0.016925811767578125,0.01617598533630371,0.018053054809570312,0.024042367935180664,0.017906665802001953,0.01851963996887207,0.016442060470581055,0.01712203025817871,0.030147075653076172,0.022534847259521484,0.02788543701171875,0.04712677001953125,0.024298906326293945,0.02682042121887207,0.033374786376953125,0.030213356018066406,0.02353072166442871,0.024723291397094727,0.020488262176513672,0.016959190368652344,0.017333030700683594,0.016740798950195312,0.015842437744140625,0.019855499267578125,0.023488521575927734,0.019562482833862305,0.030080318450927734,0.01628255844116211,0.017154216766357422,0.016196012496948242,0.017338991165161133,0.015909910202026367,0.040125131607055664,0.027600765228271484,0.03696799278259277,0.03278183937072754,0.03128385543823242,0.03302264213562012,0.03284811973571777,0.028115272521972656,0.027070045471191406,0.030556917190551758,0.03302407264709473,0.029995441436767578,0.0323786735534668,0.0278322696685791,0.029700517654418945,0.02999114990234375,0.036092281341552734,0.02587890625,0.02046370506286621,0.030903100967407227,0.028888463973999023,0.04575324058532715,0.041905879974365234,0.03404402732849121,0.03897452354431152,0.03971123695373535,0.029693603515625,0.03249669075012207,0.03469204902648926,0.03947257995605469,0.020946025848388672,0.022795915603637695,0.02449631690979004,0.02658677101135254,0.03891587257385254,0.02418661117553711,0.033132076263427734,0.030525684356689453,0.024501323699951172,0.028547286987304688,0.03742861747741699,0.02457261085510254,0.034079551696777344,0.03964805603027344,0.032750844955444336,0.019983768463134766,0.01862788200378418,0.0198361873626709,0.024332046508789062,0.028284311294555664,0.020543336868286133,0.027298927307128906,0.029381275177001953,0.028278589248657227,0.02431654930114746,0.03233194351196289,0.027531862258911133],\"losses\":[[0.89155],[0.9063299999999999],[0.8925199999999999],[0.8997399999999999],[0.8865300000000002],[0.9011199999999999],[0.8958499999999999],[0.45043000000000005],[0.8989900000000001],[0.17017999999999994],[0.17015999999999995,0.11530499999999999,0.09418000000000001,0.07366],[0.17499000000000003],[0.17081999999999997],[0.903646],[0.17017999999999994],[0.90044],[0.9009463333333333],[0.89868],[0.17423000000000002],[0.89909],[0.17017999999999994],[0.83568],[0.7838300000000001],[0.88056],[0.8845700000000001],[0.17017999999999994],[0.17423000000000002],[0.17017999999999994],[0.9020699999999999],[0.17017999999999994],[0.17423000000000002],[0.17017999999999994],[0.17017999999999994],[0.482245],[0.17017999999999994,0.11297800000000002,0.09652999999999998,0.07826666666666669],[0.9014],[0.9014942857142856],[0.17017999999999994],[0.17017999999999994],[0.17017999999999994],[0.89345],[0.8935442857142858],[0.8529000000000003],[0.17017999999999994],[0.4863199999999999],[0.17423000000000002],[0.17017999999999994],[0.17017999999999994],[0.8936142857142858],[0.8912599999999999],[0.17017999999999994],[0.89497],[0.17017999999999994],[0.17017999999999994],[0.17123],[0.17017999999999994],[0.17017999999999994],[0.17017999999999994],[0.88914],[0.17017999999999994],[0.89502],[0.17423000000000002],[0.8173300000000001],[0.17017999999999994],[0.7856799999999998],[0.17017999999999994],[0.17017999999999994],[0.17423000000000002],[0.17017999999999994],[0.17017999999999994],[0.17017999999999994],[0.17017999999999994],[0.17017999999999994],[0.17423000000000002],[0.17017999999999994],[0.17017999999999994],[0.17017999999999994],[0.17423000000000002],[0.17017999999999994],[0.17017999999999994],[0.8999492857142858],[0.17017999999999994],[0.17017999999999994],[0.8927999999999999],[0.17017999999999994],[0.17017999999999994],[0.90107],[0.17017999999999994],[0.17017999999999994],[0.17017999999999994],[0.17556],[0.17017999999999994],[0.17017999999999994],[0.90044],[0.15895,0.08227699999999999,0.06783249999999996,0.036900892857142896,0.03140999999999998],[0.89345],[0.17008,0.11531999999999998],[0.8980600000000001],[0.7178549999999999],[0.17017999999999994],[0.17017999999999994],[0.89879],[0.17017999999999994],[0.17017999999999994],[0.17008,0.11531999999999998],[0.17017999999999994],[0.17017999999999994,0.11297800000000002,0.09652999999999998,0.07826666666666669],[0.17008,0.11531999999999998],[0.9055],[0.9028699999999998],[0.17017999999999994],[0.17008,0.11531999999999998],[0.17017999999999994],[0.17017999999999994],[0.17017999999999994],[0.17017999999999994],[0.89978],[0.77368],[0.17017999999999994],[0.16012000000000004,0.12017],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.17017999999999994],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.17017999999999994],[0.17008,0.11531999999999998],[0.17017999999999994],[0.17017999999999994],[0.8935500000000001],[0.17008,0.11531999999999998],[0.8965],[0.17008,0.11531999999999998],[0.9014033333333333],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.84779],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.8207099999999998],[0.17008,0.11531999999999998],[0.8925199999999999],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.8943099999999999],[0.17008,0.11531999999999998],[0.8951199999999998],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.47030000000000005],[0.8999300000000001],[0.17008,0.11531999999999998],[0.8928200000000001],[0.9008158333333334],[0.89809],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.8997399999999999],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.89326],[0.87884],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998,0.09771999999999997],[0.17008,0.11531999999999998],[0.8996000000000001],[0.8969300000000002],[0.89606],[0.17008,0.11531999999999998,0.09771999999999997,0.08268],[0.17008,0.11531999999999998,0.09771999999999997],[0.8997399999999999],[0.17008,0.11531999999999998,0.09771999999999997],[0.8949300000000001],[0.17800999999999995],[0.17008,0.11531999999999998,0.09771999999999997],[0.17008,0.11531999999999998,0.09771999999999997],[0.17008,0.11531999999999998,0.09771999999999997],[0.8943579999999999],[0.16215000000000002,0.08315,0.059889999999999985,0.03721999999999999],[0.17008,0.11531999999999998,0.09771999999999997],[0.15297000000000002,0.07277250000000005,0.05503166666666666,0.03086066666666664,0.024980000000000023],[0.17008,0.11531999999999998,0.09771999999999997],[0.17017999999999994],[0.16012000000000004,0.12017],[0.17423000000000002],[0.901408],[0.17008,0.11531999999999998,0.09771999999999997],[0.17008,0.11531999999999998,0.09771999999999997],[0.17008,0.11531999999999998,0.09771999999999997],[0.17008,0.11531999999999998,0.09771999999999997],[0.903646],[0.17008,0.11531999999999998],[0.17017999999999994],[0.17008,0.11531999999999998,0.09771999999999997],[0.15744999999999998,0.06992200000000001,0.054700000000000026,0.031035666666666694,0.02486416666666668,0.015045801948051959],[0.17008,0.11531999999999998,0.09771999999999997],[0.17008,0.11531999999999998,0.09771999999999997],[0.17008,0.11531999999999998,0.09771999999999997],[0.17017999999999994],[0.8942400000000001],[0.16012000000000004,0.12017],[0.17008,0.11531999999999998,0.09771999999999997,0.08268],[0.17008,0.11531999999999998,0.09771999999999997],[0.17008,0.11531999999999998],[0.17423000000000002],[0.9009336666666667],[0.89326],[0.17008,0.11531999999999998],[0.83568],[0.883915],[0.16012000000000004,0.12017],[0.17008,0.11531999999999998],[0.17008,0.11531999999999998],[0.89415],[0.17008,0.11531999999999998],[0.16012000000000004,0.12017],[0.17008,0.11531999999999998],[0.90137],[0.8123999999999999],[0.16012000000000004,0.12017],[0.17008,0.11531999999999998],[0.8987999999999999],[0.8980600000000001],[0.8997999999999999],[0.8940666666666667],[0.16012000000000004,0.12017],[0.17017999999999994],[0.16012000000000004,0.12017],[0.17008,0.11531999999999998],[0.16012000000000004,0.12017],[0.17008,0.11531999999999998,0.09771999999999997],[0.16012000000000004,0.12017],[0.89365],[0.9017499999999998],[0.8624],[0.17423000000000002],[0.16054000000000004],[0.07435999999999997,0.05443000000000002],[0.16054000000000004],[0.894946],[0.89557],[0.19322999999999996],[0.07300999999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.015045801948051959],[0.9013899999999999],[0.16054000000000004],[0.16054000000000004],[0.8948899999999999],[0.16054000000000004],[0.07200200000000001,0.05506000000000003],[0.8978100000000001],[0.16054000000000004],[0.7924399999999999],[0.07300999999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672],[0.16054000000000004],[0.07300999999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672],[0.16054000000000004],[0.90093],[0.16054000000000004],[0.07300999999999999,0.054220000000000025,0.032140666666666644],[0.21563000000000004],[0.07300999999999999,0.054220000000000025,0.032140666666666644],[0.16054000000000004],[0.16054000000000004],[0.78122],[0.16054000000000004],[0.16054000000000004],[0.07300999999999999,0.054220000000000025,0.032140666666666644],[0.07300999999999999,0.054220000000000025,0.032140666666666644],[0.8950099999999999],[0.8967866666666667],[0.16054000000000004,0.09879000000000002],[0.16054000000000004,0.09879000000000002],[0.10669399999999998,0.09666999999999999],[0.16054000000000004,0.11479000000000003],[0.17005000000000003],[0.87278],[0.07300999999999999,0.054220000000000025,0.032140666666666644],[0.07300999999999999,0.054220000000000025,0.032140666666666644],[0.89463],[0.79756],[0.16054000000000004,0.11479000000000003],[0.7517400000000001],[0.16054000000000004,0.09879000000000002],[0.89566],[0.07435999999999997,0.05443000000000002],[0.18278000000000003],[0.8959800000000001],[0.16054000000000004,0.09879000000000002],[0.89307],[0.8932650000000001],[0.8960649999999999],[0.8934199999999999],[0.16054000000000004],[0.07056199999999999,0.055541666666666656],[0.17005000000000003],[0.17005000000000003],[0.18278000000000003],[0.17005000000000003],[0.081047,0.06438333333333335],[0.16054000000000004,0.09879000000000002],[0.16054000000000004,0.11479000000000003],[0.17005000000000003],[0.16054000000000004],[0.8956299999999999],[0.16054000000000004,0.09879000000000002],[0.16054000000000004,0.11479000000000003],[0.07435999999999997,0.05443000000000002],[0.18278000000000003],[0.17005000000000003],[0.16054000000000004],[0.17005000000000003],[0.7023099999999998],[0.88192],[0.7924399999999999],[0.16054000000000004,0.11479000000000003],[0.898985],[0.8936258137768662],[0.054220000000000025,0.032140666666666644,0.024544166666666672,0.015045801948051959],[0.054220000000000025],[0.054220000000000025],[0.8952200000000001],[0.8933099999999999],[0.8989199999999998],[0.73987],[0.054220000000000025],[0.054220000000000025],[0.07837999999999996],[0.054220000000000025,0.032140666666666644,0.024544166666666672],[0.054220000000000025,0.032140666666666644,0.024544166666666672],[0.09654500000000002],[0.89428],[0.054220000000000025,0.032140666666666644],[0.90184],[0.054220000000000025,0.032140666666666644],[0.8953000000000001],[0.89753],[0.8936],[0.89672],[0.054220000000000025,0.032140666666666644],[0.054220000000000025,0.032140666666666644],[0.054220000000000025,0.032140666666666644],[0.11228000000000002],[0.054220000000000025,0.032140666666666644],[0.054220000000000025],[0.893602121212121],[0.8944070542547292],[0.032140666666666644],[0.032140666666666644],[0.032140666666666644],[0.032140666666666644],[0.032140666666666644],[0.032140666666666644,0.024544166666666672,0.015045801948051959],[0.032140666666666644,0.024544166666666672,0.015045801948051959],[0.032140666666666644,0.024544166666666672],[0.032140666666666644,0.024544166666666672],[0.032140666666666644,0.024544166666666672],[0.8935989075630248],[0.89978],[0.032140666666666644,0.024544166666666672],[0.8935989075630246],[0.8935989075630248],[0.032140666666666644],[0.024544166666666672,0.015045801948051959],[0.024544166666666672,0.015045801948051959],[0.024544166666666672,0.015045801948051959],[0.8935989075630235],[0.024544166666666672],[0.024544166666666672],[0.024544166666666672],[0.8935997290145989],[0.024544166666666672],[0.015045801948051959],[0.015045801948051959],[0.01513580194805196],[0.015045801948051959],[0.015045801948051959],[0.015045801948051959],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.17607000000000003],[0.14670999999999995,0.07435999999999997],[0.901408],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.8411500000000001],[0.15203999999999998],[0.15203999999999998],[0.15203999999999998],[0.15203999999999998],[0.15744999999999998],[0.15203999999999998],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.8954033333333333],[0.15203999999999998],[0.15203999999999998],[0.15203999999999998],[0.15203999999999998],[0.89954],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.14529999999999998,0.1016],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.89186],[0.15203999999999998],[0.89489],[0.14670999999999995,0.07435999999999997],[0.16276000000000002],[0.89223],[0.14670999999999995,0.07435999999999997],[0.15744999999999998],[0.15203999999999998],[0.89809],[0.8144499999999999],[0.8854958333333333],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.15744999999999998],[0.8934399999999998],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.8482199999999999],[0.8957033333333333],[0.15203999999999998],[0.15203999999999998],[0.15744999999999998],[0.5750200000000001],[0.15203999999999998],[0.15203999999999998],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.9014900000000001],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.89365],[0.8970849999999999],[0.15566999999999998],[0.8988200000000001],[0.90267],[0.15203999999999998],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.15744999999999998],[0.14670999999999995,0.07435999999999997],[0.50613],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.15203999999999998],[0.90076],[0.89984],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.8997399999999999],[0.8945400000000001],[0.8524299999999998],[0.15203999999999998],[0.15203999999999998],[0.15297000000000002],[0.89968],[0.9018642857142858],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.1670899999999999],[0.9012800000000001],[0.14670999999999995,0.07435999999999997],[0.9000400000000001],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.17115],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.8956439999999999],[0.8950999999999999],[0.8997999999999999],[0.15203999999999998],[0.15203999999999998],[0.8933399999999999],[0.15203999999999998],[0.9014900000000001],[0.15203999999999998],[0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.015045801948051959],[0.15203999999999998],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.8679300000000001],[0.47030000000000005],[0.45043000000000005],[0.14529999999999998,0.1016],[0.77368],[0.4801],[0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672],[0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644],[0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.897818],[0.15203999999999998],[0.15203999999999998],[0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644],[0.89635],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.84515],[0.8943579999999999],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.16008],[0.15744999999999998],[0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644],[0.8997999999999999],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644],[0.15203999999999998],[0.15203999999999998],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.89704],[0.8933399999999999],[0.89976],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.8942400000000001],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.15203999999999998],[0.89688],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.15203999999999998],[0.15203999999999998],[0.89975],[0.14670999999999995,0.07435999999999997],[0.891676],[0.8794500000000001],[0.15203999999999998],[0.89239],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.15203999999999998],[0.15203999999999998],[0.90123],[0.8913599999999999],[0.15203999999999998],[0.15203999999999998],[0.15203999999999998],[0.15203999999999998],[0.15203999999999998],[0.15203999999999998],[0.89879],[0.15203999999999998],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.8962499999999999],[0.8962766666666668],[0.15744999999999998],[0.15203999999999998],[0.89779],[0.15203999999999998],[0.8975142857142856],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.89642],[0.14670999999999995,0.07435999999999997],[0.14670999999999995,0.07435999999999997],[0.8936],[0.15203999999999998],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.15203999999999998],[0.89968],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.15203999999999998],[0.8984099999999999],[0.15203999999999998],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.15744999999999998],[0.8845700000000001],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.891676],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.89489],[0.14670999999999995,0.07435999999999997,0.05443000000000002],[0.15203999999999998],[0.15203999999999998],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.15203999999999998],[0.14670999999999995,0.07435999999999997],[0.15203999999999998],[0.8978742857142858],[0.06992200000000001,0.054700000000000026,0.031035666666666694,0.02486416666666668,0.015045801948051959],[0.8536800000000001],[0.07200200000000001],[0.8950699999999999],[0.07200200000000001],[0.06992200000000001,0.054700000000000026],[0.06992200000000001,0.054700000000000026],[0.5188999999999999],[0.07435999999999997],[0.10813083333333333],[0.8930799999999998],[0.7722399999999999],[0.8138400000000001],[0.07435999999999997],[0.07200200000000001],[0.07300999999999999],[0.07435999999999997],[0.9001699999999999],[0.07200200000000001],[0.06992200000000001,0.054700000000000026],[0.06992200000000001,0.054700000000000026],[0.84887],[0.07435999999999997],[0.06992200000000001,0.054700000000000026],[0.89516],[0.06992200000000001,0.054700000000000026],[0.09616999999999999],[0.07300999999999999],[0.8933399999999999],[0.89368],[0.07300999999999999],[0.89308],[0.07300999999999999],[0.06992200000000001,0.054700000000000026],[0.06992200000000001,0.054700000000000026],[0.8874300000000002],[0.06992200000000001,0.054700000000000026],[0.07435999999999997],[0.07435999999999997],[0.07435999999999997],[0.07300999999999999],[0.07300999999999999],[0.06992200000000001,0.054700000000000026],[0.07435999999999997],[0.07435999999999997],[0.06992200000000001,0.054700000000000026],[0.07300999999999999],[0.8933399999999999],[0.06992200000000001,0.054700000000000026],[0.8511200000000001],[0.06992200000000001,0.054700000000000026],[0.07300999999999999],[0.06992200000000001,0.054700000000000026,0.031035666666666694,0.02486416666666668],[0.06992200000000001,0.054700000000000026,0.031035666666666694,0.02486416666666668],[0.8734100000000001],[0.06992200000000001,0.054700000000000026,0.031035666666666694],[0.16746],[0.84673],[0.06992200000000001,0.054700000000000026,0.031035666666666694],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07300999999999999],[0.8996666666666666],[0.89204],[0.06992200000000001,0.054700000000000026,0.031035666666666694],[0.07435999999999997],[0.06992200000000001,0.054700000000000026,0.031035666666666694],[0.07200200000000001,0.05506000000000003],[0.06992200000000001,0.054700000000000026,0.031035666666666694],[0.07300999999999999],[0.07300999999999999],[0.06992200000000001,0.054700000000000026,0.031035666666666694],[0.8950699999999999],[0.07435999999999997],[0.891],[0.90075],[0.07435999999999997],[0.06992200000000001,0.054700000000000026],[0.07300999999999999],[0.07435999999999997],[0.07200200000000001,0.05506000000000003],[0.054220000000000025,0.032140666666666644,0.024544166666666672,0.015045801948051959],[0.8936],[0.05443000000000002],[0.054700000000000026],[0.8992699999999999],[0.8935999999999998],[0.054220000000000025],[0.054700000000000026],[0.9028699999999998],[0.8943300000000001],[0.054220000000000025,0.032140666666666644,0.024544166666666672],[0.90055],[0.8937299999999999],[0.054220000000000025,0.032140666666666644,0.024544166666666672],[0.054220000000000025,0.032140666666666644],[0.054220000000000025,0.032140666666666644],[0.054220000000000025,0.032140666666666644],[0.05443000000000002],[0.09841000000000003],[0.05443000000000002],[0.89394],[0.054220000000000025,0.032140666666666644],[0.10395999999999997],[0.054700000000000026],[0.054220000000000025,0.032140666666666644],[0.10138],[0.054220000000000025,0.032140666666666644],[0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.031035666666666694,0.02486416666666668],[0.03175066666666667],[0.03175066666666667],[0.03175066666666667],[0.89978],[0.03175066666666667],[0.03175066666666667],[0.03175066666666667],[0.07494999999999995],[0.031035666666666694,0.02486416666666668],[0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.03175066666666667,0.024687500000000008],[0.052745],[0.893602121212121],[0.86765],[0.031035666666666694,0.02486416666666668],[0.54587],[0.02486416666666668,0.015045801948051959],[0.12595000000000003],[0.8936],[0.8935999999999998],[0.024687500000000008,0.015045801948051959],[0.02486416666666668],[0.024687500000000008,0.015045801948051959],[0.02486416666666668],[0.893602121212121],[0.015045801948051959],[0.8935989075630235],[0.015045801948051959],[0.8935989075630235],[0.015045801948051959],[0.8371200000000002],[0.89161],[0.14847000000000002],[0.8997399999999999],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8918623333333334],[0.14847000000000002],[0.14847000000000002],[0.8144499999999999],[0.14847000000000002],[0.17115],[0.89657],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.89621],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.87884],[0.14847000000000002],[0.9007339999999999],[0.89779],[0.14847000000000002],[0.7725100000000001],[0.14847000000000002],[0.8207099999999998],[0.89764],[0.17497000000000001],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8207099999999998],[0.8565799999999999],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.7098199999999999],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.17553000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.77368],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.84863],[0.90267],[0.14847000000000002],[0.90076],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.49789000000000005],[0.14847000000000002],[0.14847000000000002],[0.89326],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.90267],[0.9011866666666666],[0.9009333333333333],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.8793000000000001],[0.14847000000000002,0.07200200000000001],[0.8997999999999999],[0.8728499999999999],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.77368],[0.8958499999999999],[0.86894],[0.14847000000000002,0.07200200000000001],[0.14847000000000002],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8468899999999999],[0.32880000000000004],[0.18816000000000005],[0.8953724999999999],[0.14847000000000002,0.07200200000000001],[0.8955399999999999],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8865300000000002],[0.17012999999999998],[0.14847000000000002,0.07200200000000001],[0.8949883333333334],[0.90044],[0.14847000000000002,0.07200200000000001],[0.56715],[0.14847000000000002,0.07200200000000001],[0.8933399999999999],[0.9036033333333334],[0.14847000000000002,0.07200200000000001],[0.45043000000000005],[0.9011866666666666],[0.14847000000000002,0.07200200000000001],[0.9012600000000001],[0.14847000000000002,0.07200200000000001],[0.90107],[0.535245],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.17607000000000003],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.15322999999999998],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.9009333333333333],[0.8679300000000001],[0.14847000000000002,0.07200200000000001],[0.9059899999999999],[0.8987400000000001],[0.89978],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.88726],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.89606],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.90615],[0.16608533333333336],[0.4863199999999999],[0.8358500000000001],[0.8953699999999998],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8781599999999999],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.9055],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002],[0.8679300000000001],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.9011199999999999],[0.15297000000000002],[0.8943299999999998],[0.9000429999999999],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.8939776666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.8953099999999999],[0.18816000000000005],[0.9014942857142856],[0.14847000000000002],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.89832],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8953699999999998],[0.8987400000000001],[0.9031399999999999],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.9004100000000002],[0.171086],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.17115],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.8958699999999998],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.9000429999999999],[0.14847000000000002,0.07200200000000001],[0.86894],[0.9036033333333334],[0.14847000000000002],[0.14847000000000002],[0.8881899999999998],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.16662],[0.8927999999999999],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.89223],[0.14847000000000002,0.07200200000000001],[0.85964],[0.09433999999999998],[0.07200200000000001],[0.07200200000000001],[0.8936],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.9008899999999999],[0.07200200000000001],[0.11297800000000002],[0.07200200000000001],[0.8625700000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.8943399999999999],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.89564],[0.07200200000000001],[0.90683],[0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.07200200000000001,0.05506000000000003],[0.07265750000000003],[0.112998],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.8933399999999999],[0.9015657142857142],[0.9014599999999999],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.1038],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.8979799999999999],[0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001],[0.9017771428571428],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.8978000000000002],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.18030000000000002],[0.07200200000000001,0.05506000000000003],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001,0.05506000000000003],[0.9056700000000001],[0.89308],[0.05506000000000003],[0.90184],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.8991000000000001],[0.054700000000000026,0.031035666666666694,0.02486416666666668],[0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.891415],[0.8481433333333334],[0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.05506000000000003,0.03175066666666667],[0.8920399999999999],[0.05506000000000003,0.03175066666666667],[0.9003099999999999],[0.05506000000000003,0.03175066666666667],[0.05506000000000003,0.03175066666666667],[0.05506000000000003,0.03175066666666667],[0.05506000000000003,0.03175066666666667],[0.05506000000000003],[0.05506000000000003],[0.8935999999999998],[0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.03175066666666667,0.024687500000000008],[0.03175066666666667,0.024687500000000008],[0.8935989075630248],[0.03175066666666667,0.024687500000000008],[0.06353999999999999],[0.893602121212121],[0.8928189075630251],[0.8935989075630248],[0.03175066666666667],[0.03175066666666667],[0.03175066666666667],[0.03175066666666667],[0.03175066666666667],[0.03175066666666667,0.024687500000000008],[0.8935989075630246],[0.024687500000000008,0.015045801948051959],[0.3148099999999999],[0.024687500000000008,0.015045801948051959],[0.024687500000000008,0.015045801948051959],[0.8935989075630235],[0.024687500000000008],[0.024687500000000008],[0.04050399999999999],[0.8935989075630237],[0.04490000000000003],[0.015045801948051959],[0.015045801948051959],[0.08565000000000002],[0.02158344696969698],[0.015045801948051959],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.90302],[0.14847000000000002],[0.7841199999999999],[0.89497],[0.14847000000000002],[0.14847000000000002],[0.8918623333333334],[0.8955399999999999],[0.14847000000000002],[0.90076],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.17499000000000003],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8791],[0.14847000000000002],[0.8963700000000001],[0.89954],[0.14847000000000002],[0.8997800000000001],[0.89975],[0.14847000000000002],[0.16942533333333337],[0.14847000000000002],[0.14847000000000002],[0.8950999999999999],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.84154],[0.8679300000000001],[0.14847000000000002],[0.14847000000000002],[0.5209499999999999],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8999499999999999],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.16913600000000004],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.9009336666666667],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.89204],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.89657],[0.16948000000000008],[0.14847000000000002],[0.14847000000000002],[0.9024999999999999],[0.14847000000000002],[0.14670999999999995,0.07435999999999997],[0.4720599999999999],[0.89901],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.17199],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.89901],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.89305],[0.8777199999999998],[0.14847000000000002,0.07200200000000001],[0.89985],[0.8927999999999999],[0.9001500000000002],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.89326],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14603000000000002,0.08343000000000003],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.4801],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8883300000000001],[0.14847000000000002,0.07200200000000001],[0.8987400000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.9017499999999998],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8993767857142858],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.89779],[0.14847000000000002,0.07200200000000001],[0.51675],[0.84154],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.8865300000000002],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.5803400000000001],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.89986],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8940666666666667],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.89627],[0.14847000000000002],[0.8529500000000001],[0.14847000000000002],[0.14847000000000002],[0.9023900000000001],[0.14847000000000002],[0.89161],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.8968700000000001],[0.89155],[0.15297000000000002],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001],[0.9063299999999999],[0.8814033333333333],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.84863],[0.8916633333333334],[0.14847000000000002,0.071732,0.054900000000000025,0.032250666666666664],[0.9],[0.89448],[0.14847000000000002,0.07200200000000001],[0.8615999999999999],[0.14847000000000002,0.07200200000000001],[0.9016],[0.896396],[0.4604000000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.9001199999999999],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.89223],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002],[0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.07200200000000001],[0.07200200000000001],[0.7886],[0.07200200000000001],[0.8970999999999998],[0.09616999999999999],[0.8933399999999999],[0.9002283333333333],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.11031500000000002],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.13490000000000002],[0.07200200000000001],[0.8967866666666667],[0.07200200000000001],[0.88465],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.06992200000000001,0.054700000000000026,0.031035666666666694,0.02486416666666668],[0.07200200000000001],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.8936258137768662],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001],[0.8936258137768662],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.113455],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.89381],[0.8933399999999999],[0.07200200000000001,0.05506000000000003],[0.9015249999999998],[0.89394],[0.07200200000000001,0.05506000000000003],[0.26664000000000004],[0.07200200000000001],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.8948899999999999],[0.07200200000000001,0.05506000000000003],[0.9034760000000001],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.8933399999999999],[0.10247000000000002],[0.8999499999999999],[0.20915],[0.08343000000000003],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003],[0.84887],[0.8957099999999999],[0.8934750000000001],[0.07200200000000001],[0.8867199999999998],[0.07200200000000001,0.05506000000000003],[0.8943399999999999],[0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.89564],[0.7775200000000001],[0.9000220000000001],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.88501],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.05506000000000003,0.03175066666666667],[0.05506000000000003,0.03175066666666667],[0.05506000000000003,0.03175066666666667],[0.05506000000000003,0.03175066666666667],[0.07829],[0.05506000000000003,0.03175066666666667],[0.8929499999999999],[0.05506000000000003,0.03175066666666667],[0.89944],[0.05506000000000003],[0.05301999999999998],[0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.03175066666666667,0.024687500000000008],[0.03175066666666667,0.024687500000000008],[0.03175066666666667,0.024687500000000008],[0.032250666666666664],[0.893598907563025],[0.03175066666666667,0.024687500000000008],[0.893598907563025],[0.03175066666666667],[0.03175066666666667],[0.03175066666666667],[0.03175066666666667],[0.03175066666666667],[0.88673],[0.03175066666666667],[0.8935989075630248],[0.024687500000000008,0.015045801948051959],[0.024687500000000008,0.015045801948051959],[0.8935996166550485],[0.024687500000000008,0.015045801948051959],[0.024687500000000008],[0.024687500000000008],[0.024687500000000008],[0.024687500000000008],[0.024687500000000008],[0.015045801948051959],[0.015045801948051959],[0.015045801948051959],[0.015045801948051959],[0.015045801948051959],[0.03637999999999999],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.89901],[0.14847000000000002],[0.14847000000000002],[0.9007339999999999],[0.14847000000000002],[0.14847000000000002],[0.89621],[0.14847000000000002],[0.8938900000000002],[0.9001000000000001],[0.9],[0.14847000000000002],[0.14847000000000002],[0.9055199999999999],[0.14847000000000002],[0.8999583333333334],[0.14847000000000002],[0.89968],[0.14847000000000002],[0.14847000000000002],[0.8958699999999998],[0.14847000000000002],[0.14847000000000002],[0.9017842857142858],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8506600000000001],[0.8981199999999998],[0.17199],[0.14847000000000002],[0.8524299999999998],[0.14847000000000002],[0.89315],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.87568],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8936300000000001],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.89207],[0.8953699999999998],[0.14847000000000002],[0.14847000000000002],[0.89657],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8942400000000001],[0.14847000000000002],[0.8173300000000001],[0.15895],[0.14847000000000002],[0.14847000000000002],[0.90267],[0.14847000000000002],[0.8950699999999999],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8954033333333333],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8933399999999999],[0.14847000000000002],[0.14847000000000002],[0.889225],[0.7725100000000001],[0.8934399999999998],[0.4720599999999999],[0.14847000000000002],[0.14847000000000002],[0.8746700000000001],[0.14847000000000002],[0.7856799999999998],[0.14847000000000002],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.90076],[0.14847000000000002,0.07200200000000001],[0.8123999999999999],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.89693],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8984500000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.84601],[0.89497],[0.14847000000000002,0.07200200000000001],[0.8350500000000002],[0.8764800000000001],[0.6744999999999999],[0.14847000000000002,0.07200200000000001],[0.8984500000000001],[0.15744999999999998],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.84473],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.9000429999999999],[0.89621],[0.14847000000000002,0.07200200000000001],[0.9008158333333334],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8990500000000001],[0.7098199999999999],[0.14847000000000002,0.07200200000000001],[0.8986600000000001],[0.50613],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.51675],[0.8941799999999999],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.88354],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.16662],[0.8777199999999998],[0.89832],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.8256900000000001],[0.89984],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.8144499999999999],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.171086],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.8981199999999998],[0.9016],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8123999999999999],[0.14847000000000002],[0.8207099999999998],[0.14847000000000002],[0.48869999999999997],[0.89779],[0.14847000000000002],[0.14847000000000002],[0.8746700000000001],[0.9001500000000002],[0.14847000000000002],[0.90073],[0.8781599999999999],[0.14847000000000002],[0.14847000000000002],[0.16784533333333335],[0.14847000000000002],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.8882300000000001],[0.89954],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.15844999999999995],[0.8953724999999999],[0.14847000000000002,0.07200200000000001],[0.8912599999999999],[0.88989],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.8939776666666667],[0.15844999999999995],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.8998099999999999],[0.16111999999999999],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002],[0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.8946],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.90155],[0.07200200000000001],[0.07200200000000001],[0.89581],[0.10675000000000001],[0.8968499999999999],[0.8978399999999999],[0.8947199999999998],[0.27225],[0.07200200000000001],[0.07200200000000001],[0.8956500000000001],[0.07200200000000001],[0.8536800000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.083197],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.8982299999999999],[0.07200200000000001],[0.89853],[0.07200200000000001],[0.27225],[0.07200200000000001],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.89564],[0.88465],[0.8854799999999999],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.11110957142857143],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.1028],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.10660399999999999],[0.9016771428571427],[0.07200200000000001,0.05506000000000003],[0.7329600000000001],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.9056700000000001],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.08343000000000003],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.8962199999999999],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.09931999999999999],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003],[0.8969199999999999],[0.8138400000000001],[0.07200200000000001],[0.8456199999999999],[0.90075],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001,0.05506000000000003],[0.07200200000000001],[0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.05506000000000003],[0.05506000000000003],[0.8912599999999999],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.9026349999999999],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003],[0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.9005099999999999],[0.054220000000000025,0.032140666666666644],[0.11219000000000001],[0.8951399999999999],[0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.05506000000000003,0.03175066666666667],[0.05506000000000003,0.03175066666666667],[0.89505],[0.05506000000000003,0.03175066666666667],[0.49933999999999995],[0.05506000000000003,0.03175066666666667],[0.05506000000000003,0.03175066666666667],[0.25558000000000003],[0.05506000000000003],[0.06287333333333334],[0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.81565],[0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.03175066666666667,0.024687500000000008],[0.03175066666666667,0.024687500000000008],[0.03175066666666667],[0.03175066666666667],[0.03175066666666667,0.024687500000000008],[0.03175066666666667],[0.07862],[0.03175066666666667],[0.03175066666666667],[0.8935999999999996],[0.03175066666666667],[0.03175066666666667,0.024687500000000008],[0.03175066666666667],[0.05196333333333334],[0.893596387347932],[0.024687500000000008,0.015045801948051959],[0.024687500000000008,0.015045801948051959],[0.024687500000000008,0.015045801948051959],[0.025540000000000007],[0.024687500000000008],[0.8935999999999996],[0.04099000000000001],[0.024687500000000008],[0.015045801948051959],[0.015045801948051959],[0.015045801948051959],[0.021319974747474754],[0.28351],[0.015045801948051959],[0.90107],[0.9000400000000001],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8679300000000001],[0.27691999999999994],[0.17974999999999994],[0.9060599999999999],[0.83568],[0.14847000000000002],[0.14847000000000002],[0.89161],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8987999999999999],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.89635],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8933399999999999],[0.896396],[0.14847000000000002],[0.8764800000000001],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8915200000000001],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8978742857142858],[0.8956439999999999],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8883300000000001],[0.14847000000000002],[0.14847000000000002],[0.19768999999999998],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8969300000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.16412],[0.89976],[0.14847000000000002],[0.8940666666666667],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8999583333333334],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.89764],[0.89986],[0.9028699999999998],[0.45043000000000005],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.8918623333333334],[0.14847000000000002],[0.14847000000000002],[0.8785449999999999],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.14847000000000002,0.07200200000000001],[0.9009336666666667],[0.17497000000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8990500000000001],[0.90076],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8949300000000001],[0.14847000000000002],[0.15203999999999998],[0.8927999999999999],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8977199999999999],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.9028699999999998],[0.8969299999999999],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.89621],[0.14847000000000002,0.07200200000000001],[0.89204],[0.8870000000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8918623333333334],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8928199999999998],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.8971699999999998],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.83812],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002],[0.9058699999999998],[0.14847000000000002],[0.89978],[0.14847000000000002],[0.14847000000000002],[0.89734],[0.14847000000000002],[0.89976],[0.14847000000000002],[0.14847000000000002],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.27226999999999996],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.16276000000000002],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.8207099999999998],[0.89497],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.8965200000000001],[0.8969299999999999],[0.9055],[0.14847000000000002,0.07200200000000001],[0.8934399999999998],[0.47296000000000005],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.89832],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001,0.05506000000000003],[0.14847000000000002,0.07200200000000001],[0.8955399999999999],[0.89345],[0.14847000000000002],[0.84108],[0.14847000000000002],[0.14847000000000002,0.07200200000000001],[0.14847000000000002],[0.14847000000000002],[0.8350500000000002],[0.9010058333333333],[0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.8176499999999999],[0.07200200000000001],[0.87331],[0.07200200000000001],[0.07200200000000001],[0.07300999999999999],[0.8625700000000001],[0.07200200000000001],[0.8947199999999998],[0.07200200000000001],[0.07200200000000001],[0.73879],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.8962199999999999],[0.07200200000000001],[0.07200200000000001],[0.8959800000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.07200200000000001],[0.8836291666666666],[0.07200200000000001],[0.89709],[0.12962999999999997],[0.07200200000000001],[0.07200200000000001],[0.61423],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.8852500000000001],[0.07200200000000001,0.05506000000000003],[0.8868941666666667],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.89229],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.9000799999999998],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003],[0.07200200000000001],[0.07200200000000001,0.05506000000000003],[0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.8734100000000001],[0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.87278],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.900666],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003,0.03175066666666667],[0.07200200000000001,0.05506000000000003],[0.8625700000000001],[0.07200200000000001],[0.07200200000000001],[0.8950799999999999],[0.07200200000000001],[0.9028700000000001],[0.9024190000000001],[0.20915],[0.07200200000000001],[0.9009320000000001],[0.07200200000000001,0.05506000000000003],[0.07200200000000001]],\"times\":[[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035,0.1111111111111111],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111,0.3333333333333333,1.0],[0.1111111111111111,0.3333333333333333,1.0],[0.1111111111111111,0.3333333333333333],[0.1111111111111111,0.3333333333333333],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.3333333333333333,1.0],[0.3333333333333333,1.0],[0.3333333333333333,1.0],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[1.0],[1.0],[1.0],[1.0],[1.0],[1.0],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.037037037037037035,0.1111111111111111],[0.037037037037037035,0.1111111111111111],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.1111111111111111,0.3333333333333333,1.0],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111,0.3333333333333333],[0.1111111111111111,0.3333333333333333,1.0],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.3333333333333333,1.0],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333,1.0],[0.3333333333333333],[0.3333333333333333,1.0],[0.3333333333333333],[0.3333333333333333],[1.0],[1.0],[1.0],[1.0],[1.0],[1.0],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035,0.1111111111111111],[0.037037037037037035,0.1111111111111111],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035],[0.1111111111111111],[0.1111111111111111,0.3333333333333333,1.0],[0.1111111111111111,0.3333333333333333,1.0],[0.1111111111111111,0.3333333333333333],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.3333333333333333,1.0],[0.3333333333333333],[0.3333333333333333,1.0],[0.3333333333333333,1.0],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[1.0],[1.0],[1.0],[1.0],[1.0],[1.0],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.037037037037037035,0.1111111111111111],[0.037037037037037035,0.1111111111111111],[0.037037037037037035,0.1111111111111111],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035],[0.1111111111111111],[0.1111111111111111,0.3333333333333333,1.0],[0.1111111111111111,0.3333333333333333,1.0],[0.1111111111111111,0.3333333333333333],[0.1111111111111111,0.3333333333333333],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.3333333333333333,1.0],[0.3333333333333333,1.0],[0.3333333333333333],[0.3333333333333333,1.0],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[1.0],[1.0],[1.0],[1.0],[1.0],[1.0],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035],[0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.037037037037037035,0.1111111111111111],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035,0.1111111111111111],[0.037037037037037035,0.1111111111111111],[0.037037037037037035],[0.037037037037037035],[0.1111111111111111],[0.1111111111111111,0.3333333333333333,1.0],[0.1111111111111111],[0.1111111111111111,0.3333333333333333,1.0],[0.1111111111111111,0.3333333333333333],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111],[0.1111111111111111,0.3333333333333333],[0.1111111111111111],[0.1111111111111111],[0.3333333333333333],[0.3333333333333333,1.0],[0.3333333333333333,1.0],[0.3333333333333333,1.0],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[0.3333333333333333],[1.0],[1.0],[1.0],[1.0],[1.0],[1.0],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678,0.037037037037037035],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856,0.012345679012345678],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.00411522633744856],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035,0.1111111111111111],[0.012345679012345678,0.037037037037037035],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678],[0.012345679012345678,0.037037037037037035],[0.012345679012345678]],\"x0\":[3.458344993497324,-0.5755236791448688,2.244330740924722,-3.092043730782528,-7.19500866519835,3.2567260621056207,0.9095718045455552,0.5394011954017675,-8.700106698208218,9.853668704563383,6.574464556273277,8.51092107502815,9.643604770336147,-3.6395256915886804,9.970135325079688,6.426596803147898,1.8092653270904044,-2.472121155987905,9.402044486559095,-4.874584594947207,9.5768931375706,-4.94109411231467,-1.6038918721671447,-3.745951010628634,-7.9381641912782115,9.732536788528694,8.753911881865228,9.826395129090958,8.492890362988586,9.853778798602491,9.251716622210523,9.719356290547232,9.630419069540267,2.3380104165642344,9.763309496699001,-9.552625719969283,6.554681883120715,9.84977048715482,9.815534181231577,9.539712298657783,-5.082089323681087,5.725329665789198,2.4019950582466247,9.88130105948349,9.747250035728555,9.228643390851957,9.763078466876525,9.802939003949913,9.935284939572643,0.25769417758889546,9.960496329807874,7.92048648317024,9.577432028730264,9.821508965096484,1.0360896196476528,9.93961587033182,9.76906747573706,9.6282332165815,-4.997937869404709,9.529649337221812,-9.708534025686859,9.419731223037946,8.860850609979614,9.62334416759833,1.9229517743384523,9.956552681121728,9.933140705776083,9.444139336369815,9.774878231186186,9.953091147147237,9.701874785569085,9.668216960622253,9.80725174840287,9.436587043648455,9.545249839206807,9.756594763894533,9.960925604888654,9.445326030764889,9.87624703551037,9.534206759053454,5.9590684299625565,9.995552137969458,9.804221103860215,-8.683887257191017,9.671653892351607,9.715086374724219,-5.472280411662149,9.818711214539377,9.820609282246835,9.852262375319523,9.495334091289877,9.80519647003641,9.526783891334006,6.556778752490612,5.7536777878861365,-4.523903661915556,9.539709528084352,-9.31257872834484,2.116101841603637,9.91750342105075,9.665932869376256,-7.474521758248384,9.706434943784188,9.846837146163601,9.639286206965927,9.583114872718184,9.833278494248546,9.562091394453766,-2.596657464349434,-7.339610028676853,9.916734463361355,9.908937610640272,9.951781023618402,9.64286227294481,9.575677200174034,9.902464542197382,-3.8033781568279394,1.0235536956399471,9.679201314846452,9.45347192727067,9.617371251240463,9.746291982248614,9.936028047679418,9.866567218611284,9.949939229932557,9.922000848049969,9.925983712312402,9.60965114069825,9.738554719271832,-8.575300375909015,9.587078868041516,-7.7616361986324245,9.542749391208424,-1.6498290400988775,9.518694065534149,9.683238204021158,-5.620959057145594,9.943115957479698,9.917409822179422,7.971775469953645,9.661519223933105,2.340865425853716,9.945331270888556,9.881960855844163,9.91624025071,9.714035701161233,9.739357043007288,-7.722522084092729,9.804702123455868,0.3095634677661252,9.575551165549196,9.633103521997842,9.731090129711944,9.876396518537604,2.293544491145571,-1.2063144878834127,9.870364401179359,-0.4171438214106544,5.088210420749107,2.69425312447723,9.544159750445498,9.584962101658341,-2.3519230148043,9.771596894028882,9.543304581321198,9.639229701939268,-9.289677267894534,-5.639846861719107,9.769744603283876,9.755615337330976,9.659978816242457,9.646045332204704,-7.96150400169868,3.6338408718392134,-5.521945110969082,9.720765316628007,9.898873650588051,-2.7399284122702543,9.73152110627979,4.379523886087682,6.6542015433824595,9.73675639035756,9.741387065780977,9.797311138147144,-0.5395631711136986,1.651316474408187,9.578555231336935,2.5972799060231466,9.573555654550788,9.78945202932562,9.457051919834608,8.994019097552265,-0.19236753279133723,9.49149351583819,9.61868536217969,9.493507556639841,9.524262766575717,-4.094855743021935,9.704337805100916,9.62288356852497,9.550778961798404,7.736347845999433,9.618756224977101,9.49755608636551,9.51619779772168,9.744919275762875,-3.8652651996093557,8.989889336712988,9.515535846321107,9.66966925868439,9.897297763544493,8.765404673354187,9.035631764692347,-9.469761401509945,9.78145232342203,-4.595311684905628,-6.213384189661233,9.436241861249016,9.688362324134594,9.850970657697204,-7.885909696673437,9.53901103224306,9.387470550149068,9.713066312164948,-1.2695192643032662,-0.18251082913158,9.44150511454701,9.892296309045825,3.5699138304190132,-9.345556634574997,7.41930347738219,1.0877491704463598,9.325021049684555,9.901612990386592,9.464226042786184,9.531530132083823,9.415279685336767,9.816722156831865,9.156737494569214,-1.0210427738165944,-3.83047879461966,-7.609511505833197,9.26313592440319,9.29215509812267,9.291177315149419,9.697438267244102,-5.236183132766619,-6.763356667923475,-1.9259196035483015,9.474961566033091,-1.9230759951526455,9.434050410202673,9.743362073820837,-8.843168913454498,9.908714688487596,7.329604579522929,5.821314223774472,9.374386296809387,9.664852573489124,9.917050037475647,9.659885966896379,9.776817393895318,9.435319135861647,-9.901526476627222,9.255776307553162,9.603130497268694,1.6884595792067376,9.85242276096097,9.20286495281902,9.23855694979359,4.408797115751863,9.970283712701114,9.412149440972286,9.852654208444719,9.766625205475894,6.361156803678231,-5.996215961448367,9.663089956070397,9.94829512628565,5.615675661958155,9.104614896355304,8.424685632144861,-0.6001016151973282,9.778345392544232,9.520346098341822,-8.964411606642749,9.287443066502014,9.45486037274653,0.6155102399843209,9.986121640544297,1.6517924356729718,9.366189494786983,8.064929240214433,-2.8083305350310344,9.845548800259639,-5.50835904264761,6.145241589895523,4.711448541208101,-8.017140465250328,9.41651678638166,3.405312809441325,8.582184197630323,8.895169634608727,7.904155002981852,8.46874745877803,4.511865410143471,9.533582999697472,9.145125495881544,8.610095626346045,9.428280830071632,6.0950109629502975,9.758091648356665,9.460498892657117,9.391535072313758,8.191144570384164,8.484424087950597,9.901174650932877,8.806918589873366,-2.9498053229981007,7.0485045385921055,9.518864682212755,9.343456700295452,-5.088088829888202,-5.206774229398816,9.871362871242816,9.806081528284516,9.87925253753674,5.151535475672658,-4.8642747685896275,-8.298331221205949,-3.910056656236698,9.954331557663323,9.802489868617286,9.88003317092,9.949001370643916,9.825245388766497,6.708567131908499,-9.71267945684989,9.871046567030117,-7.685194042283332,9.872823275937296,7.199456193905437,-6.508045913108347,-6.7785710768717955,2.3574246650039843,9.879837456246456,9.796889931468758,9.923189706388072,-0.1635985689683217,9.892626771603346,9.911577840583249,-3.8507618097339025,3.995984525628433,9.922470010649384,9.818169403001558,9.770928578887766,9.70959382958295,9.77532705006847,9.886452888244584,9.816910255812132,9.908496858829082,9.860124295824477,9.97761305912243,1.063892947013688,5.988209772046654,9.93514470050441,-4.990638170649746,1.8969836014395032,9.841844000897776,9.845836462655662,9.904330081569782,9.943908702941538,-0.5659946881901483,9.938346756147599,9.895065655794141,9.911983688041445,-0.21873770106086,9.908775109969731,8.016492727414843,9.337914228642113,1.1344746876642553,9.059711281175883,9.255873975995492,7.418534824316293,9.284461322708005,5.550034435945319,9.309237335127023,-0.7733724499541434,9.288404226718256,9.361568332413924,4.692663321753361,9.851092953467159,9.590356000126008,9.928194210356384,9.483336591049493,7.724149079231605,9.473992811383816,9.728047911933547,9.032225349734336,9.860136446503432,9.410085526557324,9.046764071869621,9.136340725928363,9.53725430878444,9.20189220574467,9.894284760882524,-5.41921885263222,9.675038084891433,9.898636434672209,9.710281536520714,9.671522074764678,0.40519799206597895,8.947632625664419,9.443441874583804,4.631921674143033,9.47293864497924,9.734009661091736,-7.895534058429661,9.507793134706766,3.225900612635055,9.424299865130369,4.176541853991136,-8.491785457766047,9.23960190704047,7.540526705790288,9.824001129902669,2.600482211968128,-2.9041112160809384,-5.178816597931791,9.063736923735139,9.383104048691731,7.4741345132214505,-7.767542696704124,9.29745091463553,9.552699865517656,9.376543009867653,1.581701572764647,-5.8825443943315525,9.511422090233662,9.640547500848133,7.826977724996958,5.869663625148508,9.87454931738338,9.535363897481592,9.513678041420441,9.43377152301974,9.184464950151586,9.494253071949348,9.55409458792974,9.471171507709176,5.487299065742988,9.44667367862015,9.404533735215587,9.554153886567395,-0.19233110945206633,6.228223447857658,8.063442645496941,6.475479686864272,-2.006053482376336,9.678305403725997,9.903228854628118,9.297938563288248,9.509791379994368,7.553857698430068,9.222159481361448,7.8026127549490525,9.039086016335741,9.433440139052063,9.496184249838812,9.814000360730226,8.848522879700383,5.700374639729176,9.683117288584803,9.115496293889905,9.600100938691675,2.1052784841136667,-8.779380875354839,5.777064961237137,9.479446635046834,9.859857439122159,2.126141280890101,0.854115951883113,7.93011044554914,9.059389224203215,9.078040322111171,9.081560388340442,9.409586795857724,8.58593179546569,3.0121814272070537,9.458333286778885,0.41299397086339695,9.137468498764598,9.601380363179281,9.206119450311295,9.940477085631557,9.331792126100154,5.961196547261892,9.411050524998409,9.056855692197079,9.160559772019273,9.434848149476704,9.407213769521487,5.279589372043258,8.165250597942581,9.970711375339835,9.501363351204677,4.301654196670508,9.687811131339686,5.41957825496176,9.649919803572466,9.519192797858263,9.848897309057662,9.275221344899371,-1.052402044593947,2.2341476853750635,0.9868867785312059,4.300294652857431,0.6565431300872486,3.540436505060672,9.547898595576878,9.41369673732407,9.73267438287007,9.723713392965486,9.555886478083973,9.134897296150854,-0.7691446416135186,9.493940944596527,9.562050446803298,9.72735420124604,-3.519692960008907,9.094061744014159,-6.216532832132227,-0.8773929385357739,9.163092117221801,9.573827133213676,9.469236547635354,5.917013218418006,7.694069377531644,9.995214390136507,7.4723339663327195,9.101299965439502,9.999409905745992,9.685338896719152,9.92878237890605,9.154918484240017,9.076976746880195,9.567122923109547,9.220071913621656,-6.978883743372184,-9.68228247392285,-4.6727161725777755,9.69195113662829,9.372590199497267,9.468557212942514,-3.5200302698965613,9.643170997581493,9.149355377558123,9.597327777310387,9.8199426059155,-4.210341510539943,8.958607310998968,9.613193806251939,9.615445445905774,9.932023001034594,-1.59567245993615,9.452094267679897,5.577949321114442,-7.3851660403283255,9.636170733776904,-4.141194954732759,9.35289097920635,9.652350229145735,9.946395813812622,9.561202433778572,-7.0524711196564205,-6.892445343653602,9.868034541502311,9.864512260521586,9.57592850930197,9.57662127047368,9.96870889929627,9.577407664973705,-7.502485515325721,9.832204774807948,9.770053099385105,9.10674975026253,9.590305212335053,9.325627854028507,9.795247241170586,9.431282513125069,3.101308262717966,7.688662186314826,9.522227967377315,-4.570179288008367,9.528324529480749,8.586299121291294,9.240905224493499,9.58589885508852,9.529515067662501,9.221687556872123,3.010351274211711,9.260278585753717,9.29627234098264,0.5070480933271231,9.497933697273382,9.290761292575827,9.964937058636544,0.9701219759567152,9.25063685745737,9.82170156761483,-6.068259257410928,9.517268205043372,9.345842403020775,7.839257730249514,-8.361456396911349,7.346688651964179,5.572746380172568,9.259002774264435,-9.575613267805439,9.025335381609704,9.681712186739752,9.874558102671784,7.2446197840015145,9.649461339333794,9.24170231976364,9.87066944438855,9.208821221512387,7.53961957904589,-0.44334482013822196,7.345760443643641,-6.6598572845989175,7.2701959799847735,7.421259540911819,7.686906581055521,-0.43267593994144704,9.451810791343608,3.8717859948783317,-4.909395047052476,2.208821199944067,-2.707466212484608,9.099475421492976,7.36328929228884,9.489965506757883,9.237659701720343,-9.750192727927915,7.339450713046144,7.550583388734108,7.459578400176092,5.004936062696361,9.150501334345705,7.559184427679931,-9.278216760946203,7.626640727000954,2.8188233518266,9.699479052507094,2.1783868374058546,7.690544685952922,9.727112252917689,-7.0168010640860246,9.648117274507353,7.51285438396032,7.579880542620273,5.45682050935422,7.507197281187871,9.396762074675,9.30352645661636,9.434338156462033,9.888770827419712,9.706706959202226,7.508346867166683,9.257111940858152,9.296028817856964,7.496072503390469,9.593794072161288,3.453462633861598,7.786287484887634,8.30133462001498,7.580039121720958,9.559896730936941,7.545691827174991,7.597358290567826,-3.2517873850491963,7.522610236284937,6.70381918342915,-0.5081786281180705,7.411345672949146,7.19816704189439,7.349941203599798,9.870493833636477,-8.882050342146751,-4.5055045222327035,7.881492781306324,9.473309754638318,7.421859047935804,7.154135372144722,7.438403113424876,9.50032249240737,9.683019500390714,7.610934774934023,-9.194874784230077,9.091636605704615,-9.348747267278753,0.5900392114313835,9.285504388332324,7.650390224409744,9.674895147083255,9.424736482420784,7.107955248336157,9.735591243931417,-5.686179864880212,9.151152734053777,7.392253422125975,-2.455159946422798,-4.225592349633896,9.59344481936084,7.597236834814279,3.130079876401613,-6.212333991933057,9.796782234293236,-4.263525822204759,4.702576896428422,9.811635910692754,9.706713713915413,9.777447515720706,9.699305972421602,9.220785821648487,9.781260230951414,9.287002027838412,0.6812295761255776,9.606368272629563,-1.126259210756519,7.480765901617637,9.539854098275406,9.068066140095638,9.638268180675581,7.068579202572202,7.407237213965118,7.2495645056534315,7.339917835979527,7.237360934484094,5.456584220316801,7.241607431261407,7.060364010645152,6.899295117388693,6.804330849592816,7.551105481010705,6.975901816177355,7.26842940641442,7.280421493817396,-6.406768406433459,-4.645570819183826,7.484076014268929,7.90398015146646,7.3769789068517575,-3.2162313976786594,-9.531116737197745,9.641650353996543,7.358764932916685,7.732471631719321,6.88535638580332,7.408577247739348,-4.249152820626438,7.229559719542614,0.8800498921991906,7.225974752632634,2.9105054359762548,7.065431941731276,-1.9733245831802666,-1.8187106374477402,7.311563798971118,2.1914826531369886,7.012960611840256,7.098169960624272,7.071598235614516,8.686088744423135,6.825365915933798,7.158012410913241,-2.289405350264209,6.978115822177767,5.393788413667819,-5.089215676278229,6.961945104113706,7.050845169719079,7.067253725368424,6.983097395454834,7.121024470442151,7.033911336481889,7.0927428057149555,7.341727619488452,7.060402437656968,-3.473858189362886,7.048674650343948,7.079677806689222,6.969233381014362,-5.808748886309118,7.101436899234681,9.661451874886772,-4.419543691879952,7.014567330778661,-1.201338993777636,7.123309579654602,7.9370807688578395,2.3867162054961977,6.593297768200728,7.136854183726758,7.060992212022214,7.131290856502609,7.500485605953578,3.642620890095497,7.086210273245403,7.09051260843464,7.21385173783694,7.088261897773492,-0.3588837048843967,7.147544492044673,7.16441670196016,7.1999556611036155,7.003228948347083,6.957670496951749,7.029080031662531,7.054140916543737,8.063274748601302,7.012791552605773,7.203460750640488,7.133221090246298,7.104535146965251,0.9070998986723318,7.094173661395697,7.029448005831661,7.216999565905947,-6.994962000240763,-1.6036042756426383,7.005609762923221,9.357033700768248,7.185810061954079,7.238808420518254,7.02321866861238,7.143394100240805,7.073637960655951,1.2409275241536974,7.08074218088332,7.015092270332261,-9.325858684913353,7.28921469254216,7.077288944344986,7.124062671482005,-1.3597560625783451,0.30978940160383495,-0.9200310354465628,7.2449068728008825,7.064083815457796,7.200024703501374,7.087535046891279,7.028602922244069,-9.890062713533844,6.985029198751214,7.787596528310662,-6.079291224143297,7.232397747455163,7.244948733254507,0.43576283934059035,-7.304065467655323,-7.689175423247168,7.125692187375712,7.154209680498283,7.218425195977627,7.011921844316436,7.25843521290933,7.080944766900181,7.091142049448141,6.402875484003005,2.40393986899681,4.959153367775178,1.5837319872944704,7.153142382879455,-1.5756073207599535,6.958008961437422,7.146052171576947,7.215932121955216,6.886033651564105,-7.219055916267749,8.36226888862305,7.124135557272282,5.362562324852645,7.172638670262664,7.278162383333758,5.516014023868401,7.159371167412299,-9.59402388761405,-8.60981468716975,7.2673665056230945,0.4531057805177259,0.04981374882413725,7.096612426915332,-8.453840995466262,7.103918743233031,-6.24863209562367,2.662868217322549,7.090993839689215,7.059917103650189,7.062157790857828,5.469723233478057,7.197305543442859,7.015745609060119,7.109272110977141,1.5596687013796284,7.054948288831266,7.224949915529116,-1.0440197059792204,-0.4331976470382841,7.04246763931333,6.962153430696414,-6.407846444911051,-4.096992509189803,7.046081427607252,7.147168745836549,7.036072397237184,7.289120531557014,-6.625796168445688,7.132455015897463,7.119734726791982,-5.793643533220749,7.143811802597206,7.050936359699634,6.33129985375238,4.0854869820305595,9.673622829415283,-8.543439306539211,0.018312131321991387,6.863465494755161,7.066264291396799,7.163914530168686,-3.9308820494301555,7.0673322568429775,7.167895187438464,7.1854624023789455,-2.3983486245717556,7.075303694389159,7.183204975442926,-0.10268925377775417,6.9438523528560445,7.034924733937331,7.144422166638726,7.306649925771531,7.100869503608294,6.985835333549375,6.963852191031286,7.082015405447812,3.9941803076670173,2.4595273218437796,5.619634167885707,3.0483080923188233,7.068351900752631,-3.917509881003223,7.234232694557658,6.983319474691562,7.221290339699269,6.924579513799586,7.113019994894067,-8.074247667551102,4.907261634822518,6.841118379232519,7.049397648877488,7.074971579752685,7.210421927526596,7.20361433752754,-3.0705518393747955,7.005337429246339,7.197548399356471,0.6782855377581107,-6.5859763570729175,-1.0940250735231878,6.982437608206762,6.985074040367802,6.998958166303261,7.23351222207139,7.061396011321527,-5.851287523411499,5.25515576383966,7.173494785425881,7.063760411787772,7.061124761103514,7.134770171925602,7.023400438957822,7.142031265797563,5.762177384536567,7.2175248969366095,7.023577362542746,-3.742664010999894,7.190017674406029,7.116334618250516,2.1077298012115087,7.186423230950332,-7.878709702391822,-8.739764795147373,7.2365867398967225,7.240987780401266,0.3420617289594503,7.366345469270964,7.085066841937543,6.910550529723192,7.057976419600237,7.217135727899322,7.134453727964807,2.3426839618083264,-8.652097235969125,7.011213371757179,7.225431725722991,7.175014421153481,2.276122170098109,7.062455013284122,5.515086244604255,3.3324158093747975,7.157822490897246,7.043996193311052,7.871148673942489,7.224869720067261,7.140118175186693,7.099445831482502,7.16992805188498,-3.762792744066532,7.073636919675334,9.693467668421324,7.065661539404811,3.318558021128057,7.133483695976647,7.256127701924175,7.141389065810138,7.310851869031126,6.997589524136345,7.2051579629747735,7.0877035987917445,7.242265209074137,7.232437909716079,7.250754700525356,-1.0727948174705748,7.142884738211329,7.241671621913667,7.244972609088574,7.227152871641124,7.226414868161488,7.195280136285788,7.353718775894116,-1.353221856472011,7.08599831469553,4.959521916693895,7.218491994784063,7.267987391868594,2.911354467191263,9.161134907825435,7.207230964033677,7.03263510280037,7.142820832279625,7.309051375978779,2.8037410757225167,-2.2006003762868502,-4.319641882561771,7.166330461852059,7.2828135203974504,7.192904206517895,7.153402979985067,7.155600841576209,7.120295465075873,7.214237703807967,7.114094176152726,7.073435336357534,7.227518353923685,7.224534176444376,2.8402774978464755,7.088635079619408,7.155105818884998,-6.741406886251129,7.246049156926638,7.20913401317798,7.127405781249788,-1.815675130851437,7.227297644313428,6.985804120117621,7.296874708956899,7.199542013072843,7.154980552270807,7.17945199807485,-8.002500731420941,7.159865144218724,0.19162697055006994,7.234926824015027,7.306294961430634,7.253492872481299,7.181732109904566,7.194636672191198,7.109400763155762,3.091819441946903,4.22242610804512,7.212575546252793,-7.633739248861746,7.222430065966112,7.193054879316133,7.068413851638386,7.095894193247226,7.169148707767988,7.235581867485397,7.049455809972606,7.1707076958941975,-7.523062419558411,7.389599130579768,7.119009105811372,7.1424619627427255,-1.357996615761989,7.125292729737506,7.16321829586693,-3.228165909252308,7.2267123682727465,-5.630202879151767,7.090934663234865,7.14593592130036,7.282013812413098,7.20164258264791,7.189259236098135,7.0724940154461855,-6.450201956134225,7.07742952057427,7.022919247997908,7.025973352438555,7.0832824712622475,-0.907198165970355,7.056686071821449,8.948759215629682,-6.194686696174127,-9.731475247877741,8.073795631623526,7.078325699107591,7.017307029211871,7.0112902384133164,7.05328851685416,6.994601630958904,7.147388619463438,-5.703729975847347,7.196339053262818,-2.464122015970327,7.030741108916743,7.009907938724474,-7.251797328879137,7.036333813460573,7.1931288288505755,6.300558951767563,-9.8782403284873,6.8548032988225245,7.121997701615438,6.992495758574474,-0.541331336304383,2.711617095583989,7.184064599238724,7.082939636515409,6.945777077314236,7.218499470653207,7.084832164411868,-8.16284968748935,6.918334107975003,0.8736456021996108,8.389216484487662,7.196483582471544,7.118560621104017,9.399727259195508,-1.1782097567241188,6.904167201234959,9.409291621170738,7.280349706372192,7.110132630844838,7.0920441141233255,7.168832752230635,8.82911561867947,7.07488822369714,7.095042177681414,7.098518521693315,-7.988755449958114,6.964966803671711,6.201890365082679,0.5543297986736597,7.05178079682473,4.709476729536441,-1.315508575554043,6.970998110117744,3.919551065037325,7.098432204128088,7.008845528839643,5.997239555584935,7.143146863382768,7.123734645638489,7.042836726913791,7.138238709569812,7.062701028974107,7.089861877473737,7.012277364931155,7.099619688769447,5.1157798773207315,-0.5475020588428414,7.243557556115,7.067827036097434,4.762358700263327,7.160449955667719,7.027068809469334,7.0216014801327695,7.0682722721682225,-2.8025851064593628,6.9490517399013605,6.998287612123711,7.1103895608026875,6.94969870274338,6.923578227121954,7.215511051031051,7.051505486055635,7.068379802188929,4.74963952069575,7.16823199959925,7.07969035800204,7.14369983232951,8.529543104796954,6.974053141113238,7.150907750597902,6.991178635784976,7.049818184106083,6.939847819948426,7.060040480015104,7.02690112671068,7.033904686921794,6.938589119497074,-6.331217538346847,6.950848656451122,6.936393208759728,7.038494441375416,7.105878224560151,-5.229642369703839,5.46177218065657,7.108645080373371,6.957677682060748,-3.772529082971845,6.97417432385571,9.303697589851684,8.970306923013421,1.205784965835683,6.999301665038011,6.887905387996646,6.966323561957733,7.079806033570421,9.357225885501862,7.15036506043981,7.038153970597044,7.0297076002254215,7.060076290440261,7.3018687891694825,7.3092395158961025,1.2837930349026614,7.170945983054736,7.035196139469598,6.987363964322178,6.979738605163718,7.126176085167128,7.091411270220878,7.177909882421318,7.147474810851769,6.966337358912639,7.130124258238546,6.979497077781293,7.146849360422067,6.997902793017076,7.112652246609294,7.1369502212940255,7.0814918415194015,-8.572244178348356,-0.8226042044380204,6.974243773662259,-3.943772346999781,-8.94818017883442,-2.8278823975252276,7.196574539510859,6.954708283835615,7.014510957696643,-9.22952920235366,7.103036837592779,7.045878278163759,7.040080710109031,7.037480331515063,2.146171094838145,7.061155511752485,7.030221957979947,3.780107725897013,7.109395913755236,7.071324507385025,4.302956181769327,6.9495725673860385,-6.577181693457166,6.983883201973494,7.115158345759848,7.172129866118308,-3.6570782105047055,6.9766741690544976,7.019430901972804,7.606728959905631,7.094908144966105,7.073513302116549,7.035565689339737,7.100438611298106,7.055815207319714,7.114182514587753,-4.723239443585479,7.158559758636407,-0.225300283049501,5.125774414455563,7.114584709380921,7.029250654718517,7.135338356297442,6.979105807680568,7.130737689128466,7.155745507541102,-7.08996369232211,7.2298557793575995,7.167632138567839,6.499306060856515,6.856140667433856,7.115185411828687,6.999609350310422,6.958146117280016,7.019060772190574,6.963813062134339,7.013361670310822,7.139275399460125,7.027006893401882,7.0721028240945785,7.144239372044336,7.256020893085854,6.99043005537537,7.042110157845379,6.958530620170393,7.046513542758149,1.6923361718998002,7.055922994800596,7.165930840549294,7.2030916385464465,7.109397933299892,7.086745092478928,7.095892172038354,7.169337419583243,6.909191256809983,7.169490474177145,-7.639685412356019,7.079818042214143,-9.163597887677577,6.8898147491965425,7.124886639662499,-5.029259075609849,6.980583772263383,-1.0780077399153232,6.948336558970524,7.058131039656793,7.134555109360917,7.154879948103044,7.015159134321383,6.947669843546478,-6.694296063963985,3.3452584790195967,2.136023627747667,7.046709030318137,7.0701608323035074,7.031697941541431,-0.8554367315163454,4.35588079092472,7.108516160880043,7.106407360956471,7.051623008076049,7.1093456859186475,7.232182660313356,7.100730976867691,-7.106951306875578,-3.160765054514294,6.807231666831534,-2.6485655026346455,8.099328799885377,6.929940818182743,-7.633775097899185,7.1095148802299875,1.3887319538516003,6.289901340899267,-0.5989159452052206,7.137341824260584,6.910946262283986,6.953698409367853,7.0717167951324775,6.958476005086428,1.8657520852207732,7.17657610081061,9.50475636775662,7.080278257427583,6.94376282840355,7.137643208458762,7.084916850340559,7.179905699124671,7.304826751226553,7.159707769982614,-2.7075363319616974,7.185975385803861,-9.323609283682659,2.8670043130355456,4.204331845725346,-9.650282843945927,7.092596241525133,7.153559199953349,7.308335863278096,7.131163987615324,7.2409595757735765,7.294419018623913,7.212304210543394,7.261343046695032,7.154162231071901,7.229128926337033,7.535141433037612,7.274756241219759,7.211666691467428,7.239957637654591,2.6850221671161947,7.196915030234969,-5.518119295369306,7.1887479566862105,-4.084107427632495,7.230743106723569,7.188828304606684,7.300712080917631,7.399697068850287,7.16891383213753,7.228023026364063,7.160206510240947,7.205278814862684,7.2083344625193035,-5.465619681700629,7.220114165999934,7.243062150198117,7.223032391740169,-7.286843150527305,7.108320407967916,7.23441562523724,4.769213455306813,7.327701972730907,7.189563131082803,-3.682900095287862,-7.74054078867922,7.167755779276959,-1.9894008879817626,-0.1138032103590838,7.179594695065429,-1.7582613185281186,7.164285138838306,7.12583893612598,7.192986491360237,9.844523330051182,7.1475692451895725,-3.538813626536175,7.233169689196107,7.264671693067658,7.182150719556205,7.082206361231641,7.129847188062492,7.2590331050217785,7.227914111123955,-5.561255198275974,3.5514006570917935,-1.125272537921763,0.3555943683365541,3.03862075605727,7.139225672631639,7.26818869338922,4.22166815072587,-8.221931330980807,-4.2182529003766245,7.201146081641404,1.6516076882628976,7.214630928098845,-5.976001717257649,7.077182073578012,8.836876085159137,-3.5959693008694327,-4.605926810943974,7.047537353172693,7.19048063790979,7.045161175516601,7.129310746979918,7.135743937495388,-4.819197580473686,7.166176944913158,7.055259106927281,7.025414648473166,7.194635342683906,6.978762352798231,7.169235530988868,7.067026684637476,7.182800231618703,7.035514621312576,7.158776192273095,7.041669775169872,8.151918319433264,7.1502683696696,9.30053066908416,7.057993174752294,2.679832005830832,7.049870548386853,6.350554674440119,7.007219238523422,7.084808634814568,7.030221400046944,7.06738103582768,7.138126882696902,6.841110512043926,2.3545791512347964,6.994864556368615,3.7140408158717335,7.08537559072699,6.989730575568625,6.980031628310403,6.974602283664918,7.0693173542764285,-5.931895051696969,7.081774466034233,5.296568265588082,7.1183983554361845,6.993197521709341,2.2813820532699367,7.048919758217956,7.141662200190382,7.115778386129122,7.068834090255724,7.1309054138240775,7.13446571273742,7.015535723104382,7.026639236590736,7.125776952693975,7.226689222102831,7.035763580588991,0.6534546926782898,6.972851144933877,1.4762431700170282,6.97002391446507,7.133674339986097,9.721163140918335,7.071305569709935,7.156222290641278,-3.7972563503934005,7.10748775387686,-7.825895229087434,-4.641664802466627,-3.0853604475186636,6.961624122816318,7.038086489529597,-9.162901678878407,7.110084157345483,4.170759120342742,6.978578161031237,0.06254063011805044,7.127447974996368,7.08128722520393,-3.762559401086996,7.10586365511492,7.102702234377528,6.978310493929094,7.117299165510996,7.0269078493062125,7.1543816129591455,7.045565025327438,7.025683618435178,7.08532327402316,-8.376300874411706,3.5780503684419322,9.348414821797924,7.014170747230327,5.414473111028109,7.049812542634545,-4.521862333708208,7.038422990386092,7.052758118964995,7.0519940570340545,6.961056952403158,7.163488655072655,-6.122223950550689,7.033712803523645,7.089926059846455,6.976645343111226,-8.39619994172006,7.038847112959861,7.030696823768871,7.051403725601716,6.9560695131327215,7.139626159870257,7.061926007060556,7.160915203798478,7.004062340582276,5.316667464764453,0.9640292292147592,7.155177899345567,7.088306727553338,-5.1670784995038455,7.0472507405396705,7.056387989208659,7.049554102760457,7.1171092652674695,7.101697691070999,7.161265927666339,7.140346819807306,7.078702538332035,-3.5472137528961767,7.091780805006749,8.901108639638146,5.712469178448146,6.985284604273907,7.145864611437418,-1.521457233188885,7.068811065197238,-6.294864833641586,7.122117384193125,7.216255566598015,7.13629684213123,7.14320644805262,-5.7788630259866025,6.974942506880737,7.0420456237098605,7.107718761904074,4.845530037047583,7.002417616292021,6.996365178624721,-7.348881332538523,-1.4057601973870284,-7.625039004214047,9.277362425990255,6.922876022138517,7.090939104329781,-6.0046951021813495,7.116948985412648,1.5827326131439925,7.1353962425530995,7.107373784180705,7.054099717081435,7.066414196902578,7.054996684332028,8.60935944930715,7.004281298720777,-0.15323407752093843,7.1023083869868415,7.128782976511268,7.166897868429714,7.050543296315471,4.465478860268172,7.176171094973419,7.15524890035184,7.123659265877627,-2.1932460726922542,6.924774368623606,7.142799392219043,7.131126021568942,7.170495778728135,7.120138552099597,-9.657973277361723,7.459603502747488,7.015554432277131,-9.298637856340054,-2.214387687445429,-1.4924080643354287,7.18262396368268,-2.970194471441725,7.465454462380226,7.058474224071102,7.042393907380429,7.017534272170256,-5.79825583933663,7.030686283559678,6.995360804508543,2.243918666455791,-3.1993711750310965,7.045441401411704,4.808471504955081,7.132180266751302,7.087128314216962,7.0447553180302975,7.037593304058149,7.073171547928123,-6.668933524534082,-0.04453830031078532,7.145391196933414,1.158407476002596,7.578795219154497,7.064965107701926,7.005647190805014,7.09599049751435,7.031745007697545,7.134675463200825,7.204640777007462,7.145194079483218,-0.7625640663072968,-4.741948177826489,7.1012323811265965,7.095235139361641,7.039598896061637,-3.038811994474706,7.028875474960856,7.130536196064554,2.697042578460252,-1.0093906094657061,-3.0785461021270617,7.07504004376926,-1.3611826277318446,6.091378741302794,7.074065971985149,-2.1083020318218315,7.003134312190429,4.623464703027331,7.002942001997127,3.2657667978086113,1.8764101871582035,6.973514770505897,6.9864206299727165,7.027233023897349,6.950436155255186,6.994034938423525,7.010730023735011,7.084398279155543,7.094361506147415,7.194817999132482,7.09349374710218,7.108348962201795,7.023268626790507,6.9174118290680084,-0.352786798120718,7.087273603587075,8.273298469578357,7.166126573412093,4.265450197299041,-4.742145086819121,7.02915865888793,7.103474654729052,-6.011255132311182,-2.4978194356265533,7.023243449582676,-8.32378784005706,-3.7658676972173506,7.109070622661356,7.078280414767587,5.670664079742245,7.112948541965203,7.038533441249044,7.096231406707027,6.980931337581666,7.032635441231822,7.0455579902244665,-6.54322507065692,0.9641944192108927,7.066627206855472,7.042594896341811,7.029624546959859,7.108261999757492,7.041780858548513,7.131532745196004,6.951014708338477,7.074248433990068,7.037989453434449,7.139411687162852,7.102506010244085,6.921211642238841,1.7454505963854352,7.133564231215221,0.4312443958667984,-4.495862569893472,7.048637606161371,6.981528564605192,7.056858584322313,7.063083191395997,-3.374755793861553,6.896777331796194,7.071967379849337,3.8228615934677244,6.576820830376022,7.104544575064693,7.067224474827736,7.231480201036074,7.093135388690051,7.126789525688469,8.693182559295213,7.1243125069063105,6.983909399598222,7.136827070366202,5.249690166736741,6.942932393060666,7.010500151975808,-9.69226763717797,9.210350929235954,0.06461467751792327,3.8084047005946218,-8.061628455401388,0.5820442706723199,7.202656058111973,7.059038848199069,-9.632883500644793,7.110639468588765,-0.19578463658092815,7.122588674195995,7.074454394567823,7.083136678745998,7.09879596893699,7.184088399259167,5.818656344002253,7.0517151592512874,7.160407814010497,7.122836275554015,7.03012846912624,-7.652459456059648,6.93652100277642,-0.9320888920897357,7.114227230628472,0.03314121867042097,7.06036451182268,7.09403884519514,7.073484902431002,7.131537761569653,-1.3223327596019079,-3.8433566324161417,-3.7805230810530404,7.128754967363957,7.17349895795094,7.058756030722787,7.264074215054038,7.148585249589633,6.9915606736057825,7.159280799143232,9.095341397763413,7.236101925187118,6.999960701302083,7.156070372397792,6.022621972346396,-0.22852283841396215,7.1548304583457,1.3252497466758744,7.1407987770308345,7.008703460621291,7.088514601996966,7.061651878425689,7.074345191566572,7.062817831390401,2.65369640837468,7.056326868386119,2.776965415872434,7.176683722476074,7.177045211671306,0.5979720223195564,7.121775143524218,9.742548204444525,7.091560293265285,7.036056313964327,3.3981489208866673,-2.672160832646398,7.039610655225847,-3.726398400304001,0.4614602127410645,6.9796474032894515,7.114186980432407,7.192798936451133,7.02891470552273,7.073241355552383,7.119300656254307,7.086281900684771,-2.7213823369399908,7.020499656765512,7.166944747780299,7.197349013661462,7.206215627877036,-8.451495615190707,7.149995273272346,7.11000220616129,7.0703211108682105,7.1692786217755184,-7.387508751380604,9.507127789800233,5.247827264403082,-7.35273791497054,7.097105768721391,7.102420254738874,6.937966577265801,0.21007988904491803,6.971967260508428,-2.1512618330927857,7.1398105448365,7.028477184816097,-2.261611553498579,7.008060714282447,5.173716379212468,7.08039198849643,1.5497237199455007,7.091059811958104,7.077648017552214,7.137054157270313,7.069716493108334,6.970391496585865,7.028000827223117,6.980649909633019,7.982392271505464,7.166194465317098,7.051778594926141,-8.709663576727717,7.025070802830385,7.0340235145389975,7.09832718868752,9.869299190437477,-4.9932688391984215,7.171777516137944,7.136709950837169,7.13835997880085,1.215145982216585,7.047095233465711,-6.962928897637848,6.900877037047657,7.0474519259065715,7.127489509888896,7.015519708118855,7.106276761140585,4.23132540179693,-4.092808085491598,7.127932778448944,-6.194350263015451,0.04365518023344883,7.0963652846564536,7.058941663934274,7.065189894929297,7.082863631919722,7.065295550879576,7.002229875218401,6.963979678603696,-0.9931282766865905,2.074741209858251,7.889059863509502,-9.50964663617561,-4.38274537096339,6.969409895427695,7.101385345060727,-1.2861648038210944,7.053029836851646,7.031192159027327,7.115150943132939,7.027621530489256,3.432631784264583,7.0408685626107435,7.1545050437587605,7.142493916028801,7.003349268493743,6.982721375721685,7.028631207245358,7.140846681719864,7.131518271743889,7.089470838173504,-3.610229025458695,7.072074411329503,7.018291134207608,6.92423086471798,7.113628676032214,7.085074475142047,7.002170463022711,7.0336730709682485,6.9991170274755525,4.605903677709808,5.966575257455569,7.026936725240937,-2.5408599679243826,7.042448214261924,7.1169669199670835,6.980199420341464,4.2599340261329,7.037783927151498,7.187011028887994,7.0823267156611855,6.964422369660607,7.092290856255691,7.0486374239951886,7.041180133695235,7.001695762311691,7.111211562998232,8.996899159914534,8.911963581402954,7.102227527819952,7.095527603176418,7.033685837078131,7.062581128216124,7.008372770802399,7.071680953605789,7.080924251518418,6.999824908427314,4.349852081925942,7.024037843723722,7.041757878628037,4.068913997163815,7.052680601805079,7.171586707120277,7.076397284577901,3.2825951809972125,7.124514533800152,7.051082823609743,7.102064851459666,5.235217035518625,-4.615821937931576,7.047070300759909,1.8109355161328793,7.0693887822569295,7.05681847328993,7.129865450694485,7.1126438082414545,7.112131521345258,7.11649819500127,7.0524309315925,4.142734820016944,7.153405555961289,7.076991251460942,7.069159550567068,2.6267009787009528,7.13130974677512,-6.767212867400694,0.595231751694449,7.063094037956091,7.064212881373791,7.003347579089855,7.009015410903881,9.24591347864219,7.078896229258696,7.044751215512232,-7.579917557729219,7.083859917804784,7.1088712468802235,8.72354274237896,6.444014400009106,7.161384094041349,7.0565223921936,-7.163771649023416,8.900234463385772,7.0306364448259515,6.985517410174367,7.118149845660071,5.053707879501523,7.073548057330484,9.474363870898948,-8.601280290681842,7.0539102105045295,7.018725379787753,7.177997794827725,6.980789051728809,6.9913985374838035,-3.5648648514957593,7.102384355820643,6.961978959540936,7.0906468647802114,-7.203411168635315,7.007707216919158,7.036566748001725,7.050286883714005,7.085456501949981,7.114840648525423,7.13107666484704,-3.322518533479231,7.0973079800795205,-6.7726881932819865,-3.795696168487761,7.132208420747094,7.111545208925104,7.033020082595325,7.140699430590644,8.674489533354382,7.023816168496744,7.087685228925142,-4.239659297956935,7.097635211957996,7.064276946541479,7.02457738118305,7.221329643589083,7.053427864710503,7.099511339179973,7.033586153913344,7.099208074252573,7.079740663136935,7.09362203701701,7.092539565671242,7.039137256764445,9.290633515246157,7.143213869973067,6.974625807111611,6.977531955666198,7.094331364264011,7.0628404597038426,-5.1100037986906415,7.025169184394681,7.023628027382117,7.070491948572144,7.024279580278833,7.067148892147159,7.091294098370607,7.116587430698132,7.045716370865641,7.146224739767398,7.113238603156496,7.1083224390424995,7.134841004086997,7.111286250170526,7.056694512557037,7.059493454095822,7.063732339234601,7.040690452060385,7.087233447203204,7.112194676210741,7.138748091193271,7.002960956569048,-0.4876463657602095,7.149362139897249,-4.197490452906932,7.118633501400218,7.060847703506447,-8.377920192747311,7.173263423228288,0.2997608616328975,7.099893623633129,7.100917190036299,6.9558598206916855,2.19902865273178,6.993834139806175,7.0366889671615525,3.249562162491358,7.051626237377732,7.171969079508635,7.53008673612802,8.401406477891285,7.048908475285792,7.0566392669401665,-1.3645144880778481,7.021171600052824,-2.2353036157015023,7.11601148983226,-7.400875324792446,1.7609253845075266,7.118419266643798,7.0026797131267,-8.819929965745125,7.067060140695098,7.150369457015493,7.075875246788279,7.1198207059447896,7.17234176296957,7.139281560112295,7.064150474467414,7.015220415552001,7.088841671847515,7.166723525724542,7.070180853182151,7.036800591955984,7.13120605662629,7.175631033456252,7.044097133258983,-1.0851738619230211,-4.8995571520058405,7.121053068913909,5.1580640771960145,7.196164980352748,6.964541857478345,7.1021030735621125,7.087283523832944,-9.42998143565797,4.595020438337938,7.050151421270844,7.103862149359102,7.117742606946138,7.108301524668221,7.02459502426024,-2.7001706418851024,7.071779433596603,-1.6783465204771453,7.148436749507539,7.050484600405873,9.79552422523512,3.5442297068352033,7.129436933742479,-8.30019082687527,7.039882497100443,6.8946437717766855,-1.2769259643070896,7.164241763760817,7.12145859339153,7.13216487759826,7.155893992167851,0.7611170773619342,7.124039094537601,7.085302300540604,-2.853994370190178,7.040770238371618,7.133329859601108,7.06463237879694,7.0404827327176775,8.752776041540798,7.073106041675633,-2.613477742875723,-0.6608616647806116,7.093901994343504,7.093181759180254,-2.6618899352148055,7.125703001666579,7.158607567848296,-2.2465385737460792,7.014636300935699,6.469691084342749,7.016646145316972,7.116721149853053,7.028297025524356,7.048136310210879,7.063797477843998,7.09737651258337,-3.0153202189919703,7.1455667937391425,7.034621990291971,0.06387963942649932,7.152199238037586,7.029732906928313,7.109057611156629,7.075287658944767,7.161547048282479,7.0980923251714145,7.123792334032814,-3.1799944173584205,7.1126734784327965,7.150517913759522,7.053876622723681,7.04072274270812,-0.5451856275531455,7.121900496776853,-3.979023134923465,7.110827443612571,6.996881106714877,7.127746905421173,3.599010715736462,7.12033448225128,7.113456224375383,-8.475475292873394,7.050342327010576,-8.496790621623596,-8.663427107989127,0.9897307840182954,7.012021015494483,8.447832438422601,7.079341911686015,7.147546580614311],\"x1\":[1.044554108001165,5.006724179991171,-0.8200047067928331,-4.1338492780913105,3.4075087305770886,8.656469409360255,8.964585941792443,-6.417214798816218,5.881982305722101,-9.457364975303975,-9.70170189950312,-8.205314588465535,-8.859844121857705,4.910475371964029,-9.21589422295237,6.130524112936261,1.982402910097063,7.933138290545543,-9.364487397146277,5.376898405732129,-9.325142193885203,-8.249478053743566,-5.474692191149595,-3.481036189023186,-6.260573150871491,-9.233766808677325,-9.254681000340836,-9.355198453986901,2.394221908171426,-9.427271441773403,-9.301335338634999,-9.390738003659981,-9.398060198005068,-8.806894782328685,-9.285530158448536,6.111351575973572,3.8756829219486484,-9.294583045113926,-9.44676284223054,-9.284443837916927,-2.843925657918575,4.972859950155556,-1.3325162808981084,-9.315752432527066,-3.0424345473117453,-9.410811438663606,-9.364275933356325,-9.34834371559798,4.183098252002285,6.22544765880513,-9.320084106330226,7.24551978728908,-9.336593873040133,-9.293743727462024,-4.646959268912165,-9.362995020550345,-9.345637014949912,-9.337487737706658,-5.600831840716209,-9.329428981994054,7.982555111275214,-9.326126445043785,-1.8819715584763745,-9.399956531127325,-8.80009093737196,-9.44907717872992,-9.36649704769542,-9.359128991641578,-9.36495577489075,-9.35789815059185,-9.360168204514173,-9.36505799011787,-9.385218931004928,-9.373916824026848,-9.409258851152847,-9.346169973302121,-9.391021958123314,-9.311628567014093,-9.37503319228517,-9.353140683164366,3.4105722282764965,-9.356412437776038,-9.402610117422363,-5.267089896780421,-9.335565489022972,-9.36281460160414,8.530697039399765,-9.3479588078513,-9.333941341520084,-9.392357964258842,-6.8952949323529955,-9.34491750959234,-9.383338510085746,6.216927010841136,-4.974922099319709,-2.988178054090705,-9.593262861860213,3.9884117412897684,-9.916318599720492,-9.15524562038276,-9.36773796714632,9.046419431626923,-9.414363927396034,-9.445109567678953,-9.794871969623403,-9.37634007012941,-9.341373587839742,-9.489977562150901,5.50737936921027,4.5536763693906845,-9.297411765147794,-9.546169993135166,-9.197252475237372,-9.3441962040499,-9.456472569547671,-9.415542107195854,-8.47235428204829,-8.10001092141716,-9.262889389221124,-9.981294451793158,-9.54476620161659,-9.521244334245367,-9.37975373014391,-9.498744991865777,-9.530936858328152,-9.425711148111061,-9.604162899117902,-9.384357186020777,-9.40360998698911,-3.6398706474196807,-9.647762285249788,-4.984115839272752,-9.634979492822664,0.46887553544591754,-9.48520681742733,-9.595501616640991,-9.397760368501748,-9.82416249891127,-9.626647825109012,-1.8396139414129191,-9.723839656099253,-0.6063716981792631,-9.666832957528271,-9.546748682832634,-9.712700683617252,-9.65237595108687,-9.727678535972046,5.128335129897188,-9.877872387200501,8.637231871352999,-9.53529175316338,-9.782582111111708,-9.996067877208853,-9.701813161711852,-2.7903959608685707,5.797131085505553,-9.900860964227654,-0.5866424052528689,3.3523793911976973,5.626277271564957,-9.762039455695389,-9.565978890641167,-3.855118032128731,-9.583539373374565,-9.608074382353943,-9.659570447891909,2.391115405714146,-9.68125488249152,-9.823497896631858,-9.49322819605699,-9.534380309244433,-9.476293871000227,8.673806948562206,6.789279774316569,7.940074399782148,-9.53100816260161,-9.623135257915893,-3.996349120545519,-9.556655035668278,5.943215196700338,-7.970069864509977,-9.611261615454653,-9.58433138820181,-9.551277835723795,7.602812666044546,-4.939258901607799,-9.860186355024757,-3.4476444643076327,-9.714551364062723,-9.438450263718234,-9.686410413024154,-9.409765422387274,7.3309681251644,-9.82720330604877,-9.702329729411739,-9.85365221141381,-9.746104873360439,4.9843783138629405,-9.843624429954552,-9.410411534573965,-9.672933838169095,-3.3984602978786445,-9.529420205107785,-9.583590339532911,-9.858488317876812,-8.956732802146885,7.443948286785222,-9.739197334581501,-9.57175242499804,-9.605842937153568,-9.53308900742482,-9.34917824136986,9.500790059565773,2.1265334993203915,-9.685778155238639,-8.200608786796346,-0.5326824810065993,-9.949147197999077,-9.889294103296535,-9.532150331665878,0.8904547381082413,-9.741509558222122,-9.542028116200571,-9.909086565954,8.549246383499177,-6.96663371899227,-9.751344754434253,-9.905177322125102,2.1169988992903015,3.553065499590618,7.398900809145832,0.3498231075003915,-9.982466639931209,-9.368447040545844,-9.477062320533229,-9.485369662863945,-9.938570220953258,-9.763863992038713,-9.639904392623457,-8.859399453394284,9.552450752098395,-9.168800949426224,-9.374571589087147,-2.6702478052739096,-3.1714365897798134,-2.7518296310076433,5.439354412726971,-7.990036814246411,-5.0661834567621415,-3.4531946167751917,8.397821581263333,-2.9842735874670474,-2.6898466586864007,4.176196336959785,-3.112288478715092,-3.259022339591228,7.856181672711774,-2.4476338685737664,-1.9593585964929634,-3.335474501639811,-2.1226914132954615,-3.347558595597717,-2.57775371167165,-6.697739731090751,-3.1101805941052536,-3.8235602736044996,-8.591022927480347,-3.2096108829903773,-2.940436459816932,-3.038878596473765,-1.2265306005980552,-2.1639026620622337,-2.5126894099891226,-3.3672940107824845,-3.4189722958645605,7.603739165918309,0.45138280571606515,-2.474680620019507,-2.7814045241683347,-7.690013606742641,-2.710718250891315,-2.3332044829175747,3.1165977526111988,-3.5527568711940045,-3.1787850544268546,-3.248274847847581,-1.6523849529704542,-3.153075506587111,-1.7319678207486966,-2.8693214570197956,0.22979550533216653,-3.3550225554449664,-3.0033122657807425,9.014316246384364,-2.3523557598885114,8.507269307604371,6.044068066772059,6.455746204835247,8.870329781841516,-2.3796317837398746,-3.547217980912663,-2.4071174151948913,-3.0750880383766788,-2.797948788803918,-2.7655465045685794,-4.749109763805621,-2.4410648228442566,-2.5533164194741422,-2.732919890432653,-3.153222569191012,9.686434502468671,-3.016932576618638,-2.5650744905706047,-3.191627656069543,-2.563578652309487,-2.8338147574235792,-2.9144411016556804,-2.8035199234611996,-3.7988682517683126,3.104736184744512,-1.9966874842250313,-2.2063239882740397,8.006576500406588,-0.4615615641262458,-3.3359693355103683,-3.346399598226336,-3.3278844088184485,4.998585811304739,-5.716620684870028,-6.837757645064166,-4.830225564299733,-3.344271523570889,-3.3227340160593544,-5.932057218966262,-3.344681727223513,-3.35164650370843,-8.446664058533555,7.281726511087239,-3.3195072213688928,9.05128784053636,-3.3306469990429903,6.03383934539627,7.831882861679553,2.7595842545229097,4.1371102683186916,-3.355622584799934,-3.327355618768589,-3.341782993093326,-5.750364221254401,-3.334110826598363,-3.3427838522060958,-0.24842105118745117,0.7747222496976569,-3.374462664138484,-3.332425329495373,-3.3591516963868404,-3.339387719810687,-3.354904601034119,-3.3372923349893675,-3.3520424071688026,-3.3266135637322645,-3.3554889293862864,-3.352188192022547,3.5554895890773235,2.210911541185034,-3.334622447353416,7.514511965742777,5.241721155903278,-3.3557254662620224,-3.3300569070845114,-3.3404159762378374,-3.350762472163832,7.145093197178269,-3.3449867263867787,-3.3449789403003702,-3.335107266009726,2.356101067123202,-3.338951938781838,-3.3772712345835965,-3.6207112780521387,-3.476648912209386,-3.4728912731389174,-3.4968138114099574,-3.3970916657867454,-3.455357852608472,-3.6183955806324164,-3.4758476490184247,7.199798960415009,-3.4677564836061894,-3.4650852547411803,-1.4699370662312354,-3.4796211569768314,-3.472834979901709,-3.4471773961848857,-3.470769399921614,-3.403315488711952,-3.4406214544683555,-3.472951395149055,-3.4539824121063933,-3.4659301920423626,-3.4550290402522323,-3.4475646829987756,-3.469809418426527,-3.4367521236505194,-3.459065785769222,-3.463709077311874,4.4703610813268,-3.4613773715524196,-3.455587632111074,-3.4669678318405053,-3.4779261991662374,2.256796705670123,-3.457781793955718,-3.4426537730867377,-5.577743099950167,-3.479341135963379,-3.450955576759492,5.772830706579269,-3.460956493132614,4.299414138787345,-3.47302219725732,-4.579048644823218,-0.7715720386829652,-3.465871709752034,-3.4109591110527573,-3.453782490301416,5.53907868070765,-6.871082592400581,0.7370856842162876,-3.4492376210380638,-3.472321719990859,-3.410106285007898,1.428237812165909,-3.4751590105960917,-3.4627557008430285,-3.4665541837616853,-1.1330498572147718,4.797349025418779,-3.4795723221194983,-3.4453778528368364,-3.4080086518552433,-2.2581779859304563,-3.478662122236136,-3.455624484086023,-3.4881730365178667,-3.462781076001108,-3.479544969235473,-3.4623518881706215,-3.45714587251443,-3.462443593072938,6.65537025956856,-3.454198712320917,-3.453481922018261,-3.4656582721375573,-9.157600059890118,1.0930647211972122,-3.4388800876158756,6.504031922844529,1.1376819985986426,-3.473610352587116,-3.4579581441188525,-3.4718588803249384,-3.470629737353077,-3.41274301023045,-3.4783372704056017,-2.2109545209292936,-3.4673419133049688,-3.491051992130072,-3.46797166862239,-3.446844076201886,5.69692609715678,5.852276668731074,-3.4528732978574572,-3.4705749404077357,-3.4632829738320057,7.377926052288576,-3.68811704021261,-1.3230076624263347,-3.4473121401728353,-3.441019399868689,-3.6182454408002744,-0.5059225028538918,4.572425467328154,-3.4787479166803212,-3.4566067879590126,-3.4427068087097803,-3.477742217946499,-5.68604127211624,9.01650890659046,-3.4375310210865075,6.556321119787725,-3.450110424409374,-3.4657972653186286,-3.481222822455509,-3.4742048114154533,-3.4560055608922235,-5.799256689074765,-3.4545134258380505,-3.4718033007545666,-3.4798809938047697,-3.4724377325160383,8.864113897570984,9.746467615626084,7.475948691196205,-3.456369375863723,-3.4606901862911332,8.729037421790174,-3.4980634870038347,6.979320528879747,-3.4438844189652675,-3.4551123692974297,-3.4731475755025762,-3.467259240764765,-7.413844096913024,-2.3172053409697586,-6.984995313038304,-5.8315973715411324,-7.600773791790245,-2.3983244004788755,-3.473601203461129,-3.450269165499198,-3.437652297042052,-3.465890413924239,-3.4544680273609973,-3.4528087539563357,8.98959944496951,-3.471603041296863,-3.453744132818497,-3.4563082534267275,6.795481573095678,-3.456410417726331,-6.78280239672511,7.908033469595534,-3.462228541425657,-3.4630643289169925,-3.4829961226478137,-5.241580088890673,-3.4049966277656516,-3.460602706003826,7.694939244013412,-3.4688912914680694,-3.460912426309771,-3.455835774498558,-3.4618982717445483,-3.449318947404427,-3.4552356146225343,-3.4639958044191683,-3.4701830832313894,9.03033053060155,-2.440528901360257,-4.485019625227091,-3.4416417073740497,-3.4623062206160586,-3.4489218701993343,8.111874686859931,-3.46756961392766,-3.4502588533951473,-3.474142085419486,-3.448913044766769,-0.9505157468583985,-3.4552262513849596,-3.4431528835479703,-3.476475820257768,-3.47241382164058,2.4599967598673818,-3.4784349516528055,-0.6647674054868506,-8.259011827606413,-3.4598879090998693,-9.51194113391865,-3.455625888742314,-3.4612037673043528,-3.4637765533131315,-3.4624371962216554,-2.0547363673548036,-6.726509707050674,-3.4506106384677,-3.488210318675657,-3.474510419303999,-3.4752112285980488,-3.461879768667023,-3.4517357465706606,9.398544913439512,-3.4864481838584274,-3.4541275612656683,-3.465418801977279,-3.4569577875532698,-3.4636733523841556,-3.4762046258578856,-0.6122458871915448,0.5810617413240955,-3.3964689216828035,-3.466798962869796,9.032128533680226,-3.4397092704730667,4.722274174205252,-3.450311688189025,-3.4717787716597206,-3.461512572003473,-3.4654127173507927,2.4691253933497475,-3.4745893334350173,-3.464592082337628,8.263770273812604,-3.4588431216551543,-3.4665873095976307,-3.459666016307004,-0.46497608008215074,-3.468428705380189,-3.4705021893769565,-2.882189640410509,-3.4637764720987168,-3.4783554401480004,-3.417530124883924,-5.896301272475646,-3.413137976289244,-0.44572910539790556,-3.4829546512848886,0.252020890073414,-3.4612005482436894,-3.4641450305939845,-3.4791509252469996,-3.4081439796619053,-3.4584121709689306,-3.4605248201177226,-3.4534148689396362,3.4463182083178907,-3.4193221390960566,-1.8840721543732304,-3.417639499300847,-9.355248127648823,-3.399866908152177,-3.3908971545595437,-3.4119528665366623,-7.842046276503387,-3.4682701086223204,-8.379747507965284,-4.092000592413452,-1.6958289984392305,-5.359515461403646,-3.471651315295988,-3.4100556510584648,-3.4589160160138412,-3.48356426500796,8.934644321694204,-3.4103788284026626,-3.394666560316484,-3.416403673432164,-0.6008200587287895,-3.452908524156416,-3.4296306476209253,3.0448495344431805,-3.3941892304443666,-5.394841670537631,-3.4690135808187526,1.0453524293963667,6.275321771813857,-3.4564048939573935,5.480463117013951,-3.4634545907935177,-3.3968689945343815,-3.39816351956872,0.8863723375598394,-3.40854986858408,-3.4482936084240547,-3.4703556271260796,-3.4646442846899017,-3.464313121444155,-3.451387260286893,-3.4125587492270935,-3.4675324403996433,-3.457180479696735,-3.4116065415903414,-3.4712987778557753,6.171862195556091,-3.402330699459366,2.372194434721049,-3.3960128294827694,-3.453039473881918,-3.415462512698203,-3.4166457685171867,2.456368526533817,-3.397474357701034,-2.8112278671519864,-8.463741893271244,-3.4059673600140776,-3.41733644274405,-3.3973776261010897,-3.4685359324647225,-2.341033231217933,-4.2774340511749305,-3.39304426106664,-3.45668940085337,-3.4088490138426453,-3.4113041897577396,-3.411454963296519,-3.4586743965169227,-3.46110715185028,-3.4176740735936697,-7.591415251388973,-3.471929399046303,1.1356773566928613,0.840814246120285,-3.445488684132595,-3.4059605701622733,-3.465554055464036,-3.4735607265017263,-3.3974286460864196,-3.480354601141414,-1.961982430027449,-3.464671464756255,-3.3994934054797543,0.8149792357857457,-2.9853493718907504,-3.4718992182366915,-3.3979962313787437,4.702935708006748,-9.626977649071126,-3.4619457049578735,6.498250287559216,4.024518078733623,-3.4558218241392087,-3.46766177476328,-3.45863505742079,-3.4674241353050386,-3.463652637166299,-7.993438727998791,-3.4581881797452727,7.176228223228335,-3.441592908174858,-4.503104702708971,-3.399552117560428,-3.454905453330662,-7.623713655586519,-3.4564367986781344,-3.389823568039944,-3.410481658797975,-3.3779463233476203,-3.3895389297045053,-3.3926976131908857,2.2820988560774573,-3.3918962671253974,-3.389792643416958,-3.395734502800961,-7.8433012761215455,-3.3946123802129877,-3.399712633894567,-3.38878814580883,-3.0765798065776506,-0.279420009285559,-2.1817089475319413,-3.3863726263060396,-1.1684001978270402,-3.415667713994748,-5.452142618999078,2.8580476239586226,2.3346271504369085,-3.428239973226691,-3.4012474962145465,-3.4157162683709092,-3.4249746447153298,-0.6988767993399119,-3.4036871237188473,9.111900581539565,-3.4339968586699454,4.821092497420272,-3.4036091412657488,-0.653888323687589,-8.582394336794046,-3.421752958040779,8.02212661352587,-3.4073243332592558,-3.4220221270731974,-3.4270160471449795,0.9565361435245823,-3.402504824990161,-3.420676022109424,-6.720122604238766,-3.4292891464712163,-5.9464046853286785,-0.3814470439419395,-3.4144430445269123,-3.4196304518007015,-3.412949422437242,-3.4123326778779797,-3.42510856670327,-3.3981472620380426,-3.412259162795289,-3.4205602080743036,-3.41122986386699,4.199202323109258,-3.409438719598933,-3.403242124263201,-3.4133282704825243,-9.544642590630197,-3.418507838494649,9.12690766982455,8.702439714351765,-3.4160346610472256,-3.939557787067147,-3.405783655569037,-1.811280052732327,4.666656578710324,-5.756364207266406,-3.4094399750286106,-3.425705349240906,-3.409059687094641,-1.9074103500992656,-1.9083656385078243,-3.4197170104569867,-3.409736633164946,-3.411182069484349,-3.414649995824802,-3.1166117472444625,-3.405851131585088,-3.4144866777200944,-3.4120560957202892,-3.4265643385003663,-3.424813908954313,-3.4180631174076828,-3.41221772605662,-7.816834317939216,-3.4048044207562747,-3.415135897882501,-3.4159083762314992,-3.41749424183556,-7.824749001060383,-3.42043014814565,-3.412615948173471,-3.401269405635567,2.528437735212936,1.690468582669082,-3.4245434273090556,5.550994862512972,-3.408484959224724,-3.40594187444717,-3.4074531593629045,-3.415251628623695,-3.427929574438906,-2.710358714791612,-3.418718706593115,-3.4190999815514314,2.1243561387378165,-3.4259976266586802,-3.4285702666213016,-3.412519440425542,1.5763511859354402,1.1666198245219768,2.077156044545319,-3.4125965935674696,-3.4163600637071756,-3.427888486831211,-3.423262422148775,-3.420566184797339,-9.899712426914107,-3.4204882640584,7.657567395213562,-8.114788177075194,-3.4119105749037697,-3.4089927643659106,-7.562224079035178,-5.37920499539087,2.965054204868858,-3.4194375553209513,-3.4139377676104212,-3.4058811066447756,-3.426012016627843,-3.409526439678481,-3.4209902389426547,-3.4197750522430557,-1.7966131920630435,-7.634983572995733,-9.333296061354691,-0.15939327365467904,-3.4178556425172033,6.85569447089739,-3.4148033634915356,-3.4188188194756073,-3.3945775976266503,-3.422700473348998,3.280273304777232,-5.598530508900243,-3.411193257955194,0.07797430380406034,5.569887286582523,-3.4192633355022073,-3.082881044449861,-3.4132825871272265,-3.0334022841198394,-1.9370641538236555,-3.4190146385412534,-6.982024409244789,1.2540475280632641,-3.4124341771110442,6.554630664507776,-3.410873999173255,9.37983248072776,-9.097390077725262,-3.4241704900507077,-3.41696333858817,-3.4332076796059834,-3.6896695496902314,-3.4122445883316885,-3.4235064389557675,-3.429188758903776,-3.273980820798064,-3.4218131028840846,-3.40380468415157,1.1173485228568403,-8.006013830623013,-3.4206914812240727,3.051662945002583,0.5161354194549883,-9.462729181101231,-3.4237718473259005,-3.419641248405756,-3.432703582848334,-3.4286501373883773,-8.159126801952914,-3.4000141427107664,-3.4178030447057353,7.901268156008779,-3.3979026349735664,-3.408629043936031,2.645264349147549,-7.366945608286182,-2.7285032592164615,-9.487644628387265,4.523008747241583,-3.4177714446597394,-3.40585833896382,-3.415867398997827,-2.5442208616097117,-3.418577205798975,-3.4217393418876565,-3.4229599582749053,6.15350745838699,-3.4198965042668537,-3.4159051069430095,-7.842553309434319,-3.4171171253843617,-3.4094665934283928,-3.41728634384703,-3.4115903271324486,-3.4226400468515408,-3.417717582383796,-3.4171466541428615,-3.429335200570863,8.452998036736826,-4.062225840884707,2.375937612434196,1.189403913723595,-3.4243235229759863,-7.2533578020029115,-3.407149788658299,-3.4083043425451143,-3.407619720209068,-3.4145240657665186,-3.4088621317985526,9.761818038474324,-9.075349542150605,3.927700825417851,-3.417524534086599,-3.423090332378705,-3.412076725756825,-3.420155484313236,-8.184551598637297,-3.4249158027969075,-3.414300757109528,5.106137614665954,0.7119615942476383,3.35842788169273,-3.418708296971383,-3.4224529723987924,-3.410631382307842,-3.4240580112918177,-3.423456848464377,6.217300338593137,-7.750682196756278,-3.4245841556172296,-3.422743479683602,-3.412045079126802,-3.4149522346785064,-3.4155062649153214,-3.422777015200654,-6.023809232274662,-3.420516888440833,-3.4195752043751177,-4.924034598744078,-3.4010940904778417,-3.4183075536979404,1.1055555972056936,-3.4116896896825715,3.0244099049184534,-1.907683751552426,-3.4235370036348023,-3.4200997481110837,-9.313316011870027,-3.406027572258222,-3.4102633261588435,-3.4165624789124847,-3.4153192311080884,-3.416225225282844,-3.425129879319754,-6.0986359761691205,-5.490616658414087,-3.415396440652807,-3.4202790650155652,-3.419499416029284,9.814043079035372,-3.420459878931535,-0.8125564533640528,-6.206608666024616,-3.4047734167197152,-3.401807875380105,0.21801154644672138,-3.398921272210976,-3.4107533644153296,-3.4029550787707583,-3.4067364894430616,0.09595774322541395,-3.4054266294779403,-8.835362504128707,-3.406389947929723,-0.976487748554689,-3.4184281039084183,-3.418401951192477,-3.4088249242957804,-3.396780810372774,-3.4070696610508726,-3.395999317319653,-3.395916197473511,-3.415115403834365,-3.4253188639648418,-3.3982647260283025,1.4121441020940892,-3.4056394276749256,-3.4158984012759044,-3.4146550278299417,-3.409408029014158,-3.409558249717124,-3.4151595092101186,-3.4097089659954722,5.409097881492141,-3.4100101345484397,7.777909445056061,-3.416293700681142,-3.403016832156423,-3.2165812220103795,-9.197695278509784,-3.4003310920918572,-3.39945052879073,-3.3863664597763146,-3.40658636937761,0.7349119003014053,3.249107739828382,-7.586411232258843,-3.415577414441236,-3.4181263472005865,-3.433189113125761,-3.4104706973345076,-3.413697852784167,-3.4069900635668082,-3.400826751687495,-3.4020597410399835,-3.4000847751923207,-3.4170018159135207,-3.4083703184932705,-6.895628297639198,-3.4106316454687953,-3.4111748920166853,-3.729663518504336,-3.4065889890519205,-3.4177009606036357,-3.405190165309536,0.6184450338059815,-3.4063660606955235,-3.409772488252651,-3.4218470766547195,-3.407831811428448,-3.4167114457122194,-3.4010409920396487,2.9090434324344763,-3.4000780404584674,-6.471473477316563,-3.399931135110511,-3.40524929693487,-3.4054674977978454,-3.405090596636228,-3.4074505839158977,-3.4334874635654504,7.674887211577243,9.33549818122194,-3.409247800575436,9.137565496059242,-3.420415136911564,-3.409198085874438,-3.397601595634666,-3.4077983884818854,-3.4062513397649683,-3.416717809034539,-3.417251172294007,-3.403661282444695,7.9215414846946,-3.40903089435934,-3.414153496720294,1.04467574378641,-1.1295700088168577,-3.40486150958744,-3.41928898562728,5.2201977518948866,-3.408769293645312,9.348314040201554,-3.421453347177387,-3.407997768120497,-3.41325574602949,-3.4324706342673315,-3.404560529204562,-3.422019126343576,-4.380806782356186,-3.420487870674548,-3.4087096495627156,-3.4333237095200877,-3.410457473353401,5.320106703954382,-3.414002282921105,-7.002521739067989,-0.74971107555141,7.969410713280173,8.289025026953006,-3.418135403532987,-3.426420540353,-3.4160641722737894,-3.4113101875368415,-3.4198183475976336,-3.4081416563717184,8.748990541554583,-3.4162257337583926,-2.5152508368613695,-3.4208320756059205,-3.429792995006954,3.6645083257915374,-3.3956230705503776,-3.4198859771745838,-2.4424188680868486,4.585577731589908,-9.133830825880494,-3.4071768547385144,-3.410306804375808,-7.972722558256753,-5.727803274605572,-3.422696719927546,-3.406839532386604,-3.413059067348666,-3.4202456743711807,-3.4125842695454924,-1.8572632724686216,-3.416050036321275,-1.688680419617647,7.105535815901952,-3.4146978596987996,-3.4044216310679287,0.8795822733643899,6.6864230555115505,-3.422858536576186,6.17430061506386,-3.413844884946604,-3.4064906267687265,-3.4226682633311967,-3.4279489679501207,-7.651872528881616,-3.4048936863091352,-3.4195648604072995,-3.415706919462612,2.499764750790467,-3.4193426349331704,8.087336958193866,2.9065967502488483,-3.414066971185398,8.357657802633732,2.980287177757239,-3.421675349395131,-7.6441350714022605,-3.4270290647484103,-3.4041181213694447,9.528808859085164,-3.419409233124872,-3.4254345080365587,-3.3989565812965328,-3.4236726749388167,-3.418144164356236,-3.4171846891164765,-3.4172652620614823,-3.4164639430975896,2.491942494297298,-8.034789593870808,-3.4151453795923272,-3.4187973333742416,-2.7565098256500526,-3.409393443012431,-3.4066680539706917,-3.4148751779609174,-3.410367369960565,3.3965020416701925,-3.4115532757311797,-3.41080005312509,-3.414452073795365,-3.4212840594923257,-3.4096235982411383,-3.4193971557065206,-3.417193720424361,-3.4184284696150034,-6.655478943067039,-3.4000777904095507,-3.4171058747139424,-3.401925791833305,9.521083867508949,-3.4221446771826507,-3.411214010022813,-3.41449589334169,-3.4112351828243215,-3.406914021657662,-3.41533887382486,-3.421845832944105,-3.4094929023647875,-3.4124832847011044,-7.27975635345193,-3.4105136278563304,-3.409715186727908,-3.4077071240935544,-3.4151874701931826,-0.7342702778098182,-9.210486058641429,-3.407839750752485,-3.414734459200285,5.50187084821685,-3.4296846040647564,-3.4906617828873587,-2.1964997478307264,5.92436694243178,-3.4181406236528913,-3.3991438176839477,-3.4082580171944468,-3.4163581424161205,-6.707625694499779,-3.4218392876649197,-3.424086359728882,-3.410148727361987,-3.412185306397115,-3.410348513681104,-3.409669996559975,5.301938851527204,-3.4281113309946214,-3.415168753498829,-3.4161376129852625,-3.4272732861369706,-3.413113342699436,-3.4127064328137635,-3.4217385498452693,-3.4303619204658897,-3.418199980810898,-3.4111417689489096,-3.4123492193830636,-3.41177374749301,-3.4150526710459843,-3.4123519978561037,-3.4113475788690657,-3.416996700941568,2.8130690597328805,-1.7106244566919067,-3.410758248629369,8.596061327404847,-5.97907981333382,1.4459216145957914,-3.4252800295317627,-3.4046295313540735,-3.4176918643873524,3.0864349714550627,-3.4155154916434327,-3.42185037161436,-3.409731993046808,-3.4128241201662846,-4.635844615323091,-3.4155315122447414,-3.412046281488509,-2.5042297054257574,-3.416115674351996,-3.4161166975089845,-0.9654311138976919,-3.4174489936989394,0.07826137522903664,-3.418435813412474,-3.4186391641036398,-3.4151561080643225,9.52960499175543,-3.415856998350283,-3.42152359932072,3.8473866787506985,-3.4205086927297934,-3.4218595029916212,-3.4070233866218746,-3.4142551526113483,-3.4002502881156316,-3.400281099901706,8.720059343022378,-3.4129070425737247,-6.227499514505432,2.692804940134595,-3.425786176876864,-3.42100895880768,-3.4112023413851897,-3.4294674717024076,-3.4207735607528553,-3.4202258605387046,3.7978690084554323,-3.415791816566368,-3.4078370624732344,-2.1809233363694114,-3.4160109520181727,-3.410834092022208,-3.4201663345284494,-3.4227876760447007,-3.4095376466326153,-3.4104856388329976,-3.415209862344505,-3.4111378044151373,-3.412241271858268,-3.4174821573535823,-3.4102279144723386,-3.3959478410371737,1.8083211226352862,-3.400016900437821,-3.417683797729371,-3.4162701586757462,0.1174223359833082,-3.410602953103396,-3.425109435776397,-3.4032614071412413,-3.4126390876884463,-3.4053684048191997,-3.4159188360148622,-3.407579698094148,-3.401209847333389,-3.4100945447244646,6.8263673637578535,-3.4084522055117707,-6.506555580326296,-3.4088780904629754,-3.4026608753075305,-1.5460637527796344,-3.432050933195363,-8.619792463968325,-3.4173675305723457,-3.4138093383390666,-3.4038644403925424,-3.409833661810814,-3.4140313794156283,-3.425635194641657,6.9622035589243545,0.41769726661103235,-3.256909466295788,-3.4226714175360096,-3.4151948963209886,-3.4175174435519793,4.25103148910226,0.13744343571808137,-3.4133236841124317,-3.418242557677212,-3.4249894954684654,-3.4228813536532225,-3.3972138207303786,-3.407989268626112,2.158432004041801,0.54712743966817,-3.413889962257538,4.3839295731183,1.741495962982544,-3.4175680968383,-8.675264439773521,-3.4068864050368655,6.78297167245017,-0.44301564488801404,-3.6658333494221207,-3.421800940698791,-3.4156247389747705,-3.4278471303219753,-3.4076240084169607,-3.417429951155352,8.999864822122518,-3.4317417055913992,3.1006079850445882,-3.425390165304071,-3.4065800025945494,-3.4128032795404746,-3.4101584027801692,-3.433545679332437,-3.425457865215905,-3.4202919135265866,2.8506466391116074,-3.4179173643540617,-6.42601809671659,-5.8491332294101035,5.444854550043916,0.00887477681137483,-3.413398346703315,-3.41351314600129,-3.4160802993240678,-3.421381896830943,-3.4112104627563067,-3.410010201608161,-3.4229058846267417,-3.4170872731505675,-3.4156098354607547,-3.4056723667394913,-7.763406919177656,-3.43211787390712,-3.4076802191666697,-3.415003691630549,-9.248515647041035,-3.4265026658752573,0.4244356012477617,-3.4263880031666396,2.8916454980138617,-3.419330628426086,-3.4240763875054867,-3.4246916545424817,-3.4377150114853903,-3.415531914714456,-3.412828375848802,-3.4349061496886417,-3.425121443566251,-3.427336889562773,-0.5557690174951979,-3.4083551375209096,-3.409934247093119,-3.412081006473734,-0.6774040373582828,-3.409406572634329,-3.4197182808587385,-9.563490986664698,-3.4259719030842186,-3.4315921480118146,-2.139541594913121,7.797697834167895,-3.429543225971347,5.09837335607723,5.722194838132751,-3.416857175283101,-3.9974824948276915,-3.4229282180852802,-3.4256289808979137,-3.4137240360562604,2.3850571327611885,-3.4148136787735774,5.232198454917219,-3.428517585187425,-3.4283466197922428,-3.4400656862464025,-3.412405261912128,-3.4074692928908865,-3.432647118219533,-3.4292433465530516,-9.0628134393744,-7.093623478662147,-1.3157040310507835,-2.969859673657334,-4.318187088575178,-3.4065808913522586,-3.4165639626539166,-0.44800653409508584,-7.395749333393136,9.114397285139574,-3.4175453052900737,2.7284780535110382,-3.418326405616777,-3.3059343925662565,-3.427757218256456,4.3590795992571145,-3.540266288546614,-8.625961687463846,-3.3992163187461086,-3.4109525371849445,-3.4065771879488347,-3.420116168027368,-3.4095838562845584,-7.2407073128810095,-3.4027152580576754,-3.41552995096389,-3.408659354060706,-3.4137618908564082,-3.4131354410892643,-3.4133611922393445,-3.4080891273089815,-3.4110773777232204,-3.407621641331424,-3.4204522476129116,-3.3968424211334742,-5.927962405647882,-3.410639064388975,3.6762070348672164,-3.4148875517924235,7.652984809172331,-3.417007472113376,-5.762222064027855,-3.4250970427020277,-3.4287552157643377,-3.4234482875650416,-3.421761834062849,-3.428477837190126,-3.4138069312003436,6.819567013427783,-3.4041860400634105,6.607611639061929,-3.419016167884072,-3.4097698820890585,-3.4245751188150173,-3.4212244023821716,-3.420927660697286,-2.493176395875132,-3.428598544718965,9.19457812556534,-3.4160786862700165,-3.4154042707189056,1.2190670396060987,-3.416643415208025,-3.4389636278792244,-3.4093330638187256,-3.410213408592587,-3.424827900726637,-3.4088611507170032,-3.4186844857996954,-3.410649190076561,-3.4075478341128465,-3.414707945351373,-3.4269708181642784,-5.440925896332878,-3.4103279731448044,5.675263584192422,-3.4227952935502257,-3.4188812854552673,9.326213264367567,-3.4233623795299506,-3.423481267780347,3.650811747791492,-3.4258888068592572,-5.780543737694397,-3.7105863791957656,4.305815548247946,-3.4204061533684307,-3.410767239190628,8.5558432125719,-3.429318104132574,3.6471367590848853,-3.4178045603306657,-0.3233741970829911,-3.4137174000554307,-3.4113724506968923,-4.23629151872432,-3.4103226314117494,-3.4201135408326353,4.750923101623803,-3.407049314484029,-3.4185617768894394,-3.410237601206944,-3.4195595172548297,-3.4033206178437334,-3.4113800699702086,-7.2000155811935596,7.990353223205851,-7.147330421801548,-3.4195893453600057,-1.659225983654819,-3.4286730539365164,3.9976310858897417,-3.41432467415971,-3.4102903339708686,-3.406786136489428,-3.4158763332773177,-3.413786681137145,2.2629493244977787,-3.4135607051368133,-3.4013510787020893,-3.419152966698479,-5.713715408578888,-3.4235546881013708,-3.401664394797125,-3.411205108610882,-3.414449977877685,-3.4087538432876077,-3.4246516927490935,-3.4202585077171257,-3.4202240164054176,9.180748589174804,5.139354106014229,-3.4136463978406066,-3.412231699642758,-0.39393772491968626,-3.4170713633691685,-3.419988945282954,-3.4270746273409696,-3.411638736175286,-3.4178440791422364,-3.4148381060673323,-3.4230207687338687,-3.4078291079442833,8.347881820386732,-3.410534876149635,-1.7094353777739038,-5.253287715996768,-3.413786318766169,-3.4165497258123416,1.2503790598184317,-3.410718225153321,6.740214709547978,-3.4214349486679776,-3.4118618420410227,-3.4191833680312627,-3.4278288255522025,4.431295092047309,-3.404829495022824,-3.4107342419736986,-3.4312187628006816,9.333219414259844,-3.413972752928406,-3.415159557321137,-0.9108794846974568,-4.079085303562615,1.3586003477394382,-2.518714653896346,-3.4187170623854604,-3.4087773779581196,-3.3349850003099473,-3.4104727715683305,-8.681139194954994,-3.4212106952332286,-3.4195114288580744,-3.4180126851136716,-3.413844328427933,-3.4175635042393626,6.109832373049542,-3.4268371413955236,-6.322022149206679,-3.428160255803517,-3.404485299568062,-3.4150424212797095,-3.4263554945975496,9.753462459494436,-3.4149719546064086,-3.425800179024126,-3.4160723878765973,-5.5717322459057765,-3.4265149073592838,-3.414603562524478,-3.420163155342209,-3.4141903154918722,-3.4114901802318434,-5.129846503565576,7.274059172142671,-3.415620863783248,-9.59694747075278,-5.223033843105371,-4.864229483095437,-3.4129543597533862,-5.360484808494048,-3.75328969652929,-3.4105894807236217,-3.4111677004185434,-3.4202494940061046,-7.020898241561739,-3.4087019049474687,-3.423410555747669,1.1775403032353005,3.5927680970740354,-3.4156141771394246,3.496562936782407,-3.407712736975034,-3.4108372017245516,-3.401566671825562,-3.4206721598879195,-3.415263508585639,6.286935578029713,-2.586131963196503,-3.413179676551092,4.0964418672582585,-3.072679315624889,-3.4124049922280797,-3.4235057275110057,-3.4136680515237927,-3.412660631448645,-3.4099262273906836,-3.4051154424989774,-3.415649729125576,-6.312408034035267,3.796435553520734,-3.4120993786962126,-3.416943178514371,-3.408222824561059,-9.204821105390838,-3.4154199418437594,-3.418074101261279,-6.296286752437446,-1.506209718029103,-7.92138649550197,-3.406363356046053,-3.4820729986334475,6.173273950392918,-3.4121955169512583,-6.681121428714798,-3.419942514579838,-8.214387374653127,-3.419854836313667,8.143201597108675,7.161968125262774,-3.421803463028656,-3.4231492622289093,-3.4096293127147392,-3.4091943301524505,-3.4054632009361185,-3.4077120815036013,-3.4076393653673476,-3.409498064584283,-3.4081278695924926,-3.426275372555909,-3.4276835449023144,-3.421862769481132,-3.4061565159179787,-6.421961385622672,-3.4064160150764113,-1.624495300389249,-3.4206106468932678,-2.1675706434697384,8.662776142975105,-3.4211382027323456,-3.4088223540037523,-3.4165991402644513,1.8890674343080356,-3.4244189085715107,3.204283351768602,-2.253415215707985,-3.424394842077988,-3.424123061810702,-6.377593088144029,-3.4251260867118667,-3.412407638687246,-3.4031298043752214,-3.411999747766153,-3.41281872774851,-3.409950810382277,-7.751708201927778,3.117622568249665,-3.4042386057253973,-3.4045579227617644,-3.4199068423677375,-3.411943650655875,-3.409629118838142,-3.4118268720122433,-3.4139267937851416,-3.430207004576875,-3.4149050440340094,-3.412858217881527,-3.4127053796712934,-4.362609168932092,-0.028831343805924448,-3.421079237672319,6.085572377662849,2.8183533897269797,-3.414688130686746,-3.4062464320537185,-3.416044370430779,-3.421334314301302,-6.634533255398942,-4.647616393550615,-3.423887721202897,-0.2694793887482625,-8.816321005590549,-3.4184276043944983,-3.413653262368486,-3.420620524871838,-3.4037645396051275,-3.4075992194735862,4.853940656897027,-3.416229907557594,-3.396862545279288,-3.41388057931373,9.890664059332064,-3.399353034882914,-3.4201502426279964,2.8499275730101115,-7.0292458161465525,8.05541589835396,2.557573581845178,0.03560056178657511,-7.931445729276363,-3.4163187014746725,-3.4098392873311854,-4.287317504684598,-3.409246835004107,-1.9416547710396266,-3.4164564150203445,-3.4200373999416733,-3.4096696696699276,-3.4244903638752664,-3.4289152085975534,-5.073654721908147,-3.4192555596049097,-3.407019836513758,-3.4222067094267983,-3.4150665318345172,-4.897775059707183,-3.4081547658512026,7.882110202834603,-3.40691238974295,-7.76823540326534,-3.4178451221604798,-3.4083031742773855,-3.411973862151344,-3.424977323658184,5.581633929899272,3.047846325924123,1.9746938525379054,-3.4030454303728783,-3.4288420075784654,-3.4150678156713976,-9.364541347806604,-3.423090968359589,-3.425203980457053,-3.409237711949671,-5.573841504619709,-3.4243173678827477,-3.4214575002765413,-3.4091619247947005,-7.656719436343808,0.26389065198303996,-3.419684470166434,-1.1554762198899748,-3.4179422228423286,-3.423363029583056,-3.4315621379958214,-3.3948227355726734,-3.4229923148397337,-3.4279234696715655,8.30643669344915,-3.4129867034662533,-5.004782742502059,-3.4062177712736554,-3.416028790942791,7.598349008530597,-3.426452025357964,-5.3821404841538385,-3.421610995888738,-3.403680587284029,2.7184347299863774,-6.252581757938329,-3.4296698100322356,-4.898156014283586,0.904696530048728,-3.425598456063021,-3.4290132851152757,-3.4083700749059656,-3.415136074593967,-3.424196001032863,-3.4273849375743204,-3.428762116138757,2.760955071010576,-3.41051048956876,-3.414427214210926,-3.4107972451369806,-3.417648106289228,2.544773472495729,-3.4119499194040515,-3.433644397009184,-3.428180163646007,-3.4252730318840108,-3.0019078622388857,-3.3349003090706812,-2.409757742065559,-5.348010082842616,-3.4093795790757673,-3.4159644718814475,-3.4273250415034067,2.3299978875550735,-3.426942786833078,-6.181124873402791,-3.4128972512046696,-3.4066395680660024,-4.323514987529309,-3.41088138640535,-6.708768702956835,-3.4024463746794984,-0.7110735418594487,-3.4136903439205133,-3.4147153186237524,-3.4152458403598907,-3.409832060706889,-3.435183023620602,-3.4047560573048905,-3.4338401136100147,-8.688561079074033,-3.418093289434604,-3.4212093815467277,-4.192971340618605,-3.409374471967724,-3.4209245036073543,-3.415923104678436,-2.908503784632785,0.4689779017460065,-3.4188767207998367,-3.4284872071155847,-3.408249582945391,-3.7716810980381688,-3.415991261924221,-1.755346757337076,-5.879452410266275,-3.4229249297188877,-3.420830141630131,-3.412420617317915,-3.4207913147961078,-5.307172897247712,-8.308846360593925,-3.424460881377466,9.149707726774047,6.638164017770777,-3.413588875387722,-3.416754540922968,-3.4112098935687607,-3.4258795020041504,-3.4206625182467842,-3.433508797144107,-3.4315349584011337,-8.292005406002286,-7.342185439042903,-6.343253390200118,6.6118475768516625,-7.94972210247164,-3.4320411465107368,-3.4219804584398705,-8.800295416155377,-3.4244929126280805,-3.425417673807278,-3.4348647415830103,-3.435523491664025,2.276599512047339,-3.436725478274032,-3.4224944549343226,-3.438578086544176,-3.416041685767487,-3.4184702993279323,-3.4231407612913323,-3.4184875789677065,-3.434245026863593,-3.4149110673996947,7.195185233458044,-3.4261724045138306,-3.4229739828463943,-3.4133946393334336,-3.4243201856276384,-3.420265949610135,-3.4065151044289017,-3.423959352268061,-3.4269689373194225,9.389996677692746,-1.020806838220496,-3.4100791602340808,-4.752030171232446,-3.424290142006136,-3.420497654276856,-3.422455277285861,4.275806164760684,-3.4169921033158515,-3.412735171052484,-3.434713472611019,-3.4123474680282717,-3.422236597916582,-3.415233514686223,-3.417031994108952,-3.4179864248094294,-3.425498473217562,3.9094901913021918,8.93778244805268,-3.434683779447254,-3.4171372644110214,-3.426849094516041,-3.4170160766337947,-3.427433051183792,-3.418635851442021,-3.420898487716377,-3.4143510470265053,-0.7771308294497175,-3.430123151328358,-3.4314210871390944,-4.016891935031115,-3.426199463206255,-3.429735946957729,-3.423797144117552,6.642576593083373,-3.4156774701039243,-3.4148400804147965,-3.421923225600918,-3.8715892865810524,-4.394414320947941,-3.418819174954497,0.4555315827779278,-3.41974002235533,-3.417846304737222,-3.4147128477626074,-3.4339034041449477,-3.4286044441348977,-3.4289004406963297,-3.421558007793016,3.811647699791095,-3.4157121631752574,-3.4297844917534626,-3.418663301926834,4.632233708761786,2.0363715869553864,4.349981832676606,-7.138308443436381,-3.4210909794357844,-3.420598640824311,-3.4230784856428533,-3.418727314067864,0.6885109272320946,-3.4150430209166407,-3.4261494857419352,-0.44404256465988823,-3.416452927623874,-3.4311029365761314,9.687694463202956,-6.074744175365048,-3.420285789847087,-3.4069450425207055,5.762904419035088,5.42997857632473,-3.428528919747417,-3.421320728060354,-3.415928895643966,5.892428453712089,-3.42854832819222,-3.2748009373686333,-5.693922337748067,-3.4143917991918373,-3.4090243911001394,-3.4185333371155027,-3.424573778105069,-3.4314061986998388,2.3983147711862607,-3.4217889128696113,-3.4184931758880577,-3.4371298157020123,4.974773119896037,9.029731492943228,-3.418624659892254,-3.422674475192564,-3.425478060822323,-3.421108964775267,-3.4340388231034202,3.7068786861963723,-3.4065753319697647,-7.200617255157882,-3.9972185037064145,-3.420355582045403,-3.426828904014635,-3.4320226411893504,-3.4227421942131073,0.4512062347730641,-3.425952133225559,-3.4149309664551755,6.373689191979114,-3.4189421710889363,-3.412313695702811,-3.411981515608085,-3.4285862036130244,-3.4275308485590736,-3.43254926297927,-3.4311542484948454,-3.41604161023639,-3.435629031623474,-3.429932778526622,-3.4158661512184043,-3.4198536819678598,1.8266206317307123,-3.4218191978289427,-3.423654503454893,-3.436251645778383,-3.4141461775858044,-3.419405680370561,1.6357349480293877,-3.413318256191179,-3.4232718996629172,-3.4156072258809855,-3.4170744852919412,-3.42871154217164,-3.427165785627764,-3.418454536077723,-3.4208002455541795,-3.42898331085509,-3.414146852066696,-3.427822837198832,-3.4338822173847463,-3.4309537370519703,-3.4194278856516735,-3.424754356379715,-3.4338312070562047,-3.4344451556949167,-3.4186229876381837,-3.420611379448677,-3.417756632772102,-3.4166016907260657,5.0912082423771,-3.4140909476639223,-9.190941314803112,-3.4199248654360055,-3.415639843843479,7.3293294056338425,-3.411440960251264,9.841236243154306,-3.4150171970961507,-3.4270208620491784,-3.4212358651134966,-6.967995635671507,-3.428341702831598,-3.4259640271300107,-5.259950865002018,-3.41624037786723,-3.430744686336748,-1.8524388557693818,6.587110884243227,-3.428316769130779,-3.4240266725671535,-1.8753779139222146,8.498732031413631,6.079169346101846,-3.412140233622085,2.0304557090288142,-7.485974173943177,-3.4294668712977936,-3.418764117297078,4.029583014463359,-3.4262190646905335,-3.416550902003986,-3.419614182915849,-3.428448425471375,-3.4205233240884967,-3.412918911424578,-3.42180851845011,-3.432093933581677,-3.4275402792920326,-3.430832946368106,-3.4215548766089876,-3.4252543652688203,-3.428865773737532,-3.4113934485418627,-3.4118991791082864,6.7204719396032,-2.3957838831318785,-3.424429377669788,-1.8830387027302127,-3.4184590928026974,-3.416178684102972,-3.4313557972699984,-3.415029865536134,-9.592480689280539,4.136747939226737,-3.419422830824896,-3.417558071960441,-3.4297054467880628,-3.42163492509402,-3.424568624778815,-2.8552308692850747,-3.420565550610341,3.1481673938110504,-3.406843131618973,-3.4116464207372745,-3.225938614380441,-0.31755305594188776,-3.419927676073046,0.10793140377585608,-3.4152563902742124,-3.4102617424878527,-2.4292667024726944,-3.4199643486907307,-3.4331508802147237,-3.4250187162608645,-3.420480787165702,7.458380060111502,-3.4253278391648623,-3.4214051820736753,8.846609312154218,-3.412715770916642,-3.4298930270630095,-3.413491099774988,-3.4219201392180842,-0.3691905796543722,-3.4258245702966086,6.184006826727991,-5.416201634440599,-3.4046537024583445,-3.421117598276327,-4.4522441269978685,-3.4254505923865164,-3.4303815384299448,-8.53992212773505,-3.4303897834102273,-0.18979798474367193,-3.41369053831421,-3.410751253859737,-3.4178916490228755,-3.4355753527716058,-3.402772896691725,-3.4145444355085317,6.904525091395119,-3.4241447403152527,-3.417821680739946,6.939727295543328,-3.42126493405393,-3.4209591431220012,-3.4417101620156068,-3.4222952023852615,-3.4329989504806013,-3.4142597349411963,-3.417170629698715,2.48604965817478,-3.429743496109352,-3.4290612768756645,-3.421778495819515,-3.41044067462645,2.443408576759813,-3.416609816581122,5.475643369798879,-3.416235482075173,-3.415525978761443,-3.4272001809880193,-0.2019875128919182,-3.425800520452759,-3.431419522296064,0.7319080392817767,-3.4216978427101106,6.737040670506087,-1.9641179053663755,-3.155839785192029,-3.410547105724633,9.565892856215797,-3.420837134521646,-3.4136967058524146]},\"selected\":{\"id\":\"11122\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"11123\",\"type\":\"UnionRenderers\"}},\"id\":\"10415\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10500\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10700\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10499\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10500\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10497\",\"type\":\"CDSView\"}},\"id\":\"10501\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10699\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10700\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10697\",\"type\":\"CDSView\"}},\"id\":\"10701\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"data\":{\"HB_iteration\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"3\",\"4\",\"4\",\"4\",\"4\",\"4\",\"4\",\"4\",\"4\",\"4\",\"4\",\"4\",\"4\",\"5\",\"5\",\"5\",\"5\",\"5\",\"5\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"6\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"7\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"8\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"9\",\"10\",\"10\",\"10\",\"10\",\"10\",\"10\",\"10\",\"10\",\"10\",\"10\",\"10\",\"10\",\"11\",\"11\",\"11\",\"11\",\"11\",\"11\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"12\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"13\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"14\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"15\",\"16\",\"16\",\"16\",\"16\",\"16\",\"16\",\"16\",\"16\",\"16\",\"16\",\"16\",\"16\",\"17\",\"17\",\"17\",\"17\",\"17\",\"17\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"18\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"19\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"20\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"21\",\"22\",\"22\",\"22\",\"22\",\"22\",\"22\",\"22\",\"22\",\"22\",\"22\",\"22\",\"22\",\"23\",\"23\",\"23\",\"23\",\"23\",\"23\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"24\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"25\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"26\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"27\",\"28\",\"28\",\"28\",\"28\",\"28\",\"28\",\"28\",\"28\",\"28\",\"28\",\"28\",\"28\",\"29\",\"29\",\"29\",\"29\",\"29\",\"29\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"30\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\",\"31\"],\"colors\":[0.89155,0.9063299999999999,0.8925199999999999,0.8997399999999999,0.8865300000000002,0.9011199999999999,0.8958499999999999,0.45043000000000005,0.8989900000000001,0.17017999999999994,0.07366,0.07366,0.07366,0.07366,0.17499000000000003,0.17081999999999997,0.903646,0.17017999999999994,0.90044,0.9009463333333333,0.89868,0.17423000000000002,0.89909,0.17017999999999994,0.83568,0.7838300000000001,0.88056,0.8845700000000001,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.9020699999999999,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.482245,0.07826666666666669,0.07826666666666669,0.07826666666666669,0.07826666666666669,0.9014,0.9014942857142856,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.89345,0.8935442857142858,0.8529000000000003,0.17017999999999994,0.4863199999999999,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.8936142857142858,0.8912599999999999,0.17017999999999994,0.89497,0.17017999999999994,0.17017999999999994,0.17123,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.88914,0.17017999999999994,0.89502,0.17423000000000002,0.8173300000000001,0.17017999999999994,0.7856799999999998,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.8999492857142858,0.17017999999999994,0.17017999999999994,0.8927999999999999,0.17017999999999994,0.17017999999999994,0.90107,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17556,0.17017999999999994,0.17017999999999994,0.90044,0.03140999999999998,0.03140999999999998,0.03140999999999998,0.03140999999999998,0.03140999999999998,0.89345,0.11531999999999998,0.11531999999999998,0.8980600000000001,0.7178549999999999,0.17017999999999994,0.17017999999999994,0.89879,0.17017999999999994,0.17017999999999994,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.07826666666666669,0.07826666666666669,0.07826666666666669,0.07826666666666669,0.11531999999999998,0.11531999999999998,0.9055,0.9028699999999998,0.17017999999999994,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.89978,0.77368,0.17017999999999994,0.12017,0.12017,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.17017999999999994,0.8935500000000001,0.11531999999999998,0.11531999999999998,0.8965,0.11531999999999998,0.11531999999999998,0.9014033333333333,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.84779,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.8207099999999998,0.11531999999999998,0.11531999999999998,0.8925199999999999,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.8943099999999999,0.11531999999999998,0.11531999999999998,0.8951199999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.47030000000000005,0.8999300000000001,0.11531999999999998,0.11531999999999998,0.8928200000000001,0.9008158333333334,0.89809,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.8997399999999999,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.89326,0.87884,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.11531999999999998,0.11531999999999998,0.8996000000000001,0.8969300000000002,0.89606,0.08268,0.08268,0.08268,0.08268,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.8997399999999999,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.8949300000000001,0.17800999999999995,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.8943579999999999,0.03721999999999999,0.03721999999999999,0.03721999999999999,0.03721999999999999,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.024980000000000023,0.024980000000000023,0.024980000000000023,0.024980000000000023,0.024980000000000023,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.17017999999999994,0.12017,0.12017,0.17423000000000002,0.901408,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.903646,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.17017999999999994,0.8942400000000001,0.12017,0.12017,0.08268,0.08268,0.08268,0.08268,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.11531999999999998,0.11531999999999998,0.17423000000000002,0.9009336666666667,0.89326,0.11531999999999998,0.11531999999999998,0.83568,0.883915,0.12017,0.12017,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.89415,0.11531999999999998,0.11531999999999998,0.12017,0.12017,0.11531999999999998,0.11531999999999998,0.90137,0.8123999999999999,0.12017,0.12017,0.11531999999999998,0.11531999999999998,0.8987999999999999,0.8980600000000001,0.8997999999999999,0.8940666666666667,0.12017,0.12017,0.17017999999999994,0.12017,0.12017,0.11531999999999998,0.11531999999999998,0.12017,0.12017,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.12017,0.12017,0.89365,0.9017499999999998,0.8624,0.17423000000000002,0.16054000000000004,0.05443000000000002,0.05443000000000002,0.16054000000000004,0.894946,0.89557,0.19322999999999996,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.9013899999999999,0.16054000000000004,0.16054000000000004,0.8948899999999999,0.16054000000000004,0.05506000000000003,0.05506000000000003,0.8978100000000001,0.16054000000000004,0.7924399999999999,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.16054000000000004,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.16054000000000004,0.90093,0.16054000000000004,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.21563000000000004,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.16054000000000004,0.16054000000000004,0.78122,0.16054000000000004,0.16054000000000004,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.8950099999999999,0.8967866666666667,0.09879000000000002,0.09879000000000002,0.09879000000000002,0.09879000000000002,0.09666999999999999,0.09666999999999999,0.11479000000000003,0.11479000000000003,0.17005000000000003,0.87278,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.89463,0.79756,0.11479000000000003,0.11479000000000003,0.7517400000000001,0.09879000000000002,0.09879000000000002,0.89566,0.05443000000000002,0.05443000000000002,0.18278000000000003,0.8959800000000001,0.09879000000000002,0.09879000000000002,0.89307,0.8932650000000001,0.8960649999999999,0.8934199999999999,0.16054000000000004,0.055541666666666656,0.055541666666666656,0.17005000000000003,0.17005000000000003,0.18278000000000003,0.17005000000000003,0.06438333333333335,0.06438333333333335,0.09879000000000002,0.09879000000000002,0.11479000000000003,0.11479000000000003,0.17005000000000003,0.16054000000000004,0.8956299999999999,0.09879000000000002,0.09879000000000002,0.11479000000000003,0.11479000000000003,0.05443000000000002,0.05443000000000002,0.18278000000000003,0.17005000000000003,0.16054000000000004,0.17005000000000003,0.7023099999999998,0.88192,0.7924399999999999,0.11479000000000003,0.11479000000000003,0.898985,0.8936258137768662,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.054220000000000025,0.054220000000000025,0.8952200000000001,0.8933099999999999,0.8989199999999998,0.73987,0.054220000000000025,0.054220000000000025,0.07837999999999996,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.09654500000000002,0.89428,0.032140666666666644,0.032140666666666644,0.90184,0.032140666666666644,0.032140666666666644,0.8953000000000001,0.89753,0.8936,0.89672,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.11228000000000002,0.032140666666666644,0.032140666666666644,0.054220000000000025,0.893602121212121,0.8944070542547292,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.8935989075630248,0.89978,0.024544166666666672,0.024544166666666672,0.8935989075630246,0.8935989075630248,0.032140666666666644,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8935989075630235,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.8935997290145989,0.024544166666666672,0.015045801948051959,0.015045801948051959,0.01513580194805196,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.17607000000000003,0.07435999999999997,0.07435999999999997,0.901408,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.8411500000000001,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15744999999999998,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.8954033333333333,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89954,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.1016,0.1016,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.89186,0.15203999999999998,0.89489,0.07435999999999997,0.07435999999999997,0.16276000000000002,0.89223,0.07435999999999997,0.07435999999999997,0.15744999999999998,0.15203999999999998,0.89809,0.8144499999999999,0.8854958333333333,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.15744999999999998,0.8934399999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.8482199999999999,0.8957033333333333,0.15203999999999998,0.15203999999999998,0.15744999999999998,0.5750200000000001,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.9014900000000001,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.89365,0.8970849999999999,0.15566999999999998,0.8988200000000001,0.90267,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15744999999999998,0.07435999999999997,0.07435999999999997,0.50613,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.90076,0.89984,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.8997399999999999,0.8945400000000001,0.8524299999999998,0.15203999999999998,0.15203999999999998,0.15297000000000002,0.89968,0.9018642857142858,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.1670899999999999,0.9012800000000001,0.07435999999999997,0.07435999999999997,0.9000400000000001,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.17115,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.8956439999999999,0.8950999999999999,0.8997999999999999,0.15203999999999998,0.15203999999999998,0.8933399999999999,0.15203999999999998,0.9014900000000001,0.15203999999999998,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.15203999999999998,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.8679300000000001,0.47030000000000005,0.45043000000000005,0.1016,0.1016,0.77368,0.4801,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.897818,0.15203999999999998,0.15203999999999998,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.89635,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.84515,0.8943579999999999,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.16008,0.15744999999999998,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.8997999999999999,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.15203999999999998,0.15203999999999998,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.89704,0.8933399999999999,0.89976,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.8942400000000001,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.89688,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89975,0.07435999999999997,0.07435999999999997,0.891676,0.8794500000000001,0.15203999999999998,0.89239,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.90123,0.8913599999999999,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89879,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.8962499999999999,0.8962766666666668,0.15744999999999998,0.15203999999999998,0.89779,0.15203999999999998,0.8975142857142856,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.89642,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.8936,0.15203999999999998,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.15203999999999998,0.89968,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.15203999999999998,0.8984099999999999,0.15203999999999998,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.15744999999999998,0.8845700000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.891676,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.89489,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.15203999999999998,0.15203999999999998,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.8978742857142858,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8536800000000001,0.07200200000000001,0.8950699999999999,0.07200200000000001,0.054700000000000026,0.054700000000000026,0.054700000000000026,0.054700000000000026,0.5188999999999999,0.07435999999999997,0.10813083333333333,0.8930799999999998,0.7722399999999999,0.8138400000000001,0.07435999999999997,0.07200200000000001,0.07300999999999999,0.07435999999999997,0.9001699999999999,0.07200200000000001,0.054700000000000026,0.054700000000000026,0.054700000000000026,0.054700000000000026,0.84887,0.07435999999999997,0.054700000000000026,0.054700000000000026,0.89516,0.054700000000000026,0.054700000000000026,0.09616999999999999,0.07300999999999999,0.8933399999999999,0.89368,0.07300999999999999,0.89308,0.07300999999999999,0.054700000000000026,0.054700000000000026,0.054700000000000026,0.054700000000000026,0.8874300000000002,0.054700000000000026,0.054700000000000026,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07300999999999999,0.07300999999999999,0.054700000000000026,0.054700000000000026,0.07435999999999997,0.07435999999999997,0.054700000000000026,0.054700000000000026,0.07300999999999999,0.8933399999999999,0.054700000000000026,0.054700000000000026,0.8511200000000001,0.054700000000000026,0.054700000000000026,0.07300999999999999,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.8734100000000001,0.031035666666666694,0.031035666666666694,0.031035666666666694,0.16746,0.84673,0.031035666666666694,0.031035666666666694,0.031035666666666694,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07300999999999999,0.8996666666666666,0.89204,0.031035666666666694,0.031035666666666694,0.031035666666666694,0.07435999999999997,0.031035666666666694,0.031035666666666694,0.031035666666666694,0.05506000000000003,0.05506000000000003,0.031035666666666694,0.031035666666666694,0.031035666666666694,0.07300999999999999,0.07300999999999999,0.031035666666666694,0.031035666666666694,0.031035666666666694,0.8950699999999999,0.07435999999999997,0.891,0.90075,0.07435999999999997,0.054700000000000026,0.054700000000000026,0.07300999999999999,0.07435999999999997,0.05506000000000003,0.05506000000000003,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8936,0.05443000000000002,0.054700000000000026,0.8992699999999999,0.8935999999999998,0.054220000000000025,0.054700000000000026,0.9028699999999998,0.8943300000000001,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.90055,0.8937299999999999,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.05443000000000002,0.09841000000000003,0.05443000000000002,0.89394,0.032140666666666644,0.032140666666666644,0.10395999999999997,0.054700000000000026,0.032140666666666644,0.032140666666666644,0.10138,0.032140666666666644,0.032140666666666644,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.02486416666666668,0.02486416666666668,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.89978,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07494999999999995,0.02486416666666668,0.02486416666666668,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.052745,0.893602121212121,0.86765,0.02486416666666668,0.02486416666666668,0.54587,0.015045801948051959,0.015045801948051959,0.12595000000000003,0.8936,0.8935999999999998,0.015045801948051959,0.015045801948051959,0.02486416666666668,0.015045801948051959,0.015045801948051959,0.02486416666666668,0.893602121212121,0.015045801948051959,0.8935989075630235,0.015045801948051959,0.8935989075630235,0.015045801948051959,0.8371200000000002,0.89161,0.14847000000000002,0.8997399999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.14847000000000002,0.14847000000000002,0.8144499999999999,0.14847000000000002,0.17115,0.89657,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89621,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.87884,0.14847000000000002,0.9007339999999999,0.89779,0.14847000000000002,0.7725100000000001,0.14847000000000002,0.8207099999999998,0.89764,0.17497000000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8207099999999998,0.8565799999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.7098199999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17553000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.77368,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.84863,0.90267,0.14847000000000002,0.90076,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.49789000000000005,0.14847000000000002,0.14847000000000002,0.89326,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.90267,0.9011866666666666,0.9009333333333333,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8793000000000001,0.07200200000000001,0.07200200000000001,0.8997999999999999,0.8728499999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.77368,0.8958499999999999,0.86894,0.07200200000000001,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8468899999999999,0.32880000000000004,0.18816000000000005,0.8953724999999999,0.07200200000000001,0.07200200000000001,0.8955399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8865300000000002,0.17012999999999998,0.07200200000000001,0.07200200000000001,0.8949883333333334,0.90044,0.07200200000000001,0.07200200000000001,0.56715,0.07200200000000001,0.07200200000000001,0.8933399999999999,0.9036033333333334,0.07200200000000001,0.07200200000000001,0.45043000000000005,0.9011866666666666,0.07200200000000001,0.07200200000000001,0.9012600000000001,0.07200200000000001,0.07200200000000001,0.90107,0.535245,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.17607000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.15322999999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9009333333333333,0.8679300000000001,0.07200200000000001,0.07200200000000001,0.9059899999999999,0.8987400000000001,0.89978,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.88726,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89606,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.90615,0.16608533333333336,0.4863199999999999,0.8358500000000001,0.8953699999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8781599999999999,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9055,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.8679300000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9011199999999999,0.15297000000000002,0.8943299999999998,0.9000429999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8939776666666667,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.8953099999999999,0.18816000000000005,0.9014942857142856,0.14847000000000002,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.89832,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8953699999999998,0.8987400000000001,0.9031399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9004100000000002,0.171086,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.17115,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8958699999999998,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9000429999999999,0.07200200000000001,0.07200200000000001,0.86894,0.9036033333333334,0.14847000000000002,0.14847000000000002,0.8881899999999998,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16662,0.8927999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89223,0.07200200000000001,0.07200200000000001,0.85964,0.09433999999999998,0.07200200000000001,0.07200200000000001,0.8936,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9008899999999999,0.07200200000000001,0.11297800000000002,0.07200200000000001,0.8625700000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8943399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89564,0.07200200000000001,0.90683,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.05506000000000003,0.05506000000000003,0.07265750000000003,0.112998,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8933399999999999,0.9015657142857142,0.9014599999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.1038,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.8979799999999999,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07200200000000001,0.9017771428571428,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8978000000000002,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.18030000000000002,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.9056700000000001,0.89308,0.05506000000000003,0.90184,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8991000000000001,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.891415,0.8481433333333334,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.8920399999999999,0.03175066666666667,0.03175066666666667,0.9003099999999999,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.8935999999999998,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.8935989075630248,0.024687500000000008,0.024687500000000008,0.06353999999999999,0.893602121212121,0.8928189075630251,0.8935989075630248,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.024687500000000008,0.024687500000000008,0.8935989075630246,0.015045801948051959,0.015045801948051959,0.3148099999999999,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8935989075630235,0.024687500000000008,0.024687500000000008,0.04050399999999999,0.8935989075630237,0.04490000000000003,0.015045801948051959,0.015045801948051959,0.08565000000000002,0.02158344696969698,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.90302,0.14847000000000002,0.7841199999999999,0.89497,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.8955399999999999,0.14847000000000002,0.90076,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17499000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8791,0.14847000000000002,0.8963700000000001,0.89954,0.14847000000000002,0.8997800000000001,0.89975,0.14847000000000002,0.16942533333333337,0.14847000000000002,0.14847000000000002,0.8950999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.84154,0.8679300000000001,0.14847000000000002,0.14847000000000002,0.5209499999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8999499999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16913600000000004,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.9009336666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89204,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89657,0.16948000000000008,0.14847000000000002,0.14847000000000002,0.9024999999999999,0.14847000000000002,0.07435999999999997,0.07435999999999997,0.4720599999999999,0.89901,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17199,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89901,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89305,0.8777199999999998,0.07200200000000001,0.07200200000000001,0.89985,0.8927999999999999,0.9001500000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89326,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.08343000000000003,0.08343000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.4801,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8883300000000001,0.07200200000000001,0.07200200000000001,0.8987400000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9017499999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8993767857142858,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89779,0.07200200000000001,0.07200200000000001,0.51675,0.84154,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8865300000000002,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.5803400000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89986,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8940666666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89627,0.14847000000000002,0.8529500000000001,0.14847000000000002,0.14847000000000002,0.9023900000000001,0.14847000000000002,0.89161,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.8968700000000001,0.89155,0.15297000000000002,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07200200000000001,0.07200200000000001,0.9063299999999999,0.8814033333333333,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.84863,0.8916633333333334,0.032250666666666664,0.032250666666666664,0.032250666666666664,0.032250666666666664,0.9,0.89448,0.07200200000000001,0.07200200000000001,0.8615999999999999,0.07200200000000001,0.07200200000000001,0.9016,0.896396,0.4604000000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.9001199999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.89223,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.14847000000000002,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.07200200000000001,0.07200200000000001,0.7886,0.07200200000000001,0.8970999999999998,0.09616999999999999,0.8933399999999999,0.9002283333333333,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.11031500000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.13490000000000002,0.07200200000000001,0.8967866666666667,0.07200200000000001,0.88465,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8936258137768662,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.8936258137768662,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.113455,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.89381,0.8933399999999999,0.05506000000000003,0.05506000000000003,0.9015249999999998,0.89394,0.05506000000000003,0.05506000000000003,0.26664000000000004,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8948899999999999,0.05506000000000003,0.05506000000000003,0.9034760000000001,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8933399999999999,0.10247000000000002,0.8999499999999999,0.20915,0.08343000000000003,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.84887,0.8957099999999999,0.8934750000000001,0.07200200000000001,0.8867199999999998,0.05506000000000003,0.05506000000000003,0.8943399999999999,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.89564,0.7775200000000001,0.9000220000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.88501,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07829,0.03175066666666667,0.03175066666666667,0.8929499999999999,0.03175066666666667,0.03175066666666667,0.89944,0.05506000000000003,0.05301999999999998,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.032250666666666664,0.893598907563025,0.024687500000000008,0.024687500000000008,0.893598907563025,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.88673,0.03175066666666667,0.8935989075630248,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8935996166550485,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.03637999999999999,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.89901,0.14847000000000002,0.14847000000000002,0.9007339999999999,0.14847000000000002,0.14847000000000002,0.89621,0.14847000000000002,0.8938900000000002,0.9001000000000001,0.9,0.14847000000000002,0.14847000000000002,0.9055199999999999,0.14847000000000002,0.8999583333333334,0.14847000000000002,0.89968,0.14847000000000002,0.14847000000000002,0.8958699999999998,0.14847000000000002,0.14847000000000002,0.9017842857142858,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8506600000000001,0.8981199999999998,0.17199,0.14847000000000002,0.8524299999999998,0.14847000000000002,0.89315,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.87568,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8936300000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89207,0.8953699999999998,0.14847000000000002,0.14847000000000002,0.89657,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8942400000000001,0.14847000000000002,0.8173300000000001,0.15895,0.14847000000000002,0.14847000000000002,0.90267,0.14847000000000002,0.8950699999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8954033333333333,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8933399999999999,0.14847000000000002,0.14847000000000002,0.889225,0.7725100000000001,0.8934399999999998,0.4720599999999999,0.14847000000000002,0.14847000000000002,0.8746700000000001,0.14847000000000002,0.7856799999999998,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.90076,0.07200200000000001,0.07200200000000001,0.8123999999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89693,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8984500000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.84601,0.89497,0.07200200000000001,0.07200200000000001,0.8350500000000002,0.8764800000000001,0.6744999999999999,0.07200200000000001,0.07200200000000001,0.8984500000000001,0.15744999999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.84473,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9000429999999999,0.89621,0.07200200000000001,0.07200200000000001,0.9008158333333334,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8990500000000001,0.7098199999999999,0.07200200000000001,0.07200200000000001,0.8986600000000001,0.50613,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.51675,0.8941799999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.88354,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.16662,0.8777199999999998,0.89832,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8256900000000001,0.89984,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8144499999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.171086,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8981199999999998,0.9016,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8123999999999999,0.14847000000000002,0.8207099999999998,0.14847000000000002,0.48869999999999997,0.89779,0.14847000000000002,0.14847000000000002,0.8746700000000001,0.9001500000000002,0.14847000000000002,0.90073,0.8781599999999999,0.14847000000000002,0.14847000000000002,0.16784533333333335,0.14847000000000002,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8882300000000001,0.89954,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.15844999999999995,0.8953724999999999,0.07200200000000001,0.07200200000000001,0.8912599999999999,0.88989,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8939776666666667,0.15844999999999995,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8998099999999999,0.16111999999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.14847000000000002,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8946,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.90155,0.07200200000000001,0.07200200000000001,0.89581,0.10675000000000001,0.8968499999999999,0.8978399999999999,0.8947199999999998,0.27225,0.07200200000000001,0.07200200000000001,0.8956500000000001,0.07200200000000001,0.8536800000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.083197,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8982299999999999,0.07200200000000001,0.89853,0.07200200000000001,0.27225,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.89564,0.88465,0.8854799999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.11110957142857143,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.1028,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.10660399999999999,0.9016771428571427,0.05506000000000003,0.05506000000000003,0.7329600000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.9056700000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.08343000000000003,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8962199999999999,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.09931999999999999,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.8969199999999999,0.8138400000000001,0.07200200000000001,0.8456199999999999,0.90075,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.05506000000000003,0.05506000000000003,0.8912599999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9026349999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.9005099999999999,0.032140666666666644,0.032140666666666644,0.11219000000000001,0.8951399999999999,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.89505,0.03175066666666667,0.03175066666666667,0.49933999999999995,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.25558000000000003,0.05506000000000003,0.06287333333333334,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.81565,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.07862,0.03175066666666667,0.03175066666666667,0.8935999999999996,0.03175066666666667,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.05196333333333334,0.893596387347932,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.025540000000000007,0.024687500000000008,0.8935999999999996,0.04099000000000001,0.024687500000000008,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.021319974747474754,0.28351,0.015045801948051959,0.90107,0.9000400000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8679300000000001,0.27691999999999994,0.17974999999999994,0.9060599999999999,0.83568,0.14847000000000002,0.14847000000000002,0.89161,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8987999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89635,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8933399999999999,0.896396,0.14847000000000002,0.8764800000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8915200000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8978742857142858,0.8956439999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8883300000000001,0.14847000000000002,0.14847000000000002,0.19768999999999998,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8969300000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16412,0.89976,0.14847000000000002,0.8940666666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8999583333333334,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89764,0.89986,0.9028699999999998,0.45043000000000005,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.14847000000000002,0.14847000000000002,0.8785449999999999,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.07200200000000001,0.07200200000000001,0.9009336666666667,0.17497000000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8990500000000001,0.90076,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8949300000000001,0.14847000000000002,0.15203999999999998,0.8927999999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8977199999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9028699999999998,0.8969299999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89621,0.07200200000000001,0.07200200000000001,0.89204,0.8870000000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8918623333333334,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8928199999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8971699999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.83812,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.9058699999999998,0.14847000000000002,0.89978,0.14847000000000002,0.14847000000000002,0.89734,0.14847000000000002,0.89976,0.14847000000000002,0.14847000000000002,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.27226999999999996,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.16276000000000002,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.8207099999999998,0.89497,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8965200000000001,0.8969299999999999,0.9055,0.07200200000000001,0.07200200000000001,0.8934399999999998,0.47296000000000005,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89832,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.8955399999999999,0.89345,0.14847000000000002,0.84108,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.14847000000000002,0.14847000000000002,0.8350500000000002,0.9010058333333333,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8176499999999999,0.07200200000000001,0.87331,0.07200200000000001,0.07200200000000001,0.07300999999999999,0.8625700000000001,0.07200200000000001,0.8947199999999998,0.07200200000000001,0.07200200000000001,0.73879,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8962199999999999,0.07200200000000001,0.07200200000000001,0.8959800000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8836291666666666,0.07200200000000001,0.89709,0.12962999999999997,0.07200200000000001,0.07200200000000001,0.61423,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8852500000000001,0.05506000000000003,0.05506000000000003,0.8868941666666667,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.89229,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9000799999999998,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.8734100000000001,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.87278,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.900666,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.8625700000000001,0.07200200000000001,0.07200200000000001,0.8950799999999999,0.07200200000000001,0.9028700000000001,0.9024190000000001,0.20915,0.07200200000000001,0.9009320000000001,0.05506000000000003,0.05506000000000003,0.07200200000000001],\"colors_iteration\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,22,22,22,22,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,28,28,28,28,29,29,29,29,29,29,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31],\"colors_performance\":[0.89155,0.9063299999999999,0.8925199999999999,0.8997399999999999,0.8865300000000002,0.9011199999999999,0.8958499999999999,0.45043000000000005,0.8989900000000001,0.17017999999999994,0.07366,0.07366,0.07366,0.07366,0.17499000000000003,0.17081999999999997,0.903646,0.17017999999999994,0.90044,0.9009463333333333,0.89868,0.17423000000000002,0.89909,0.17017999999999994,0.83568,0.7838300000000001,0.88056,0.8845700000000001,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.9020699999999999,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.482245,0.07826666666666669,0.07826666666666669,0.07826666666666669,0.07826666666666669,0.9014,0.9014942857142856,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.89345,0.8935442857142858,0.8529000000000003,0.17017999999999994,0.4863199999999999,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.8936142857142858,0.8912599999999999,0.17017999999999994,0.89497,0.17017999999999994,0.17017999999999994,0.17123,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.88914,0.17017999999999994,0.89502,0.17423000000000002,0.8173300000000001,0.17017999999999994,0.7856799999999998,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.8999492857142858,0.17017999999999994,0.17017999999999994,0.8927999999999999,0.17017999999999994,0.17017999999999994,0.90107,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17556,0.17017999999999994,0.17017999999999994,0.90044,0.03140999999999998,0.03140999999999998,0.03140999999999998,0.03140999999999998,0.03140999999999998,0.89345,0.11531999999999998,0.11531999999999998,0.8980600000000001,0.7178549999999999,0.17017999999999994,0.17017999999999994,0.89879,0.17017999999999994,0.17017999999999994,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.07826666666666669,0.07826666666666669,0.07826666666666669,0.07826666666666669,0.11531999999999998,0.11531999999999998,0.9055,0.9028699999999998,0.17017999999999994,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.89978,0.77368,0.17017999999999994,0.12017,0.12017,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.17017999999999994,0.8935500000000001,0.11531999999999998,0.11531999999999998,0.8965,0.11531999999999998,0.11531999999999998,0.9014033333333333,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.84779,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.8207099999999998,0.11531999999999998,0.11531999999999998,0.8925199999999999,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.8943099999999999,0.11531999999999998,0.11531999999999998,0.8951199999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.47030000000000005,0.8999300000000001,0.11531999999999998,0.11531999999999998,0.8928200000000001,0.9008158333333334,0.89809,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.8997399999999999,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.89326,0.87884,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.11531999999999998,0.11531999999999998,0.8996000000000001,0.8969300000000002,0.89606,0.08268,0.08268,0.08268,0.08268,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.8997399999999999,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.8949300000000001,0.17800999999999995,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.8943579999999999,0.03721999999999999,0.03721999999999999,0.03721999999999999,0.03721999999999999,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.024980000000000023,0.024980000000000023,0.024980000000000023,0.024980000000000023,0.024980000000000023,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.17017999999999994,0.12017,0.12017,0.17423000000000002,0.901408,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.903646,0.11531999999999998,0.11531999999999998,0.17017999999999994,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.17017999999999994,0.8942400000000001,0.12017,0.12017,0.08268,0.08268,0.08268,0.08268,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.11531999999999998,0.11531999999999998,0.17423000000000002,0.9009336666666667,0.89326,0.11531999999999998,0.11531999999999998,0.83568,0.883915,0.12017,0.12017,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.11531999999999998,0.89415,0.11531999999999998,0.11531999999999998,0.12017,0.12017,0.11531999999999998,0.11531999999999998,0.90137,0.8123999999999999,0.12017,0.12017,0.11531999999999998,0.11531999999999998,0.8987999999999999,0.8980600000000001,0.8997999999999999,0.8940666666666667,0.12017,0.12017,0.17017999999999994,0.12017,0.12017,0.11531999999999998,0.11531999999999998,0.12017,0.12017,0.09771999999999997,0.09771999999999997,0.09771999999999997,0.12017,0.12017,0.89365,0.9017499999999998,0.8624,0.17423000000000002,0.16054000000000004,0.05443000000000002,0.05443000000000002,0.16054000000000004,0.894946,0.89557,0.19322999999999996,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.9013899999999999,0.16054000000000004,0.16054000000000004,0.8948899999999999,0.16054000000000004,0.05506000000000003,0.05506000000000003,0.8978100000000001,0.16054000000000004,0.7924399999999999,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.16054000000000004,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.16054000000000004,0.90093,0.16054000000000004,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.21563000000000004,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.16054000000000004,0.16054000000000004,0.78122,0.16054000000000004,0.16054000000000004,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.8950099999999999,0.8967866666666667,0.09879000000000002,0.09879000000000002,0.09879000000000002,0.09879000000000002,0.09666999999999999,0.09666999999999999,0.11479000000000003,0.11479000000000003,0.17005000000000003,0.87278,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.89463,0.79756,0.11479000000000003,0.11479000000000003,0.7517400000000001,0.09879000000000002,0.09879000000000002,0.89566,0.05443000000000002,0.05443000000000002,0.18278000000000003,0.8959800000000001,0.09879000000000002,0.09879000000000002,0.89307,0.8932650000000001,0.8960649999999999,0.8934199999999999,0.16054000000000004,0.055541666666666656,0.055541666666666656,0.17005000000000003,0.17005000000000003,0.18278000000000003,0.17005000000000003,0.06438333333333335,0.06438333333333335,0.09879000000000002,0.09879000000000002,0.11479000000000003,0.11479000000000003,0.17005000000000003,0.16054000000000004,0.8956299999999999,0.09879000000000002,0.09879000000000002,0.11479000000000003,0.11479000000000003,0.05443000000000002,0.05443000000000002,0.18278000000000003,0.17005000000000003,0.16054000000000004,0.17005000000000003,0.7023099999999998,0.88192,0.7924399999999999,0.11479000000000003,0.11479000000000003,0.898985,0.8936258137768662,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.054220000000000025,0.054220000000000025,0.8952200000000001,0.8933099999999999,0.8989199999999998,0.73987,0.054220000000000025,0.054220000000000025,0.07837999999999996,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.09654500000000002,0.89428,0.032140666666666644,0.032140666666666644,0.90184,0.032140666666666644,0.032140666666666644,0.8953000000000001,0.89753,0.8936,0.89672,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.11228000000000002,0.032140666666666644,0.032140666666666644,0.054220000000000025,0.893602121212121,0.8944070542547292,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.8935989075630248,0.89978,0.024544166666666672,0.024544166666666672,0.8935989075630246,0.8935989075630248,0.032140666666666644,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8935989075630235,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.8935997290145989,0.024544166666666672,0.015045801948051959,0.015045801948051959,0.01513580194805196,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.17607000000000003,0.07435999999999997,0.07435999999999997,0.901408,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.8411500000000001,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15744999999999998,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.8954033333333333,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89954,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.1016,0.1016,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.89186,0.15203999999999998,0.89489,0.07435999999999997,0.07435999999999997,0.16276000000000002,0.89223,0.07435999999999997,0.07435999999999997,0.15744999999999998,0.15203999999999998,0.89809,0.8144499999999999,0.8854958333333333,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.15744999999999998,0.8934399999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.8482199999999999,0.8957033333333333,0.15203999999999998,0.15203999999999998,0.15744999999999998,0.5750200000000001,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.9014900000000001,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.89365,0.8970849999999999,0.15566999999999998,0.8988200000000001,0.90267,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15744999999999998,0.07435999999999997,0.07435999999999997,0.50613,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.90076,0.89984,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.8997399999999999,0.8945400000000001,0.8524299999999998,0.15203999999999998,0.15203999999999998,0.15297000000000002,0.89968,0.9018642857142858,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.1670899999999999,0.9012800000000001,0.07435999999999997,0.07435999999999997,0.9000400000000001,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.17115,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.8956439999999999,0.8950999999999999,0.8997999999999999,0.15203999999999998,0.15203999999999998,0.8933399999999999,0.15203999999999998,0.9014900000000001,0.15203999999999998,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.15203999999999998,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.8679300000000001,0.47030000000000005,0.45043000000000005,0.1016,0.1016,0.77368,0.4801,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.897818,0.15203999999999998,0.15203999999999998,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.89635,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.84515,0.8943579999999999,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.16008,0.15744999999999998,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.8997999999999999,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.15203999999999998,0.15203999999999998,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.89704,0.8933399999999999,0.89976,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.8942400000000001,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.89688,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89975,0.07435999999999997,0.07435999999999997,0.891676,0.8794500000000001,0.15203999999999998,0.89239,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.90123,0.8913599999999999,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89879,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.8962499999999999,0.8962766666666668,0.15744999999999998,0.15203999999999998,0.89779,0.15203999999999998,0.8975142857142856,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.89642,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.8936,0.15203999999999998,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.15203999999999998,0.89968,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.15203999999999998,0.8984099999999999,0.15203999999999998,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.15744999999999998,0.8845700000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.891676,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.89489,0.05443000000000002,0.05443000000000002,0.05443000000000002,0.15203999999999998,0.15203999999999998,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.15203999999999998,0.07435999999999997,0.07435999999999997,0.15203999999999998,0.8978742857142858,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8536800000000001,0.07200200000000001,0.8950699999999999,0.07200200000000001,0.054700000000000026,0.054700000000000026,0.054700000000000026,0.054700000000000026,0.5188999999999999,0.07435999999999997,0.10813083333333333,0.8930799999999998,0.7722399999999999,0.8138400000000001,0.07435999999999997,0.07200200000000001,0.07300999999999999,0.07435999999999997,0.9001699999999999,0.07200200000000001,0.054700000000000026,0.054700000000000026,0.054700000000000026,0.054700000000000026,0.84887,0.07435999999999997,0.054700000000000026,0.054700000000000026,0.89516,0.054700000000000026,0.054700000000000026,0.09616999999999999,0.07300999999999999,0.8933399999999999,0.89368,0.07300999999999999,0.89308,0.07300999999999999,0.054700000000000026,0.054700000000000026,0.054700000000000026,0.054700000000000026,0.8874300000000002,0.054700000000000026,0.054700000000000026,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07300999999999999,0.07300999999999999,0.054700000000000026,0.054700000000000026,0.07435999999999997,0.07435999999999997,0.054700000000000026,0.054700000000000026,0.07300999999999999,0.8933399999999999,0.054700000000000026,0.054700000000000026,0.8511200000000001,0.054700000000000026,0.054700000000000026,0.07300999999999999,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.8734100000000001,0.031035666666666694,0.031035666666666694,0.031035666666666694,0.16746,0.84673,0.031035666666666694,0.031035666666666694,0.031035666666666694,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07300999999999999,0.8996666666666666,0.89204,0.031035666666666694,0.031035666666666694,0.031035666666666694,0.07435999999999997,0.031035666666666694,0.031035666666666694,0.031035666666666694,0.05506000000000003,0.05506000000000003,0.031035666666666694,0.031035666666666694,0.031035666666666694,0.07300999999999999,0.07300999999999999,0.031035666666666694,0.031035666666666694,0.031035666666666694,0.8950699999999999,0.07435999999999997,0.891,0.90075,0.07435999999999997,0.054700000000000026,0.054700000000000026,0.07300999999999999,0.07435999999999997,0.05506000000000003,0.05506000000000003,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8936,0.05443000000000002,0.054700000000000026,0.8992699999999999,0.8935999999999998,0.054220000000000025,0.054700000000000026,0.9028699999999998,0.8943300000000001,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.90055,0.8937299999999999,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.05443000000000002,0.09841000000000003,0.05443000000000002,0.89394,0.032140666666666644,0.032140666666666644,0.10395999999999997,0.054700000000000026,0.032140666666666644,0.032140666666666644,0.10138,0.032140666666666644,0.032140666666666644,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.02486416666666668,0.02486416666666668,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.89978,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07494999999999995,0.02486416666666668,0.02486416666666668,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.052745,0.893602121212121,0.86765,0.02486416666666668,0.02486416666666668,0.54587,0.015045801948051959,0.015045801948051959,0.12595000000000003,0.8936,0.8935999999999998,0.015045801948051959,0.015045801948051959,0.02486416666666668,0.015045801948051959,0.015045801948051959,0.02486416666666668,0.893602121212121,0.015045801948051959,0.8935989075630235,0.015045801948051959,0.8935989075630235,0.015045801948051959,0.8371200000000002,0.89161,0.14847000000000002,0.8997399999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.14847000000000002,0.14847000000000002,0.8144499999999999,0.14847000000000002,0.17115,0.89657,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89621,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.87884,0.14847000000000002,0.9007339999999999,0.89779,0.14847000000000002,0.7725100000000001,0.14847000000000002,0.8207099999999998,0.89764,0.17497000000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8207099999999998,0.8565799999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.7098199999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17553000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.77368,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.84863,0.90267,0.14847000000000002,0.90076,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.49789000000000005,0.14847000000000002,0.14847000000000002,0.89326,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.90267,0.9011866666666666,0.9009333333333333,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8793000000000001,0.07200200000000001,0.07200200000000001,0.8997999999999999,0.8728499999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.77368,0.8958499999999999,0.86894,0.07200200000000001,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8468899999999999,0.32880000000000004,0.18816000000000005,0.8953724999999999,0.07200200000000001,0.07200200000000001,0.8955399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8865300000000002,0.17012999999999998,0.07200200000000001,0.07200200000000001,0.8949883333333334,0.90044,0.07200200000000001,0.07200200000000001,0.56715,0.07200200000000001,0.07200200000000001,0.8933399999999999,0.9036033333333334,0.07200200000000001,0.07200200000000001,0.45043000000000005,0.9011866666666666,0.07200200000000001,0.07200200000000001,0.9012600000000001,0.07200200000000001,0.07200200000000001,0.90107,0.535245,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.17607000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.15322999999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9009333333333333,0.8679300000000001,0.07200200000000001,0.07200200000000001,0.9059899999999999,0.8987400000000001,0.89978,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.88726,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89606,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.90615,0.16608533333333336,0.4863199999999999,0.8358500000000001,0.8953699999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8781599999999999,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9055,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.8679300000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9011199999999999,0.15297000000000002,0.8943299999999998,0.9000429999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8939776666666667,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.8953099999999999,0.18816000000000005,0.9014942857142856,0.14847000000000002,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.89832,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8953699999999998,0.8987400000000001,0.9031399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9004100000000002,0.171086,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.17115,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8958699999999998,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9000429999999999,0.07200200000000001,0.07200200000000001,0.86894,0.9036033333333334,0.14847000000000002,0.14847000000000002,0.8881899999999998,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16662,0.8927999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89223,0.07200200000000001,0.07200200000000001,0.85964,0.09433999999999998,0.07200200000000001,0.07200200000000001,0.8936,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9008899999999999,0.07200200000000001,0.11297800000000002,0.07200200000000001,0.8625700000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8943399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89564,0.07200200000000001,0.90683,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.05506000000000003,0.05506000000000003,0.07265750000000003,0.112998,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8933399999999999,0.9015657142857142,0.9014599999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.1038,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.8979799999999999,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07200200000000001,0.9017771428571428,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8978000000000002,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.18030000000000002,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.9056700000000001,0.89308,0.05506000000000003,0.90184,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8991000000000001,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.891415,0.8481433333333334,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.8920399999999999,0.03175066666666667,0.03175066666666667,0.9003099999999999,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.8935999999999998,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.8935989075630248,0.024687500000000008,0.024687500000000008,0.06353999999999999,0.893602121212121,0.8928189075630251,0.8935989075630248,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.024687500000000008,0.024687500000000008,0.8935989075630246,0.015045801948051959,0.015045801948051959,0.3148099999999999,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8935989075630235,0.024687500000000008,0.024687500000000008,0.04050399999999999,0.8935989075630237,0.04490000000000003,0.015045801948051959,0.015045801948051959,0.08565000000000002,0.02158344696969698,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.90302,0.14847000000000002,0.7841199999999999,0.89497,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.8955399999999999,0.14847000000000002,0.90076,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17499000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8791,0.14847000000000002,0.8963700000000001,0.89954,0.14847000000000002,0.8997800000000001,0.89975,0.14847000000000002,0.16942533333333337,0.14847000000000002,0.14847000000000002,0.8950999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.84154,0.8679300000000001,0.14847000000000002,0.14847000000000002,0.5209499999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8999499999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16913600000000004,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.9009336666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89204,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89657,0.16948000000000008,0.14847000000000002,0.14847000000000002,0.9024999999999999,0.14847000000000002,0.07435999999999997,0.07435999999999997,0.4720599999999999,0.89901,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17199,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89901,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89305,0.8777199999999998,0.07200200000000001,0.07200200000000001,0.89985,0.8927999999999999,0.9001500000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89326,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.08343000000000003,0.08343000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.4801,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8883300000000001,0.07200200000000001,0.07200200000000001,0.8987400000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9017499999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8993767857142858,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89779,0.07200200000000001,0.07200200000000001,0.51675,0.84154,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8865300000000002,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.5803400000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89986,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8940666666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89627,0.14847000000000002,0.8529500000000001,0.14847000000000002,0.14847000000000002,0.9023900000000001,0.14847000000000002,0.89161,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.8968700000000001,0.89155,0.15297000000000002,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07200200000000001,0.07200200000000001,0.9063299999999999,0.8814033333333333,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.84863,0.8916633333333334,0.032250666666666664,0.032250666666666664,0.032250666666666664,0.032250666666666664,0.9,0.89448,0.07200200000000001,0.07200200000000001,0.8615999999999999,0.07200200000000001,0.07200200000000001,0.9016,0.896396,0.4604000000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.9001199999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.89223,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.14847000000000002,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.07200200000000001,0.07200200000000001,0.7886,0.07200200000000001,0.8970999999999998,0.09616999999999999,0.8933399999999999,0.9002283333333333,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.11031500000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.13490000000000002,0.07200200000000001,0.8967866666666667,0.07200200000000001,0.88465,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.02486416666666668,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8936258137768662,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.8936258137768662,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.113455,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.89381,0.8933399999999999,0.05506000000000003,0.05506000000000003,0.9015249999999998,0.89394,0.05506000000000003,0.05506000000000003,0.26664000000000004,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8948899999999999,0.05506000000000003,0.05506000000000003,0.9034760000000001,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8933399999999999,0.10247000000000002,0.8999499999999999,0.20915,0.08343000000000003,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.84887,0.8957099999999999,0.8934750000000001,0.07200200000000001,0.8867199999999998,0.05506000000000003,0.05506000000000003,0.8943399999999999,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.89564,0.7775200000000001,0.9000220000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.88501,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07829,0.03175066666666667,0.03175066666666667,0.8929499999999999,0.03175066666666667,0.03175066666666667,0.89944,0.05506000000000003,0.05301999999999998,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.032250666666666664,0.893598907563025,0.024687500000000008,0.024687500000000008,0.893598907563025,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.88673,0.03175066666666667,0.8935989075630248,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8935996166550485,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.03637999999999999,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.89901,0.14847000000000002,0.14847000000000002,0.9007339999999999,0.14847000000000002,0.14847000000000002,0.89621,0.14847000000000002,0.8938900000000002,0.9001000000000001,0.9,0.14847000000000002,0.14847000000000002,0.9055199999999999,0.14847000000000002,0.8999583333333334,0.14847000000000002,0.89968,0.14847000000000002,0.14847000000000002,0.8958699999999998,0.14847000000000002,0.14847000000000002,0.9017842857142858,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8506600000000001,0.8981199999999998,0.17199,0.14847000000000002,0.8524299999999998,0.14847000000000002,0.89315,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.87568,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8936300000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89207,0.8953699999999998,0.14847000000000002,0.14847000000000002,0.89657,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8942400000000001,0.14847000000000002,0.8173300000000001,0.15895,0.14847000000000002,0.14847000000000002,0.90267,0.14847000000000002,0.8950699999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8954033333333333,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8933399999999999,0.14847000000000002,0.14847000000000002,0.889225,0.7725100000000001,0.8934399999999998,0.4720599999999999,0.14847000000000002,0.14847000000000002,0.8746700000000001,0.14847000000000002,0.7856799999999998,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.90076,0.07200200000000001,0.07200200000000001,0.8123999999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89693,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8984500000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.84601,0.89497,0.07200200000000001,0.07200200000000001,0.8350500000000002,0.8764800000000001,0.6744999999999999,0.07200200000000001,0.07200200000000001,0.8984500000000001,0.15744999999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.84473,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9000429999999999,0.89621,0.07200200000000001,0.07200200000000001,0.9008158333333334,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8990500000000001,0.7098199999999999,0.07200200000000001,0.07200200000000001,0.8986600000000001,0.50613,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.51675,0.8941799999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.88354,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.16662,0.8777199999999998,0.89832,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8256900000000001,0.89984,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8144499999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.171086,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8981199999999998,0.9016,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8123999999999999,0.14847000000000002,0.8207099999999998,0.14847000000000002,0.48869999999999997,0.89779,0.14847000000000002,0.14847000000000002,0.8746700000000001,0.9001500000000002,0.14847000000000002,0.90073,0.8781599999999999,0.14847000000000002,0.14847000000000002,0.16784533333333335,0.14847000000000002,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8882300000000001,0.89954,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.15844999999999995,0.8953724999999999,0.07200200000000001,0.07200200000000001,0.8912599999999999,0.88989,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8939776666666667,0.15844999999999995,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8998099999999999,0.16111999999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.14847000000000002,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.8946,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.90155,0.07200200000000001,0.07200200000000001,0.89581,0.10675000000000001,0.8968499999999999,0.8978399999999999,0.8947199999999998,0.27225,0.07200200000000001,0.07200200000000001,0.8956500000000001,0.07200200000000001,0.8536800000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.083197,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8982299999999999,0.07200200000000001,0.89853,0.07200200000000001,0.27225,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.89564,0.88465,0.8854799999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.11110957142857143,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.1028,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.10660399999999999,0.9016771428571427,0.05506000000000003,0.05506000000000003,0.7329600000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.9056700000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.08343000000000003,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8962199999999999,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.09931999999999999,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.8969199999999999,0.8138400000000001,0.07200200000000001,0.8456199999999999,0.90075,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.05506000000000003,0.05506000000000003,0.8912599999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9026349999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.9005099999999999,0.032140666666666644,0.032140666666666644,0.11219000000000001,0.8951399999999999,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.89505,0.03175066666666667,0.03175066666666667,0.49933999999999995,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.25558000000000003,0.05506000000000003,0.06287333333333334,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.81565,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.07862,0.03175066666666667,0.03175066666666667,0.8935999999999996,0.03175066666666667,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.05196333333333334,0.893596387347932,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.025540000000000007,0.024687500000000008,0.8935999999999996,0.04099000000000001,0.024687500000000008,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.021319974747474754,0.28351,0.015045801948051959,0.90107,0.9000400000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8679300000000001,0.27691999999999994,0.17974999999999994,0.9060599999999999,0.83568,0.14847000000000002,0.14847000000000002,0.89161,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8987999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89635,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8933399999999999,0.896396,0.14847000000000002,0.8764800000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8915200000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8978742857142858,0.8956439999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8883300000000001,0.14847000000000002,0.14847000000000002,0.19768999999999998,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8969300000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16412,0.89976,0.14847000000000002,0.8940666666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8999583333333334,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89764,0.89986,0.9028699999999998,0.45043000000000005,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.14847000000000002,0.14847000000000002,0.8785449999999999,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.07200200000000001,0.07200200000000001,0.9009336666666667,0.17497000000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8990500000000001,0.90076,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8949300000000001,0.14847000000000002,0.15203999999999998,0.8927999999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8977199999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9028699999999998,0.8969299999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89621,0.07200200000000001,0.07200200000000001,0.89204,0.8870000000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8918623333333334,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8928199999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8971699999999998,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.83812,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.9058699999999998,0.14847000000000002,0.89978,0.14847000000000002,0.14847000000000002,0.89734,0.14847000000000002,0.89976,0.14847000000000002,0.14847000000000002,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.27226999999999996,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.16276000000000002,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.8207099999999998,0.89497,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.8965200000000001,0.8969299999999999,0.9055,0.07200200000000001,0.07200200000000001,0.8934399999999998,0.47296000000000005,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89832,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.8955399999999999,0.89345,0.14847000000000002,0.84108,0.14847000000000002,0.07200200000000001,0.07200200000000001,0.14847000000000002,0.14847000000000002,0.8350500000000002,0.9010058333333333,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8176499999999999,0.07200200000000001,0.87331,0.07200200000000001,0.07200200000000001,0.07300999999999999,0.8625700000000001,0.07200200000000001,0.8947199999999998,0.07200200000000001,0.07200200000000001,0.73879,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8962199999999999,0.07200200000000001,0.07200200000000001,0.8959800000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8836291666666666,0.07200200000000001,0.89709,0.12962999999999997,0.07200200000000001,0.07200200000000001,0.61423,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8852500000000001,0.05506000000000003,0.05506000000000003,0.8868941666666667,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.89229,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9000799999999998,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.05506000000000003,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.8734100000000001,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.87278,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.900666,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.8625700000000001,0.07200200000000001,0.07200200000000001,0.8950799999999999,0.07200200000000001,0.9028700000000001,0.9024190000000001,0.20915,0.07200200000000001,0.9009320000000001,0.05506000000000003,0.05506000000000003,0.07200200000000001],\"config_id\":[\"(0, 0, 0)\",\"(0, 0, 1)\",\"(0, 0, 2)\",\"(0, 0, 3)\",\"(0, 0, 4)\",\"(0, 0, 5)\",\"(0, 0, 6)\",\"(0, 0, 7)\",\"(0, 0, 8)\",\"(0, 0, 9)\",\"(0, 0, 10)\",\"(0, 0, 10)\",\"(0, 0, 10)\",\"(0, 0, 10)\",\"(0, 0, 11)\",\"(0, 0, 12)\",\"(0, 0, 13)\",\"(0, 0, 14)\",\"(0, 0, 15)\",\"(0, 0, 16)\",\"(0, 0, 17)\",\"(0, 0, 18)\",\"(0, 0, 19)\",\"(0, 0, 20)\",\"(0, 0, 21)\",\"(0, 0, 22)\",\"(0, 0, 23)\",\"(0, 0, 24)\",\"(0, 0, 25)\",\"(0, 0, 26)\",\"(0, 0, 27)\",\"(0, 0, 28)\",\"(0, 0, 29)\",\"(0, 0, 30)\",\"(0, 0, 31)\",\"(0, 0, 32)\",\"(0, 0, 33)\",\"(0, 0, 34)\",\"(0, 0, 34)\",\"(0, 0, 34)\",\"(0, 0, 34)\",\"(0, 0, 35)\",\"(0, 0, 36)\",\"(0, 0, 37)\",\"(0, 0, 38)\",\"(0, 0, 39)\",\"(0, 0, 40)\",\"(0, 0, 41)\",\"(0, 0, 42)\",\"(0, 0, 43)\",\"(0, 0, 44)\",\"(0, 0, 45)\",\"(0, 0, 46)\",\"(0, 0, 47)\",\"(0, 0, 48)\",\"(0, 0, 49)\",\"(0, 0, 50)\",\"(0, 0, 51)\",\"(0, 0, 52)\",\"(0, 0, 53)\",\"(0, 0, 54)\",\"(0, 0, 55)\",\"(0, 0, 56)\",\"(0, 0, 57)\",\"(0, 0, 58)\",\"(0, 0, 59)\",\"(0, 0, 60)\",\"(0, 0, 61)\",\"(0, 0, 62)\",\"(0, 0, 63)\",\"(0, 0, 64)\",\"(0, 0, 65)\",\"(0, 0, 66)\",\"(0, 0, 67)\",\"(0, 0, 68)\",\"(0, 0, 69)\",\"(0, 0, 70)\",\"(0, 0, 71)\",\"(0, 0, 72)\",\"(0, 0, 73)\",\"(0, 0, 74)\",\"(0, 0, 75)\",\"(0, 0, 76)\",\"(0, 0, 77)\",\"(0, 0, 78)\",\"(0, 0, 79)\",\"(0, 0, 80)\",\"(0, 0, 81)\",\"(0, 0, 82)\",\"(0, 0, 83)\",\"(0, 0, 84)\",\"(0, 0, 85)\",\"(0, 0, 86)\",\"(0, 0, 87)\",\"(0, 0, 88)\",\"(0, 0, 89)\",\"(0, 0, 90)\",\"(0, 0, 91)\",\"(0, 0, 92)\",\"(0, 0, 93)\",\"(0, 0, 94)\",\"(0, 0, 94)\",\"(0, 0, 94)\",\"(0, 0, 94)\",\"(0, 0, 94)\",\"(0, 0, 95)\",\"(0, 0, 96)\",\"(0, 0, 96)\",\"(0, 0, 97)\",\"(0, 0, 98)\",\"(0, 0, 99)\",\"(0, 0, 100)\",\"(0, 0, 101)\",\"(0, 0, 102)\",\"(0, 0, 103)\",\"(0, 0, 104)\",\"(0, 0, 104)\",\"(0, 0, 105)\",\"(0, 0, 106)\",\"(0, 0, 106)\",\"(0, 0, 106)\",\"(0, 0, 106)\",\"(0, 0, 107)\",\"(0, 0, 107)\",\"(0, 0, 108)\",\"(0, 0, 109)\",\"(0, 0, 110)\",\"(0, 0, 111)\",\"(0, 0, 111)\",\"(0, 0, 112)\",\"(0, 0, 113)\",\"(0, 0, 114)\",\"(0, 0, 115)\",\"(0, 0, 116)\",\"(0, 0, 117)\",\"(0, 0, 118)\",\"(0, 0, 119)\",\"(0, 0, 119)\",\"(0, 0, 120)\",\"(0, 0, 120)\",\"(0, 0, 121)\",\"(0, 0, 121)\",\"(0, 0, 122)\",\"(0, 0, 123)\",\"(0, 0, 123)\",\"(0, 0, 124)\",\"(0, 0, 124)\",\"(0, 0, 125)\",\"(0, 0, 126)\",\"(0, 0, 126)\",\"(0, 0, 127)\",\"(0, 0, 128)\",\"(0, 0, 129)\",\"(0, 0, 130)\",\"(0, 0, 130)\",\"(0, 0, 131)\",\"(0, 0, 132)\",\"(0, 0, 132)\",\"(0, 0, 133)\",\"(0, 0, 134)\",\"(0, 0, 134)\",\"(0, 0, 135)\",\"(0, 0, 135)\",\"(0, 0, 136)\",\"(0, 0, 137)\",\"(0, 0, 137)\",\"(0, 0, 138)\",\"(0, 0, 138)\",\"(0, 0, 139)\",\"(0, 0, 140)\",\"(0, 0, 140)\",\"(0, 0, 141)\",\"(0, 0, 142)\",\"(0, 0, 142)\",\"(0, 0, 143)\",\"(0, 0, 143)\",\"(0, 0, 144)\",\"(0, 0, 144)\",\"(0, 0, 145)\",\"(0, 0, 145)\",\"(0, 0, 146)\",\"(0, 0, 146)\",\"(0, 0, 147)\",\"(0, 0, 148)\",\"(0, 0, 148)\",\"(0, 0, 149)\",\"(0, 0, 150)\",\"(0, 0, 150)\",\"(0, 0, 151)\",\"(0, 0, 151)\",\"(0, 0, 152)\",\"(0, 0, 152)\",\"(0, 0, 153)\",\"(0, 0, 153)\",\"(0, 0, 154)\",\"(0, 0, 155)\",\"(0, 0, 156)\",\"(0, 0, 156)\",\"(0, 0, 157)\",\"(0, 0, 158)\",\"(0, 0, 159)\",\"(0, 0, 160)\",\"(0, 0, 160)\",\"(0, 0, 161)\",\"(0, 0, 161)\",\"(0, 0, 162)\",\"(0, 0, 163)\",\"(0, 0, 163)\",\"(0, 0, 164)\",\"(0, 0, 164)\",\"(0, 0, 165)\",\"(0, 0, 165)\",\"(0, 0, 166)\",\"(0, 0, 167)\",\"(0, 0, 168)\",\"(0, 0, 168)\",\"(0, 0, 169)\",\"(0, 0, 169)\",\"(0, 0, 170)\",\"(0, 0, 170)\",\"(0, 0, 170)\",\"(0, 0, 171)\",\"(0, 0, 171)\",\"(0, 0, 172)\",\"(0, 0, 173)\",\"(0, 0, 174)\",\"(0, 0, 175)\",\"(0, 0, 175)\",\"(0, 0, 175)\",\"(0, 0, 175)\",\"(0, 0, 176)\",\"(0, 0, 176)\",\"(0, 0, 176)\",\"(0, 0, 177)\",\"(0, 0, 178)\",\"(0, 0, 178)\",\"(0, 0, 178)\",\"(0, 0, 179)\",\"(0, 0, 180)\",\"(0, 0, 181)\",\"(0, 0, 181)\",\"(0, 0, 181)\",\"(0, 0, 182)\",\"(0, 0, 182)\",\"(0, 0, 182)\",\"(0, 0, 183)\",\"(0, 0, 183)\",\"(0, 0, 183)\",\"(0, 0, 184)\",\"(0, 0, 185)\",\"(0, 0, 185)\",\"(0, 0, 185)\",\"(0, 0, 185)\",\"(0, 0, 186)\",\"(0, 0, 186)\",\"(0, 0, 186)\",\"(0, 0, 187)\",\"(0, 0, 187)\",\"(0, 0, 187)\",\"(0, 0, 187)\",\"(0, 0, 187)\",\"(0, 0, 188)\",\"(0, 0, 188)\",\"(0, 0, 188)\",\"(0, 0, 189)\",\"(0, 0, 190)\",\"(0, 0, 190)\",\"(0, 0, 191)\",\"(0, 0, 192)\",\"(0, 0, 193)\",\"(0, 0, 193)\",\"(0, 0, 193)\",\"(0, 0, 194)\",\"(0, 0, 194)\",\"(0, 0, 194)\",\"(0, 0, 195)\",\"(0, 0, 195)\",\"(0, 0, 195)\",\"(0, 0, 196)\",\"(0, 0, 196)\",\"(0, 0, 196)\",\"(0, 0, 197)\",\"(0, 0, 198)\",\"(0, 0, 198)\",\"(0, 0, 199)\",\"(0, 0, 200)\",\"(0, 0, 200)\",\"(0, 0, 200)\",\"(0, 0, 201)\",\"(0, 0, 201)\",\"(0, 0, 201)\",\"(0, 0, 201)\",\"(0, 0, 201)\",\"(0, 0, 201)\",\"(0, 0, 202)\",\"(0, 0, 202)\",\"(0, 0, 202)\",\"(0, 0, 203)\",\"(0, 0, 203)\",\"(0, 0, 203)\",\"(0, 0, 204)\",\"(0, 0, 204)\",\"(0, 0, 204)\",\"(0, 0, 205)\",\"(0, 0, 206)\",\"(0, 0, 207)\",\"(0, 0, 207)\",\"(0, 0, 208)\",\"(0, 0, 208)\",\"(0, 0, 208)\",\"(0, 0, 208)\",\"(0, 0, 209)\",\"(0, 0, 209)\",\"(0, 0, 209)\",\"(0, 0, 210)\",\"(0, 0, 210)\",\"(0, 0, 211)\",\"(0, 0, 212)\",\"(0, 0, 213)\",\"(0, 0, 214)\",\"(0, 0, 214)\",\"(0, 0, 215)\",\"(0, 0, 216)\",\"(0, 0, 217)\",\"(0, 0, 217)\",\"(0, 0, 218)\",\"(0, 0, 218)\",\"(0, 0, 219)\",\"(0, 0, 219)\",\"(0, 0, 220)\",\"(0, 0, 221)\",\"(0, 0, 221)\",\"(0, 0, 222)\",\"(0, 0, 222)\",\"(0, 0, 223)\",\"(0, 0, 223)\",\"(0, 0, 224)\",\"(0, 0, 225)\",\"(0, 0, 226)\",\"(0, 0, 226)\",\"(0, 0, 227)\",\"(0, 0, 227)\",\"(0, 0, 228)\",\"(0, 0, 229)\",\"(0, 0, 230)\",\"(0, 0, 231)\",\"(0, 0, 232)\",\"(0, 0, 232)\",\"(0, 0, 233)\",\"(0, 0, 234)\",\"(0, 0, 234)\",\"(0, 0, 235)\",\"(0, 0, 235)\",\"(0, 0, 236)\",\"(0, 0, 236)\",\"(0, 0, 237)\",\"(0, 0, 237)\",\"(0, 0, 237)\",\"(0, 0, 238)\",\"(0, 0, 238)\",\"(0, 0, 239)\",\"(0, 0, 240)\",\"(0, 0, 241)\",\"(0, 0, 242)\",\"(1, 0, 0)\",\"(1, 0, 1)\",\"(1, 0, 1)\",\"(1, 0, 2)\",\"(1, 0, 3)\",\"(1, 0, 4)\",\"(1, 0, 5)\",\"(1, 0, 6)\",\"(1, 0, 6)\",\"(1, 0, 6)\",\"(1, 0, 6)\",\"(1, 0, 6)\",\"(1, 0, 7)\",\"(1, 0, 8)\",\"(1, 0, 9)\",\"(1, 0, 10)\",\"(1, 0, 11)\",\"(1, 0, 12)\",\"(1, 0, 12)\",\"(1, 0, 13)\",\"(1, 0, 14)\",\"(1, 0, 15)\",\"(1, 0, 16)\",\"(1, 0, 16)\",\"(1, 0, 16)\",\"(1, 0, 16)\",\"(1, 0, 17)\",\"(1, 0, 18)\",\"(1, 0, 18)\",\"(1, 0, 18)\",\"(1, 0, 18)\",\"(1, 0, 19)\",\"(1, 0, 20)\",\"(1, 0, 21)\",\"(1, 0, 22)\",\"(1, 0, 22)\",\"(1, 0, 22)\",\"(1, 0, 23)\",\"(1, 0, 24)\",\"(1, 0, 24)\",\"(1, 0, 24)\",\"(1, 0, 25)\",\"(1, 0, 26)\",\"(1, 0, 27)\",\"(1, 0, 28)\",\"(1, 0, 29)\",\"(1, 0, 30)\",\"(1, 0, 30)\",\"(1, 0, 30)\",\"(1, 0, 31)\",\"(1, 0, 31)\",\"(1, 0, 31)\",\"(1, 0, 32)\",\"(1, 0, 33)\",\"(1, 0, 34)\",\"(1, 0, 34)\",\"(1, 0, 35)\",\"(1, 0, 35)\",\"(1, 0, 36)\",\"(1, 0, 36)\",\"(1, 0, 37)\",\"(1, 0, 37)\",\"(1, 0, 38)\",\"(1, 0, 39)\",\"(1, 0, 40)\",\"(1, 0, 40)\",\"(1, 0, 40)\",\"(1, 0, 41)\",\"(1, 0, 41)\",\"(1, 0, 41)\",\"(1, 0, 42)\",\"(1, 0, 43)\",\"(1, 0, 44)\",\"(1, 0, 44)\",\"(1, 0, 45)\",\"(1, 0, 46)\",\"(1, 0, 46)\",\"(1, 0, 47)\",\"(1, 0, 48)\",\"(1, 0, 48)\",\"(1, 0, 49)\",\"(1, 0, 50)\",\"(1, 0, 51)\",\"(1, 0, 51)\",\"(1, 0, 52)\",\"(1, 0, 53)\",\"(1, 0, 54)\",\"(1, 0, 55)\",\"(1, 0, 56)\",\"(1, 0, 57)\",\"(1, 0, 57)\",\"(1, 0, 58)\",\"(1, 0, 59)\",\"(1, 0, 60)\",\"(1, 0, 61)\",\"(1, 0, 62)\",\"(1, 0, 62)\",\"(1, 0, 63)\",\"(1, 0, 63)\",\"(1, 0, 64)\",\"(1, 0, 64)\",\"(1, 0, 65)\",\"(1, 0, 66)\",\"(1, 0, 67)\",\"(1, 0, 68)\",\"(1, 0, 68)\",\"(1, 0, 69)\",\"(1, 0, 69)\",\"(1, 0, 70)\",\"(1, 0, 70)\",\"(1, 0, 71)\",\"(1, 0, 72)\",\"(1, 0, 73)\",\"(1, 0, 74)\",\"(1, 0, 75)\",\"(1, 0, 76)\",\"(1, 0, 77)\",\"(1, 0, 78)\",\"(1, 0, 78)\",\"(1, 0, 79)\",\"(1, 0, 80)\",\"(2, 0, 0)\",\"(2, 0, 0)\",\"(2, 0, 0)\",\"(2, 0, 0)\",\"(2, 0, 1)\",\"(2, 0, 2)\",\"(2, 0, 3)\",\"(2, 0, 4)\",\"(2, 0, 5)\",\"(2, 0, 6)\",\"(2, 0, 7)\",\"(2, 0, 8)\",\"(2, 0, 9)\",\"(2, 0, 10)\",\"(2, 0, 10)\",\"(2, 0, 10)\",\"(2, 0, 11)\",\"(2, 0, 11)\",\"(2, 0, 11)\",\"(2, 0, 12)\",\"(2, 0, 13)\",\"(2, 0, 14)\",\"(2, 0, 14)\",\"(2, 0, 15)\",\"(2, 0, 16)\",\"(2, 0, 16)\",\"(2, 0, 17)\",\"(2, 0, 18)\",\"(2, 0, 19)\",\"(2, 0, 20)\",\"(2, 0, 21)\",\"(2, 0, 21)\",\"(2, 0, 22)\",\"(2, 0, 22)\",\"(2, 0, 23)\",\"(2, 0, 23)\",\"(2, 0, 24)\",\"(2, 0, 25)\",\"(2, 0, 25)\",\"(2, 0, 26)\",\"(3, 0, 0)\",\"(3, 0, 1)\",\"(3, 0, 2)\",\"(3, 0, 3)\",\"(3, 0, 4)\",\"(3, 0, 5)\",\"(3, 0, 6)\",\"(3, 0, 7)\",\"(3, 0, 7)\",\"(3, 0, 7)\",\"(3, 0, 8)\",\"(3, 0, 8)\",\"(3, 0, 8)\",\"(3, 0, 9)\",\"(3, 0, 9)\",\"(3, 0, 10)\",\"(3, 0, 10)\",\"(3, 0, 11)\",\"(3, 0, 11)\",\"(3, 0, 12)\",\"(3, 0, 13)\",\"(3, 0, 14)\",\"(3, 0, 14)\",\"(3, 0, 15)\",\"(3, 0, 16)\",\"(3, 0, 17)\",\"(4, 0, 0)\",\"(4, 0, 0)\",\"(4, 0, 1)\",\"(4, 0, 1)\",\"(4, 0, 2)\",\"(4, 0, 2)\",\"(4, 0, 3)\",\"(4, 0, 4)\",\"(4, 0, 5)\",\"(4, 0, 6)\",\"(4, 0, 7)\",\"(4, 0, 8)\",\"(5, 0, 0)\",\"(5, 0, 1)\",\"(5, 0, 2)\",\"(5, 0, 3)\",\"(5, 0, 4)\",\"(5, 0, 5)\",\"(6, 0, 0)\",\"(6, 0, 0)\",\"(6, 0, 0)\",\"(6, 0, 1)\",\"(6, 0, 2)\",\"(6, 0, 2)\",\"(6, 0, 3)\",\"(6, 0, 4)\",\"(6, 0, 4)\",\"(6, 0, 5)\",\"(6, 0, 5)\",\"(6, 0, 6)\",\"(6, 0, 7)\",\"(6, 0, 8)\",\"(6, 0, 9)\",\"(6, 0, 10)\",\"(6, 0, 11)\",\"(6, 0, 12)\",\"(6, 0, 13)\",\"(6, 0, 14)\",\"(6, 0, 14)\",\"(6, 0, 15)\",\"(6, 0, 16)\",\"(6, 0, 16)\",\"(6, 0, 17)\",\"(6, 0, 17)\",\"(6, 0, 18)\",\"(6, 0, 18)\",\"(6, 0, 19)\",\"(6, 0, 20)\",\"(6, 0, 20)\",\"(6, 0, 21)\",\"(6, 0, 22)\",\"(6, 0, 23)\",\"(6, 0, 24)\",\"(6, 0, 25)\",\"(6, 0, 26)\",\"(6, 0, 27)\",\"(6, 0, 28)\",\"(6, 0, 28)\",\"(6, 0, 29)\",\"(6, 0, 29)\",\"(6, 0, 30)\",\"(6, 0, 30)\",\"(6, 0, 31)\",\"(6, 0, 31)\",\"(6, 0, 32)\",\"(6, 0, 33)\",\"(6, 0, 34)\",\"(6, 0, 35)\",\"(6, 0, 36)\",\"(6, 0, 36)\",\"(6, 0, 37)\",\"(6, 0, 38)\",\"(6, 0, 39)\",\"(6, 0, 39)\",\"(6, 0, 40)\",\"(6, 0, 41)\",\"(6, 0, 42)\",\"(6, 0, 43)\",\"(6, 0, 44)\",\"(6, 0, 45)\",\"(6, 0, 45)\",\"(6, 0, 46)\",\"(6, 0, 46)\",\"(6, 0, 47)\",\"(6, 0, 48)\",\"(6, 0, 49)\",\"(6, 0, 49)\",\"(6, 0, 50)\",\"(6, 0, 51)\",\"(6, 0, 51)\",\"(6, 0, 52)\",\"(6, 0, 53)\",\"(6, 0, 54)\",\"(6, 0, 55)\",\"(6, 0, 56)\",\"(6, 0, 57)\",\"(6, 0, 58)\",\"(6, 0, 59)\",\"(6, 0, 60)\",\"(6, 0, 61)\",\"(6, 0, 61)\",\"(6, 0, 62)\",\"(6, 0, 62)\",\"(6, 0, 63)\",\"(6, 0, 64)\",\"(6, 0, 65)\",\"(6, 0, 65)\",\"(6, 0, 66)\",\"(6, 0, 67)\",\"(6, 0, 67)\",\"(6, 0, 68)\",\"(6, 0, 68)\",\"(6, 0, 69)\",\"(6, 0, 70)\",\"(6, 0, 71)\",\"(6, 0, 72)\",\"(6, 0, 73)\",\"(6, 0, 74)\",\"(6, 0, 75)\",\"(6, 0, 76)\",\"(6, 0, 77)\",\"(6, 0, 77)\",\"(6, 0, 78)\",\"(6, 0, 79)\",\"(6, 0, 80)\",\"(6, 0, 80)\",\"(6, 0, 81)\",\"(6, 0, 82)\",\"(6, 0, 82)\",\"(6, 0, 83)\",\"(6, 0, 83)\",\"(6, 0, 84)\",\"(6, 0, 85)\",\"(6, 0, 86)\",\"(6, 0, 87)\",\"(6, 0, 88)\",\"(6, 0, 89)\",\"(6, 0, 89)\",\"(6, 0, 90)\",\"(6, 0, 91)\",\"(6, 0, 92)\",\"(6, 0, 93)\",\"(6, 0, 94)\",\"(6, 0, 95)\",\"(6, 0, 96)\",\"(6, 0, 97)\",\"(6, 0, 98)\",\"(6, 0, 99)\",\"(6, 0, 99)\",\"(6, 0, 100)\",\"(6, 0, 100)\",\"(6, 0, 101)\",\"(6, 0, 101)\",\"(6, 0, 102)\",\"(6, 0, 102)\",\"(6, 0, 103)\",\"(6, 0, 104)\",\"(6, 0, 105)\",\"(6, 0, 105)\",\"(6, 0, 106)\",\"(6, 0, 107)\",\"(6, 0, 107)\",\"(6, 0, 108)\",\"(6, 0, 109)\",\"(6, 0, 109)\",\"(6, 0, 110)\",\"(6, 0, 111)\",\"(6, 0, 111)\",\"(6, 0, 112)\",\"(6, 0, 113)\",\"(6, 0, 113)\",\"(6, 0, 114)\",\"(6, 0, 114)\",\"(6, 0, 115)\",\"(6, 0, 115)\",\"(6, 0, 116)\",\"(6, 0, 116)\",\"(6, 0, 117)\",\"(6, 0, 118)\",\"(6, 0, 119)\",\"(6, 0, 120)\",\"(6, 0, 121)\",\"(6, 0, 122)\",\"(6, 0, 123)\",\"(6, 0, 124)\",\"(6, 0, 125)\",\"(6, 0, 126)\",\"(6, 0, 126)\",\"(6, 0, 126)\",\"(6, 0, 126)\",\"(6, 0, 126)\",\"(6, 0, 126)\",\"(6, 0, 127)\",\"(6, 0, 128)\",\"(6, 0, 128)\",\"(6, 0, 128)\",\"(6, 0, 129)\",\"(6, 0, 130)\",\"(6, 0, 131)\",\"(6, 0, 132)\",\"(6, 0, 132)\",\"(6, 0, 133)\",\"(6, 0, 134)\",\"(6, 0, 135)\",\"(6, 0, 135)\",\"(6, 0, 135)\",\"(6, 0, 135)\",\"(6, 0, 135)\",\"(6, 0, 136)\",\"(6, 0, 136)\",\"(6, 0, 136)\",\"(6, 0, 137)\",\"(6, 0, 137)\",\"(6, 0, 137)\",\"(6, 0, 137)\",\"(6, 0, 137)\",\"(6, 0, 138)\",\"(6, 0, 138)\",\"(6, 0, 138)\",\"(6, 0, 138)\",\"(6, 0, 139)\",\"(6, 0, 139)\",\"(6, 0, 139)\",\"(6, 0, 139)\",\"(6, 0, 140)\",\"(6, 0, 140)\",\"(6, 0, 140)\",\"(6, 0, 141)\",\"(6, 0, 142)\",\"(6, 0, 143)\",\"(6, 0, 144)\",\"(6, 0, 144)\",\"(6, 0, 144)\",\"(6, 0, 144)\",\"(6, 0, 145)\",\"(6, 0, 146)\",\"(6, 0, 146)\",\"(6, 0, 146)\",\"(6, 0, 147)\",\"(6, 0, 148)\",\"(6, 0, 149)\",\"(6, 0, 149)\",\"(6, 0, 149)\",\"(6, 0, 150)\",\"(6, 0, 150)\",\"(6, 0, 150)\",\"(6, 0, 150)\",\"(6, 0, 151)\",\"(6, 0, 151)\",\"(6, 0, 151)\",\"(6, 0, 152)\",\"(6, 0, 153)\",\"(6, 0, 154)\",\"(6, 0, 154)\",\"(6, 0, 154)\",\"(6, 0, 154)\",\"(6, 0, 155)\",\"(6, 0, 156)\",\"(6, 0, 156)\",\"(6, 0, 156)\",\"(6, 0, 157)\",\"(6, 0, 157)\",\"(6, 0, 157)\",\"(6, 0, 157)\",\"(6, 0, 158)\",\"(6, 0, 159)\",\"(6, 0, 160)\",\"(6, 0, 160)\",\"(6, 0, 160)\",\"(6, 0, 161)\",\"(6, 0, 161)\",\"(6, 0, 161)\",\"(6, 0, 162)\",\"(6, 0, 163)\",\"(6, 0, 163)\",\"(6, 0, 164)\",\"(6, 0, 165)\",\"(6, 0, 166)\",\"(6, 0, 167)\",\"(6, 0, 168)\",\"(6, 0, 168)\",\"(6, 0, 169)\",\"(6, 0, 169)\",\"(6, 0, 169)\",\"(6, 0, 170)\",\"(6, 0, 171)\",\"(6, 0, 172)\",\"(6, 0, 172)\",\"(6, 0, 173)\",\"(6, 0, 174)\",\"(6, 0, 175)\",\"(6, 0, 176)\",\"(6, 0, 176)\",\"(6, 0, 177)\",\"(6, 0, 178)\",\"(6, 0, 179)\",\"(6, 0, 180)\",\"(6, 0, 181)\",\"(6, 0, 181)\",\"(6, 0, 182)\",\"(6, 0, 183)\",\"(6, 0, 184)\",\"(6, 0, 185)\",\"(6, 0, 186)\",\"(6, 0, 186)\",\"(6, 0, 187)\",\"(6, 0, 188)\",\"(6, 0, 189)\",\"(6, 0, 190)\",\"(6, 0, 191)\",\"(6, 0, 192)\",\"(6, 0, 193)\",\"(6, 0, 194)\",\"(6, 0, 195)\",\"(6, 0, 196)\",\"(6, 0, 197)\",\"(6, 0, 198)\",\"(6, 0, 199)\",\"(6, 0, 200)\",\"(6, 0, 201)\",\"(6, 0, 201)\",\"(6, 0, 202)\",\"(6, 0, 203)\",\"(6, 0, 203)\",\"(6, 0, 204)\",\"(6, 0, 205)\",\"(6, 0, 206)\",\"(6, 0, 207)\",\"(6, 0, 208)\",\"(6, 0, 209)\",\"(6, 0, 210)\",\"(6, 0, 211)\",\"(6, 0, 212)\",\"(6, 0, 212)\",\"(6, 0, 213)\",\"(6, 0, 214)\",\"(6, 0, 215)\",\"(6, 0, 215)\",\"(6, 0, 216)\",\"(6, 0, 217)\",\"(6, 0, 217)\",\"(6, 0, 218)\",\"(6, 0, 218)\",\"(6, 0, 219)\",\"(6, 0, 220)\",\"(6, 0, 221)\",\"(6, 0, 221)\",\"(6, 0, 221)\",\"(6, 0, 222)\",\"(6, 0, 223)\",\"(6, 0, 224)\",\"(6, 0, 224)\",\"(6, 0, 224)\",\"(6, 0, 225)\",\"(6, 0, 226)\",\"(6, 0, 227)\",\"(6, 0, 228)\",\"(6, 0, 228)\",\"(6, 0, 228)\",\"(6, 0, 229)\",\"(6, 0, 230)\",\"(6, 0, 231)\",\"(6, 0, 231)\",\"(6, 0, 231)\",\"(6, 0, 232)\",\"(6, 0, 233)\",\"(6, 0, 233)\",\"(6, 0, 233)\",\"(6, 0, 234)\",\"(6, 0, 235)\",\"(6, 0, 235)\",\"(6, 0, 235)\",\"(6, 0, 236)\",\"(6, 0, 237)\",\"(6, 0, 238)\",\"(6, 0, 238)\",\"(6, 0, 238)\",\"(6, 0, 239)\",\"(6, 0, 240)\",\"(6, 0, 240)\",\"(6, 0, 241)\",\"(6, 0, 242)\",\"(7, 0, 0)\",\"(7, 0, 0)\",\"(7, 0, 0)\",\"(7, 0, 0)\",\"(7, 0, 0)\",\"(7, 0, 1)\",\"(7, 0, 2)\",\"(7, 0, 3)\",\"(7, 0, 4)\",\"(7, 0, 5)\",\"(7, 0, 5)\",\"(7, 0, 6)\",\"(7, 0, 6)\",\"(7, 0, 7)\",\"(7, 0, 8)\",\"(7, 0, 9)\",\"(7, 0, 10)\",\"(7, 0, 11)\",\"(7, 0, 12)\",\"(7, 0, 13)\",\"(7, 0, 14)\",\"(7, 0, 15)\",\"(7, 0, 16)\",\"(7, 0, 17)\",\"(7, 0, 18)\",\"(7, 0, 19)\",\"(7, 0, 19)\",\"(7, 0, 20)\",\"(7, 0, 20)\",\"(7, 0, 21)\",\"(7, 0, 22)\",\"(7, 0, 23)\",\"(7, 0, 23)\",\"(7, 0, 24)\",\"(7, 0, 25)\",\"(7, 0, 25)\",\"(7, 0, 26)\",\"(7, 0, 27)\",\"(7, 0, 28)\",\"(7, 0, 29)\",\"(7, 0, 30)\",\"(7, 0, 31)\",\"(7, 0, 32)\",\"(7, 0, 33)\",\"(7, 0, 33)\",\"(7, 0, 34)\",\"(7, 0, 34)\",\"(7, 0, 35)\",\"(7, 0, 36)\",\"(7, 0, 36)\",\"(7, 0, 37)\",\"(7, 0, 38)\",\"(7, 0, 39)\",\"(7, 0, 40)\",\"(7, 0, 41)\",\"(7, 0, 42)\",\"(7, 0, 42)\",\"(7, 0, 43)\",\"(7, 0, 44)\",\"(7, 0, 45)\",\"(7, 0, 45)\",\"(7, 0, 46)\",\"(7, 0, 47)\",\"(7, 0, 48)\",\"(7, 0, 48)\",\"(7, 0, 49)\",\"(7, 0, 50)\",\"(7, 0, 50)\",\"(7, 0, 51)\",\"(7, 0, 52)\",\"(7, 0, 52)\",\"(7, 0, 52)\",\"(7, 0, 52)\",\"(7, 0, 53)\",\"(7, 0, 53)\",\"(7, 0, 53)\",\"(7, 0, 53)\",\"(7, 0, 54)\",\"(7, 0, 55)\",\"(7, 0, 55)\",\"(7, 0, 55)\",\"(7, 0, 56)\",\"(7, 0, 57)\",\"(7, 0, 58)\",\"(7, 0, 58)\",\"(7, 0, 58)\",\"(7, 0, 59)\",\"(7, 0, 59)\",\"(7, 0, 60)\",\"(7, 0, 60)\",\"(7, 0, 61)\",\"(7, 0, 62)\",\"(7, 0, 63)\",\"(7, 0, 64)\",\"(7, 0, 64)\",\"(7, 0, 64)\",\"(7, 0, 65)\",\"(7, 0, 66)\",\"(7, 0, 66)\",\"(7, 0, 66)\",\"(7, 0, 67)\",\"(7, 0, 67)\",\"(7, 0, 68)\",\"(7, 0, 68)\",\"(7, 0, 68)\",\"(7, 0, 69)\",\"(7, 0, 70)\",\"(7, 0, 71)\",\"(7, 0, 71)\",\"(7, 0, 71)\",\"(7, 0, 72)\",\"(7, 0, 73)\",\"(7, 0, 74)\",\"(7, 0, 75)\",\"(7, 0, 76)\",\"(7, 0, 77)\",\"(7, 0, 77)\",\"(7, 0, 78)\",\"(7, 0, 79)\",\"(7, 0, 80)\",\"(7, 0, 80)\",\"(8, 0, 0)\",\"(8, 0, 0)\",\"(8, 0, 0)\",\"(8, 0, 0)\",\"(8, 0, 1)\",\"(8, 0, 2)\",\"(8, 0, 3)\",\"(8, 0, 4)\",\"(8, 0, 5)\",\"(8, 0, 6)\",\"(8, 0, 7)\",\"(8, 0, 8)\",\"(8, 0, 9)\",\"(8, 0, 10)\",\"(8, 0, 10)\",\"(8, 0, 10)\",\"(8, 0, 11)\",\"(8, 0, 12)\",\"(8, 0, 13)\",\"(8, 0, 13)\",\"(8, 0, 13)\",\"(8, 0, 14)\",\"(8, 0, 14)\",\"(8, 0, 15)\",\"(8, 0, 15)\",\"(8, 0, 16)\",\"(8, 0, 16)\",\"(8, 0, 17)\",\"(8, 0, 18)\",\"(8, 0, 19)\",\"(8, 0, 20)\",\"(8, 0, 21)\",\"(8, 0, 21)\",\"(8, 0, 22)\",\"(8, 0, 23)\",\"(8, 0, 24)\",\"(8, 0, 24)\",\"(8, 0, 25)\",\"(8, 0, 26)\",\"(8, 0, 26)\",\"(9, 0, 0)\",\"(9, 0, 0)\",\"(9, 0, 0)\",\"(9, 0, 1)\",\"(9, 0, 1)\",\"(9, 0, 2)\",\"(9, 0, 3)\",\"(9, 0, 4)\",\"(9, 0, 5)\",\"(9, 0, 6)\",\"(9, 0, 7)\",\"(9, 0, 8)\",\"(9, 0, 9)\",\"(9, 0, 10)\",\"(9, 0, 10)\",\"(9, 0, 11)\",\"(9, 0, 11)\",\"(9, 0, 11)\",\"(9, 0, 12)\",\"(9, 0, 12)\",\"(9, 0, 13)\",\"(9, 0, 14)\",\"(9, 0, 15)\",\"(9, 0, 16)\",\"(9, 0, 16)\",\"(9, 0, 17)\",\"(10, 0, 0)\",\"(10, 0, 0)\",\"(10, 0, 1)\",\"(10, 0, 2)\",\"(10, 0, 3)\",\"(10, 0, 4)\",\"(10, 0, 4)\",\"(10, 0, 5)\",\"(10, 0, 6)\",\"(10, 0, 6)\",\"(10, 0, 7)\",\"(10, 0, 8)\",\"(11, 0, 0)\",\"(11, 0, 1)\",\"(11, 0, 2)\",\"(11, 0, 3)\",\"(11, 0, 4)\",\"(11, 0, 5)\",\"(12, 0, 0)\",\"(12, 0, 1)\",\"(12, 0, 2)\",\"(12, 0, 3)\",\"(12, 0, 4)\",\"(12, 0, 5)\",\"(12, 0, 6)\",\"(12, 0, 7)\",\"(12, 0, 8)\",\"(12, 0, 9)\",\"(12, 0, 10)\",\"(12, 0, 11)\",\"(12, 0, 12)\",\"(12, 0, 13)\",\"(12, 0, 14)\",\"(12, 0, 15)\",\"(12, 0, 16)\",\"(12, 0, 17)\",\"(12, 0, 18)\",\"(12, 0, 19)\",\"(12, 0, 20)\",\"(12, 0, 21)\",\"(12, 0, 22)\",\"(12, 0, 23)\",\"(12, 0, 24)\",\"(12, 0, 25)\",\"(12, 0, 26)\",\"(12, 0, 27)\",\"(12, 0, 28)\",\"(12, 0, 29)\",\"(12, 0, 30)\",\"(12, 0, 31)\",\"(12, 0, 32)\",\"(12, 0, 33)\",\"(12, 0, 34)\",\"(12, 0, 35)\",\"(12, 0, 36)\",\"(12, 0, 37)\",\"(12, 0, 38)\",\"(12, 0, 39)\",\"(12, 0, 40)\",\"(12, 0, 41)\",\"(12, 0, 42)\",\"(12, 0, 43)\",\"(12, 0, 44)\",\"(12, 0, 45)\",\"(12, 0, 46)\",\"(12, 0, 47)\",\"(12, 0, 48)\",\"(12, 0, 49)\",\"(12, 0, 50)\",\"(12, 0, 51)\",\"(12, 0, 52)\",\"(12, 0, 53)\",\"(12, 0, 54)\",\"(12, 0, 55)\",\"(12, 0, 56)\",\"(12, 0, 57)\",\"(12, 0, 58)\",\"(12, 0, 59)\",\"(12, 0, 60)\",\"(12, 0, 61)\",\"(12, 0, 62)\",\"(12, 0, 63)\",\"(12, 0, 64)\",\"(12, 0, 65)\",\"(12, 0, 66)\",\"(12, 0, 67)\",\"(12, 0, 68)\",\"(12, 0, 69)\",\"(12, 0, 70)\",\"(12, 0, 71)\",\"(12, 0, 72)\",\"(12, 0, 73)\",\"(12, 0, 74)\",\"(12, 0, 75)\",\"(12, 0, 76)\",\"(12, 0, 77)\",\"(12, 0, 78)\",\"(12, 0, 79)\",\"(12, 0, 80)\",\"(12, 0, 81)\",\"(12, 0, 82)\",\"(12, 0, 83)\",\"(12, 0, 84)\",\"(12, 0, 85)\",\"(12, 0, 85)\",\"(12, 0, 85)\",\"(12, 0, 85)\",\"(12, 0, 85)\",\"(12, 0, 85)\",\"(12, 0, 86)\",\"(12, 0, 87)\",\"(12, 0, 87)\",\"(12, 0, 88)\",\"(12, 0, 89)\",\"(12, 0, 90)\",\"(12, 0, 90)\",\"(12, 0, 91)\",\"(12, 0, 91)\",\"(12, 0, 92)\",\"(12, 0, 93)\",\"(12, 0, 94)\",\"(12, 0, 95)\",\"(12, 0, 95)\",\"(12, 0, 96)\",\"(12, 0, 97)\",\"(12, 0, 97)\",\"(12, 0, 98)\",\"(12, 0, 98)\",\"(12, 0, 99)\",\"(12, 0, 99)\",\"(12, 0, 100)\",\"(12, 0, 100)\",\"(12, 0, 101)\",\"(12, 0, 101)\",\"(12, 0, 102)\",\"(12, 0, 103)\",\"(12, 0, 104)\",\"(12, 0, 105)\",\"(12, 0, 106)\",\"(12, 0, 106)\",\"(12, 0, 107)\",\"(12, 0, 108)\",\"(12, 0, 108)\",\"(12, 0, 109)\",\"(12, 0, 109)\",\"(12, 0, 110)\",\"(12, 0, 110)\",\"(12, 0, 111)\",\"(12, 0, 111)\",\"(12, 0, 112)\",\"(12, 0, 113)\",\"(12, 0, 114)\",\"(12, 0, 114)\",\"(12, 0, 115)\",\"(12, 0, 116)\",\"(12, 0, 117)\",\"(12, 0, 117)\",\"(12, 0, 118)\",\"(12, 0, 119)\",\"(12, 0, 119)\",\"(12, 0, 120)\",\"(12, 0, 121)\",\"(12, 0, 122)\",\"(12, 0, 122)\",\"(12, 0, 123)\",\"(12, 0, 124)\",\"(12, 0, 125)\",\"(12, 0, 125)\",\"(12, 0, 126)\",\"(12, 0, 127)\",\"(12, 0, 127)\",\"(12, 0, 128)\",\"(12, 0, 129)\",\"(12, 0, 130)\",\"(12, 0, 130)\",\"(12, 0, 131)\",\"(12, 0, 131)\",\"(12, 0, 132)\",\"(12, 0, 132)\",\"(12, 0, 133)\",\"(12, 0, 134)\",\"(12, 0, 134)\",\"(12, 0, 135)\",\"(12, 0, 135)\",\"(12, 0, 136)\",\"(12, 0, 136)\",\"(12, 0, 137)\",\"(12, 0, 138)\",\"(12, 0, 138)\",\"(12, 0, 139)\",\"(12, 0, 139)\",\"(12, 0, 140)\",\"(12, 0, 141)\",\"(12, 0, 142)\",\"(12, 0, 142)\",\"(12, 0, 143)\",\"(12, 0, 144)\",\"(12, 0, 145)\",\"(12, 0, 146)\",\"(12, 0, 146)\",\"(12, 0, 147)\",\"(12, 0, 147)\",\"(12, 0, 148)\",\"(12, 0, 148)\",\"(12, 0, 149)\",\"(12, 0, 149)\",\"(12, 0, 150)\",\"(12, 0, 151)\",\"(12, 0, 151)\",\"(12, 0, 152)\",\"(12, 0, 152)\",\"(12, 0, 153)\",\"(12, 0, 154)\",\"(12, 0, 154)\",\"(12, 0, 155)\",\"(12, 0, 155)\",\"(12, 0, 156)\",\"(12, 0, 157)\",\"(12, 0, 158)\",\"(12, 0, 159)\",\"(12, 0, 160)\",\"(12, 0, 161)\",\"(12, 0, 161)\",\"(12, 0, 162)\",\"(12, 0, 162)\",\"(12, 0, 163)\",\"(12, 0, 163)\",\"(12, 0, 164)\",\"(12, 0, 165)\",\"(12, 0, 165)\",\"(12, 0, 166)\",\"(12, 0, 166)\",\"(12, 0, 166)\",\"(12, 0, 167)\",\"(12, 0, 167)\",\"(12, 0, 167)\",\"(12, 0, 168)\",\"(12, 0, 169)\",\"(12, 0, 169)\",\"(12, 0, 169)\",\"(12, 0, 170)\",\"(12, 0, 171)\",\"(12, 0, 172)\",\"(12, 0, 172)\",\"(12, 0, 172)\",\"(12, 0, 173)\",\"(12, 0, 173)\",\"(12, 0, 173)\",\"(12, 0, 174)\",\"(12, 0, 174)\",\"(12, 0, 174)\",\"(12, 0, 175)\",\"(12, 0, 175)\",\"(12, 0, 175)\",\"(12, 0, 176)\",\"(12, 0, 176)\",\"(12, 0, 176)\",\"(12, 0, 177)\",\"(12, 0, 177)\",\"(12, 0, 177)\",\"(12, 0, 178)\",\"(12, 0, 178)\",\"(12, 0, 178)\",\"(12, 0, 179)\",\"(12, 0, 179)\",\"(12, 0, 179)\",\"(12, 0, 180)\",\"(12, 0, 181)\",\"(12, 0, 182)\",\"(12, 0, 183)\",\"(12, 0, 184)\",\"(12, 0, 184)\",\"(12, 0, 184)\",\"(12, 0, 185)\",\"(12, 0, 186)\",\"(12, 0, 186)\",\"(12, 0, 186)\",\"(12, 0, 187)\",\"(12, 0, 187)\",\"(12, 0, 187)\",\"(12, 0, 188)\",\"(12, 0, 188)\",\"(12, 0, 188)\",\"(12, 0, 189)\",\"(12, 0, 189)\",\"(12, 0, 189)\",\"(12, 0, 190)\",\"(12, 0, 190)\",\"(12, 0, 190)\",\"(12, 0, 190)\",\"(12, 0, 190)\",\"(12, 0, 191)\",\"(12, 0, 192)\",\"(12, 0, 193)\",\"(12, 0, 194)\",\"(12, 0, 195)\",\"(12, 0, 195)\",\"(12, 0, 195)\",\"(12, 0, 195)\",\"(12, 0, 195)\",\"(12, 0, 196)\",\"(12, 0, 196)\",\"(12, 0, 196)\",\"(12, 0, 196)\",\"(12, 0, 197)\",\"(12, 0, 197)\",\"(12, 0, 197)\",\"(12, 0, 197)\",\"(12, 0, 198)\",\"(12, 0, 199)\",\"(12, 0, 199)\",\"(12, 0, 200)\",\"(12, 0, 200)\",\"(12, 0, 201)\",\"(12, 0, 202)\",\"(12, 0, 203)\",\"(12, 0, 204)\",\"(12, 0, 204)\",\"(12, 0, 205)\",\"(12, 0, 205)\",\"(12, 0, 206)\",\"(12, 0, 206)\",\"(12, 0, 207)\",\"(12, 0, 207)\",\"(12, 0, 208)\",\"(12, 0, 208)\",\"(12, 0, 209)\",\"(12, 0, 210)\",\"(12, 0, 211)\",\"(12, 0, 211)\",\"(12, 0, 212)\",\"(12, 0, 212)\",\"(12, 0, 213)\",\"(12, 0, 213)\",\"(12, 0, 214)\",\"(12, 0, 214)\",\"(12, 0, 215)\",\"(12, 0, 215)\",\"(12, 0, 215)\",\"(12, 0, 215)\",\"(12, 0, 216)\",\"(12, 0, 216)\",\"(12, 0, 216)\",\"(12, 0, 216)\",\"(12, 0, 217)\",\"(12, 0, 218)\",\"(12, 0, 218)\",\"(12, 0, 218)\",\"(12, 0, 218)\",\"(12, 0, 219)\",\"(12, 0, 219)\",\"(12, 0, 219)\",\"(12, 0, 219)\",\"(12, 0, 220)\",\"(12, 0, 221)\",\"(12, 0, 221)\",\"(12, 0, 221)\",\"(12, 0, 222)\",\"(12, 0, 222)\",\"(12, 0, 222)\",\"(12, 0, 223)\",\"(12, 0, 224)\",\"(12, 0, 224)\",\"(12, 0, 225)\",\"(12, 0, 226)\",\"(12, 0, 227)\",\"(12, 0, 228)\",\"(12, 0, 229)\",\"(12, 0, 230)\",\"(12, 0, 231)\",\"(12, 0, 232)\",\"(12, 0, 233)\",\"(12, 0, 234)\",\"(12, 0, 235)\",\"(12, 0, 236)\",\"(12, 0, 237)\",\"(12, 0, 238)\",\"(12, 0, 239)\",\"(12, 0, 240)\",\"(12, 0, 241)\",\"(12, 0, 242)\",\"(12, 0, 242)\",\"(13, 0, 0)\",\"(13, 0, 1)\",\"(13, 0, 2)\",\"(13, 0, 3)\",\"(13, 0, 4)\",\"(13, 0, 5)\",\"(13, 0, 6)\",\"(13, 0, 7)\",\"(13, 0, 8)\",\"(13, 0, 9)\",\"(13, 0, 10)\",\"(13, 0, 11)\",\"(13, 0, 12)\",\"(13, 0, 13)\",\"(13, 0, 14)\",\"(13, 0, 15)\",\"(13, 0, 16)\",\"(13, 0, 17)\",\"(13, 0, 18)\",\"(13, 0, 19)\",\"(13, 0, 20)\",\"(13, 0, 21)\",\"(13, 0, 22)\",\"(13, 0, 23)\",\"(13, 0, 24)\",\"(13, 0, 25)\",\"(13, 0, 26)\",\"(13, 0, 27)\",\"(13, 0, 28)\",\"(13, 0, 29)\",\"(13, 0, 30)\",\"(13, 0, 31)\",\"(13, 0, 32)\",\"(13, 0, 33)\",\"(13, 0, 34)\",\"(13, 0, 35)\",\"(13, 0, 35)\",\"(13, 0, 35)\",\"(13, 0, 35)\",\"(13, 0, 35)\",\"(13, 0, 36)\",\"(13, 0, 36)\",\"(13, 0, 37)\",\"(13, 0, 38)\",\"(13, 0, 39)\",\"(13, 0, 39)\",\"(13, 0, 40)\",\"(13, 0, 40)\",\"(13, 0, 41)\",\"(13, 0, 41)\",\"(13, 0, 42)\",\"(13, 0, 42)\",\"(13, 0, 43)\",\"(13, 0, 44)\",\"(13, 0, 45)\",\"(13, 0, 46)\",\"(13, 0, 46)\",\"(13, 0, 47)\",\"(13, 0, 47)\",\"(13, 0, 48)\",\"(13, 0, 48)\",\"(13, 0, 49)\",\"(13, 0, 49)\",\"(13, 0, 50)\",\"(13, 0, 51)\",\"(13, 0, 51)\",\"(13, 0, 52)\",\"(13, 0, 52)\",\"(13, 0, 53)\",\"(13, 0, 53)\",\"(13, 0, 54)\",\"(13, 0, 54)\",\"(13, 0, 55)\",\"(13, 0, 55)\",\"(13, 0, 56)\",\"(13, 0, 56)\",\"(13, 0, 57)\",\"(13, 0, 58)\",\"(13, 0, 58)\",\"(13, 0, 59)\",\"(13, 0, 59)\",\"(13, 0, 59)\",\"(13, 0, 59)\",\"(13, 0, 60)\",\"(13, 0, 61)\",\"(13, 0, 61)\",\"(13, 0, 61)\",\"(13, 0, 61)\",\"(13, 0, 62)\",\"(13, 0, 62)\",\"(13, 0, 62)\",\"(13, 0, 63)\",\"(13, 0, 64)\",\"(13, 0, 65)\",\"(13, 0, 65)\",\"(13, 0, 65)\",\"(13, 0, 66)\",\"(13, 0, 67)\",\"(13, 0, 68)\",\"(13, 0, 68)\",\"(13, 0, 68)\",\"(13, 0, 69)\",\"(13, 0, 69)\",\"(13, 0, 69)\",\"(13, 0, 70)\",\"(13, 0, 70)\",\"(13, 0, 70)\",\"(13, 0, 71)\",\"(13, 0, 72)\",\"(13, 0, 72)\",\"(13, 0, 72)\",\"(13, 0, 73)\",\"(13, 0, 74)\",\"(13, 0, 74)\",\"(13, 0, 75)\",\"(13, 0, 76)\",\"(13, 0, 77)\",\"(13, 0, 78)\",\"(13, 0, 79)\",\"(13, 0, 79)\",\"(13, 0, 80)\",\"(14, 0, 0)\",\"(14, 0, 1)\",\"(14, 0, 2)\",\"(14, 0, 3)\",\"(14, 0, 4)\",\"(14, 0, 5)\",\"(14, 0, 6)\",\"(14, 0, 7)\",\"(14, 0, 8)\",\"(14, 0, 9)\",\"(14, 0, 10)\",\"(14, 0, 11)\",\"(14, 0, 12)\",\"(14, 0, 12)\",\"(14, 0, 12)\",\"(14, 0, 13)\",\"(14, 0, 13)\",\"(14, 0, 13)\",\"(14, 0, 13)\",\"(14, 0, 14)\",\"(14, 0, 15)\",\"(14, 0, 16)\",\"(14, 0, 16)\",\"(14, 0, 16)\",\"(14, 0, 17)\",\"(14, 0, 17)\",\"(14, 0, 18)\",\"(14, 0, 19)\",\"(14, 0, 19)\",\"(14, 0, 20)\",\"(14, 0, 21)\",\"(14, 0, 21)\",\"(14, 0, 22)\",\"(14, 0, 22)\",\"(14, 0, 23)\",\"(14, 0, 23)\",\"(14, 0, 24)\",\"(14, 0, 24)\",\"(14, 0, 25)\",\"(14, 0, 26)\",\"(15, 0, 0)\",\"(15, 0, 1)\",\"(15, 0, 1)\",\"(15, 0, 1)\",\"(15, 0, 2)\",\"(15, 0, 2)\",\"(15, 0, 2)\",\"(15, 0, 3)\",\"(15, 0, 3)\",\"(15, 0, 4)\",\"(15, 0, 4)\",\"(15, 0, 5)\",\"(15, 0, 6)\",\"(15, 0, 6)\",\"(15, 0, 7)\",\"(15, 0, 8)\",\"(15, 0, 9)\",\"(15, 0, 10)\",\"(15, 0, 11)\",\"(15, 0, 12)\",\"(15, 0, 13)\",\"(15, 0, 14)\",\"(15, 0, 15)\",\"(15, 0, 16)\",\"(15, 0, 16)\",\"(15, 0, 17)\",\"(16, 0, 0)\",\"(16, 0, 0)\",\"(16, 0, 1)\",\"(16, 0, 2)\",\"(16, 0, 2)\",\"(16, 0, 3)\",\"(16, 0, 3)\",\"(16, 0, 4)\",\"(16, 0, 5)\",\"(16, 0, 6)\",\"(16, 0, 7)\",\"(16, 0, 8)\",\"(17, 0, 0)\",\"(17, 0, 1)\",\"(17, 0, 2)\",\"(17, 0, 3)\",\"(17, 0, 4)\",\"(17, 0, 5)\",\"(18, 0, 0)\",\"(18, 0, 0)\",\"(18, 0, 0)\",\"(18, 0, 0)\",\"(18, 0, 0)\",\"(18, 0, 0)\",\"(18, 0, 1)\",\"(18, 0, 2)\",\"(18, 0, 3)\",\"(18, 0, 4)\",\"(18, 0, 5)\",\"(18, 0, 6)\",\"(18, 0, 7)\",\"(18, 0, 8)\",\"(18, 0, 9)\",\"(18, 0, 10)\",\"(18, 0, 11)\",\"(18, 0, 12)\",\"(18, 0, 13)\",\"(18, 0, 14)\",\"(18, 0, 15)\",\"(18, 0, 16)\",\"(18, 0, 17)\",\"(18, 0, 18)\",\"(18, 0, 19)\",\"(18, 0, 20)\",\"(18, 0, 21)\",\"(18, 0, 22)\",\"(18, 0, 23)\",\"(18, 0, 24)\",\"(18, 0, 25)\",\"(18, 0, 26)\",\"(18, 0, 27)\",\"(18, 0, 28)\",\"(18, 0, 29)\",\"(18, 0, 30)\",\"(18, 0, 31)\",\"(18, 0, 32)\",\"(18, 0, 33)\",\"(18, 0, 34)\",\"(18, 0, 35)\",\"(18, 0, 36)\",\"(18, 0, 37)\",\"(18, 0, 38)\",\"(18, 0, 39)\",\"(18, 0, 40)\",\"(18, 0, 41)\",\"(18, 0, 42)\",\"(18, 0, 43)\",\"(18, 0, 44)\",\"(18, 0, 45)\",\"(18, 0, 46)\",\"(18, 0, 47)\",\"(18, 0, 48)\",\"(18, 0, 49)\",\"(18, 0, 50)\",\"(18, 0, 51)\",\"(18, 0, 52)\",\"(18, 0, 53)\",\"(18, 0, 54)\",\"(18, 0, 55)\",\"(18, 0, 56)\",\"(18, 0, 57)\",\"(18, 0, 58)\",\"(18, 0, 59)\",\"(18, 0, 60)\",\"(18, 0, 61)\",\"(18, 0, 62)\",\"(18, 0, 63)\",\"(18, 0, 64)\",\"(18, 0, 65)\",\"(18, 0, 66)\",\"(18, 0, 67)\",\"(18, 0, 68)\",\"(18, 0, 69)\",\"(18, 0, 70)\",\"(18, 0, 71)\",\"(18, 0, 72)\",\"(18, 0, 73)\",\"(18, 0, 74)\",\"(18, 0, 75)\",\"(18, 0, 76)\",\"(18, 0, 77)\",\"(18, 0, 78)\",\"(18, 0, 79)\",\"(18, 0, 80)\",\"(18, 0, 81)\",\"(18, 0, 82)\",\"(18, 0, 83)\",\"(18, 0, 84)\",\"(18, 0, 85)\",\"(18, 0, 85)\",\"(18, 0, 86)\",\"(18, 0, 87)\",\"(18, 0, 88)\",\"(18, 0, 89)\",\"(18, 0, 90)\",\"(18, 0, 91)\",\"(18, 0, 92)\",\"(18, 0, 93)\",\"(18, 0, 94)\",\"(18, 0, 95)\",\"(18, 0, 96)\",\"(18, 0, 97)\",\"(18, 0, 98)\",\"(18, 0, 99)\",\"(18, 0, 100)\",\"(18, 0, 101)\",\"(18, 0, 102)\",\"(18, 0, 103)\",\"(18, 0, 104)\",\"(18, 0, 105)\",\"(18, 0, 105)\",\"(18, 0, 106)\",\"(18, 0, 106)\",\"(18, 0, 107)\",\"(18, 0, 107)\",\"(18, 0, 108)\",\"(18, 0, 108)\",\"(18, 0, 109)\",\"(18, 0, 109)\",\"(18, 0, 110)\",\"(18, 0, 110)\",\"(18, 0, 111)\",\"(18, 0, 111)\",\"(18, 0, 112)\",\"(18, 0, 112)\",\"(18, 0, 113)\",\"(18, 0, 113)\",\"(18, 0, 114)\",\"(18, 0, 114)\",\"(18, 0, 115)\",\"(18, 0, 115)\",\"(18, 0, 116)\",\"(18, 0, 117)\",\"(18, 0, 118)\",\"(18, 0, 118)\",\"(18, 0, 119)\",\"(18, 0, 120)\",\"(18, 0, 121)\",\"(18, 0, 122)\",\"(18, 0, 122)\",\"(18, 0, 123)\",\"(18, 0, 123)\",\"(18, 0, 124)\",\"(18, 0, 124)\",\"(18, 0, 125)\",\"(18, 0, 126)\",\"(18, 0, 126)\",\"(18, 0, 127)\",\"(18, 0, 127)\",\"(18, 0, 128)\",\"(18, 0, 128)\",\"(18, 0, 129)\",\"(18, 0, 129)\",\"(18, 0, 130)\",\"(18, 0, 130)\",\"(18, 0, 131)\",\"(18, 0, 131)\",\"(18, 0, 132)\",\"(18, 0, 132)\",\"(18, 0, 133)\",\"(18, 0, 134)\",\"(18, 0, 134)\",\"(18, 0, 135)\",\"(18, 0, 135)\",\"(18, 0, 136)\",\"(18, 0, 137)\",\"(18, 0, 137)\",\"(18, 0, 138)\",\"(18, 0, 139)\",\"(18, 0, 139)\",\"(18, 0, 140)\",\"(18, 0, 140)\",\"(18, 0, 141)\",\"(18, 0, 141)\",\"(18, 0, 142)\",\"(18, 0, 143)\",\"(18, 0, 143)\",\"(18, 0, 144)\",\"(18, 0, 144)\",\"(18, 0, 145)\",\"(18, 0, 146)\",\"(18, 0, 146)\",\"(18, 0, 147)\",\"(18, 0, 147)\",\"(18, 0, 148)\",\"(18, 0, 148)\",\"(18, 0, 149)\",\"(18, 0, 149)\",\"(18, 0, 150)\",\"(18, 0, 150)\",\"(18, 0, 151)\",\"(18, 0, 151)\",\"(18, 0, 152)\",\"(18, 0, 153)\",\"(18, 0, 153)\",\"(18, 0, 154)\",\"(18, 0, 155)\",\"(18, 0, 156)\",\"(18, 0, 156)\",\"(18, 0, 157)\",\"(18, 0, 157)\",\"(18, 0, 158)\",\"(18, 0, 158)\",\"(18, 0, 159)\",\"(18, 0, 159)\",\"(18, 0, 159)\",\"(18, 0, 160)\",\"(18, 0, 160)\",\"(18, 0, 160)\",\"(18, 0, 161)\",\"(18, 0, 161)\",\"(18, 0, 161)\",\"(18, 0, 162)\",\"(18, 0, 163)\",\"(18, 0, 163)\",\"(18, 0, 163)\",\"(18, 0, 164)\",\"(18, 0, 164)\",\"(18, 0, 164)\",\"(18, 0, 165)\",\"(18, 0, 166)\",\"(18, 0, 166)\",\"(18, 0, 166)\",\"(18, 0, 167)\",\"(18, 0, 167)\",\"(18, 0, 167)\",\"(18, 0, 168)\",\"(18, 0, 168)\",\"(18, 0, 168)\",\"(18, 0, 169)\",\"(18, 0, 169)\",\"(18, 0, 169)\",\"(18, 0, 170)\",\"(18, 0, 170)\",\"(18, 0, 170)\",\"(18, 0, 171)\",\"(18, 0, 171)\",\"(18, 0, 171)\",\"(18, 0, 172)\",\"(18, 0, 172)\",\"(18, 0, 172)\",\"(18, 0, 173)\",\"(18, 0, 173)\",\"(18, 0, 173)\",\"(18, 0, 174)\",\"(18, 0, 175)\",\"(18, 0, 176)\",\"(18, 0, 177)\",\"(18, 0, 178)\",\"(18, 0, 179)\",\"(18, 0, 180)\",\"(18, 0, 181)\",\"(18, 0, 182)\",\"(18, 0, 183)\",\"(18, 0, 184)\",\"(18, 0, 185)\",\"(18, 0, 186)\",\"(18, 0, 187)\",\"(18, 0, 188)\",\"(18, 0, 189)\",\"(18, 0, 190)\",\"(18, 0, 191)\",\"(18, 0, 192)\",\"(18, 0, 193)\",\"(18, 0, 194)\",\"(18, 0, 195)\",\"(18, 0, 196)\",\"(18, 0, 197)\",\"(18, 0, 198)\",\"(18, 0, 199)\",\"(18, 0, 200)\",\"(18, 0, 200)\",\"(18, 0, 200)\",\"(18, 0, 201)\",\"(18, 0, 202)\",\"(18, 0, 202)\",\"(18, 0, 202)\",\"(18, 0, 203)\",\"(18, 0, 203)\",\"(18, 0, 203)\",\"(18, 0, 204)\",\"(18, 0, 204)\",\"(18, 0, 204)\",\"(18, 0, 204)\",\"(18, 0, 204)\",\"(18, 0, 205)\",\"(18, 0, 205)\",\"(18, 0, 205)\",\"(18, 0, 205)\",\"(18, 0, 205)\",\"(18, 0, 206)\",\"(18, 0, 207)\",\"(18, 0, 208)\",\"(18, 0, 209)\",\"(18, 0, 209)\",\"(18, 0, 209)\",\"(18, 0, 209)\",\"(18, 0, 210)\",\"(18, 0, 210)\",\"(18, 0, 210)\",\"(18, 0, 210)\",\"(18, 0, 211)\",\"(18, 0, 211)\",\"(18, 0, 212)\",\"(18, 0, 213)\",\"(18, 0, 214)\",\"(18, 0, 214)\",\"(18, 0, 215)\",\"(18, 0, 215)\",\"(18, 0, 216)\",\"(18, 0, 216)\",\"(18, 0, 217)\",\"(18, 0, 217)\",\"(18, 0, 218)\",\"(18, 0, 218)\",\"(18, 0, 219)\",\"(18, 0, 219)\",\"(18, 0, 220)\",\"(18, 0, 221)\",\"(18, 0, 222)\",\"(18, 0, 222)\",\"(18, 0, 222)\",\"(18, 0, 222)\",\"(18, 0, 223)\",\"(18, 0, 224)\",\"(18, 0, 225)\",\"(18, 0, 225)\",\"(18, 0, 226)\",\"(18, 0, 227)\",\"(18, 0, 227)\",\"(18, 0, 228)\",\"(18, 0, 229)\",\"(18, 0, 230)\",\"(18, 0, 231)\",\"(18, 0, 231)\",\"(18, 0, 232)\",\"(18, 0, 232)\",\"(18, 0, 233)\",\"(18, 0, 233)\",\"(18, 0, 233)\",\"(18, 0, 233)\",\"(18, 0, 234)\",\"(18, 0, 234)\",\"(18, 0, 234)\",\"(18, 0, 234)\",\"(18, 0, 235)\",\"(18, 0, 235)\",\"(18, 0, 235)\",\"(18, 0, 235)\",\"(18, 0, 236)\",\"(18, 0, 237)\",\"(18, 0, 237)\",\"(18, 0, 237)\",\"(18, 0, 238)\",\"(18, 0, 239)\",\"(18, 0, 239)\",\"(18, 0, 239)\",\"(18, 0, 240)\",\"(18, 0, 240)\",\"(18, 0, 241)\",\"(18, 0, 241)\",\"(18, 0, 242)\",\"(19, 0, 0)\",\"(19, 0, 0)\",\"(19, 0, 0)\",\"(19, 0, 0)\",\"(19, 0, 0)\",\"(19, 0, 1)\",\"(19, 0, 2)\",\"(19, 0, 3)\",\"(19, 0, 4)\",\"(19, 0, 5)\",\"(19, 0, 6)\",\"(19, 0, 7)\",\"(19, 0, 8)\",\"(19, 0, 9)\",\"(19, 0, 10)\",\"(19, 0, 11)\",\"(19, 0, 12)\",\"(19, 0, 13)\",\"(19, 0, 14)\",\"(19, 0, 15)\",\"(19, 0, 16)\",\"(19, 0, 17)\",\"(19, 0, 18)\",\"(19, 0, 19)\",\"(19, 0, 20)\",\"(19, 0, 21)\",\"(19, 0, 22)\",\"(19, 0, 23)\",\"(19, 0, 24)\",\"(19, 0, 25)\",\"(19, 0, 26)\",\"(19, 0, 27)\",\"(19, 0, 28)\",\"(19, 0, 29)\",\"(19, 0, 30)\",\"(19, 0, 31)\",\"(19, 0, 31)\",\"(19, 0, 31)\",\"(19, 0, 31)\",\"(19, 0, 32)\",\"(19, 0, 33)\",\"(19, 0, 33)\",\"(19, 0, 34)\",\"(19, 0, 34)\",\"(19, 0, 35)\",\"(19, 0, 35)\",\"(19, 0, 36)\",\"(19, 0, 36)\",\"(19, 0, 37)\",\"(19, 0, 38)\",\"(19, 0, 38)\",\"(19, 0, 39)\",\"(19, 0, 39)\",\"(19, 0, 40)\",\"(19, 0, 41)\",\"(19, 0, 42)\",\"(19, 0, 42)\",\"(19, 0, 43)\",\"(19, 0, 43)\",\"(19, 0, 44)\",\"(19, 0, 45)\",\"(19, 0, 45)\",\"(19, 0, 46)\",\"(19, 0, 46)\",\"(19, 0, 47)\",\"(19, 0, 48)\",\"(19, 0, 49)\",\"(19, 0, 49)\",\"(19, 0, 50)\",\"(19, 0, 51)\",\"(19, 0, 52)\",\"(19, 0, 52)\",\"(19, 0, 53)\",\"(19, 0, 54)\",\"(19, 0, 55)\",\"(19, 0, 55)\",\"(19, 0, 56)\",\"(19, 0, 56)\",\"(19, 0, 57)\",\"(19, 0, 58)\",\"(19, 0, 58)\",\"(19, 0, 59)\",\"(19, 0, 60)\",\"(19, 0, 60)\",\"(19, 0, 61)\",\"(19, 0, 61)\",\"(19, 0, 61)\",\"(19, 0, 61)\",\"(19, 0, 62)\",\"(19, 0, 62)\",\"(19, 0, 62)\",\"(19, 0, 63)\",\"(19, 0, 63)\",\"(19, 0, 63)\",\"(19, 0, 64)\",\"(19, 0, 64)\",\"(19, 0, 64)\",\"(19, 0, 65)\",\"(19, 0, 65)\",\"(19, 0, 65)\",\"(19, 0, 66)\",\"(19, 0, 66)\",\"(19, 0, 66)\",\"(19, 0, 67)\",\"(19, 0, 68)\",\"(19, 0, 69)\",\"(19, 0, 70)\",\"(19, 0, 71)\",\"(19, 0, 72)\",\"(19, 0, 72)\",\"(19, 0, 72)\",\"(19, 0, 73)\",\"(19, 0, 73)\",\"(19, 0, 74)\",\"(19, 0, 75)\",\"(19, 0, 76)\",\"(19, 0, 77)\",\"(19, 0, 78)\",\"(19, 0, 79)\",\"(19, 0, 79)\",\"(19, 0, 80)\",\"(20, 0, 0)\",\"(20, 0, 0)\",\"(20, 0, 0)\",\"(20, 0, 0)\",\"(20, 0, 1)\",\"(20, 0, 2)\",\"(20, 0, 3)\",\"(20, 0, 4)\",\"(20, 0, 5)\",\"(20, 0, 6)\",\"(20, 0, 7)\",\"(20, 0, 8)\",\"(20, 0, 9)\",\"(20, 0, 10)\",\"(20, 0, 11)\",\"(20, 0, 12)\",\"(20, 0, 13)\",\"(20, 0, 14)\",\"(20, 0, 15)\",\"(20, 0, 15)\",\"(20, 0, 15)\",\"(20, 0, 16)\",\"(20, 0, 16)\",\"(20, 0, 16)\",\"(20, 0, 17)\",\"(20, 0, 17)\",\"(20, 0, 18)\",\"(20, 0, 18)\",\"(20, 0, 19)\",\"(20, 0, 19)\",\"(20, 0, 20)\",\"(20, 0, 20)\",\"(20, 0, 21)\",\"(20, 0, 22)\",\"(20, 0, 22)\",\"(20, 0, 23)\",\"(20, 0, 24)\",\"(20, 0, 24)\",\"(20, 0, 25)\",\"(20, 0, 26)\",\"(21, 0, 0)\",\"(21, 0, 1)\",\"(21, 0, 1)\",\"(21, 0, 1)\",\"(21, 0, 2)\",\"(21, 0, 2)\",\"(21, 0, 2)\",\"(21, 0, 3)\",\"(21, 0, 3)\",\"(21, 0, 4)\",\"(21, 0, 4)\",\"(21, 0, 5)\",\"(21, 0, 5)\",\"(21, 0, 6)\",\"(21, 0, 7)\",\"(21, 0, 8)\",\"(21, 0, 8)\",\"(21, 0, 9)\",\"(21, 0, 10)\",\"(21, 0, 11)\",\"(21, 0, 12)\",\"(21, 0, 13)\",\"(21, 0, 14)\",\"(21, 0, 15)\",\"(21, 0, 16)\",\"(21, 0, 17)\",\"(22, 0, 0)\",\"(22, 0, 0)\",\"(22, 0, 1)\",\"(22, 0, 1)\",\"(22, 0, 2)\",\"(22, 0, 3)\",\"(22, 0, 3)\",\"(22, 0, 4)\",\"(22, 0, 5)\",\"(22, 0, 6)\",\"(22, 0, 7)\",\"(22, 0, 8)\",\"(23, 0, 0)\",\"(23, 0, 1)\",\"(23, 0, 2)\",\"(23, 0, 3)\",\"(23, 0, 4)\",\"(23, 0, 5)\",\"(24, 0, 0)\",\"(24, 0, 0)\",\"(24, 0, 0)\",\"(24, 0, 0)\",\"(24, 0, 0)\",\"(24, 0, 0)\",\"(24, 0, 1)\",\"(24, 0, 2)\",\"(24, 0, 3)\",\"(24, 0, 4)\",\"(24, 0, 5)\",\"(24, 0, 6)\",\"(24, 0, 7)\",\"(24, 0, 8)\",\"(24, 0, 9)\",\"(24, 0, 10)\",\"(24, 0, 11)\",\"(24, 0, 12)\",\"(24, 0, 13)\",\"(24, 0, 14)\",\"(24, 0, 15)\",\"(24, 0, 16)\",\"(24, 0, 17)\",\"(24, 0, 18)\",\"(24, 0, 19)\",\"(24, 0, 20)\",\"(24, 0, 21)\",\"(24, 0, 22)\",\"(24, 0, 23)\",\"(24, 0, 24)\",\"(24, 0, 25)\",\"(24, 0, 26)\",\"(24, 0, 27)\",\"(24, 0, 28)\",\"(24, 0, 29)\",\"(24, 0, 30)\",\"(24, 0, 31)\",\"(24, 0, 32)\",\"(24, 0, 33)\",\"(24, 0, 34)\",\"(24, 0, 35)\",\"(24, 0, 36)\",\"(24, 0, 37)\",\"(24, 0, 38)\",\"(24, 0, 39)\",\"(24, 0, 40)\",\"(24, 0, 41)\",\"(24, 0, 42)\",\"(24, 0, 43)\",\"(24, 0, 44)\",\"(24, 0, 45)\",\"(24, 0, 46)\",\"(24, 0, 47)\",\"(24, 0, 48)\",\"(24, 0, 49)\",\"(24, 0, 50)\",\"(24, 0, 51)\",\"(24, 0, 52)\",\"(24, 0, 53)\",\"(24, 0, 54)\",\"(24, 0, 55)\",\"(24, 0, 56)\",\"(24, 0, 57)\",\"(24, 0, 58)\",\"(24, 0, 59)\",\"(24, 0, 60)\",\"(24, 0, 61)\",\"(24, 0, 62)\",\"(24, 0, 63)\",\"(24, 0, 64)\",\"(24, 0, 65)\",\"(24, 0, 66)\",\"(24, 0, 67)\",\"(24, 0, 68)\",\"(24, 0, 69)\",\"(24, 0, 70)\",\"(24, 0, 71)\",\"(24, 0, 72)\",\"(24, 0, 73)\",\"(24, 0, 74)\",\"(24, 0, 75)\",\"(24, 0, 76)\",\"(24, 0, 77)\",\"(24, 0, 78)\",\"(24, 0, 79)\",\"(24, 0, 80)\",\"(24, 0, 81)\",\"(24, 0, 82)\",\"(24, 0, 83)\",\"(24, 0, 84)\",\"(24, 0, 85)\",\"(24, 0, 86)\",\"(24, 0, 87)\",\"(24, 0, 88)\",\"(24, 0, 89)\",\"(24, 0, 90)\",\"(24, 0, 91)\",\"(24, 0, 92)\",\"(24, 0, 93)\",\"(24, 0, 94)\",\"(24, 0, 95)\",\"(24, 0, 96)\",\"(24, 0, 97)\",\"(24, 0, 98)\",\"(24, 0, 99)\",\"(24, 0, 99)\",\"(24, 0, 100)\",\"(24, 0, 100)\",\"(24, 0, 101)\",\"(24, 0, 101)\",\"(24, 0, 102)\",\"(24, 0, 102)\",\"(24, 0, 103)\",\"(24, 0, 104)\",\"(24, 0, 104)\",\"(24, 0, 105)\",\"(24, 0, 106)\",\"(24, 0, 106)\",\"(24, 0, 107)\",\"(24, 0, 107)\",\"(24, 0, 108)\",\"(24, 0, 108)\",\"(24, 0, 109)\",\"(24, 0, 109)\",\"(24, 0, 110)\",\"(24, 0, 111)\",\"(24, 0, 111)\",\"(24, 0, 112)\",\"(24, 0, 112)\",\"(24, 0, 113)\",\"(24, 0, 113)\",\"(24, 0, 114)\",\"(24, 0, 115)\",\"(24, 0, 115)\",\"(24, 0, 116)\",\"(24, 0, 116)\",\"(24, 0, 117)\",\"(24, 0, 117)\",\"(24, 0, 118)\",\"(24, 0, 118)\",\"(24, 0, 119)\",\"(24, 0, 119)\",\"(24, 0, 120)\",\"(24, 0, 121)\",\"(24, 0, 122)\",\"(24, 0, 122)\",\"(24, 0, 123)\",\"(24, 0, 124)\",\"(24, 0, 125)\",\"(24, 0, 126)\",\"(24, 0, 126)\",\"(24, 0, 127)\",\"(24, 0, 128)\",\"(24, 0, 129)\",\"(24, 0, 129)\",\"(24, 0, 130)\",\"(24, 0, 130)\",\"(24, 0, 131)\",\"(24, 0, 131)\",\"(24, 0, 132)\",\"(24, 0, 133)\",\"(24, 0, 133)\",\"(24, 0, 134)\",\"(24, 0, 134)\",\"(24, 0, 135)\",\"(24, 0, 136)\",\"(24, 0, 137)\",\"(24, 0, 137)\",\"(24, 0, 138)\",\"(24, 0, 139)\",\"(24, 0, 139)\",\"(24, 0, 140)\",\"(24, 0, 140)\",\"(24, 0, 141)\",\"(24, 0, 141)\",\"(24, 0, 142)\",\"(24, 0, 142)\",\"(24, 0, 143)\",\"(24, 0, 143)\",\"(24, 0, 144)\",\"(24, 0, 145)\",\"(24, 0, 146)\",\"(24, 0, 146)\",\"(24, 0, 147)\",\"(24, 0, 148)\",\"(24, 0, 149)\",\"(24, 0, 149)\",\"(24, 0, 150)\",\"(24, 0, 150)\",\"(24, 0, 151)\",\"(24, 0, 151)\",\"(24, 0, 152)\",\"(24, 0, 152)\",\"(24, 0, 153)\",\"(24, 0, 153)\",\"(24, 0, 154)\",\"(24, 0, 154)\",\"(24, 0, 155)\",\"(24, 0, 155)\",\"(24, 0, 156)\",\"(24, 0, 157)\",\"(24, 0, 158)\",\"(24, 0, 158)\",\"(24, 0, 159)\",\"(24, 0, 159)\",\"(24, 0, 160)\",\"(24, 0, 160)\",\"(24, 0, 161)\",\"(24, 0, 162)\",\"(24, 0, 162)\",\"(24, 0, 162)\",\"(24, 0, 163)\",\"(24, 0, 163)\",\"(24, 0, 163)\",\"(24, 0, 164)\",\"(24, 0, 165)\",\"(24, 0, 166)\",\"(24, 0, 167)\",\"(24, 0, 167)\",\"(24, 0, 167)\",\"(24, 0, 168)\",\"(24, 0, 169)\",\"(24, 0, 170)\",\"(24, 0, 170)\",\"(24, 0, 170)\",\"(24, 0, 171)\",\"(24, 0, 172)\",\"(24, 0, 172)\",\"(24, 0, 172)\",\"(24, 0, 173)\",\"(24, 0, 174)\",\"(24, 0, 174)\",\"(24, 0, 174)\",\"(24, 0, 175)\",\"(24, 0, 176)\",\"(24, 0, 177)\",\"(24, 0, 177)\",\"(24, 0, 177)\",\"(24, 0, 178)\",\"(24, 0, 178)\",\"(24, 0, 178)\",\"(24, 0, 179)\",\"(24, 0, 179)\",\"(24, 0, 179)\",\"(24, 0, 180)\",\"(24, 0, 180)\",\"(24, 0, 180)\",\"(24, 0, 181)\",\"(24, 0, 181)\",\"(24, 0, 181)\",\"(24, 0, 182)\",\"(24, 0, 182)\",\"(24, 0, 182)\",\"(24, 0, 183)\",\"(24, 0, 183)\",\"(24, 0, 183)\",\"(24, 0, 184)\",\"(24, 0, 184)\",\"(24, 0, 184)\",\"(24, 0, 185)\",\"(24, 0, 186)\",\"(24, 0, 187)\",\"(24, 0, 188)\",\"(24, 0, 189)\",\"(24, 0, 190)\",\"(24, 0, 191)\",\"(24, 0, 192)\",\"(24, 0, 193)\",\"(24, 0, 194)\",\"(24, 0, 195)\",\"(24, 0, 196)\",\"(24, 0, 197)\",\"(24, 0, 198)\",\"(24, 0, 199)\",\"(24, 0, 200)\",\"(24, 0, 201)\",\"(24, 0, 202)\",\"(24, 0, 203)\",\"(24, 0, 204)\",\"(24, 0, 205)\",\"(24, 0, 206)\",\"(24, 0, 207)\",\"(24, 0, 207)\",\"(24, 0, 207)\",\"(24, 0, 208)\",\"(24, 0, 208)\",\"(24, 0, 208)\",\"(24, 0, 209)\",\"(24, 0, 209)\",\"(24, 0, 209)\",\"(24, 0, 209)\",\"(24, 0, 209)\",\"(24, 0, 210)\",\"(24, 0, 210)\",\"(24, 0, 210)\",\"(24, 0, 210)\",\"(24, 0, 210)\",\"(24, 0, 211)\",\"(24, 0, 211)\",\"(24, 0, 211)\",\"(24, 0, 211)\",\"(24, 0, 212)\",\"(24, 0, 213)\",\"(24, 0, 214)\",\"(24, 0, 214)\",\"(24, 0, 214)\",\"(24, 0, 214)\",\"(24, 0, 215)\",\"(24, 0, 215)\",\"(24, 0, 216)\",\"(24, 0, 216)\",\"(24, 0, 217)\",\"(24, 0, 217)\",\"(24, 0, 218)\",\"(24, 0, 218)\",\"(24, 0, 219)\",\"(24, 0, 219)\",\"(24, 0, 220)\",\"(24, 0, 220)\",\"(24, 0, 221)\",\"(24, 0, 221)\",\"(24, 0, 222)\",\"(24, 0, 222)\",\"(24, 0, 223)\",\"(24, 0, 223)\",\"(24, 0, 224)\",\"(24, 0, 224)\",\"(24, 0, 225)\",\"(24, 0, 226)\",\"(24, 0, 227)\",\"(24, 0, 227)\",\"(24, 0, 228)\",\"(24, 0, 229)\",\"(24, 0, 230)\",\"(24, 0, 230)\",\"(24, 0, 230)\",\"(24, 0, 230)\",\"(24, 0, 231)\",\"(24, 0, 231)\",\"(24, 0, 231)\",\"(24, 0, 231)\",\"(24, 0, 232)\",\"(24, 0, 232)\",\"(24, 0, 232)\",\"(24, 0, 232)\",\"(24, 0, 233)\",\"(24, 0, 233)\",\"(24, 0, 233)\",\"(24, 0, 233)\",\"(24, 0, 234)\",\"(24, 0, 235)\",\"(24, 0, 236)\",\"(24, 0, 236)\",\"(24, 0, 236)\",\"(24, 0, 237)\",\"(24, 0, 238)\",\"(24, 0, 239)\",\"(24, 0, 239)\",\"(24, 0, 239)\",\"(24, 0, 240)\",\"(24, 0, 240)\",\"(24, 0, 241)\",\"(24, 0, 241)\",\"(24, 0, 242)\",\"(25, 0, 0)\",\"(25, 0, 0)\",\"(25, 0, 0)\",\"(25, 0, 0)\",\"(25, 0, 0)\",\"(25, 0, 1)\",\"(25, 0, 2)\",\"(25, 0, 3)\",\"(25, 0, 4)\",\"(25, 0, 5)\",\"(25, 0, 6)\",\"(25, 0, 7)\",\"(25, 0, 8)\",\"(25, 0, 9)\",\"(25, 0, 10)\",\"(25, 0, 11)\",\"(25, 0, 12)\",\"(25, 0, 13)\",\"(25, 0, 14)\",\"(25, 0, 15)\",\"(25, 0, 16)\",\"(25, 0, 17)\",\"(25, 0, 18)\",\"(25, 0, 19)\",\"(25, 0, 20)\",\"(25, 0, 21)\",\"(25, 0, 22)\",\"(25, 0, 23)\",\"(25, 0, 24)\",\"(25, 0, 25)\",\"(25, 0, 26)\",\"(25, 0, 27)\",\"(25, 0, 28)\",\"(25, 0, 29)\",\"(25, 0, 30)\",\"(25, 0, 31)\",\"(25, 0, 32)\",\"(25, 0, 33)\",\"(25, 0, 34)\",\"(25, 0, 35)\",\"(25, 0, 35)\",\"(25, 0, 36)\",\"(25, 0, 36)\",\"(25, 0, 37)\",\"(25, 0, 37)\",\"(25, 0, 38)\",\"(25, 0, 39)\",\"(25, 0, 40)\",\"(25, 0, 41)\",\"(25, 0, 41)\",\"(25, 0, 42)\",\"(25, 0, 42)\",\"(25, 0, 43)\",\"(25, 0, 43)\",\"(25, 0, 44)\",\"(25, 0, 45)\",\"(25, 0, 45)\",\"(25, 0, 46)\",\"(25, 0, 46)\",\"(25, 0, 47)\",\"(25, 0, 47)\",\"(25, 0, 48)\",\"(25, 0, 49)\",\"(25, 0, 49)\",\"(25, 0, 50)\",\"(25, 0, 50)\",\"(25, 0, 51)\",\"(25, 0, 51)\",\"(25, 0, 52)\",\"(25, 0, 53)\",\"(25, 0, 54)\",\"(25, 0, 54)\",\"(25, 0, 55)\",\"(25, 0, 56)\",\"(25, 0, 56)\",\"(25, 0, 57)\",\"(25, 0, 57)\",\"(25, 0, 58)\",\"(25, 0, 58)\",\"(25, 0, 59)\",\"(25, 0, 59)\",\"(25, 0, 59)\",\"(25, 0, 59)\",\"(25, 0, 60)\",\"(25, 0, 60)\",\"(25, 0, 60)\",\"(25, 0, 60)\",\"(25, 0, 61)\",\"(25, 0, 61)\",\"(25, 0, 61)\",\"(25, 0, 62)\",\"(25, 0, 63)\",\"(25, 0, 63)\",\"(25, 0, 63)\",\"(25, 0, 64)\",\"(25, 0, 65)\",\"(25, 0, 65)\",\"(25, 0, 65)\",\"(25, 0, 66)\",\"(25, 0, 66)\",\"(25, 0, 66)\",\"(25, 0, 67)\",\"(25, 0, 68)\",\"(25, 0, 68)\",\"(25, 0, 68)\",\"(25, 0, 69)\",\"(25, 0, 70)\",\"(25, 0, 70)\",\"(25, 0, 70)\",\"(25, 0, 71)\",\"(25, 0, 71)\",\"(25, 0, 72)\",\"(25, 0, 73)\",\"(25, 0, 74)\",\"(25, 0, 75)\",\"(25, 0, 76)\",\"(25, 0, 77)\",\"(25, 0, 78)\",\"(25, 0, 79)\",\"(25, 0, 79)\",\"(25, 0, 80)\",\"(26, 0, 0)\",\"(26, 0, 0)\",\"(26, 0, 0)\",\"(26, 0, 0)\",\"(26, 0, 1)\",\"(26, 0, 2)\",\"(26, 0, 3)\",\"(26, 0, 4)\",\"(26, 0, 5)\",\"(26, 0, 6)\",\"(26, 0, 7)\",\"(26, 0, 8)\",\"(26, 0, 9)\",\"(26, 0, 10)\",\"(26, 0, 11)\",\"(26, 0, 12)\",\"(26, 0, 12)\",\"(26, 0, 12)\",\"(26, 0, 13)\",\"(26, 0, 14)\",\"(26, 0, 14)\",\"(26, 0, 15)\",\"(26, 0, 16)\",\"(26, 0, 17)\",\"(26, 0, 17)\",\"(26, 0, 17)\",\"(26, 0, 18)\",\"(26, 0, 18)\",\"(26, 0, 19)\",\"(26, 0, 19)\",\"(26, 0, 20)\",\"(26, 0, 21)\",\"(26, 0, 21)\",\"(26, 0, 22)\",\"(26, 0, 23)\",\"(26, 0, 23)\",\"(26, 0, 24)\",\"(26, 0, 24)\",\"(26, 0, 25)\",\"(26, 0, 26)\",\"(27, 0, 0)\",\"(27, 0, 1)\",\"(27, 0, 1)\",\"(27, 0, 1)\",\"(27, 0, 2)\",\"(27, 0, 3)\",\"(27, 0, 3)\",\"(27, 0, 3)\",\"(27, 0, 4)\",\"(27, 0, 4)\",\"(27, 0, 5)\",\"(27, 0, 5)\",\"(27, 0, 6)\",\"(27, 0, 7)\",\"(27, 0, 8)\",\"(27, 0, 8)\",\"(27, 0, 9)\",\"(27, 0, 10)\",\"(27, 0, 11)\",\"(27, 0, 12)\",\"(27, 0, 13)\",\"(27, 0, 14)\",\"(27, 0, 15)\",\"(27, 0, 15)\",\"(27, 0, 16)\",\"(27, 0, 17)\",\"(28, 0, 0)\",\"(28, 0, 1)\",\"(28, 0, 1)\",\"(28, 0, 2)\",\"(28, 0, 2)\",\"(28, 0, 3)\",\"(28, 0, 3)\",\"(28, 0, 4)\",\"(28, 0, 5)\",\"(28, 0, 6)\",\"(28, 0, 7)\",\"(28, 0, 8)\",\"(29, 0, 0)\",\"(29, 0, 1)\",\"(29, 0, 2)\",\"(29, 0, 3)\",\"(29, 0, 4)\",\"(29, 0, 5)\",\"(30, 0, 0)\",\"(30, 0, 1)\",\"(30, 0, 2)\",\"(30, 0, 3)\",\"(30, 0, 4)\",\"(30, 0, 5)\",\"(30, 0, 6)\",\"(30, 0, 7)\",\"(30, 0, 8)\",\"(30, 0, 9)\",\"(30, 0, 10)\",\"(30, 0, 11)\",\"(30, 0, 12)\",\"(30, 0, 13)\",\"(30, 0, 14)\",\"(30, 0, 15)\",\"(30, 0, 16)\",\"(30, 0, 17)\",\"(30, 0, 18)\",\"(30, 0, 19)\",\"(30, 0, 20)\",\"(30, 0, 21)\",\"(30, 0, 22)\",\"(30, 0, 23)\",\"(30, 0, 24)\",\"(30, 0, 25)\",\"(30, 0, 26)\",\"(30, 0, 27)\",\"(30, 0, 28)\",\"(30, 0, 29)\",\"(30, 0, 30)\",\"(30, 0, 31)\",\"(30, 0, 32)\",\"(30, 0, 33)\",\"(30, 0, 34)\",\"(30, 0, 35)\",\"(30, 0, 36)\",\"(30, 0, 37)\",\"(30, 0, 38)\",\"(30, 0, 39)\",\"(30, 0, 40)\",\"(30, 0, 41)\",\"(30, 0, 42)\",\"(30, 0, 43)\",\"(30, 0, 44)\",\"(30, 0, 45)\",\"(30, 0, 46)\",\"(30, 0, 47)\",\"(30, 0, 48)\",\"(30, 0, 49)\",\"(30, 0, 50)\",\"(30, 0, 51)\",\"(30, 0, 52)\",\"(30, 0, 53)\",\"(30, 0, 54)\",\"(30, 0, 55)\",\"(30, 0, 56)\",\"(30, 0, 57)\",\"(30, 0, 58)\",\"(30, 0, 59)\",\"(30, 0, 60)\",\"(30, 0, 61)\",\"(30, 0, 62)\",\"(30, 0, 63)\",\"(30, 0, 64)\",\"(30, 0, 65)\",\"(30, 0, 66)\",\"(30, 0, 67)\",\"(30, 0, 68)\",\"(30, 0, 69)\",\"(30, 0, 70)\",\"(30, 0, 71)\",\"(30, 0, 72)\",\"(30, 0, 73)\",\"(30, 0, 74)\",\"(30, 0, 75)\",\"(30, 0, 76)\",\"(30, 0, 77)\",\"(30, 0, 78)\",\"(30, 0, 79)\",\"(30, 0, 80)\",\"(30, 0, 81)\",\"(30, 0, 82)\",\"(30, 0, 83)\",\"(30, 0, 84)\",\"(30, 0, 85)\",\"(30, 0, 86)\",\"(30, 0, 87)\",\"(30, 0, 88)\",\"(30, 0, 89)\",\"(30, 0, 90)\",\"(30, 0, 91)\",\"(30, 0, 92)\",\"(30, 0, 93)\",\"(30, 0, 94)\",\"(30, 0, 95)\",\"(30, 0, 96)\",\"(30, 0, 97)\",\"(30, 0, 98)\",\"(30, 0, 99)\",\"(30, 0, 100)\",\"(30, 0, 101)\",\"(30, 0, 102)\",\"(30, 0, 103)\",\"(30, 0, 104)\",\"(30, 0, 105)\",\"(30, 0, 105)\",\"(30, 0, 105)\",\"(30, 0, 105)\",\"(30, 0, 105)\",\"(30, 0, 105)\",\"(30, 0, 106)\",\"(30, 0, 106)\",\"(30, 0, 107)\",\"(30, 0, 108)\",\"(30, 0, 109)\",\"(30, 0, 109)\",\"(30, 0, 110)\",\"(30, 0, 110)\",\"(30, 0, 111)\",\"(30, 0, 112)\",\"(30, 0, 113)\",\"(30, 0, 113)\",\"(30, 0, 114)\",\"(30, 0, 114)\",\"(30, 0, 115)\",\"(30, 0, 115)\",\"(30, 0, 116)\",\"(30, 0, 117)\",\"(30, 0, 118)\",\"(30, 0, 119)\",\"(30, 0, 120)\",\"(30, 0, 120)\",\"(30, 0, 121)\",\"(30, 0, 121)\",\"(30, 0, 122)\",\"(30, 0, 122)\",\"(30, 0, 123)\",\"(30, 0, 123)\",\"(30, 0, 124)\",\"(30, 0, 124)\",\"(30, 0, 125)\",\"(30, 0, 126)\",\"(30, 0, 126)\",\"(30, 0, 127)\",\"(30, 0, 127)\",\"(30, 0, 128)\",\"(30, 0, 128)\",\"(30, 0, 129)\",\"(30, 0, 130)\",\"(30, 0, 131)\",\"(30, 0, 131)\",\"(30, 0, 132)\",\"(30, 0, 132)\",\"(30, 0, 133)\",\"(30, 0, 133)\",\"(30, 0, 134)\",\"(30, 0, 134)\",\"(30, 0, 135)\",\"(30, 0, 135)\",\"(30, 0, 136)\",\"(30, 0, 137)\",\"(30, 0, 137)\",\"(30, 0, 138)\",\"(30, 0, 139)\",\"(30, 0, 140)\",\"(30, 0, 140)\",\"(30, 0, 141)\",\"(30, 0, 141)\",\"(30, 0, 142)\",\"(30, 0, 142)\",\"(30, 0, 143)\",\"(30, 0, 143)\",\"(30, 0, 144)\",\"(30, 0, 145)\",\"(30, 0, 145)\",\"(30, 0, 146)\",\"(30, 0, 146)\",\"(30, 0, 147)\",\"(30, 0, 148)\",\"(30, 0, 148)\",\"(30, 0, 149)\",\"(30, 0, 149)\",\"(30, 0, 150)\",\"(30, 0, 150)\",\"(30, 0, 151)\",\"(30, 0, 151)\",\"(30, 0, 152)\",\"(30, 0, 152)\",\"(30, 0, 153)\",\"(30, 0, 153)\",\"(30, 0, 154)\",\"(30, 0, 154)\",\"(30, 0, 155)\",\"(30, 0, 155)\",\"(30, 0, 156)\",\"(30, 0, 156)\",\"(30, 0, 157)\",\"(30, 0, 157)\",\"(30, 0, 158)\",\"(30, 0, 158)\",\"(30, 0, 159)\",\"(30, 0, 159)\",\"(30, 0, 160)\",\"(30, 0, 161)\",\"(30, 0, 161)\",\"(30, 0, 162)\",\"(30, 0, 162)\",\"(30, 0, 163)\",\"(30, 0, 163)\",\"(30, 0, 164)\",\"(30, 0, 164)\",\"(30, 0, 164)\",\"(30, 0, 165)\",\"(30, 0, 165)\",\"(30, 0, 165)\",\"(30, 0, 166)\",\"(30, 0, 167)\",\"(30, 0, 167)\",\"(30, 0, 167)\",\"(30, 0, 168)\",\"(30, 0, 168)\",\"(30, 0, 168)\",\"(30, 0, 169)\",\"(30, 0, 169)\",\"(30, 0, 169)\",\"(30, 0, 170)\",\"(30, 0, 170)\",\"(30, 0, 170)\",\"(30, 0, 171)\",\"(30, 0, 171)\",\"(30, 0, 171)\",\"(30, 0, 172)\",\"(30, 0, 172)\",\"(30, 0, 172)\",\"(30, 0, 173)\",\"(30, 0, 173)\",\"(30, 0, 173)\",\"(30, 0, 174)\",\"(30, 0, 174)\",\"(30, 0, 174)\",\"(30, 0, 175)\",\"(30, 0, 175)\",\"(30, 0, 175)\",\"(30, 0, 176)\",\"(30, 0, 176)\",\"(30, 0, 176)\",\"(30, 0, 177)\",\"(30, 0, 177)\",\"(30, 0, 177)\",\"(30, 0, 178)\",\"(30, 0, 179)\",\"(30, 0, 180)\",\"(30, 0, 181)\",\"(30, 0, 182)\",\"(30, 0, 183)\",\"(30, 0, 184)\",\"(30, 0, 185)\",\"(30, 0, 186)\",\"(30, 0, 187)\",\"(30, 0, 188)\",\"(30, 0, 189)\",\"(30, 0, 190)\",\"(30, 0, 191)\",\"(30, 0, 192)\",\"(30, 0, 193)\",\"(30, 0, 194)\",\"(30, 0, 195)\",\"(30, 0, 196)\",\"(30, 0, 197)\",\"(30, 0, 198)\",\"(30, 0, 198)\",\"(30, 0, 198)\",\"(30, 0, 199)\",\"(30, 0, 200)\",\"(30, 0, 200)\",\"(30, 0, 200)\",\"(30, 0, 201)\",\"(30, 0, 201)\",\"(30, 0, 201)\",\"(30, 0, 202)\",\"(30, 0, 203)\",\"(30, 0, 203)\",\"(30, 0, 203)\",\"(30, 0, 203)\",\"(30, 0, 203)\",\"(30, 0, 204)\",\"(30, 0, 204)\",\"(30, 0, 204)\",\"(30, 0, 204)\",\"(30, 0, 204)\",\"(30, 0, 205)\",\"(30, 0, 206)\",\"(30, 0, 207)\",\"(30, 0, 207)\",\"(30, 0, 207)\",\"(30, 0, 207)\",\"(30, 0, 208)\",\"(30, 0, 208)\",\"(30, 0, 208)\",\"(30, 0, 208)\",\"(30, 0, 209)\",\"(30, 0, 210)\",\"(30, 0, 211)\",\"(30, 0, 212)\",\"(30, 0, 212)\",\"(30, 0, 213)\",\"(30, 0, 214)\",\"(30, 0, 215)\",\"(30, 0, 215)\",\"(30, 0, 216)\",\"(30, 0, 216)\",\"(30, 0, 217)\",\"(30, 0, 218)\",\"(30, 0, 218)\",\"(30, 0, 219)\",\"(30, 0, 219)\",\"(30, 0, 220)\",\"(30, 0, 220)\",\"(30, 0, 221)\",\"(30, 0, 221)\",\"(30, 0, 222)\",\"(30, 0, 222)\",\"(30, 0, 223)\",\"(30, 0, 223)\",\"(30, 0, 224)\",\"(30, 0, 224)\",\"(30, 0, 225)\",\"(30, 0, 225)\",\"(30, 0, 226)\",\"(30, 0, 226)\",\"(30, 0, 226)\",\"(30, 0, 226)\",\"(30, 0, 227)\",\"(30, 0, 227)\",\"(30, 0, 227)\",\"(30, 0, 227)\",\"(30, 0, 228)\",\"(30, 0, 228)\",\"(30, 0, 228)\",\"(30, 0, 228)\",\"(30, 0, 229)\",\"(30, 0, 229)\",\"(30, 0, 229)\",\"(30, 0, 229)\",\"(30, 0, 230)\",\"(30, 0, 230)\",\"(30, 0, 230)\",\"(30, 0, 231)\",\"(30, 0, 231)\",\"(30, 0, 231)\",\"(30, 0, 232)\",\"(30, 0, 232)\",\"(30, 0, 233)\",\"(30, 0, 234)\",\"(30, 0, 235)\",\"(30, 0, 236)\",\"(30, 0, 237)\",\"(30, 0, 238)\",\"(30, 0, 238)\",\"(30, 0, 239)\",\"(30, 0, 240)\",\"(30, 0, 241)\",\"(30, 0, 242)\",\"(31, 0, 0)\",\"(31, 0, 0)\",\"(31, 0, 0)\",\"(31, 0, 0)\",\"(31, 0, 0)\",\"(31, 0, 1)\",\"(31, 0, 2)\",\"(31, 0, 3)\",\"(31, 0, 4)\",\"(31, 0, 5)\",\"(31, 0, 6)\",\"(31, 0, 7)\",\"(31, 0, 8)\",\"(31, 0, 9)\",\"(31, 0, 10)\",\"(31, 0, 11)\",\"(31, 0, 12)\",\"(31, 0, 13)\",\"(31, 0, 14)\",\"(31, 0, 15)\",\"(31, 0, 16)\",\"(31, 0, 17)\",\"(31, 0, 18)\",\"(31, 0, 19)\",\"(31, 0, 20)\",\"(31, 0, 21)\",\"(31, 0, 22)\",\"(31, 0, 23)\",\"(31, 0, 24)\",\"(31, 0, 25)\",\"(31, 0, 26)\",\"(31, 0, 27)\",\"(31, 0, 28)\",\"(31, 0, 29)\",\"(31, 0, 30)\",\"(31, 0, 31)\",\"(31, 0, 32)\",\"(31, 0, 33)\",\"(31, 0, 34)\",\"(31, 0, 35)\",\"(31, 0, 36)\",\"(31, 0, 36)\",\"(31, 0, 37)\",\"(31, 0, 37)\",\"(31, 0, 38)\",\"(31, 0, 39)\",\"(31, 0, 39)\",\"(31, 0, 40)\",\"(31, 0, 41)\",\"(31, 0, 41)\",\"(31, 0, 42)\",\"(31, 0, 42)\",\"(31, 0, 43)\",\"(31, 0, 43)\",\"(31, 0, 44)\",\"(31, 0, 44)\",\"(31, 0, 45)\",\"(31, 0, 45)\",\"(31, 0, 46)\",\"(31, 0, 46)\",\"(31, 0, 47)\",\"(31, 0, 48)\",\"(31, 0, 48)\",\"(31, 0, 49)\",\"(31, 0, 49)\",\"(31, 0, 50)\",\"(31, 0, 51)\",\"(31, 0, 51)\",\"(31, 0, 52)\",\"(31, 0, 52)\",\"(31, 0, 53)\",\"(31, 0, 53)\",\"(31, 0, 54)\",\"(31, 0, 54)\",\"(31, 0, 55)\",\"(31, 0, 56)\",\"(31, 0, 56)\",\"(31, 0, 57)\",\"(31, 0, 57)\",\"(31, 0, 57)\",\"(31, 0, 57)\",\"(31, 0, 58)\",\"(31, 0, 59)\",\"(31, 0, 59)\",\"(31, 0, 59)\",\"(31, 0, 59)\",\"(31, 0, 60)\",\"(31, 0, 60)\",\"(31, 0, 60)\",\"(31, 0, 61)\",\"(31, 0, 61)\",\"(31, 0, 61)\",\"(31, 0, 62)\",\"(31, 0, 62)\",\"(31, 0, 62)\",\"(31, 0, 63)\",\"(31, 0, 64)\",\"(31, 0, 64)\",\"(31, 0, 64)\",\"(31, 0, 65)\",\"(31, 0, 66)\",\"(31, 0, 66)\",\"(31, 0, 66)\",\"(31, 0, 67)\",\"(31, 0, 67)\",\"(31, 0, 67)\",\"(31, 0, 68)\",\"(31, 0, 68)\",\"(31, 0, 69)\",\"(31, 0, 70)\",\"(31, 0, 71)\",\"(31, 0, 72)\",\"(31, 0, 73)\",\"(31, 0, 74)\",\"(31, 0, 75)\",\"(31, 0, 76)\",\"(31, 0, 77)\",\"(31, 0, 78)\",\"(31, 0, 79)\",\"(31, 0, 79)\",\"(31, 0, 80)\"],\"config_info\":[\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=False\",\"model_based_pick=True\",\"model_based_pick=True\",\"model_based_pick=True\"],\"duration\":[0.02735114097595215,0.029101133346557617,0.021887779235839844,0.02600860595703125,0.02417135238647461,0.0418696403503418,0.03232097625732422,0.03471565246582031,0.027209997177124023,0.01741814613342285,0.02731490135192871,0.02731490135192871,0.02731490135192871,0.02731490135192871,0.021733760833740234,0.03848743438720703,0.03444719314575195,0.027320384979248047,0.0335078239440918,0.047091007232666016,0.041289567947387695,0.036466121673583984,0.02857518196105957,0.02842402458190918,0.040688514709472656,0.02433943748474121,0.037073373794555664,0.029100418090820312,0.02924799919128418,0.028024673461914062,0.024789810180664062,0.03141665458679199,0.029238224029541016,0.05010724067687988,0.02811741828918457,0.05246448516845703,0.03863191604614258,0.0288546085357666,0.0288546085357666,0.0288546085357666,0.0288546085357666,0.014179706573486328,0.026204586029052734,0.030404090881347656,0.03260469436645508,0.02130436897277832,0.026648521423339844,0.027103424072265625,0.019925355911254883,0.019120216369628906,0.028751611709594727,0.023546457290649414,0.0166623592376709,0.019289255142211914,0.015014886856079102,0.02306342124938965,0.015514373779296875,0.023374319076538086,0.02396988868713379,0.03274798393249512,0.023764371871948242,0.02348017692565918,0.02829599380493164,0.014193058013916016,0.024212360382080078,0.02564835548400879,0.015232086181640625,0.040228843688964844,0.022456645965576172,0.023456811904907227,0.015063285827636719,0.03301239013671875,0.03165626525878906,0.02762436866760254,0.03207588195800781,0.038805484771728516,0.042748451232910156,0.026046037673950195,0.026832103729248047,0.026651382446289062,0.03902864456176758,0.0351862907409668,0.015130043029785156,0.03213047981262207,0.025720596313476562,0.02277684211730957,0.03285551071166992,0.03756260871887207,0.025728464126586914,0.038825035095214844,0.044664621353149414,0.030246734619140625,0.019878625869750977,0.04718637466430664,0.034960269927978516,0.02283024787902832,0.015224933624267578,0.04385209083557129,0.0402989387512207,0.026955366134643555,0.025162458419799805,0.025162458419799805,0.025162458419799805,0.025162458419799805,0.025162458419799805,0.04158139228820801,0.03900718688964844,0.03900718688964844,0.018368244171142578,0.020905017852783203,0.01873183250427246,0.029836654663085938,0.027221202850341797,0.042549848556518555,0.039551496505737305,0.047496795654296875,0.047496795654296875,0.03447222709655762,0.0264737606048584,0.0264737606048584,0.0264737606048584,0.0264737606048584,0.04255175590515137,0.04255175590515137,0.02819085121154785,0.034078359603881836,0.027848482131958008,0.03702402114868164,0.03702402114868164,0.02734851837158203,0.03330349922180176,0.03753781318664551,0.024662256240844727,0.02666306495666504,0.035758256912231445,0.03707766532897949,0.03281211853027344,0.03281211853027344,0.0386807918548584,0.0386807918548584,0.03709673881530762,0.03709673881530762,0.029095172882080078,0.04410123825073242,0.04410123825073242,0.03471851348876953,0.03471851348876953,0.02464580535888672,0.040367841720581055,0.040367841720581055,0.02172231674194336,0.03255462646484375,0.03139042854309082,0.04560589790344238,0.04560589790344238,0.029748916625976562,0.03916525840759277,0.03916525840759277,0.026894330978393555,0.031464576721191406,0.031464576721191406,0.022194385528564453,0.022194385528564453,0.03068375587463379,0.023792028427124023,0.023792028427124023,0.021226167678833008,0.021226167678833008,0.03260040283203125,0.022830963134765625,0.022830963134765625,0.03189277648925781,0.02899479866027832,0.02899479866027832,0.04011130332946777,0.04011130332946777,0.04745078086853027,0.04745078086853027,0.02950143814086914,0.02950143814086914,0.0397341251373291,0.0397341251373291,0.03356766700744629,0.03874802589416504,0.03874802589416504,0.023839950561523438,0.03934311866760254,0.03934311866760254,0.037786006927490234,0.037786006927490234,0.025887012481689453,0.025887012481689453,0.025651216506958008,0.025651216506958008,0.01645660400390625,0.01793646812438965,0.03348422050476074,0.03348422050476074,0.04345202445983887,0.02641010284423828,0.021341562271118164,0.03527116775512695,0.03527116775512695,0.030626535415649414,0.030626535415649414,0.018996238708496094,0.034600257873535156,0.034600257873535156,0.029514789581298828,0.029514789581298828,0.02947545051574707,0.02947545051574707,0.020025968551635742,0.02446770668029785,0.02545022964477539,0.02545022964477539,0.02696371078491211,0.02696371078491211,0.032222747802734375,0.032222747802734375,0.032222747802734375,0.0326235294342041,0.0326235294342041,0.02967214584350586,0.03724956512451172,0.0341646671295166,0.03202104568481445,0.03202104568481445,0.03202104568481445,0.03202104568481445,0.035021066665649414,0.035021066665649414,0.035021066665649414,0.020435333251953125,0.029893159866333008,0.029893159866333008,0.029893159866333008,0.02185678482055664,0.026419878005981445,0.028783321380615234,0.028783321380615234,0.028783321380615234,0.015402555465698242,0.015402555465698242,0.015402555465698242,0.035537004470825195,0.035537004470825195,0.035537004470825195,0.020337343215942383,0.03231406211853027,0.03231406211853027,0.03231406211853027,0.03231406211853027,0.04243946075439453,0.04243946075439453,0.04243946075439453,0.030641794204711914,0.030641794204711914,0.030641794204711914,0.030641794204711914,0.030641794204711914,0.02218008041381836,0.02218008041381836,0.02218008041381836,0.029880523681640625,0.021550416946411133,0.021550416946411133,0.01880931854248047,0.019987821578979492,0.04154515266418457,0.04154515266418457,0.04154515266418457,0.028805017471313477,0.028805017471313477,0.028805017471313477,0.02722454071044922,0.02722454071044922,0.02722454071044922,0.03020000457763672,0.03020000457763672,0.03020000457763672,0.03227972984313965,0.02202439308166504,0.02202439308166504,0.0245819091796875,0.028944730758666992,0.028944730758666992,0.028944730758666992,0.02869725227355957,0.02869725227355957,0.02869725227355957,0.02869725227355957,0.02869725227355957,0.02869725227355957,0.03419089317321777,0.03419089317321777,0.03419089317321777,0.024150848388671875,0.024150848388671875,0.024150848388671875,0.03637218475341797,0.03637218475341797,0.03637218475341797,0.034772396087646484,0.02985858917236328,0.017345428466796875,0.017345428466796875,0.030390501022338867,0.030390501022338867,0.030390501022338867,0.030390501022338867,0.03328561782836914,0.03328561782836914,0.03328561782836914,0.026669740676879883,0.026669740676879883,0.031246662139892578,0.037663936614990234,0.05161476135253906,0.027016162872314453,0.027016162872314453,0.041838884353637695,0.03681230545043945,0.02277684211730957,0.02277684211730957,0.019690513610839844,0.019690513610839844,0.02445697784423828,0.02445697784423828,0.017416715621948242,0.02774190902709961,0.02774190902709961,0.026752233505249023,0.026752233505249023,0.019785642623901367,0.019785642623901367,0.030884981155395508,0.03569650650024414,0.03455853462219238,0.03455853462219238,0.03509068489074707,0.03509068489074707,0.018647193908691406,0.018126726150512695,0.018816709518432617,0.019918203353881836,0.03822803497314453,0.03822803497314453,0.018502235412597656,0.030328989028930664,0.030328989028930664,0.030911684036254883,0.030911684036254883,0.03026556968688965,0.03026556968688965,0.03510713577270508,0.03510713577270508,0.03510713577270508,0.032842159271240234,0.032842159271240234,0.04208183288574219,0.021233081817626953,0.027344942092895508,0.03479433059692383,0.03925633430480957,0.01859307289123535,0.01859307289123535,0.02883005142211914,0.033977508544921875,0.019930124282836914,0.02517557144165039,0.022149324417114258,0.022149324417114258,0.022149324417114258,0.022149324417114258,0.022149324417114258,0.0324399471282959,0.02393174171447754,0.022522687911987305,0.027875423431396484,0.032100677490234375,0.015688419342041016,0.015688419342041016,0.017372846603393555,0.0265042781829834,0.01894092559814453,0.01611471176147461,0.01611471176147461,0.01611471176147461,0.01611471176147461,0.0266721248626709,0.02400994300842285,0.02400994300842285,0.02400994300842285,0.02400994300842285,0.019809246063232422,0.018311262130737305,0.020603656768798828,0.02313518524169922,0.02313518524169922,0.02313518524169922,0.04396462440490723,0.022016286849975586,0.022016286849975586,0.022016286849975586,0.04408884048461914,0.04975390434265137,0.039629459381103516,0.03276944160461426,0.03577899932861328,0.025621652603149414,0.025621652603149414,0.025621652603149414,0.02086663246154785,0.02086663246154785,0.02086663246154785,0.02811598777770996,0.03237128257751465,0.01817178726196289,0.01817178726196289,0.018405675888061523,0.018405675888061523,0.018512725830078125,0.018512725830078125,0.01737070083618164,0.01737070083618164,0.02516627311706543,0.01896953582763672,0.024820566177368164,0.024820566177368164,0.024820566177368164,0.02439713478088379,0.02439713478088379,0.02439713478088379,0.022106170654296875,0.019176006317138672,0.030165672302246094,0.030165672302246094,0.01588153839111328,0.031039953231811523,0.031039953231811523,0.018576860427856445,0.02125239372253418,0.02125239372253418,0.027164220809936523,0.017034292221069336,0.02456212043762207,0.02456212043762207,0.02748847007751465,0.05058884620666504,0.03278183937072754,0.027693986892700195,0.037703514099121094,0.023279666900634766,0.023279666900634766,0.03955507278442383,0.020181655883789062,0.022360563278198242,0.019997119903564453,0.017863988876342773,0.017863988876342773,0.017215490341186523,0.017215490341186523,0.025648832321166992,0.025648832321166992,0.01866769790649414,0.01930832862854004,0.018282413482666016,0.022238492965698242,0.022238492965698242,0.018418073654174805,0.018418073654174805,0.02044367790222168,0.02044367790222168,0.018083810806274414,0.016635656356811523,0.0165557861328125,0.0190274715423584,0.01567530632019043,0.023943662643432617,0.022745132446289062,0.016513824462890625,0.016513824462890625,0.017644643783569336,0.022522449493408203,0.029273033142089844,0.029273033142089844,0.029273033142089844,0.029273033142089844,0.020690202713012695,0.023892641067504883,0.02441692352294922,0.024623870849609375,0.019978046417236328,0.02145671844482422,0.016685009002685547,0.0229036808013916,0.025432586669921875,0.022723913192749023,0.022723913192749023,0.022723913192749023,0.03939700126647949,0.03939700126647949,0.03939700126647949,0.019677400588989258,0.027825593948364258,0.024691104888916016,0.024691104888916016,0.01721048355102539,0.021506071090698242,0.021506071090698242,0.018377065658569336,0.024354219436645508,0.02164006233215332,0.020668745040893555,0.022733688354492188,0.022733688354492188,0.02194666862487793,0.02194666862487793,0.0175783634185791,0.0175783634185791,0.016345977783203125,0.017357826232910156,0.017357826232910156,0.020633935928344727,0.03188753128051758,0.03901863098144531,0.027473926544189453,0.023226261138916016,0.020551681518554688,0.01723003387451172,0.020823240280151367,0.0358881950378418,0.0358881950378418,0.0358881950378418,0.022576093673706055,0.022576093673706055,0.022576093673706055,0.02470684051513672,0.02470684051513672,0.024272680282592773,0.024272680282592773,0.01692342758178711,0.01692342758178711,0.019644498825073242,0.02627396583557129,0.027713775634765625,0.027713775634765625,0.027454376220703125,0.02938556671142578,0.02264118194580078,0.018833637237548828,0.018833637237548828,0.026922941207885742,0.026922941207885742,0.02347874641418457,0.02347874641418457,0.034998416900634766,0.01858210563659668,0.01767134666442871,0.02277064323425293,0.017473220825195312,0.01914501190185547,0.022341012954711914,0.03073573112487793,0.021216392517089844,0.017275333404541016,0.03216671943664551,0.015577554702758789,0.020790576934814453,0.020790576934814453,0.020790576934814453,0.017440319061279297,0.026607036590576172,0.026607036590576172,0.027042627334594727,0.029856443405151367,0.029856443405151367,0.03948163986206055,0.03948163986206055,0.017377138137817383,0.017720699310302734,0.01481938362121582,0.017726659774780273,0.01551055908203125,0.021114587783813477,0.018133878707885742,0.02440667152404785,0.02798295021057129,0.02798295021057129,0.01536870002746582,0.023583412170410156,0.023583412170410156,0.017967939376831055,0.017967939376831055,0.026604413986206055,0.026604413986206055,0.018197298049926758,0.034993648529052734,0.034993648529052734,0.017812728881835938,0.015740633010864258,0.022437095642089844,0.019031524658203125,0.022388696670532227,0.016832590103149414,0.015965938568115234,0.01875782012939453,0.01875782012939453,0.02646470069885254,0.02646470069885254,0.028116226196289062,0.028116226196289062,0.026278257369995117,0.026278257369995117,0.024077653884887695,0.017386436462402344,0.02696681022644043,0.0228116512298584,0.019743680953979492,0.019743680953979492,0.014307022094726562,0.02128124237060547,0.025058984756469727,0.025058984756469727,0.022184371948242188,0.024252891540527344,0.024161815643310547,0.020969867706298828,0.020012855529785156,0.028942346572875977,0.028942346572875977,0.030076265335083008,0.030076265335083008,0.022370576858520508,0.017960071563720703,0.020985841751098633,0.020985841751098633,0.02550053596496582,0.021805524826049805,0.021805524826049805,0.017962932586669922,0.02846503257751465,0.022942543029785156,0.02166914939880371,0.02033710479736328,0.016515731811523438,0.01688361167907715,0.014084339141845703,0.023427963256835938,0.021463394165039062,0.021463394165039062,0.02536630630493164,0.02536630630493164,0.01705169677734375,0.01810431480407715,0.02542877197265625,0.02542877197265625,0.018871068954467773,0.02333831787109375,0.02333831787109375,0.0322418212890625,0.0322418212890625,0.026192188262939453,0.02013111114501953,0.026302099227905273,0.02799201011657715,0.016666889190673828,0.022910118103027344,0.01580190658569336,0.019583702087402344,0.028796672821044922,0.028796672821044922,0.021488428115844727,0.016794919967651367,0.026904821395874023,0.026904821395874023,0.021892547607421875,0.0258028507232666,0.0258028507232666,0.0234529972076416,0.0234529972076416,0.01981353759765625,0.015238761901855469,0.021451950073242188,0.023960590362548828,0.02369523048400879,0.01688551902770996,0.01688551902770996,0.02323436737060547,0.020961999893188477,0.020278453826904297,0.023222923278808594,0.019758224487304688,0.019467830657958984,0.023799419403076172,0.026015043258666992,0.024966716766357422,0.03194284439086914,0.03194284439086914,0.018357515335083008,0.018357515335083008,0.01809549331665039,0.01809549331665039,0.030199289321899414,0.030199289321899414,0.028767108917236328,0.02626204490661621,0.028003692626953125,0.028003692626953125,0.027060270309448242,0.01998424530029297,0.01998424530029297,0.029226064682006836,0.02494192123413086,0.02494192123413086,0.020838022232055664,0.024605751037597656,0.024605751037597656,0.03432965278625488,0.027199745178222656,0.027199745178222656,0.022513389587402344,0.022513389587402344,0.03236818313598633,0.03236818313598633,0.031771183013916016,0.031771183013916016,0.017598390579223633,0.02425074577331543,0.026734590530395508,0.025254011154174805,0.023276567459106445,0.02306199073791504,0.026500940322875977,0.024139404296875,0.02178788185119629,0.017578125,0.017578125,0.017578125,0.017578125,0.017578125,0.017578125,0.018469572067260742,0.034987688064575195,0.034987688064575195,0.034987688064575195,0.017268896102905273,0.018595457077026367,0.018424034118652344,0.016636371612548828,0.016636371612548828,0.02601790428161621,0.01714324951171875,0.020092248916625977,0.020092248916625977,0.020092248916625977,0.020092248916625977,0.020092248916625977,0.031139612197875977,0.031139612197875977,0.031139612197875977,0.02080392837524414,0.02080392837524414,0.02080392837524414,0.02080392837524414,0.02080392837524414,0.016440391540527344,0.016440391540527344,0.016440391540527344,0.016440391540527344,0.01779484748840332,0.01779484748840332,0.01779484748840332,0.01779484748840332,0.015451669692993164,0.015451669692993164,0.015451669692993164,0.018997907638549805,0.021257400512695312,0.025732040405273438,0.019612550735473633,0.019612550735473633,0.019612550735473633,0.019612550735473633,0.02513885498046875,0.017540693283081055,0.017540693283081055,0.017540693283081055,0.02435159683227539,0.016542911529541016,0.0159912109375,0.0159912109375,0.0159912109375,0.01954960823059082,0.01954960823059082,0.01954960823059082,0.01954960823059082,0.03359341621398926,0.03359341621398926,0.03359341621398926,0.028116226196289062,0.026623249053955078,0.01734018325805664,0.01734018325805664,0.01734018325805664,0.01734018325805664,0.03312540054321289,0.033571481704711914,0.033571481704711914,0.033571481704711914,0.01853156089782715,0.01853156089782715,0.01853156089782715,0.01853156089782715,0.01687312126159668,0.02044510841369629,0.022864580154418945,0.022864580154418945,0.022864580154418945,0.025643587112426758,0.025643587112426758,0.025643587112426758,0.02704620361328125,0.02336859703063965,0.02336859703063965,0.024532079696655273,0.018543243408203125,0.02944803237915039,0.02251911163330078,0.022672414779663086,0.022672414779663086,0.023410558700561523,0.023410558700561523,0.023410558700561523,0.026488065719604492,0.02337193489074707,0.026302099227905273,0.026302099227905273,0.01745295524597168,0.025136470794677734,0.01992654800415039,0.0286712646484375,0.0286712646484375,0.023049354553222656,0.02350902557373047,0.0229184627532959,0.026454448699951172,0.018735408782958984,0.018735408782958984,0.0226285457611084,0.02701282501220703,0.02027440071105957,0.02807164192199707,0.02134418487548828,0.02134418487548828,0.024804353713989258,0.02675628662109375,0.021882295608520508,0.027388572692871094,0.023424863815307617,0.02127861976623535,0.019027233123779297,0.022342920303344727,0.02252936363220215,0.018239259719848633,0.022921085357666016,0.02404642105102539,0.022521495819091797,0.024931669235229492,0.017004013061523438,0.017004013061523438,0.02144479751586914,0.025708913803100586,0.025708913803100586,0.02036428451538086,0.0267484188079834,0.03063821792602539,0.02052783966064453,0.030414581298828125,0.02430558204650879,0.017992258071899414,0.017892837524414062,0.026143550872802734,0.026143550872802734,0.0401608943939209,0.022595643997192383,0.033284902572631836,0.033284902572631836,0.02590036392211914,0.018216848373413086,0.018216848373413086,0.017748117446899414,0.017748117446899414,0.022438764572143555,0.022937774658203125,0.027555227279663086,0.027555227279663086,0.027555227279663086,0.030530691146850586,0.023814916610717773,0.03307342529296875,0.03307342529296875,0.03307342529296875,0.02503228187561035,0.023685455322265625,0.023215293884277344,0.025460004806518555,0.025460004806518555,0.025460004806518555,0.024276256561279297,0.02420806884765625,0.019342899322509766,0.019342899322509766,0.019342899322509766,0.021857023239135742,0.022649288177490234,0.022649288177490234,0.022649288177490234,0.025787353515625,0.01749396324157715,0.01749396324157715,0.01749396324157715,0.024245262145996094,0.023658037185668945,0.026043415069580078,0.026043415069580078,0.026043415069580078,0.02298569679260254,0.027052640914916992,0.027052640914916992,0.01910233497619629,0.02639150619506836,0.027508258819580078,0.027508258819580078,0.027508258819580078,0.027508258819580078,0.027508258819580078,0.024658918380737305,0.02739739418029785,0.048993587493896484,0.025945663452148438,0.027922868728637695,0.027922868728637695,0.02565479278564453,0.02565479278564453,0.025341510772705078,0.026768922805786133,0.02842116355895996,0.0289309024810791,0.03103351593017578,0.025472640991210938,0.019917011260986328,0.02374410629272461,0.024492502212524414,0.02294921875,0.023379087448120117,0.0245819091796875,0.029661893844604492,0.029661893844604492,0.019307613372802734,0.019307613372802734,0.030498981475830078,0.0280609130859375,0.0231173038482666,0.0231173038482666,0.02866506576538086,0.020535707473754883,0.020535707473754883,0.02734231948852539,0.03428816795349121,0.024323463439941406,0.029379606246948242,0.018488168716430664,0.017285823822021484,0.03044915199279785,0.027414321899414062,0.027414321899414062,0.017456769943237305,0.017456769943237305,0.028992891311645508,0.02370762825012207,0.02370762825012207,0.028882265090942383,0.023701190948486328,0.019358158111572266,0.019104719161987305,0.021254539489746094,0.02646636962890625,0.02646636962890625,0.021142005920410156,0.015994548797607422,0.017739057540893555,0.017739057540893555,0.02126288414001465,0.025194644927978516,0.017937421798706055,0.017937421798706055,0.016637802124023438,0.01693129539489746,0.01693129539489746,0.020089149475097656,0.02543783187866211,0.02543783187866211,0.02543783187866211,0.02543783187866211,0.031452178955078125,0.031452178955078125,0.031452178955078125,0.031452178955078125,0.021063566207885742,0.027322769165039062,0.027322769165039062,0.027322769165039062,0.018292903900146484,0.017330646514892578,0.02018594741821289,0.02018594741821289,0.02018594741821289,0.025732040405273438,0.025732040405273438,0.02688765525817871,0.02688765525817871,0.02428412437438965,0.017416954040527344,0.029085636138916016,0.02622675895690918,0.02622675895690918,0.02622675895690918,0.026095867156982422,0.02685260772705078,0.02685260772705078,0.02685260772705078,0.021605253219604492,0.021605253219604492,0.018626689910888672,0.018626689910888672,0.018626689910888672,0.019601821899414062,0.026568889617919922,0.022668838500976562,0.022668838500976562,0.022668838500976562,0.026957035064697266,0.02304244041442871,0.014774084091186523,0.022001981735229492,0.023659229278564453,0.025762081146240234,0.025762081146240234,0.017171859741210938,0.021976709365844727,0.028408288955688477,0.028408288955688477,0.02154684066772461,0.02154684066772461,0.02154684066772461,0.02154684066772461,0.020635128021240234,0.01597452163696289,0.016434192657470703,0.025430917739868164,0.022977828979492188,0.024424076080322266,0.017195940017700195,0.022596120834350586,0.026175737380981445,0.022232770919799805,0.022232770919799805,0.022232770919799805,0.01688385009765625,0.016141653060913086,0.01815342903137207,0.01815342903137207,0.01815342903137207,0.024145126342773438,0.024145126342773438,0.02010965347290039,0.02010965347290039,0.026872634887695312,0.026872634887695312,0.01582479476928711,0.022215843200683594,0.015216350555419922,0.01662158966064453,0.019002199172973633,0.019002199172973633,0.026436805725097656,0.021315336227416992,0.023625850677490234,0.023625850677490234,0.019572734832763672,0.02291703224182129,0.02291703224182129,0.02189159393310547,0.02189159393310547,0.02189159393310547,0.028673648834228516,0.028673648834228516,0.02127861976623535,0.019854307174682617,0.017621517181396484,0.015600442886352539,0.014276742935180664,0.017798423767089844,0.015910625457763672,0.014656305313110352,0.03737664222717285,0.03737664222717285,0.030590534210205078,0.030590534210205078,0.030590534210205078,0.025536537170410156,0.025536537170410156,0.014966964721679688,0.01554107666015625,0.01735401153564453,0.025435209274291992,0.025435209274291992,0.01747441291809082,0.024329423904418945,0.024329423904418945,0.019097089767456055,0.016383886337280273,0.0212247371673584,0.017528057098388672,0.017528057098388672,0.030638933181762695,0.021781206130981445,0.021781206130981445,0.018054962158203125,0.02244853973388672,0.021509885787963867,0.01743936538696289,0.018316984176635742,0.015583992004394531,0.017818212509155273,0.019186735153198242,0.0173642635345459,0.02506875991821289,0.019557714462280273,0.02321457862854004,0.01571178436279297,0.02625560760498047,0.015449285507202148,0.02550506591796875,0.01869940757751465,0.020175695419311523,0.01951909065246582,0.02359914779663086,0.02971172332763672,0.018091201782226562,0.01964879035949707,0.016158103942871094,0.022784709930419922,0.021625280380249023,0.02003955841064453,0.018013954162597656,0.02294135093688965,0.020755529403686523,0.02520751953125,0.0205996036529541,0.014844417572021484,0.022555112838745117,0.022481918334960938,0.016704797744750977,0.024587392807006836,0.022463321685791016,0.024016857147216797,0.024416685104370117,0.02082657814025879,0.02761530876159668,0.018058300018310547,0.020025014877319336,0.025068044662475586,0.02693629264831543,0.018433094024658203,0.024773836135864258,0.02278447151184082,0.02596569061279297,0.022603988647460938,0.02560734748840332,0.021263599395751953,0.03054976463317871,0.02054905891418457,0.0243985652923584,0.02688288688659668,0.023233652114868164,0.022669315338134766,0.02056574821472168,0.019353389739990234,0.017958402633666992,0.020499706268310547,0.021088600158691406,0.02260136604309082,0.025757551193237305,0.01914215087890625,0.019009113311767578,0.017818689346313477,0.019048690795898438,0.024042844772338867,0.02414870262145996,0.0242002010345459,0.015920400619506836,0.027254104614257812,0.026774883270263672,0.027805805206298828,0.02661609649658203,0.024121999740600586,0.030407190322875977,0.02747201919555664,0.026189804077148438,0.023810148239135742,0.017854690551757812,0.026125431060791016,0.023274660110473633,0.02351689338684082,0.025341033935546875,0.023834943771362305,0.022971391677856445,0.02086639404296875,0.02231764793395996,0.025132417678833008,0.0180509090423584,0.0180509090423584,0.0180509090423584,0.0180509090423584,0.0180509090423584,0.0180509090423584,0.026133060455322266,0.025336265563964844,0.025336265563964844,0.02317953109741211,0.023781776428222656,0.024480342864990234,0.024480342864990234,0.027149200439453125,0.027149200439453125,0.020842313766479492,0.02319788932800293,0.02364969253540039,0.02938532829284668,0.02938532829284668,0.02557229995727539,0.023981809616088867,0.023981809616088867,0.026363372802734375,0.026363372802734375,0.02841663360595703,0.02841663360595703,0.02514958381652832,0.02514958381652832,0.02290201187133789,0.02290201187133789,0.02533435821533203,0.027189254760742188,0.02234959602355957,0.019412994384765625,0.028726816177368164,0.028726816177368164,0.016132593154907227,0.027234554290771484,0.027234554290771484,0.0250394344329834,0.0250394344329834,0.02721858024597168,0.02721858024597168,0.022001266479492188,0.022001266479492188,0.0170896053314209,0.017525911331176758,0.029196500778198242,0.029196500778198242,0.025995969772338867,0.029124021530151367,0.02372455596923828,0.02372455596923828,0.024669885635375977,0.01748514175415039,0.01748514175415039,0.017069101333618164,0.01804947853088379,0.022423744201660156,0.022423744201660156,0.028464317321777344,0.01734447479248047,0.024071216583251953,0.024071216583251953,0.017705917358398438,0.024447202682495117,0.024447202682495117,0.02658390998840332,0.024529218673706055,0.02267932891845703,0.02267932891845703,0.01394200325012207,0.01394200325012207,0.02120065689086914,0.02120065689086914,0.01967930793762207,0.02464604377746582,0.02464604377746582,0.02480340003967285,0.02480340003967285,0.025257110595703125,0.025257110595703125,0.0281221866607666,0.023342132568359375,0.023342132568359375,0.024308204650878906,0.024308204650878906,0.015609264373779297,0.017101287841796875,0.0229794979095459,0.0229794979095459,0.024147987365722656,0.022928476333618164,0.022185802459716797,0.023679018020629883,0.023679018020629883,0.022675275802612305,0.022675275802612305,0.02233147621154785,0.02233147621154785,0.023241281509399414,0.023241281509399414,0.017398357391357422,0.02228689193725586,0.02228689193725586,0.020622730255126953,0.020622730255126953,0.026070356369018555,0.022216320037841797,0.022216320037841797,0.025008678436279297,0.025008678436279297,0.02028679847717285,0.030657529830932617,0.027451038360595703,0.02911520004272461,0.023412227630615234,0.02341604232788086,0.02341604232788086,0.028778791427612305,0.028778791427612305,0.02396249771118164,0.02396249771118164,0.027853727340698242,0.024568557739257812,0.024568557739257812,0.0274507999420166,0.0274507999420166,0.0274507999420166,0.02596306800842285,0.02596306800842285,0.02596306800842285,0.02349996566772461,0.029001712799072266,0.029001712799072266,0.029001712799072266,0.024025440216064453,0.028193950653076172,0.022568225860595703,0.022568225860595703,0.022568225860595703,0.02471923828125,0.02471923828125,0.02471923828125,0.026895999908447266,0.026895999908447266,0.026895999908447266,0.03789162635803223,0.03789162635803223,0.03789162635803223,0.03069782257080078,0.03069782257080078,0.03069782257080078,0.022756099700927734,0.022756099700927734,0.022756099700927734,0.027333498001098633,0.027333498001098633,0.027333498001098633,0.026089191436767578,0.026089191436767578,0.026089191436767578,0.024554014205932617,0.022798776626586914,0.024778127670288086,0.025144100189208984,0.029070377349853516,0.029070377349853516,0.029070377349853516,0.02846837043762207,0.04378032684326172,0.04378032684326172,0.04378032684326172,0.03422880172729492,0.03422880172729492,0.03422880172729492,0.024156808853149414,0.024156808853149414,0.024156808853149414,0.01669001579284668,0.01669001579284668,0.01669001579284668,0.016304492950439453,0.016304492950439453,0.016304492950439453,0.016304492950439453,0.016304492950439453,0.029105186462402344,0.0204923152923584,0.023257732391357422,0.024559736251831055,0.017058372497558594,0.017058372497558594,0.017058372497558594,0.017058372497558594,0.017058372497558594,0.02677297592163086,0.02677297592163086,0.02677297592163086,0.02677297592163086,0.03212594985961914,0.03212594985961914,0.03212594985961914,0.03212594985961914,0.022461891174316406,0.03592944145202637,0.03592944145202637,0.024138450622558594,0.024138450622558594,0.018304824829101562,0.023591995239257812,0.016793251037597656,0.022198200225830078,0.022198200225830078,0.024227142333984375,0.024227142333984375,0.025611400604248047,0.025611400604248047,0.016768932342529297,0.016768932342529297,0.018266677856445312,0.018266677856445312,0.019246339797973633,0.021677732467651367,0.01902937889099121,0.01902937889099121,0.019642114639282227,0.019642114639282227,0.01697397232055664,0.01697397232055664,0.016768217086791992,0.016768217086791992,0.025690078735351562,0.025690078735351562,0.025690078735351562,0.025690078735351562,0.02135467529296875,0.02135467529296875,0.02135467529296875,0.02135467529296875,0.01849055290222168,0.021327972412109375,0.021327972412109375,0.021327972412109375,0.021327972412109375,0.0342707633972168,0.0342707633972168,0.0342707633972168,0.0342707633972168,0.018670082092285156,0.017930984497070312,0.017930984497070312,0.017930984497070312,0.018352985382080078,0.018352985382080078,0.018352985382080078,0.02100968360900879,0.017724990844726562,0.017724990844726562,0.017024517059326172,0.017863988876342773,0.016433000564575195,0.02575540542602539,0.02557063102722168,0.01974940299987793,0.024545669555664062,0.02374410629272461,0.019433975219726562,0.022094011306762695,0.02511429786682129,0.030173063278198242,0.03034210205078125,0.029178857803344727,0.024160385131835938,0.020793437957763672,0.024432897567749023,0.017360925674438477,0.017360925674438477,0.018310070037841797,0.020380258560180664,0.01693129539489746,0.01691913604736328,0.018228769302368164,0.016048669815063477,0.01969170570373535,0.025644302368164062,0.03182053565979004,0.0223543643951416,0.018090248107910156,0.024335861206054688,0.01807999610900879,0.022161245346069336,0.026070117950439453,0.028382539749145508,0.02428436279296875,0.025905847549438477,0.018431901931762695,0.02347087860107422,0.022749900817871094,0.026133060455322266,0.03109145164489746,0.03363466262817383,0.025621891021728516,0.025079011917114258,0.02768087387084961,0.01720571517944336,0.02442312240600586,0.02089095115661621,0.0171053409576416,0.024358749389648438,0.01821422576904297,0.02029132843017578,0.027266740798950195,0.02833843231201172,0.02833843231201172,0.02833843231201172,0.02833843231201172,0.02833843231201172,0.01741337776184082,0.01741337776184082,0.01689457893371582,0.01783466339111328,0.01708221435546875,0.01708221435546875,0.01833963394165039,0.01833963394165039,0.018627166748046875,0.018627166748046875,0.0179598331451416,0.0179598331451416,0.02389216423034668,0.023221254348754883,0.02317070960998535,0.018686532974243164,0.018686532974243164,0.017233848571777344,0.017233848571777344,0.02423715591430664,0.02423715591430664,0.03254532814025879,0.03254532814025879,0.023526906967163086,0.025389432907104492,0.025389432907104492,0.036171674728393555,0.036171674728393555,0.028472185134887695,0.028472185134887695,0.030691862106323242,0.030691862106323242,0.03367137908935547,0.03367137908935547,0.028166770935058594,0.028166770935058594,0.01815509796142578,0.022999286651611328,0.022999286651611328,0.02427840232849121,0.02427840232849121,0.02427840232849121,0.02427840232849121,0.023169755935668945,0.02795100212097168,0.02795100212097168,0.02795100212097168,0.02795100212097168,0.025444746017456055,0.025444746017456055,0.025444746017456055,0.022505521774291992,0.026118755340576172,0.02319788932800293,0.02319788932800293,0.02319788932800293,0.018815279006958008,0.017927169799804688,0.023277997970581055,0.023277997970581055,0.023277997970581055,0.022010326385498047,0.022010326385498047,0.022010326385498047,0.029221534729003906,0.029221534729003906,0.029221534729003906,0.02364349365234375,0.02474188804626465,0.02474188804626465,0.02474188804626465,0.025318384170532227,0.023741960525512695,0.023741960525512695,0.02632427215576172,0.025290250778198242,0.024093151092529297,0.02149510383605957,0.024456024169921875,0.024456024169921875,0.025265216827392578,0.022486448287963867,0.02200484275817871,0.021877527236938477,0.016899824142456055,0.023787498474121094,0.019624948501586914,0.014704704284667969,0.016845703125,0.017941713333129883,0.014827489852905273,0.0179443359375,0.02250981330871582,0.019384145736694336,0.019384145736694336,0.019384145736694336,0.01803874969482422,0.01803874969482422,0.01803874969482422,0.01803874969482422,0.017737388610839844,0.018105030059814453,0.019752025604248047,0.019752025604248047,0.019752025604248047,0.017774343490600586,0.017774343490600586,0.031259775161743164,0.015878677368164062,0.015878677368164062,0.019461631774902344,0.017538785934448242,0.017538785934448242,0.018035173416137695,0.018035173416137695,0.019352436065673828,0.019352436065673828,0.01918196678161621,0.01918196678161621,0.02037644386291504,0.018234729766845703,0.017804622650146484,0.023566246032714844,0.023566246032714844,0.023566246032714844,0.016291141510009766,0.016291141510009766,0.016291141510009766,0.027074098587036133,0.027074098587036133,0.028789281845092773,0.028789281845092773,0.029782772064208984,0.02401590347290039,0.02401590347290039,0.03268599510192871,0.02940082550048828,0.0276033878326416,0.02493453025817871,0.023666858673095703,0.02596759796142578,0.020435810089111328,0.0211639404296875,0.01676344871520996,0.026127099990844727,0.026127099990844727,0.02327418327331543,0.01811504364013672,0.01811504364013672,0.016449928283691406,0.019356966018676758,0.019356966018676758,0.024754762649536133,0.024754762649536133,0.019475221633911133,0.017737150192260742,0.018174409866333008,0.01834559440612793,0.015040874481201172,0.016343116760253906,0.01832866668701172,0.015455484390258789,0.016170024871826172,0.016133785247802734,0.02196955680847168,0.037203073501586914,0.037203073501586914,0.037203073501586914,0.037203073501586914,0.037203073501586914,0.037203073501586914,0.01773858070373535,0.016040802001953125,0.027861356735229492,0.02199554443359375,0.02452540397644043,0.0259397029876709,0.02534031867980957,0.027599811553955078,0.018032073974609375,0.01760077476501465,0.015627145767211914,0.01890087127685547,0.01661062240600586,0.022919654846191406,0.03529858589172363,0.037362098693847656,0.0321202278137207,0.026106834411621094,0.030922412872314453,0.02974390983581543,0.0282742977142334,0.025160551071166992,0.01835012435913086,0.03240633010864258,0.026778697967529297,0.0269012451171875,0.02434062957763672,0.030555009841918945,0.024924516677856445,0.026888608932495117,0.025970458984375,0.023500919342041016,0.03719663619995117,0.020540237426757812,0.025529146194458008,0.024502038955688477,0.023839473724365234,0.02437758445739746,0.02226710319519043,0.018961668014526367,0.018074750900268555,0.019274473190307617,0.026247024536132812,0.017101764678955078,0.023752689361572266,0.022024154663085938,0.025370121002197266,0.024751663208007812,0.022945404052734375,0.0214993953704834,0.029112577438354492,0.024742841720581055,0.025376558303833008,0.02070331573486328,0.024140596389770508,0.026705265045166016,0.02861952781677246,0.03661036491394043,0.027927637100219727,0.0268399715423584,0.023586034774780273,0.02111053466796875,0.021292924880981445,0.025905132293701172,0.023376941680908203,0.024904727935791016,0.02048969268798828,0.022902488708496094,0.02198934555053711,0.019555330276489258,0.02527332305908203,0.017089366912841797,0.02203536033630371,0.023257732391357422,0.021654844284057617,0.028193235397338867,0.02284550666809082,0.02530670166015625,0.023541927337646484,0.026067018508911133,0.018614530563354492,0.023818016052246094,0.03142833709716797,0.02327418327331543,0.01945638656616211,0.01945638656616211,0.02577829360961914,0.02823615074157715,0.019619226455688477,0.020900487899780273,0.016239404678344727,0.024436473846435547,0.024755477905273438,0.028816938400268555,0.01704096794128418,0.025868892669677734,0.02642655372619629,0.02152085304260254,0.020971059799194336,0.029097795486450195,0.02605271339416504,0.024463176727294922,0.02136087417602539,0.017351627349853516,0.028377771377563477,0.02593064308166504,0.02593064308166504,0.02965378761291504,0.02965378761291504,0.03119659423828125,0.03119659423828125,0.02828216552734375,0.02828216552734375,0.028397321701049805,0.028397321701049805,0.032182931900024414,0.032182931900024414,0.024744272232055664,0.024744272232055664,0.027360916137695312,0.027360916137695312,0.03229022026062012,0.03229022026062012,0.030118227005004883,0.030118227005004883,0.030284404754638672,0.030284404754638672,0.02225804328918457,0.023581743240356445,0.027895450592041016,0.027895450592041016,0.027775049209594727,0.02371811866760254,0.023911237716674805,0.025652647018432617,0.025652647018432617,0.02650928497314453,0.02650928497314453,0.02703094482421875,0.02703094482421875,0.016579151153564453,0.026938915252685547,0.026938915252685547,0.027820587158203125,0.027820587158203125,0.029263973236083984,0.029263973236083984,0.029955148696899414,0.029955148696899414,0.024091005325317383,0.024091005325317383,0.026367902755737305,0.026367902755737305,0.0269472599029541,0.0269472599029541,0.023389339447021484,0.024389028549194336,0.024389028549194336,0.025423288345336914,0.025423288345336914,0.016689777374267578,0.02629852294921875,0.02629852294921875,0.022118330001831055,0.02877521514892578,0.02877521514892578,0.028311491012573242,0.028311491012573242,0.028170108795166016,0.028170108795166016,0.01791524887084961,0.02542591094970703,0.02542591094970703,0.018520593643188477,0.018520593643188477,0.01711249351501465,0.01756739616394043,0.01756739616394043,0.01661229133605957,0.01661229133605957,0.017129898071289062,0.017129898071289062,0.017668962478637695,0.017668962478637695,0.02425098419189453,0.02425098419189453,0.024089813232421875,0.024089813232421875,0.025884628295898438,0.022655725479125977,0.022655725479125977,0.028708457946777344,0.027011871337890625,0.02488398551940918,0.02488398551940918,0.02444744110107422,0.02444744110107422,0.02563166618347168,0.02563166618347168,0.02686166763305664,0.02686166763305664,0.02686166763305664,0.026134967803955078,0.026134967803955078,0.026134967803955078,0.027345657348632812,0.027345657348632812,0.027345657348632812,0.017454147338867188,0.02928900718688965,0.02928900718688965,0.02928900718688965,0.026106595993041992,0.026106595993041992,0.026106595993041992,0.017074108123779297,0.028386354446411133,0.028386354446411133,0.028386354446411133,0.02889108657836914,0.02889108657836914,0.02889108657836914,0.02849125862121582,0.02849125862121582,0.02849125862121582,0.0273590087890625,0.0273590087890625,0.0273590087890625,0.027011632919311523,0.027011632919311523,0.027011632919311523,0.029126405715942383,0.029126405715942383,0.029126405715942383,0.03773927688598633,0.03773927688598633,0.03773927688598633,0.03683614730834961,0.03683614730834961,0.03683614730834961,0.0227203369140625,0.02398991584777832,0.0233156681060791,0.022887468338012695,0.026054859161376953,0.0182344913482666,0.023248672485351562,0.023040294647216797,0.014880180358886719,0.020520687103271484,0.020529508590698242,0.017133474349975586,0.027950525283813477,0.028181076049804688,0.022458791732788086,0.018480539321899414,0.018774032592773438,0.02433300018310547,0.026314735412597656,0.024501800537109375,0.022860050201416016,0.019509315490722656,0.01963520050048828,0.02488994598388672,0.02835679054260254,0.022002458572387695,0.03188920021057129,0.03188920021057129,0.03188920021057129,0.02323007583618164,0.03301668167114258,0.03301668167114258,0.03301668167114258,0.03232932090759277,0.03232932090759277,0.03232932090759277,0.022351503372192383,0.022351503372192383,0.022351503372192383,0.022351503372192383,0.022351503372192383,0.023479223251342773,0.023479223251342773,0.023479223251342773,0.023479223251342773,0.023479223251342773,0.02149510383605957,0.019196033477783203,0.017445802688598633,0.022772550582885742,0.022772550582885742,0.022772550582885742,0.022772550582885742,0.02398228645324707,0.02398228645324707,0.02398228645324707,0.02398228645324707,0.02974677085876465,0.02974677085876465,0.02753615379333496,0.026888370513916016,0.024260520935058594,0.024260520935058594,0.030802488327026367,0.030802488327026367,0.03162431716918945,0.03162431716918945,0.0373077392578125,0.0373077392578125,0.027651071548461914,0.027651071548461914,0.03470802307128906,0.03470802307128906,0.023508787155151367,0.022482633590698242,0.022350311279296875,0.022350311279296875,0.022350311279296875,0.022350311279296875,0.023808002471923828,0.02839183807373047,0.026137828826904297,0.026137828826904297,0.01527094841003418,0.022533416748046875,0.022533416748046875,0.0250856876373291,0.017368555068969727,0.01784062385559082,0.0181887149810791,0.0181887149810791,0.01669907569885254,0.01669907569885254,0.022411346435546875,0.022411346435546875,0.022411346435546875,0.022411346435546875,0.02184009552001953,0.02184009552001953,0.02184009552001953,0.02184009552001953,0.025841712951660156,0.025841712951660156,0.025841712951660156,0.025841712951660156,0.015634536743164062,0.02411365509033203,0.02411365509033203,0.02411365509033203,0.017589330673217773,0.02325749397277832,0.02325749397277832,0.02325749397277832,0.025690078735351562,0.025690078735351562,0.025592803955078125,0.025592803955078125,0.022611141204833984,0.022397994995117188,0.022397994995117188,0.022397994995117188,0.022397994995117188,0.022397994995117188,0.028985977172851562,0.015738487243652344,0.016005992889404297,0.016265153884887695,0.01699995994567871,0.016602277755737305,0.016403675079345703,0.01708078384399414,0.01925826072692871,0.01696610450744629,0.017871856689453125,0.01641082763671875,0.017813920974731445,0.0186307430267334,0.01985645294189453,0.018226146697998047,0.023711681365966797,0.025365352630615234,0.03456282615661621,0.02515125274658203,0.033006906509399414,0.045926570892333984,0.028563499450683594,0.03407788276672363,0.034561872482299805,0.03370380401611328,0.023160934448242188,0.023781538009643555,0.01980423927307129,0.017572641372680664,0.016976118087768555,0.016976118087768555,0.016976118087768555,0.016976118087768555,0.029321908950805664,0.020845890045166016,0.020845890045166016,0.03314566612243652,0.03314566612243652,0.034039974212646484,0.034039974212646484,0.02975153923034668,0.02975153923034668,0.01835775375366211,0.02995467185974121,0.02995467185974121,0.029193878173828125,0.029193878173828125,0.028984546661376953,0.02416515350341797,0.030936002731323242,0.030936002731323242,0.028095006942749023,0.028095006942749023,0.023459672927856445,0.025674819946289062,0.025674819946289062,0.02750253677368164,0.02750253677368164,0.027065515518188477,0.037029266357421875,0.027578115463256836,0.027578115463256836,0.025243282318115234,0.026091337203979492,0.03187823295593262,0.03187823295593262,0.017297983169555664,0.01787590980529785,0.028200864791870117,0.028200864791870117,0.027771472930908203,0.027771472930908203,0.016756772994995117,0.028163671493530273,0.028163671493530273,0.03787827491760254,0.02815389633178711,0.02815389633178711,0.0235745906829834,0.0235745906829834,0.0235745906829834,0.0235745906829834,0.03047037124633789,0.03047037124633789,0.03047037124633789,0.019017696380615234,0.019017696380615234,0.019017696380615234,0.025463581085205078,0.025463581085205078,0.025463581085205078,0.017707347869873047,0.017707347869873047,0.017707347869873047,0.018043994903564453,0.018043994903564453,0.018043994903564453,0.019377708435058594,0.0173947811126709,0.018755674362182617,0.018007516860961914,0.017668724060058594,0.018271923065185547,0.018271923065185547,0.018271923065185547,0.032164573669433594,0.032164573669433594,0.0227506160736084,0.032880544662475586,0.03129243850708008,0.016554594039916992,0.01685357093811035,0.029005050659179688,0.029005050659179688,0.017700672149658203,0.025437355041503906,0.025437355041503906,0.025437355041503906,0.025437355041503906,0.023081064224243164,0.024672985076904297,0.024615049362182617,0.02515721321105957,0.016771554946899414,0.015172719955444336,0.016121387481689453,0.01621532440185547,0.019458770751953125,0.021416425704956055,0.015272140502929688,0.023391008377075195,0.024445056915283203,0.025237560272216797,0.025753259658813477,0.025753259658813477,0.025753259658813477,0.024682283401489258,0.024682283401489258,0.024682283401489258,0.016089439392089844,0.016089439392089844,0.017746925354003906,0.017746925354003906,0.022510528564453125,0.022510528564453125,0.028952598571777344,0.028952598571777344,0.026574134826660156,0.031090736389160156,0.031090736389160156,0.01659226417541504,0.03553318977355957,0.03553318977355957,0.026978492736816406,0.028312206268310547,0.025265932083129883,0.024507761001586914,0.024507761001586914,0.024507761001586914,0.02345418930053711,0.02345418930053711,0.02345418930053711,0.03418922424316406,0.03418922424316406,0.039214134216308594,0.039214134216308594,0.03334808349609375,0.03334808349609375,0.026433944702148438,0.026578426361083984,0.026633501052856445,0.026633501052856445,0.022391080856323242,0.023223400115966797,0.018118858337402344,0.0174105167388916,0.017151832580566406,0.018080472946166992,0.01831364631652832,0.016936302185058594,0.023534774780273438,0.023271560668945312,0.023271560668945312,0.022195816040039062,0.022195816040039062,0.0242917537689209,0.02329707145690918,0.02329707145690918,0.02098846435546875,0.019245386123657227,0.015358686447143555,0.023873567581176758,0.020784616470336914,0.027190446853637695,0.02420353889465332,0.02169036865234375,0.0254364013671875,0.025549888610839844,0.027138948440551758,0.018798351287841797,0.018798351287841797,0.018798351287841797,0.018798351287841797,0.018798351287841797,0.018798351287841797,0.025406599044799805,0.016834735870361328,0.023012399673461914,0.029310941696166992,0.02092576026916504,0.025903940200805664,0.034348249435424805,0.02509164810180664,0.020032882690429688,0.02645134925842285,0.019486665725708008,0.022094249725341797,0.01978325843811035,0.02910304069519043,0.024685382843017578,0.03256869316101074,0.02725958824157715,0.029421567916870117,0.01695561408996582,0.023408174514770508,0.017815589904785156,0.01815056800842285,0.03726792335510254,0.04952669143676758,0.028658628463745117,0.023259401321411133,0.016654491424560547,0.017668485641479492,0.017695903778076172,0.01761770248413086,0.016120433807373047,0.017421245574951172,0.03050541877746582,0.02578258514404297,0.017423152923583984,0.0165097713470459,0.016980886459350586,0.017451763153076172,0.018271446228027344,0.02207493782043457,0.01717352867126465,0.017995834350585938,0.017038345336914062,0.03365731239318848,0.024712085723876953,0.037606000900268555,0.04040789604187012,0.03899049758911133,0.04152512550354004,0.021576404571533203,0.037459611892700195,0.05196356773376465,0.03790998458862305,0.02761983871459961,0.036212921142578125,0.04258441925048828,0.03487062454223633,0.052640676498413086,0.03611350059509277,0.04059553146362305,0.03545117378234863,0.030513525009155273,0.04385519027709961,0.027414560317993164,0.030498266220092773,0.027120113372802734,0.03607034683227539,0.034552574157714844,0.030669689178466797,0.018779277801513672,0.01712965965270996,0.024266958236694336,0.03111100196838379,0.01804494857788086,0.02037787437438965,0.023346662521362305,0.036722660064697266,0.046215057373046875,0.02905893325805664,0.035494327545166016,0.03149223327636719,0.030467510223388672,0.017330408096313477,0.028509855270385742,0.024723052978515625,0.023249387741088867,0.02693629264831543,0.022014379501342773,0.028326749801635742,0.02416849136352539,0.024644851684570312,0.016947507858276367,0.023958683013916016,0.024135351181030273,0.023060083389282227,0.02734541893005371,0.02825760841369629,0.017287015914916992,0.03401780128479004,0.03401780128479004,0.032556772232055664,0.032556772232055664,0.029066801071166992,0.029066801071166992,0.02662801742553711,0.02662801742553711,0.018997907638549805,0.026493549346923828,0.026493549346923828,0.01787710189819336,0.027730941772460938,0.027730941772460938,0.03211665153503418,0.03211665153503418,0.02808690071105957,0.02808690071105957,0.026378154754638672,0.026378154754638672,0.0286257266998291,0.02250981330871582,0.02250981330871582,0.023243188858032227,0.023243188858032227,0.017981529235839844,0.017981529235839844,0.026411771774291992,0.019399166107177734,0.019399166107177734,0.017871856689453125,0.017871856689453125,0.0168607234954834,0.0168607234954834,0.01629948616027832,0.01629948616027832,0.016467809677124023,0.016467809677124023,0.02467799186706543,0.023234128952026367,0.01808953285217285,0.01808953285217285,0.021075010299682617,0.017406940460205078,0.015324115753173828,0.01900935173034668,0.01900935173034668,0.018438100814819336,0.018140077590942383,0.025489330291748047,0.025489330291748047,0.015959501266479492,0.015959501266479492,0.017235279083251953,0.017235279083251953,0.03017139434814453,0.019112348556518555,0.019112348556518555,0.017898082733154297,0.017898082733154297,0.04693317413330078,0.027913808822631836,0.01781296730041504,0.01781296730041504,0.027696609497070312,0.01649618148803711,0.01649618148803711,0.020147323608398438,0.020147323608398438,0.018970251083374023,0.018970251083374023,0.01796412467956543,0.01796412467956543,0.01802802085876465,0.01802802085876465,0.026935577392578125,0.025984525680541992,0.018342018127441406,0.018342018127441406,0.01838994026184082,0.016493558883666992,0.01844000816345215,0.01844000816345215,0.02785468101501465,0.02785468101501465,0.03484082221984863,0.03484082221984863,0.029603958129882812,0.029603958129882812,0.02993011474609375,0.02993011474609375,0.026999950408935547,0.026999950408935547,0.03124380111694336,0.03124380111694336,0.02030181884765625,0.017076969146728516,0.033278703689575195,0.033278703689575195,0.027762413024902344,0.027762413024902344,0.03409743309020996,0.03409743309020996,0.020497560501098633,0.028972625732421875,0.028972625732421875,0.028972625732421875,0.0281369686126709,0.0281369686126709,0.0281369686126709,0.02933955192565918,0.021454572677612305,0.017554759979248047,0.030513286590576172,0.030513286590576172,0.030513286590576172,0.02225637435913086,0.023082494735717773,0.03056049346923828,0.03056049346923828,0.03056049346923828,0.017225980758666992,0.03261590003967285,0.03261590003967285,0.03261590003967285,0.017901897430419922,0.024512290954589844,0.024512290954589844,0.024512290954589844,0.0185394287109375,0.018868446350097656,0.027730703353881836,0.027730703353881836,0.027730703353881836,0.028291940689086914,0.028291940689086914,0.028291940689086914,0.03484320640563965,0.03484320640563965,0.03484320640563965,0.030419588088989258,0.030419588088989258,0.030419588088989258,0.02807784080505371,0.02807784080505371,0.02807784080505371,0.02711629867553711,0.02711629867553711,0.02711629867553711,0.03076624870300293,0.03076624870300293,0.03076624870300293,0.02875828742980957,0.02875828742980957,0.02875828742980957,0.018733739852905273,0.018713951110839844,0.01734161376953125,0.016469240188598633,0.017943859100341797,0.01678609848022461,0.016698837280273438,0.017915964126586914,0.017588376998901367,0.020554542541503906,0.026384592056274414,0.025187015533447266,0.022755861282348633,0.024351835250854492,0.019522666931152344,0.02593994140625,0.03227591514587402,0.023166418075561523,0.01585841178894043,0.02377033233642578,0.024141788482666016,0.022625446319580078,0.025176286697387695,0.025176286697387695,0.025176286697387695,0.03049755096435547,0.03049755096435547,0.03049755096435547,0.019164562225341797,0.019164562225341797,0.019164562225341797,0.019164562225341797,0.019164562225341797,0.019233226776123047,0.019233226776123047,0.019233226776123047,0.019233226776123047,0.019233226776123047,0.01614236831665039,0.01614236831665039,0.01614236831665039,0.01614236831665039,0.0154571533203125,0.017244338989257812,0.017206430435180664,0.017206430435180664,0.017206430435180664,0.017206430435180664,0.024599075317382812,0.024599075317382812,0.027304649353027344,0.027304649353027344,0.031527042388916016,0.031527042388916016,0.027660608291625977,0.027660608291625977,0.028737783432006836,0.028737783432006836,0.031510353088378906,0.031510353088378906,0.036131858825683594,0.036131858825683594,0.026294469833374023,0.026294469833374023,0.02991795539855957,0.02991795539855957,0.025783300399780273,0.025783300399780273,0.02693462371826172,0.025902271270751953,0.029642581939697266,0.029642581939697266,0.0229644775390625,0.02213740348815918,0.016489505767822266,0.016489505767822266,0.016489505767822266,0.016489505767822266,0.01668691635131836,0.01668691635131836,0.01668691635131836,0.01668691635131836,0.017805814743041992,0.017805814743041992,0.017805814743041992,0.017805814743041992,0.018525362014770508,0.018525362014770508,0.018525362014770508,0.018525362014770508,0.01876664161682129,0.017311573028564453,0.017760753631591797,0.017760753631591797,0.017760753631591797,0.016193151473999023,0.020560026168823242,0.017003774642944336,0.017003774642944336,0.017003774642944336,0.026126623153686523,0.026126623153686523,0.025331735610961914,0.025331735610961914,0.020909547805786133,0.023281574249267578,0.023281574249267578,0.023281574249267578,0.023281574249267578,0.023281574249267578,0.016399383544921875,0.021924495697021484,0.0167081356048584,0.014975786209106445,0.01699042320251465,0.01621389389038086,0.016500234603881836,0.017056941986083984,0.01743602752685547,0.014708280563354492,0.016986608505249023,0.016463518142700195,0.016511917114257812,0.01794910430908203,0.017165184020996094,0.018578529357910156,0.016322851181030273,0.016527414321899414,0.017262697219848633,0.01698589324951172,0.01990222930908203,0.017554044723510742,0.019016742706298828,0.017987489700317383,0.01674628257751465,0.016506671905517578,0.017700910568237305,0.01644444465637207,0.016445398330688477,0.021010637283325195,0.01821112632751465,0.01925969123840332,0.026625394821166992,0.023408174514770508,0.01598525047302246,0.01598525047302246,0.015459775924682617,0.015459775924682617,0.01748514175415039,0.01748514175415039,0.02330756187438965,0.024048805236816406,0.023016929626464844,0.022235870361328125,0.022235870361328125,0.018471479415893555,0.018471479415893555,0.017340421676635742,0.017340421676635742,0.02207040786743164,0.017820358276367188,0.017820358276367188,0.017676591873168945,0.017676591873168945,0.01637411117553711,0.01637411117553711,0.021740436553955078,0.018476486206054688,0.018476486206054688,0.017805814743041992,0.017805814743041992,0.017612457275390625,0.017612457275390625,0.017072439193725586,0.017240524291992188,0.01772332191467285,0.01772332191467285,0.01634669303894043,0.01740241050720215,0.01740241050720215,0.015592575073242188,0.015592575073242188,0.017066240310668945,0.017066240310668945,0.026131391525268555,0.026131391525268555,0.026131391525268555,0.026131391525268555,0.024672746658325195,0.024672746658325195,0.024672746658325195,0.024672746658325195,0.03228163719177246,0.03228163719177246,0.03228163719177246,0.017947912216186523,0.02885723114013672,0.02885723114013672,0.02885723114013672,0.02010822296142578,0.029538393020629883,0.029538393020629883,0.029538393020629883,0.030024290084838867,0.030024290084838867,0.030024290084838867,0.02719259262084961,0.028602123260498047,0.028602123260498047,0.028602123260498047,0.01940751075744629,0.02636408805847168,0.02636408805847168,0.02636408805847168,0.01913928985595703,0.01913928985595703,0.027106046676635742,0.022244691848754883,0.018090009689331055,0.016520023345947266,0.017048120498657227,0.018598318099975586,0.021497249603271484,0.01882147789001465,0.01882147789001465,0.017667531967163086,0.025943994522094727,0.025943994522094727,0.025943994522094727,0.025943994522094727,0.0274808406829834,0.026792526245117188,0.029516935348510742,0.026831626892089844,0.02498173713684082,0.023996353149414062,0.023703575134277344,0.02491140365600586,0.025875329971313477,0.016387224197387695,0.015413522720336914,0.024200916290283203,0.024200916290283203,0.024200916290283203,0.021302223205566406,0.022983074188232422,0.022983074188232422,0.02229022979736328,0.018759965896606445,0.021901369094848633,0.021901369094848633,0.021901369094848633,0.0231170654296875,0.0231170654296875,0.025473356246948242,0.025473356246948242,0.016483545303344727,0.02495574951171875,0.02495574951171875,0.024655580520629883,0.025825023651123047,0.025825023651123047,0.02544569969177246,0.02544569969177246,0.02541208267211914,0.02880692481994629,0.026195526123046875,0.01585531234741211,0.01585531234741211,0.01585531234741211,0.021201372146606445,0.016188383102416992,0.016188383102416992,0.016188383102416992,0.016505002975463867,0.016505002975463867,0.01725006103515625,0.01725006103515625,0.023436784744262695,0.01692032814025879,0.028136730194091797,0.028136730194091797,0.018055438995361328,0.018123865127563477,0.016141176223754883,0.0251767635345459,0.018644332885742188,0.016985177993774414,0.01857757568359375,0.01857757568359375,0.01725459098815918,0.018278121948242188,0.0176236629486084,0.017099857330322266,0.017099857330322266,0.016757726669311523,0.016757726669311523,0.01637578010559082,0.01637578010559082,0.017294883728027344,0.015463113784790039,0.018186330795288086,0.01725602149963379,0.01798391342163086,0.021252155303955078,0.01940155029296875,0.015569686889648438,0.01769399642944336,0.01795792579650879,0.03028726577758789,0.028039216995239258,0.02292490005493164,0.01817631721496582,0.017225027084350586,0.01926398277282715,0.017473697662353516,0.017012357711791992,0.017122745513916016,0.015612363815307617,0.016569852828979492,0.016078472137451172,0.015857934951782227,0.12776970863342285,0.016093015670776367,0.016031265258789062,0.016762495040893555,0.017559289932250977,0.016701459884643555,0.020732879638671875,0.016585588455200195,0.020118236541748047,0.017518997192382812,0.016881227493286133,0.01824021339416504,0.01788496971130371,0.020876646041870117,0.018926620483398438,0.018788814544677734,0.01697254180908203,0.02114701271057129,0.017817020416259766,0.01908111572265625,0.017513275146484375,0.016851425170898438,0.01725149154663086,0.019029617309570312,0.01706528663635254,0.017261743545532227,0.017794370651245117,0.016703128814697266,0.021891117095947266,0.022526025772094727,0.027742385864257812,0.029263734817504883,0.030185222625732422,0.028392791748046875,0.017708301544189453,0.01775813102722168,0.02180194854736328,0.016954660415649414,0.018768787384033203,0.022558927536010742,0.02672553062438965,0.028374195098876953,0.022977113723754883,0.022030115127563477,0.027558326721191406,0.017050981521606445,0.01724386215209961,0.016727209091186523,0.023009061813354492,0.021298646926879883,0.023622989654541016,0.023117780685424805,0.02268505096435547,0.02617168426513672,0.01677536964416504,0.018162965774536133,0.018628835678100586,0.01873302459716797,0.02155303955078125,0.015511751174926758,0.017893075942993164,0.025582075119018555,0.026726722717285156,0.021323680877685547,0.01911187171936035,0.01912522315979004,0.016605138778686523,0.016689538955688477,0.02146005630493164,0.0177462100982666,0.017342329025268555,0.02124619483947754,0.023415565490722656,0.01776885986328125,0.023426294326782227,0.018777132034301758,0.027527809143066406,0.025719165802001953,0.0246124267578125,0.02650904655456543,0.017447471618652344,0.01772475242614746,0.018640756607055664,0.01708078384399414,0.01670384407043457,0.027250051498413086,0.02458333969116211,0.02269124984741211,0.0218353271484375,0.02464008331298828,0.016951322555541992,0.016064167022705078,0.01796889305114746,0.036011695861816406,0.036011695861816406,0.036011695861816406,0.036011695861816406,0.036011695861816406,0.036011695861816406,0.015410661697387695,0.015410661697387695,0.02018117904663086,0.018073081970214844,0.01770925521850586,0.01770925521850586,0.016889572143554688,0.016889572143554688,0.018495559692382812,0.01939082145690918,0.015860557556152344,0.015860557556152344,0.016994476318359375,0.016994476318359375,0.020696401596069336,0.020696401596069336,0.01728200912475586,0.017418861389160156,0.020351171493530273,0.019367456436157227,0.01664900779724121,0.01664900779724121,0.017763853073120117,0.017763853073120117,0.018213272094726562,0.018213272094726562,0.01850748062133789,0.01850748062133789,0.01900482177734375,0.01900482177734375,0.016927242279052734,0.01848459243774414,0.01848459243774414,0.016616106033325195,0.016616106033325195,0.0172727108001709,0.0172727108001709,0.017253398895263672,0.024262428283691406,0.01854562759399414,0.01854562759399414,0.01752448081970215,0.01752448081970215,0.017884254455566406,0.017884254455566406,0.018591642379760742,0.018591642379760742,0.017999649047851562,0.017999649047851562,0.023197412490844727,0.018528461456298828,0.018528461456298828,0.018192529678344727,0.032427072525024414,0.017249584197998047,0.017249584197998047,0.01667308807373047,0.01667308807373047,0.01930689811706543,0.01930689811706543,0.019934892654418945,0.019934892654418945,0.016003847122192383,0.017714738845825195,0.017714738845825195,0.01923680305480957,0.01923680305480957,0.01783895492553711,0.016890525817871094,0.016890525817871094,0.02031874656677246,0.02031874656677246,0.016572952270507812,0.016572952270507812,0.0199432373046875,0.0199432373046875,0.018683910369873047,0.018683910369873047,0.020416736602783203,0.020416736602783203,0.017485380172729492,0.017485380172729492,0.017690420150756836,0.017690420150756836,0.017534732818603516,0.017534732818603516,0.016023874282836914,0.016023874282836914,0.01636052131652832,0.01636052131652832,0.01600503921508789,0.01600503921508789,0.01759052276611328,0.017479658126831055,0.017479658126831055,0.01665353775024414,0.01665353775024414,0.030292272567749023,0.030292272567749023,0.026291847229003906,0.026291847229003906,0.026291847229003906,0.026304960250854492,0.026304960250854492,0.026304960250854492,0.018587350845336914,0.025617599487304688,0.025617599487304688,0.025617599487304688,0.024821996688842773,0.024821996688842773,0.024821996688842773,0.025041818618774414,0.025041818618774414,0.025041818618774414,0.029979467391967773,0.029979467391967773,0.029979467391967773,0.045441389083862305,0.045441389083862305,0.045441389083862305,0.038578033447265625,0.038578033447265625,0.038578033447265625,0.03346657752990723,0.03346657752990723,0.03346657752990723,0.045290470123291016,0.045290470123291016,0.045290470123291016,0.031703948974609375,0.031703948974609375,0.031703948974609375,0.030675172805786133,0.030675172805786133,0.030675172805786133,0.027285337448120117,0.027285337448120117,0.027285337448120117,0.022743940353393555,0.023830413818359375,0.023540496826171875,0.01846003532409668,0.022281646728515625,0.02355670928955078,0.02476191520690918,0.025220155715942383,0.02404165267944336,0.023035049438476562,0.026711702346801758,0.016614437103271484,0.01690363883972168,0.01918792724609375,0.01600933074951172,0.016507387161254883,0.015553712844848633,0.020398855209350586,0.01669478416442871,0.017159461975097656,0.025964975357055664,0.025964975357055664,0.025964975357055664,0.015688180923461914,0.029450416564941406,0.029450416564941406,0.029450416564941406,0.0283660888671875,0.0283660888671875,0.0283660888671875,0.01716780662536621,0.03239750862121582,0.03239750862121582,0.03239750862121582,0.03239750862121582,0.03239750862121582,0.02962183952331543,0.02962183952331543,0.02962183952331543,0.02962183952331543,0.02962183952331543,0.01949787139892578,0.019028425216674805,0.027460336685180664,0.027460336685180664,0.027460336685180664,0.027460336685180664,0.028962135314941406,0.028962135314941406,0.028962135314941406,0.028962135314941406,0.024631023406982422,0.02598714828491211,0.023219585418701172,0.01845574378967285,0.01845574378967285,0.02766895294189453,0.02951669692993164,0.019185304641723633,0.019185304641723633,0.01813793182373047,0.01813793182373047,0.018847942352294922,0.01716899871826172,0.01716899871826172,0.021550416946411133,0.021550416946411133,0.024013042449951172,0.024013042449951172,0.022661685943603516,0.022661685943603516,0.02623605728149414,0.02623605728149414,0.02691936492919922,0.02691936492919922,0.02310657501220703,0.02310657501220703,0.02347731590270996,0.02347731590270996,0.024819374084472656,0.024819374084472656,0.024819374084472656,0.024819374084472656,0.017048120498657227,0.017048120498657227,0.017048120498657227,0.017048120498657227,0.03831315040588379,0.03831315040588379,0.03831315040588379,0.03831315040588379,0.03441309928894043,0.03441309928894043,0.03441309928894043,0.03441309928894043,0.031147480010986328,0.031147480010986328,0.031147480010986328,0.03140711784362793,0.03140711784362793,0.03140711784362793,0.03364825248718262,0.03364825248718262,0.01788806915283203,0.015808820724487305,0.016925811767578125,0.01617598533630371,0.018053054809570312,0.024042367935180664,0.024042367935180664,0.017906665802001953,0.01851963996887207,0.016442060470581055,0.01712203025817871,0.030147075653076172,0.030147075653076172,0.030147075653076172,0.030147075653076172,0.030147075653076172,0.022534847259521484,0.02788543701171875,0.04712677001953125,0.024298906326293945,0.02682042121887207,0.033374786376953125,0.030213356018066406,0.02353072166442871,0.024723291397094727,0.020488262176513672,0.016959190368652344,0.017333030700683594,0.016740798950195312,0.015842437744140625,0.019855499267578125,0.023488521575927734,0.019562482833862305,0.030080318450927734,0.01628255844116211,0.017154216766357422,0.016196012496948242,0.017338991165161133,0.015909910202026367,0.040125131607055664,0.027600765228271484,0.03696799278259277,0.03278183937072754,0.03128385543823242,0.03302264213562012,0.03284811973571777,0.028115272521972656,0.027070045471191406,0.030556917190551758,0.03302407264709473,0.029995441436767578,0.0323786735534668,0.0323786735534668,0.0278322696685791,0.0278322696685791,0.029700517654418945,0.02999114990234375,0.02999114990234375,0.036092281341552734,0.02587890625,0.02587890625,0.02046370506286621,0.02046370506286621,0.030903100967407227,0.030903100967407227,0.028888463973999023,0.028888463973999023,0.04575324058532715,0.04575324058532715,0.041905879974365234,0.041905879974365234,0.03404402732849121,0.03897452354431152,0.03897452354431152,0.03971123695373535,0.03971123695373535,0.029693603515625,0.03249669075012207,0.03249669075012207,0.03469204902648926,0.03469204902648926,0.03947257995605469,0.03947257995605469,0.020946025848388672,0.020946025848388672,0.022795915603637695,0.02449631690979004,0.02449631690979004,0.02658677101135254,0.02658677101135254,0.02658677101135254,0.02658677101135254,0.03891587257385254,0.02418661117553711,0.02418661117553711,0.02418661117553711,0.02418661117553711,0.033132076263427734,0.033132076263427734,0.033132076263427734,0.030525684356689453,0.030525684356689453,0.030525684356689453,0.024501323699951172,0.024501323699951172,0.024501323699951172,0.028547286987304688,0.03742861747741699,0.03742861747741699,0.03742861747741699,0.02457261085510254,0.034079551696777344,0.034079551696777344,0.034079551696777344,0.03964805603027344,0.03964805603027344,0.03964805603027344,0.032750844955444336,0.032750844955444336,0.019983768463134766,0.01862788200378418,0.0198361873626709,0.024332046508789062,0.028284311294555664,0.020543336868286133,0.027298927307128906,0.029381275177001953,0.028278589248657227,0.02431654930114746,0.03233194351196289,0.03233194351196289,0.027531862258911133],\"losses\":[0.89155,0.9063299999999999,0.8925199999999999,0.8997399999999999,0.8865300000000002,0.9011199999999999,0.8958499999999999,0.45043000000000005,0.8989900000000001,0.17017999999999994,0.17015999999999995,0.11530499999999999,0.09418000000000001,0.07366,0.17499000000000003,0.17081999999999997,0.903646,0.17017999999999994,0.90044,0.9009463333333333,0.89868,0.17423000000000002,0.89909,0.17017999999999994,0.83568,0.7838300000000001,0.88056,0.8845700000000001,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.9020699999999999,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.482245,0.17017999999999994,0.11297800000000002,0.09652999999999998,0.07826666666666669,0.9014,0.9014942857142856,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.89345,0.8935442857142858,0.8529000000000003,0.17017999999999994,0.4863199999999999,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.8936142857142858,0.8912599999999999,0.17017999999999994,0.89497,0.17017999999999994,0.17017999999999994,0.17123,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.88914,0.17017999999999994,0.89502,0.17423000000000002,0.8173300000000001,0.17017999999999994,0.7856799999999998,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17423000000000002,0.17017999999999994,0.17017999999999994,0.8999492857142858,0.17017999999999994,0.17017999999999994,0.8927999999999999,0.17017999999999994,0.17017999999999994,0.90107,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17556,0.17017999999999994,0.17017999999999994,0.90044,0.15895,0.08227699999999999,0.06783249999999996,0.036900892857142896,0.03140999999999998,0.89345,0.17008,0.11531999999999998,0.8980600000000001,0.7178549999999999,0.17017999999999994,0.17017999999999994,0.89879,0.17017999999999994,0.17017999999999994,0.17008,0.11531999999999998,0.17017999999999994,0.17017999999999994,0.11297800000000002,0.09652999999999998,0.07826666666666669,0.17008,0.11531999999999998,0.9055,0.9028699999999998,0.17017999999999994,0.17008,0.11531999999999998,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.17017999999999994,0.89978,0.77368,0.17017999999999994,0.16012000000000004,0.12017,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.17017999999999994,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.17017999999999994,0.17008,0.11531999999999998,0.17017999999999994,0.17017999999999994,0.8935500000000001,0.17008,0.11531999999999998,0.8965,0.17008,0.11531999999999998,0.9014033333333333,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.84779,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.8207099999999998,0.17008,0.11531999999999998,0.8925199999999999,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.8943099999999999,0.17008,0.11531999999999998,0.8951199999999998,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.47030000000000005,0.8999300000000001,0.17008,0.11531999999999998,0.8928200000000001,0.9008158333333334,0.89809,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.8997399999999999,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.89326,0.87884,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.09771999999999997,0.17008,0.11531999999999998,0.8996000000000001,0.8969300000000002,0.89606,0.17008,0.11531999999999998,0.09771999999999997,0.08268,0.17008,0.11531999999999998,0.09771999999999997,0.8997399999999999,0.17008,0.11531999999999998,0.09771999999999997,0.8949300000000001,0.17800999999999995,0.17008,0.11531999999999998,0.09771999999999997,0.17008,0.11531999999999998,0.09771999999999997,0.17008,0.11531999999999998,0.09771999999999997,0.8943579999999999,0.16215000000000002,0.08315,0.059889999999999985,0.03721999999999999,0.17008,0.11531999999999998,0.09771999999999997,0.15297000000000002,0.07277250000000005,0.05503166666666666,0.03086066666666664,0.024980000000000023,0.17008,0.11531999999999998,0.09771999999999997,0.17017999999999994,0.16012000000000004,0.12017,0.17423000000000002,0.901408,0.17008,0.11531999999999998,0.09771999999999997,0.17008,0.11531999999999998,0.09771999999999997,0.17008,0.11531999999999998,0.09771999999999997,0.17008,0.11531999999999998,0.09771999999999997,0.903646,0.17008,0.11531999999999998,0.17017999999999994,0.17008,0.11531999999999998,0.09771999999999997,0.15744999999999998,0.06992200000000001,0.054700000000000026,0.031035666666666694,0.02486416666666668,0.015045801948051959,0.17008,0.11531999999999998,0.09771999999999997,0.17008,0.11531999999999998,0.09771999999999997,0.17008,0.11531999999999998,0.09771999999999997,0.17017999999999994,0.8942400000000001,0.16012000000000004,0.12017,0.17008,0.11531999999999998,0.09771999999999997,0.08268,0.17008,0.11531999999999998,0.09771999999999997,0.17008,0.11531999999999998,0.17423000000000002,0.9009336666666667,0.89326,0.17008,0.11531999999999998,0.83568,0.883915,0.16012000000000004,0.12017,0.17008,0.11531999999999998,0.17008,0.11531999999999998,0.89415,0.17008,0.11531999999999998,0.16012000000000004,0.12017,0.17008,0.11531999999999998,0.90137,0.8123999999999999,0.16012000000000004,0.12017,0.17008,0.11531999999999998,0.8987999999999999,0.8980600000000001,0.8997999999999999,0.8940666666666667,0.16012000000000004,0.12017,0.17017999999999994,0.16012000000000004,0.12017,0.17008,0.11531999999999998,0.16012000000000004,0.12017,0.17008,0.11531999999999998,0.09771999999999997,0.16012000000000004,0.12017,0.89365,0.9017499999999998,0.8624,0.17423000000000002,0.16054000000000004,0.07435999999999997,0.05443000000000002,0.16054000000000004,0.894946,0.89557,0.19322999999999996,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.015045801948051959,0.9013899999999999,0.16054000000000004,0.16054000000000004,0.8948899999999999,0.16054000000000004,0.07200200000000001,0.05506000000000003,0.8978100000000001,0.16054000000000004,0.7924399999999999,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.16054000000000004,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.16054000000000004,0.90093,0.16054000000000004,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.21563000000000004,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.16054000000000004,0.16054000000000004,0.78122,0.16054000000000004,0.16054000000000004,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.8950099999999999,0.8967866666666667,0.16054000000000004,0.09879000000000002,0.16054000000000004,0.09879000000000002,0.10669399999999998,0.09666999999999999,0.16054000000000004,0.11479000000000003,0.17005000000000003,0.87278,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.89463,0.79756,0.16054000000000004,0.11479000000000003,0.7517400000000001,0.16054000000000004,0.09879000000000002,0.89566,0.07435999999999997,0.05443000000000002,0.18278000000000003,0.8959800000000001,0.16054000000000004,0.09879000000000002,0.89307,0.8932650000000001,0.8960649999999999,0.8934199999999999,0.16054000000000004,0.07056199999999999,0.055541666666666656,0.17005000000000003,0.17005000000000003,0.18278000000000003,0.17005000000000003,0.081047,0.06438333333333335,0.16054000000000004,0.09879000000000002,0.16054000000000004,0.11479000000000003,0.17005000000000003,0.16054000000000004,0.8956299999999999,0.16054000000000004,0.09879000000000002,0.16054000000000004,0.11479000000000003,0.07435999999999997,0.05443000000000002,0.18278000000000003,0.17005000000000003,0.16054000000000004,0.17005000000000003,0.7023099999999998,0.88192,0.7924399999999999,0.16054000000000004,0.11479000000000003,0.898985,0.8936258137768662,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.015045801948051959,0.054220000000000025,0.054220000000000025,0.8952200000000001,0.8933099999999999,0.8989199999999998,0.73987,0.054220000000000025,0.054220000000000025,0.07837999999999996,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.09654500000000002,0.89428,0.054220000000000025,0.032140666666666644,0.90184,0.054220000000000025,0.032140666666666644,0.8953000000000001,0.89753,0.8936,0.89672,0.054220000000000025,0.032140666666666644,0.054220000000000025,0.032140666666666644,0.054220000000000025,0.032140666666666644,0.11228000000000002,0.054220000000000025,0.032140666666666644,0.054220000000000025,0.893602121212121,0.8944070542547292,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.032140666666666644,0.024544166666666672,0.015045801948051959,0.032140666666666644,0.024544166666666672,0.015045801948051959,0.032140666666666644,0.024544166666666672,0.032140666666666644,0.024544166666666672,0.032140666666666644,0.024544166666666672,0.8935989075630248,0.89978,0.032140666666666644,0.024544166666666672,0.8935989075630246,0.8935989075630248,0.032140666666666644,0.024544166666666672,0.015045801948051959,0.024544166666666672,0.015045801948051959,0.024544166666666672,0.015045801948051959,0.8935989075630235,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.8935997290145989,0.024544166666666672,0.015045801948051959,0.015045801948051959,0.01513580194805196,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.17607000000000003,0.14670999999999995,0.07435999999999997,0.901408,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.8411500000000001,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15744999999999998,0.15203999999999998,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.8954033333333333,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89954,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.14529999999999998,0.1016,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.89186,0.15203999999999998,0.89489,0.14670999999999995,0.07435999999999997,0.16276000000000002,0.89223,0.14670999999999995,0.07435999999999997,0.15744999999999998,0.15203999999999998,0.89809,0.8144499999999999,0.8854958333333333,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.15744999999999998,0.8934399999999998,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.8482199999999999,0.8957033333333333,0.15203999999999998,0.15203999999999998,0.15744999999999998,0.5750200000000001,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.9014900000000001,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.89365,0.8970849999999999,0.15566999999999998,0.8988200000000001,0.90267,0.15203999999999998,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.15744999999999998,0.14670999999999995,0.07435999999999997,0.50613,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.90076,0.89984,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.8997399999999999,0.8945400000000001,0.8524299999999998,0.15203999999999998,0.15203999999999998,0.15297000000000002,0.89968,0.9018642857142858,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.1670899999999999,0.9012800000000001,0.14670999999999995,0.07435999999999997,0.9000400000000001,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.17115,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.8956439999999999,0.8950999999999999,0.8997999999999999,0.15203999999999998,0.15203999999999998,0.8933399999999999,0.15203999999999998,0.9014900000000001,0.15203999999999998,0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.015045801948051959,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.8679300000000001,0.47030000000000005,0.45043000000000005,0.14529999999999998,0.1016,0.77368,0.4801,0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.897818,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.89635,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.84515,0.8943579999999999,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.16008,0.15744999999999998,0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.8997999999999999,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.15203999999999998,0.07300999999999999,0.054220000000000025,0.032140666666666644,0.15203999999999998,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.89704,0.8933399999999999,0.89976,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.8942400000000001,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.89688,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89975,0.14670999999999995,0.07435999999999997,0.891676,0.8794500000000001,0.15203999999999998,0.89239,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.90123,0.8913599999999999,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.15203999999999998,0.89879,0.15203999999999998,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.8962499999999999,0.8962766666666668,0.15744999999999998,0.15203999999999998,0.89779,0.15203999999999998,0.8975142857142856,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.89642,0.14670999999999995,0.07435999999999997,0.14670999999999995,0.07435999999999997,0.8936,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.15203999999999998,0.89968,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.15203999999999998,0.8984099999999999,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.15744999999999998,0.8845700000000001,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.891676,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.89489,0.14670999999999995,0.07435999999999997,0.05443000000000002,0.15203999999999998,0.15203999999999998,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.15203999999999998,0.14670999999999995,0.07435999999999997,0.15203999999999998,0.8978742857142858,0.06992200000000001,0.054700000000000026,0.031035666666666694,0.02486416666666668,0.015045801948051959,0.8536800000000001,0.07200200000000001,0.8950699999999999,0.07200200000000001,0.06992200000000001,0.054700000000000026,0.06992200000000001,0.054700000000000026,0.5188999999999999,0.07435999999999997,0.10813083333333333,0.8930799999999998,0.7722399999999999,0.8138400000000001,0.07435999999999997,0.07200200000000001,0.07300999999999999,0.07435999999999997,0.9001699999999999,0.07200200000000001,0.06992200000000001,0.054700000000000026,0.06992200000000001,0.054700000000000026,0.84887,0.07435999999999997,0.06992200000000001,0.054700000000000026,0.89516,0.06992200000000001,0.054700000000000026,0.09616999999999999,0.07300999999999999,0.8933399999999999,0.89368,0.07300999999999999,0.89308,0.07300999999999999,0.06992200000000001,0.054700000000000026,0.06992200000000001,0.054700000000000026,0.8874300000000002,0.06992200000000001,0.054700000000000026,0.07435999999999997,0.07435999999999997,0.07435999999999997,0.07300999999999999,0.07300999999999999,0.06992200000000001,0.054700000000000026,0.07435999999999997,0.07435999999999997,0.06992200000000001,0.054700000000000026,0.07300999999999999,0.8933399999999999,0.06992200000000001,0.054700000000000026,0.8511200000000001,0.06992200000000001,0.054700000000000026,0.07300999999999999,0.06992200000000001,0.054700000000000026,0.031035666666666694,0.02486416666666668,0.06992200000000001,0.054700000000000026,0.031035666666666694,0.02486416666666668,0.8734100000000001,0.06992200000000001,0.054700000000000026,0.031035666666666694,0.16746,0.84673,0.06992200000000001,0.054700000000000026,0.031035666666666694,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07300999999999999,0.8996666666666666,0.89204,0.06992200000000001,0.054700000000000026,0.031035666666666694,0.07435999999999997,0.06992200000000001,0.054700000000000026,0.031035666666666694,0.07200200000000001,0.05506000000000003,0.06992200000000001,0.054700000000000026,0.031035666666666694,0.07300999999999999,0.07300999999999999,0.06992200000000001,0.054700000000000026,0.031035666666666694,0.8950699999999999,0.07435999999999997,0.891,0.90075,0.07435999999999997,0.06992200000000001,0.054700000000000026,0.07300999999999999,0.07435999999999997,0.07200200000000001,0.05506000000000003,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.015045801948051959,0.8936,0.05443000000000002,0.054700000000000026,0.8992699999999999,0.8935999999999998,0.054220000000000025,0.054700000000000026,0.9028699999999998,0.8943300000000001,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.90055,0.8937299999999999,0.054220000000000025,0.032140666666666644,0.024544166666666672,0.054220000000000025,0.032140666666666644,0.054220000000000025,0.032140666666666644,0.054220000000000025,0.032140666666666644,0.05443000000000002,0.09841000000000003,0.05443000000000002,0.89394,0.054220000000000025,0.032140666666666644,0.10395999999999997,0.054700000000000026,0.054220000000000025,0.032140666666666644,0.10138,0.054220000000000025,0.032140666666666644,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.031035666666666694,0.02486416666666668,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.89978,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.07494999999999995,0.031035666666666694,0.02486416666666668,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.03175066666666667,0.024687500000000008,0.052745,0.893602121212121,0.86765,0.031035666666666694,0.02486416666666668,0.54587,0.02486416666666668,0.015045801948051959,0.12595000000000003,0.8936,0.8935999999999998,0.024687500000000008,0.015045801948051959,0.02486416666666668,0.024687500000000008,0.015045801948051959,0.02486416666666668,0.893602121212121,0.015045801948051959,0.8935989075630235,0.015045801948051959,0.8935989075630235,0.015045801948051959,0.8371200000000002,0.89161,0.14847000000000002,0.8997399999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.14847000000000002,0.14847000000000002,0.8144499999999999,0.14847000000000002,0.17115,0.89657,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89621,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.87884,0.14847000000000002,0.9007339999999999,0.89779,0.14847000000000002,0.7725100000000001,0.14847000000000002,0.8207099999999998,0.89764,0.17497000000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8207099999999998,0.8565799999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.7098199999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17553000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.77368,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.84863,0.90267,0.14847000000000002,0.90076,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.49789000000000005,0.14847000000000002,0.14847000000000002,0.89326,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.90267,0.9011866666666666,0.9009333333333333,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.8793000000000001,0.14847000000000002,0.07200200000000001,0.8997999999999999,0.8728499999999999,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.77368,0.8958499999999999,0.86894,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8468899999999999,0.32880000000000004,0.18816000000000005,0.8953724999999999,0.14847000000000002,0.07200200000000001,0.8955399999999999,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8865300000000002,0.17012999999999998,0.14847000000000002,0.07200200000000001,0.8949883333333334,0.90044,0.14847000000000002,0.07200200000000001,0.56715,0.14847000000000002,0.07200200000000001,0.8933399999999999,0.9036033333333334,0.14847000000000002,0.07200200000000001,0.45043000000000005,0.9011866666666666,0.14847000000000002,0.07200200000000001,0.9012600000000001,0.14847000000000002,0.07200200000000001,0.90107,0.535245,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.17607000000000003,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.15322999999999998,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.9009333333333333,0.8679300000000001,0.14847000000000002,0.07200200000000001,0.9059899999999999,0.8987400000000001,0.89978,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.88726,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.89606,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.90615,0.16608533333333336,0.4863199999999999,0.8358500000000001,0.8953699999999998,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8781599999999999,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.9055,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.8679300000000001,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.9011199999999999,0.15297000000000002,0.8943299999999998,0.9000429999999999,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.8939776666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.8953099999999999,0.18816000000000005,0.9014942857142856,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.89832,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8953699999999998,0.8987400000000001,0.9031399999999999,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.9004100000000002,0.171086,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.17115,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.8958699999999998,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.9000429999999999,0.14847000000000002,0.07200200000000001,0.86894,0.9036033333333334,0.14847000000000002,0.14847000000000002,0.8881899999999998,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16662,0.8927999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89223,0.14847000000000002,0.07200200000000001,0.85964,0.09433999999999998,0.07200200000000001,0.07200200000000001,0.8936,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.9008899999999999,0.07200200000000001,0.11297800000000002,0.07200200000000001,0.8625700000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8943399999999999,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.89564,0.07200200000000001,0.90683,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.07200200000000001,0.05506000000000003,0.07265750000000003,0.112998,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.8933399999999999,0.9015657142857142,0.9014599999999999,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.1038,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.8979799999999999,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.9017771428571428,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.8978000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.18030000000000002,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.9056700000000001,0.89308,0.05506000000000003,0.90184,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.8991000000000001,0.054700000000000026,0.031035666666666694,0.02486416666666668,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.891415,0.8481433333333334,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.05506000000000003,0.03175066666666667,0.8920399999999999,0.05506000000000003,0.03175066666666667,0.9003099999999999,0.05506000000000003,0.03175066666666667,0.05506000000000003,0.03175066666666667,0.05506000000000003,0.03175066666666667,0.05506000000000003,0.03175066666666667,0.05506000000000003,0.05506000000000003,0.8935999999999998,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.03175066666666667,0.024687500000000008,0.03175066666666667,0.024687500000000008,0.8935989075630248,0.03175066666666667,0.024687500000000008,0.06353999999999999,0.893602121212121,0.8928189075630251,0.8935989075630248,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.024687500000000008,0.8935989075630246,0.024687500000000008,0.015045801948051959,0.3148099999999999,0.024687500000000008,0.015045801948051959,0.024687500000000008,0.015045801948051959,0.8935989075630235,0.024687500000000008,0.024687500000000008,0.04050399999999999,0.8935989075630237,0.04490000000000003,0.015045801948051959,0.015045801948051959,0.08565000000000002,0.02158344696969698,0.015045801948051959,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.90302,0.14847000000000002,0.7841199999999999,0.89497,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.8955399999999999,0.14847000000000002,0.90076,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17499000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8791,0.14847000000000002,0.8963700000000001,0.89954,0.14847000000000002,0.8997800000000001,0.89975,0.14847000000000002,0.16942533333333337,0.14847000000000002,0.14847000000000002,0.8950999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.84154,0.8679300000000001,0.14847000000000002,0.14847000000000002,0.5209499999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8999499999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16913600000000004,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.9009336666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89204,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89657,0.16948000000000008,0.14847000000000002,0.14847000000000002,0.9024999999999999,0.14847000000000002,0.14670999999999995,0.07435999999999997,0.4720599999999999,0.89901,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.17199,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89901,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.89305,0.8777199999999998,0.14847000000000002,0.07200200000000001,0.89985,0.8927999999999999,0.9001500000000002,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.89326,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14603000000000002,0.08343000000000003,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.4801,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8883300000000001,0.14847000000000002,0.07200200000000001,0.8987400000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.9017499999999998,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8993767857142858,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.89779,0.14847000000000002,0.07200200000000001,0.51675,0.84154,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.8865300000000002,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.5803400000000001,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89986,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8940666666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89627,0.14847000000000002,0.8529500000000001,0.14847000000000002,0.14847000000000002,0.9023900000000001,0.14847000000000002,0.89161,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.8968700000000001,0.89155,0.15297000000000002,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.9063299999999999,0.8814033333333333,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.84863,0.8916633333333334,0.14847000000000002,0.071732,0.054900000000000025,0.032250666666666664,0.9,0.89448,0.14847000000000002,0.07200200000000001,0.8615999999999999,0.14847000000000002,0.07200200000000001,0.9016,0.896396,0.4604000000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.9001199999999999,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.89223,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.07200200000000001,0.07200200000000001,0.7886,0.07200200000000001,0.8970999999999998,0.09616999999999999,0.8933399999999999,0.9002283333333333,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.11031500000000002,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.13490000000000002,0.07200200000000001,0.8967866666666667,0.07200200000000001,0.88465,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.06992200000000001,0.054700000000000026,0.031035666666666694,0.02486416666666668,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.8936258137768662,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.8936258137768662,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.113455,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.89381,0.8933399999999999,0.07200200000000001,0.05506000000000003,0.9015249999999998,0.89394,0.07200200000000001,0.05506000000000003,0.26664000000000004,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.8948899999999999,0.07200200000000001,0.05506000000000003,0.9034760000000001,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.8933399999999999,0.10247000000000002,0.8999499999999999,0.20915,0.08343000000000003,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.84887,0.8957099999999999,0.8934750000000001,0.07200200000000001,0.8867199999999998,0.07200200000000001,0.05506000000000003,0.8943399999999999,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.89564,0.7775200000000001,0.9000220000000001,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.88501,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.05506000000000003,0.03175066666666667,0.05506000000000003,0.03175066666666667,0.05506000000000003,0.03175066666666667,0.05506000000000003,0.03175066666666667,0.07829,0.05506000000000003,0.03175066666666667,0.8929499999999999,0.05506000000000003,0.03175066666666667,0.89944,0.05506000000000003,0.05301999999999998,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.03175066666666667,0.024687500000000008,0.03175066666666667,0.024687500000000008,0.03175066666666667,0.024687500000000008,0.032250666666666664,0.893598907563025,0.03175066666666667,0.024687500000000008,0.893598907563025,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.88673,0.03175066666666667,0.8935989075630248,0.024687500000000008,0.015045801948051959,0.024687500000000008,0.015045801948051959,0.8935996166550485,0.024687500000000008,0.015045801948051959,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.024687500000000008,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.03637999999999999,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.89901,0.14847000000000002,0.14847000000000002,0.9007339999999999,0.14847000000000002,0.14847000000000002,0.89621,0.14847000000000002,0.8938900000000002,0.9001000000000001,0.9,0.14847000000000002,0.14847000000000002,0.9055199999999999,0.14847000000000002,0.8999583333333334,0.14847000000000002,0.89968,0.14847000000000002,0.14847000000000002,0.8958699999999998,0.14847000000000002,0.14847000000000002,0.9017842857142858,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8506600000000001,0.8981199999999998,0.17199,0.14847000000000002,0.8524299999999998,0.14847000000000002,0.89315,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.87568,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8936300000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89207,0.8953699999999998,0.14847000000000002,0.14847000000000002,0.89657,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8942400000000001,0.14847000000000002,0.8173300000000001,0.15895,0.14847000000000002,0.14847000000000002,0.90267,0.14847000000000002,0.8950699999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8954033333333333,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8933399999999999,0.14847000000000002,0.14847000000000002,0.889225,0.7725100000000001,0.8934399999999998,0.4720599999999999,0.14847000000000002,0.14847000000000002,0.8746700000000001,0.14847000000000002,0.7856799999999998,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.90076,0.14847000000000002,0.07200200000000001,0.8123999999999999,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.89693,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8984500000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.84601,0.89497,0.14847000000000002,0.07200200000000001,0.8350500000000002,0.8764800000000001,0.6744999999999999,0.14847000000000002,0.07200200000000001,0.8984500000000001,0.15744999999999998,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.84473,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.9000429999999999,0.89621,0.14847000000000002,0.07200200000000001,0.9008158333333334,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8990500000000001,0.7098199999999999,0.14847000000000002,0.07200200000000001,0.8986600000000001,0.50613,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.51675,0.8941799999999999,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.88354,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.16662,0.8777199999999998,0.89832,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.8256900000000001,0.89984,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.8144499999999999,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.171086,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.8981199999999998,0.9016,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8123999999999999,0.14847000000000002,0.8207099999999998,0.14847000000000002,0.48869999999999997,0.89779,0.14847000000000002,0.14847000000000002,0.8746700000000001,0.9001500000000002,0.14847000000000002,0.90073,0.8781599999999999,0.14847000000000002,0.14847000000000002,0.16784533333333335,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.8882300000000001,0.89954,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.15844999999999995,0.8953724999999999,0.14847000000000002,0.07200200000000001,0.8912599999999999,0.88989,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.8939776666666667,0.15844999999999995,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.8998099999999999,0.16111999999999999,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.8946,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.90155,0.07200200000000001,0.07200200000000001,0.89581,0.10675000000000001,0.8968499999999999,0.8978399999999999,0.8947199999999998,0.27225,0.07200200000000001,0.07200200000000001,0.8956500000000001,0.07200200000000001,0.8536800000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.083197,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8982299999999999,0.07200200000000001,0.89853,0.07200200000000001,0.27225,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.89564,0.88465,0.8854799999999999,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.11110957142857143,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.1028,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.10660399999999999,0.9016771428571427,0.07200200000000001,0.05506000000000003,0.7329600000000001,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.9056700000000001,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.08343000000000003,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.8962199999999999,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.09931999999999999,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.8969199999999999,0.8138400000000001,0.07200200000000001,0.8456199999999999,0.90075,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.05506000000000003,0.05506000000000003,0.8912599999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.9026349999999999,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.9005099999999999,0.054220000000000025,0.032140666666666644,0.11219000000000001,0.8951399999999999,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.05506000000000003,0.03175066666666667,0.05506000000000003,0.03175066666666667,0.89505,0.05506000000000003,0.03175066666666667,0.49933999999999995,0.05506000000000003,0.03175066666666667,0.05506000000000003,0.03175066666666667,0.25558000000000003,0.05506000000000003,0.06287333333333334,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.81565,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.03175066666666667,0.024687500000000008,0.03175066666666667,0.024687500000000008,0.03175066666666667,0.03175066666666667,0.03175066666666667,0.024687500000000008,0.03175066666666667,0.07862,0.03175066666666667,0.03175066666666667,0.8935999999999996,0.03175066666666667,0.03175066666666667,0.024687500000000008,0.03175066666666667,0.05196333333333334,0.893596387347932,0.024687500000000008,0.015045801948051959,0.024687500000000008,0.015045801948051959,0.024687500000000008,0.015045801948051959,0.025540000000000007,0.024687500000000008,0.8935999999999996,0.04099000000000001,0.024687500000000008,0.015045801948051959,0.015045801948051959,0.015045801948051959,0.021319974747474754,0.28351,0.015045801948051959,0.90107,0.9000400000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8679300000000001,0.27691999999999994,0.17974999999999994,0.9060599999999999,0.83568,0.14847000000000002,0.14847000000000002,0.89161,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8987999999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89635,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8933399999999999,0.896396,0.14847000000000002,0.8764800000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8915200000000001,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8978742857142858,0.8956439999999999,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8883300000000001,0.14847000000000002,0.14847000000000002,0.19768999999999998,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8969300000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.16412,0.89976,0.14847000000000002,0.8940666666666667,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8999583333333334,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.89764,0.89986,0.9028699999999998,0.45043000000000005,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.8918623333333334,0.14847000000000002,0.14847000000000002,0.8785449999999999,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.14847000000000002,0.07200200000000001,0.9009336666666667,0.17497000000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8990500000000001,0.90076,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8949300000000001,0.14847000000000002,0.15203999999999998,0.8927999999999999,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8977199999999999,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.9028699999999998,0.8969299999999999,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.89621,0.14847000000000002,0.07200200000000001,0.89204,0.8870000000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8918623333333334,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8928199999999998,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.8971699999999998,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.83812,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.9058699999999998,0.14847000000000002,0.89978,0.14847000000000002,0.14847000000000002,0.89734,0.14847000000000002,0.89976,0.14847000000000002,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.27226999999999996,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.16276000000000002,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.8207099999999998,0.89497,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.8965200000000001,0.8969299999999999,0.9055,0.14847000000000002,0.07200200000000001,0.8934399999999998,0.47296000000000005,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.89832,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.05506000000000003,0.14847000000000002,0.07200200000000001,0.8955399999999999,0.89345,0.14847000000000002,0.84108,0.14847000000000002,0.14847000000000002,0.07200200000000001,0.14847000000000002,0.14847000000000002,0.8350500000000002,0.9010058333333333,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.015045801948051959,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8176499999999999,0.07200200000000001,0.87331,0.07200200000000001,0.07200200000000001,0.07300999999999999,0.8625700000000001,0.07200200000000001,0.8947199999999998,0.07200200000000001,0.07200200000000001,0.73879,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8962199999999999,0.07200200000000001,0.07200200000000001,0.8959800000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.07200200000000001,0.8836291666666666,0.07200200000000001,0.89709,0.12962999999999997,0.07200200000000001,0.07200200000000001,0.61423,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.8852500000000001,0.07200200000000001,0.05506000000000003,0.8868941666666667,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.89229,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.9000799999999998,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.07200200000000001,0.05506000000000003,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.8734100000000001,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.024687500000000008,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.87278,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.900666,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.03175066666666667,0.07200200000000001,0.05506000000000003,0.8625700000000001,0.07200200000000001,0.07200200000000001,0.8950799999999999,0.07200200000000001,0.9028700000000001,0.9024190000000001,0.20915,0.07200200000000001,0.9009320000000001,0.07200200000000001,0.05506000000000003,0.07200200000000001],\"times\":[0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.3333333333333333,1.0,0.1111111111111111,0.3333333333333333,1.0,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.3333333333333333,1.0,0.3333333333333333,1.0,0.3333333333333333,1.0,0.3333333333333333,0.3333333333333333,0.3333333333333333,0.3333333333333333,0.3333333333333333,0.3333333333333333,1.0,1.0,1.0,1.0,1.0,1.0,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.1111111111111111,0.3333333333333333,1.0,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.3333333333333333,1.0,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.3333333333333333,1.0,0.3333333333333333,0.3333333333333333,0.3333333333333333,0.3333333333333333,1.0,0.3333333333333333,0.3333333333333333,1.0,0.3333333333333333,0.3333333333333333,1.0,1.0,1.0,1.0,1.0,1.0,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.1111111111111111,0.3333333333333333,1.0,0.1111111111111111,0.3333333333333333,1.0,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.3333333333333333,1.0,0.3333333333333333,0.3333333333333333,1.0,0.3333333333333333,1.0,0.3333333333333333,0.3333333333333333,0.3333333333333333,0.3333333333333333,0.3333333333333333,1.0,1.0,1.0,1.0,1.0,1.0,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.1111111111111111,0.3333333333333333,1.0,0.1111111111111111,0.3333333333333333,1.0,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.3333333333333333,1.0,0.3333333333333333,1.0,0.3333333333333333,0.3333333333333333,1.0,0.3333333333333333,0.3333333333333333,0.3333333333333333,0.3333333333333333,0.3333333333333333,1.0,1.0,1.0,1.0,1.0,1.0,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.1111111111111111,0.037037037037037035,0.037037037037037035,0.1111111111111111,0.1111111111111111,0.3333333333333333,1.0,0.1111111111111111,0.1111111111111111,0.3333333333333333,1.0,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.1111111111111111,0.3333333333333333,0.1111111111111111,0.1111111111111111,0.3333333333333333,0.3333333333333333,1.0,0.3333333333333333,1.0,0.3333333333333333,1.0,0.3333333333333333,0.3333333333333333,0.3333333333333333,0.3333333333333333,0.3333333333333333,1.0,1.0,1.0,1.0,1.0,1.0,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.00411522633744856,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,1.0,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.3333333333333333,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.1111111111111111,0.012345679012345678,0.037037037037037035,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.012345679012345678,0.037037037037037035,0.012345679012345678],\"x0\":[3.458344993497324,-0.5755236791448688,2.244330740924722,-3.092043730782528,-7.19500866519835,3.2567260621056207,0.9095718045455552,0.5394011954017675,-8.700106698208218,9.853668704563383,6.574464556273277,6.574464556273277,6.574464556273277,6.574464556273277,8.51092107502815,9.643604770336147,-3.6395256915886804,9.970135325079688,6.426596803147898,1.8092653270904044,-2.472121155987905,9.402044486559095,-4.874584594947207,9.5768931375706,-4.94109411231467,-1.6038918721671447,-3.745951010628634,-7.9381641912782115,9.732536788528694,8.753911881865228,9.826395129090958,8.492890362988586,9.853778798602491,9.251716622210523,9.719356290547232,9.630419069540267,2.3380104165642344,9.763309496699001,9.763309496699001,9.763309496699001,9.763309496699001,-9.552625719969283,6.554681883120715,9.84977048715482,9.815534181231577,9.539712298657783,-5.082089323681087,5.725329665789198,2.4019950582466247,9.88130105948349,9.747250035728555,9.228643390851957,9.763078466876525,9.802939003949913,9.935284939572643,0.25769417758889546,9.960496329807874,7.92048648317024,9.577432028730264,9.821508965096484,1.0360896196476528,9.93961587033182,9.76906747573706,9.6282332165815,-4.997937869404709,9.529649337221812,-9.708534025686859,9.419731223037946,8.860850609979614,9.62334416759833,1.9229517743384523,9.956552681121728,9.933140705776083,9.444139336369815,9.774878231186186,9.953091147147237,9.701874785569085,9.668216960622253,9.80725174840287,9.436587043648455,9.545249839206807,9.756594763894533,9.960925604888654,9.445326030764889,9.87624703551037,9.534206759053454,5.9590684299625565,9.995552137969458,9.804221103860215,-8.683887257191017,9.671653892351607,9.715086374724219,-5.472280411662149,9.818711214539377,9.820609282246835,9.852262375319523,9.495334091289877,9.80519647003641,9.526783891334006,6.556778752490612,5.7536777878861365,5.7536777878861365,5.7536777878861365,5.7536777878861365,5.7536777878861365,-4.523903661915556,9.539709528084352,9.539709528084352,-9.31257872834484,2.116101841603637,9.91750342105075,9.665932869376256,-7.474521758248384,9.706434943784188,9.846837146163601,9.639286206965927,9.639286206965927,9.583114872718184,9.833278494248546,9.833278494248546,9.833278494248546,9.833278494248546,9.562091394453766,9.562091394453766,-2.596657464349434,-7.339610028676853,9.916734463361355,9.908937610640272,9.908937610640272,9.951781023618402,9.64286227294481,9.575677200174034,9.902464542197382,-3.8033781568279394,1.0235536956399471,9.679201314846452,9.45347192727067,9.45347192727067,9.617371251240463,9.617371251240463,9.746291982248614,9.746291982248614,9.936028047679418,9.866567218611284,9.866567218611284,9.949939229932557,9.949939229932557,9.922000848049969,9.925983712312402,9.925983712312402,9.60965114069825,9.738554719271832,-8.575300375909015,9.587078868041516,9.587078868041516,-7.7616361986324245,9.542749391208424,9.542749391208424,-1.6498290400988775,9.518694065534149,9.518694065534149,9.683238204021158,9.683238204021158,-5.620959057145594,9.943115957479698,9.943115957479698,9.917409822179422,9.917409822179422,7.971775469953645,9.661519223933105,9.661519223933105,2.340865425853716,9.945331270888556,9.945331270888556,9.881960855844163,9.881960855844163,9.91624025071,9.91624025071,9.714035701161233,9.714035701161233,9.739357043007288,9.739357043007288,-7.722522084092729,9.804702123455868,9.804702123455868,0.3095634677661252,9.575551165549196,9.575551165549196,9.633103521997842,9.633103521997842,9.731090129711944,9.731090129711944,9.876396518537604,9.876396518537604,2.293544491145571,-1.2063144878834127,9.870364401179359,9.870364401179359,-0.4171438214106544,5.088210420749107,2.69425312447723,9.544159750445498,9.544159750445498,9.584962101658341,9.584962101658341,-2.3519230148043,9.771596894028882,9.771596894028882,9.543304581321198,9.543304581321198,9.639229701939268,9.639229701939268,-9.289677267894534,-5.639846861719107,9.769744603283876,9.769744603283876,9.755615337330976,9.755615337330976,9.659978816242457,9.659978816242457,9.659978816242457,9.646045332204704,9.646045332204704,-7.96150400169868,3.6338408718392134,-5.521945110969082,9.720765316628007,9.720765316628007,9.720765316628007,9.720765316628007,9.898873650588051,9.898873650588051,9.898873650588051,-2.7399284122702543,9.73152110627979,9.73152110627979,9.73152110627979,4.379523886087682,6.6542015433824595,9.73675639035756,9.73675639035756,9.73675639035756,9.741387065780977,9.741387065780977,9.741387065780977,9.797311138147144,9.797311138147144,9.797311138147144,-0.5395631711136986,1.651316474408187,1.651316474408187,1.651316474408187,1.651316474408187,9.578555231336935,9.578555231336935,9.578555231336935,2.5972799060231466,2.5972799060231466,2.5972799060231466,2.5972799060231466,2.5972799060231466,9.573555654550788,9.573555654550788,9.573555654550788,9.78945202932562,9.457051919834608,9.457051919834608,8.994019097552265,-0.19236753279133723,9.49149351583819,9.49149351583819,9.49149351583819,9.61868536217969,9.61868536217969,9.61868536217969,9.493507556639841,9.493507556639841,9.493507556639841,9.524262766575717,9.524262766575717,9.524262766575717,-4.094855743021935,9.704337805100916,9.704337805100916,9.62288356852497,9.550778961798404,9.550778961798404,9.550778961798404,7.736347845999433,7.736347845999433,7.736347845999433,7.736347845999433,7.736347845999433,7.736347845999433,9.618756224977101,9.618756224977101,9.618756224977101,9.49755608636551,9.49755608636551,9.49755608636551,9.51619779772168,9.51619779772168,9.51619779772168,9.744919275762875,-3.8652651996093557,8.989889336712988,8.989889336712988,9.515535846321107,9.515535846321107,9.515535846321107,9.515535846321107,9.66966925868439,9.66966925868439,9.66966925868439,9.897297763544493,9.897297763544493,8.765404673354187,9.035631764692347,-9.469761401509945,9.78145232342203,9.78145232342203,-4.595311684905628,-6.213384189661233,9.436241861249016,9.436241861249016,9.688362324134594,9.688362324134594,9.850970657697204,9.850970657697204,-7.885909696673437,9.53901103224306,9.53901103224306,9.387470550149068,9.387470550149068,9.713066312164948,9.713066312164948,-1.2695192643032662,-0.18251082913158,9.44150511454701,9.44150511454701,9.892296309045825,9.892296309045825,3.5699138304190132,-9.345556634574997,7.41930347738219,1.0877491704463598,9.325021049684555,9.325021049684555,9.901612990386592,9.464226042786184,9.464226042786184,9.531530132083823,9.531530132083823,9.415279685336767,9.415279685336767,9.816722156831865,9.816722156831865,9.816722156831865,9.156737494569214,9.156737494569214,-1.0210427738165944,-3.83047879461966,-7.609511505833197,9.26313592440319,9.29215509812267,9.291177315149419,9.291177315149419,9.697438267244102,-5.236183132766619,-6.763356667923475,-1.9259196035483015,9.474961566033091,9.474961566033091,9.474961566033091,9.474961566033091,9.474961566033091,-1.9230759951526455,9.434050410202673,9.743362073820837,-8.843168913454498,9.908714688487596,7.329604579522929,7.329604579522929,5.821314223774472,9.374386296809387,9.664852573489124,9.917050037475647,9.917050037475647,9.917050037475647,9.917050037475647,9.659885966896379,9.776817393895318,9.776817393895318,9.776817393895318,9.776817393895318,9.435319135861647,-9.901526476627222,9.255776307553162,9.603130497268694,9.603130497268694,9.603130497268694,1.6884595792067376,9.85242276096097,9.85242276096097,9.85242276096097,9.20286495281902,9.23855694979359,4.408797115751863,9.970283712701114,9.412149440972286,9.852654208444719,9.852654208444719,9.852654208444719,9.766625205475894,9.766625205475894,9.766625205475894,6.361156803678231,-5.996215961448367,9.663089956070397,9.663089956070397,9.94829512628565,9.94829512628565,5.615675661958155,5.615675661958155,9.104614896355304,9.104614896355304,8.424685632144861,-0.6001016151973282,9.778345392544232,9.778345392544232,9.778345392544232,9.520346098341822,9.520346098341822,9.520346098341822,-8.964411606642749,9.287443066502014,9.45486037274653,9.45486037274653,0.6155102399843209,9.986121640544297,9.986121640544297,1.6517924356729718,9.366189494786983,9.366189494786983,8.064929240214433,-2.8083305350310344,9.845548800259639,9.845548800259639,-5.50835904264761,6.145241589895523,4.711448541208101,-8.017140465250328,9.41651678638166,3.405312809441325,3.405312809441325,8.582184197630323,8.895169634608727,7.904155002981852,8.46874745877803,4.511865410143471,4.511865410143471,9.533582999697472,9.533582999697472,9.145125495881544,9.145125495881544,8.610095626346045,9.428280830071632,6.0950109629502975,9.758091648356665,9.758091648356665,9.460498892657117,9.460498892657117,9.391535072313758,9.391535072313758,8.191144570384164,8.484424087950597,9.901174650932877,8.806918589873366,-2.9498053229981007,7.0485045385921055,9.518864682212755,9.343456700295452,9.343456700295452,-5.088088829888202,-5.206774229398816,9.871362871242816,9.871362871242816,9.871362871242816,9.871362871242816,9.806081528284516,9.87925253753674,5.151535475672658,-4.8642747685896275,-8.298331221205949,-3.910056656236698,9.954331557663323,9.802489868617286,9.88003317092,9.949001370643916,9.949001370643916,9.949001370643916,9.825245388766497,9.825245388766497,9.825245388766497,6.708567131908499,-9.71267945684989,9.871046567030117,9.871046567030117,-7.685194042283332,9.872823275937296,9.872823275937296,7.199456193905437,-6.508045913108347,-6.7785710768717955,2.3574246650039843,9.879837456246456,9.879837456246456,9.796889931468758,9.796889931468758,9.923189706388072,9.923189706388072,-0.1635985689683217,9.892626771603346,9.892626771603346,9.911577840583249,-3.8507618097339025,3.995984525628433,9.922470010649384,9.818169403001558,9.770928578887766,9.70959382958295,9.77532705006847,9.886452888244584,9.886452888244584,9.886452888244584,9.816910255812132,9.816910255812132,9.816910255812132,9.908496858829082,9.908496858829082,9.860124295824477,9.860124295824477,9.97761305912243,9.97761305912243,1.063892947013688,5.988209772046654,9.93514470050441,9.93514470050441,-4.990638170649746,1.8969836014395032,9.841844000897776,9.845836462655662,9.845836462655662,9.904330081569782,9.904330081569782,9.943908702941538,9.943908702941538,-0.5659946881901483,9.938346756147599,9.895065655794141,9.911983688041445,-0.21873770106086,9.908775109969731,8.016492727414843,9.337914228642113,1.1344746876642553,9.059711281175883,9.255873975995492,7.418534824316293,9.284461322708005,9.284461322708005,9.284461322708005,5.550034435945319,9.309237335127023,9.309237335127023,-0.7733724499541434,9.288404226718256,9.288404226718256,9.361568332413924,9.361568332413924,4.692663321753361,9.851092953467159,9.590356000126008,9.928194210356384,9.483336591049493,7.724149079231605,9.473992811383816,9.728047911933547,9.032225349734336,9.032225349734336,9.860136446503432,9.410085526557324,9.410085526557324,9.046764071869621,9.046764071869621,9.136340725928363,9.136340725928363,9.53725430878444,9.20189220574467,9.20189220574467,9.894284760882524,-5.41921885263222,9.675038084891433,9.898636434672209,9.710281536520714,9.671522074764678,0.40519799206597895,8.947632625664419,8.947632625664419,9.443441874583804,9.443441874583804,4.631921674143033,4.631921674143033,9.47293864497924,9.47293864497924,9.734009661091736,-7.895534058429661,9.507793134706766,3.225900612635055,9.424299865130369,9.424299865130369,4.176541853991136,-8.491785457766047,9.23960190704047,9.23960190704047,7.540526705790288,9.824001129902669,2.600482211968128,-2.9041112160809384,-5.178816597931791,9.063736923735139,9.063736923735139,9.383104048691731,9.383104048691731,7.4741345132214505,-7.767542696704124,9.29745091463553,9.29745091463553,9.552699865517656,9.376543009867653,9.376543009867653,1.581701572764647,-5.8825443943315525,9.511422090233662,9.640547500848133,7.826977724996958,5.869663625148508,9.87454931738338,9.535363897481592,9.513678041420441,9.43377152301974,9.43377152301974,9.184464950151586,9.184464950151586,9.494253071949348,9.55409458792974,9.471171507709176,9.471171507709176,5.487299065742988,9.44667367862015,9.44667367862015,9.404533735215587,9.404533735215587,9.554153886567395,-0.19233110945206633,6.228223447857658,8.063442645496941,6.475479686864272,-2.006053482376336,9.678305403725997,9.903228854628118,9.297938563288248,9.297938563288248,9.509791379994368,7.553857698430068,9.222159481361448,9.222159481361448,7.8026127549490525,9.039086016335741,9.039086016335741,9.433440139052063,9.433440139052063,9.496184249838812,9.814000360730226,8.848522879700383,5.700374639729176,9.683117288584803,9.115496293889905,9.115496293889905,9.600100938691675,2.1052784841136667,-8.779380875354839,5.777064961237137,9.479446635046834,9.859857439122159,2.126141280890101,0.854115951883113,7.93011044554914,9.059389224203215,9.059389224203215,9.078040322111171,9.078040322111171,9.081560388340442,9.081560388340442,9.409586795857724,9.409586795857724,8.58593179546569,3.0121814272070537,9.458333286778885,9.458333286778885,0.41299397086339695,9.137468498764598,9.137468498764598,9.601380363179281,9.206119450311295,9.206119450311295,9.940477085631557,9.331792126100154,9.331792126100154,5.961196547261892,9.411050524998409,9.411050524998409,9.056855692197079,9.056855692197079,9.160559772019273,9.160559772019273,9.434848149476704,9.434848149476704,9.407213769521487,5.279589372043258,8.165250597942581,9.970711375339835,9.501363351204677,4.301654196670508,9.687811131339686,5.41957825496176,9.649919803572466,9.519192797858263,9.519192797858263,9.519192797858263,9.519192797858263,9.519192797858263,9.519192797858263,9.848897309057662,9.275221344899371,9.275221344899371,9.275221344899371,-1.052402044593947,2.2341476853750635,0.9868867785312059,4.300294652857431,4.300294652857431,0.6565431300872486,3.540436505060672,9.547898595576878,9.547898595576878,9.547898595576878,9.547898595576878,9.547898595576878,9.41369673732407,9.41369673732407,9.41369673732407,9.73267438287007,9.73267438287007,9.73267438287007,9.73267438287007,9.73267438287007,9.723713392965486,9.723713392965486,9.723713392965486,9.723713392965486,9.555886478083973,9.555886478083973,9.555886478083973,9.555886478083973,9.134897296150854,9.134897296150854,9.134897296150854,-0.7691446416135186,9.493940944596527,9.562050446803298,9.72735420124604,9.72735420124604,9.72735420124604,9.72735420124604,-3.519692960008907,9.094061744014159,9.094061744014159,9.094061744014159,-6.216532832132227,-0.8773929385357739,9.163092117221801,9.163092117221801,9.163092117221801,9.573827133213676,9.573827133213676,9.573827133213676,9.573827133213676,9.469236547635354,9.469236547635354,9.469236547635354,5.917013218418006,7.694069377531644,9.995214390136507,9.995214390136507,9.995214390136507,9.995214390136507,7.4723339663327195,9.101299965439502,9.101299965439502,9.101299965439502,9.999409905745992,9.999409905745992,9.999409905745992,9.999409905745992,9.685338896719152,9.92878237890605,9.154918484240017,9.154918484240017,9.154918484240017,9.076976746880195,9.076976746880195,9.076976746880195,9.567122923109547,9.220071913621656,9.220071913621656,-6.978883743372184,-9.68228247392285,-4.6727161725777755,9.69195113662829,9.372590199497267,9.372590199497267,9.468557212942514,9.468557212942514,9.468557212942514,-3.5200302698965613,9.643170997581493,9.149355377558123,9.149355377558123,9.597327777310387,9.8199426059155,-4.210341510539943,8.958607310998968,8.958607310998968,9.613193806251939,9.615445445905774,9.932023001034594,-1.59567245993615,9.452094267679897,9.452094267679897,5.577949321114442,-7.3851660403283255,9.636170733776904,-4.141194954732759,9.35289097920635,9.35289097920635,9.652350229145735,9.946395813812622,9.561202433778572,-7.0524711196564205,-6.892445343653602,9.868034541502311,9.864512260521586,9.57592850930197,9.57662127047368,9.96870889929627,9.577407664973705,-7.502485515325721,9.832204774807948,9.770053099385105,9.10674975026253,9.10674975026253,9.590305212335053,9.325627854028507,9.325627854028507,9.795247241170586,9.431282513125069,3.101308262717966,7.688662186314826,9.522227967377315,-4.570179288008367,9.528324529480749,8.586299121291294,9.240905224493499,9.240905224493499,9.58589885508852,9.529515067662501,9.221687556872123,9.221687556872123,3.010351274211711,9.260278585753717,9.260278585753717,9.29627234098264,9.29627234098264,0.5070480933271231,9.497933697273382,9.290761292575827,9.290761292575827,9.290761292575827,9.964937058636544,0.9701219759567152,9.25063685745737,9.25063685745737,9.25063685745737,9.82170156761483,-6.068259257410928,9.517268205043372,9.345842403020775,9.345842403020775,9.345842403020775,7.839257730249514,-8.361456396911349,7.346688651964179,7.346688651964179,7.346688651964179,5.572746380172568,9.259002774264435,9.259002774264435,9.259002774264435,-9.575613267805439,9.025335381609704,9.025335381609704,9.025335381609704,9.681712186739752,9.874558102671784,7.2446197840015145,7.2446197840015145,7.2446197840015145,9.649461339333794,9.24170231976364,9.24170231976364,9.87066944438855,9.208821221512387,7.53961957904589,7.53961957904589,7.53961957904589,7.53961957904589,7.53961957904589,-0.44334482013822196,7.345760443643641,-6.6598572845989175,7.2701959799847735,7.421259540911819,7.421259540911819,7.686906581055521,7.686906581055521,-0.43267593994144704,9.451810791343608,3.8717859948783317,-4.909395047052476,2.208821199944067,-2.707466212484608,9.099475421492976,7.36328929228884,9.489965506757883,9.237659701720343,-9.750192727927915,7.339450713046144,7.550583388734108,7.550583388734108,7.459578400176092,7.459578400176092,5.004936062696361,9.150501334345705,7.559184427679931,7.559184427679931,-9.278216760946203,7.626640727000954,7.626640727000954,2.8188233518266,9.699479052507094,2.1783868374058546,7.690544685952922,9.727112252917689,-7.0168010640860246,9.648117274507353,7.51285438396032,7.51285438396032,7.579880542620273,7.579880542620273,5.45682050935422,7.507197281187871,7.507197281187871,9.396762074675,9.30352645661636,9.434338156462033,9.888770827419712,9.706706959202226,7.508346867166683,7.508346867166683,9.257111940858152,9.296028817856964,7.496072503390469,7.496072503390469,9.593794072161288,3.453462633861598,7.786287484887634,7.786287484887634,8.30133462001498,7.580039121720958,7.580039121720958,9.559896730936941,7.545691827174991,7.545691827174991,7.545691827174991,7.545691827174991,7.597358290567826,7.597358290567826,7.597358290567826,7.597358290567826,-3.2517873850491963,7.522610236284937,7.522610236284937,7.522610236284937,6.70381918342915,-0.5081786281180705,7.411345672949146,7.411345672949146,7.411345672949146,7.19816704189439,7.19816704189439,7.349941203599798,7.349941203599798,9.870493833636477,-8.882050342146751,-4.5055045222327035,7.881492781306324,7.881492781306324,7.881492781306324,9.473309754638318,7.421859047935804,7.421859047935804,7.421859047935804,7.154135372144722,7.154135372144722,7.438403113424876,7.438403113424876,7.438403113424876,9.50032249240737,9.683019500390714,7.610934774934023,7.610934774934023,7.610934774934023,-9.194874784230077,9.091636605704615,-9.348747267278753,0.5900392114313835,9.285504388332324,7.650390224409744,7.650390224409744,9.674895147083255,9.424736482420784,7.107955248336157,7.107955248336157,9.735591243931417,9.735591243931417,9.735591243931417,9.735591243931417,-5.686179864880212,9.151152734053777,7.392253422125975,-2.455159946422798,-4.225592349633896,9.59344481936084,7.597236834814279,3.130079876401613,-6.212333991933057,9.796782234293236,9.796782234293236,9.796782234293236,-4.263525822204759,4.702576896428422,9.811635910692754,9.811635910692754,9.811635910692754,9.706713713915413,9.706713713915413,9.777447515720706,9.777447515720706,9.699305972421602,9.699305972421602,9.220785821648487,9.781260230951414,9.287002027838412,0.6812295761255776,9.606368272629563,9.606368272629563,-1.126259210756519,7.480765901617637,9.539854098275406,9.539854098275406,9.068066140095638,9.638268180675581,9.638268180675581,7.068579202572202,7.068579202572202,7.068579202572202,7.407237213965118,7.407237213965118,7.2495645056534315,7.339917835979527,7.237360934484094,5.456584220316801,7.241607431261407,7.060364010645152,6.899295117388693,6.804330849592816,7.551105481010705,7.551105481010705,6.975901816177355,6.975901816177355,6.975901816177355,7.26842940641442,7.26842940641442,7.280421493817396,-6.406768406433459,-4.645570819183826,7.484076014268929,7.484076014268929,7.90398015146646,7.3769789068517575,7.3769789068517575,-3.2162313976786594,-9.531116737197745,9.641650353996543,7.358764932916685,7.358764932916685,7.732471631719321,6.88535638580332,6.88535638580332,7.408577247739348,-4.249152820626438,7.229559719542614,0.8800498921991906,7.225974752632634,2.9105054359762548,7.065431941731276,-1.9733245831802666,-1.8187106374477402,7.311563798971118,2.1914826531369886,7.012960611840256,7.098169960624272,7.071598235614516,8.686088744423135,6.825365915933798,7.158012410913241,-2.289405350264209,6.978115822177767,5.393788413667819,-5.089215676278229,6.961945104113706,7.050845169719079,7.067253725368424,6.983097395454834,7.121024470442151,7.033911336481889,7.0927428057149555,7.341727619488452,7.060402437656968,-3.473858189362886,7.048674650343948,7.079677806689222,6.969233381014362,-5.808748886309118,7.101436899234681,9.661451874886772,-4.419543691879952,7.014567330778661,-1.201338993777636,7.123309579654602,7.9370807688578395,2.3867162054961977,6.593297768200728,7.136854183726758,7.060992212022214,7.131290856502609,7.500485605953578,3.642620890095497,7.086210273245403,7.09051260843464,7.21385173783694,7.088261897773492,-0.3588837048843967,7.147544492044673,7.16441670196016,7.1999556611036155,7.003228948347083,6.957670496951749,7.029080031662531,7.054140916543737,8.063274748601302,7.012791552605773,7.203460750640488,7.133221090246298,7.104535146965251,0.9070998986723318,7.094173661395697,7.029448005831661,7.216999565905947,-6.994962000240763,-1.6036042756426383,7.005609762923221,9.357033700768248,7.185810061954079,7.238808420518254,7.02321866861238,7.143394100240805,7.073637960655951,1.2409275241536974,7.08074218088332,7.015092270332261,-9.325858684913353,7.28921469254216,7.077288944344986,7.124062671482005,-1.3597560625783451,0.30978940160383495,-0.9200310354465628,7.2449068728008825,7.064083815457796,7.200024703501374,7.087535046891279,7.028602922244069,7.028602922244069,7.028602922244069,7.028602922244069,7.028602922244069,7.028602922244069,-9.890062713533844,6.985029198751214,6.985029198751214,7.787596528310662,-6.079291224143297,7.232397747455163,7.232397747455163,7.244948733254507,7.244948733254507,0.43576283934059035,-7.304065467655323,-7.689175423247168,7.125692187375712,7.125692187375712,7.154209680498283,7.218425195977627,7.218425195977627,7.011921844316436,7.011921844316436,7.25843521290933,7.25843521290933,7.080944766900181,7.080944766900181,7.091142049448141,7.091142049448141,6.402875484003005,2.40393986899681,4.959153367775178,1.5837319872944704,7.153142382879455,7.153142382879455,-1.5756073207599535,6.958008961437422,6.958008961437422,7.146052171576947,7.146052171576947,7.215932121955216,7.215932121955216,6.886033651564105,6.886033651564105,-7.219055916267749,8.36226888862305,7.124135557272282,7.124135557272282,5.362562324852645,7.172638670262664,7.278162383333758,7.278162383333758,5.516014023868401,7.159371167412299,7.159371167412299,-9.59402388761405,-8.60981468716975,7.2673665056230945,7.2673665056230945,0.4531057805177259,0.04981374882413725,7.096612426915332,7.096612426915332,-8.453840995466262,7.103918743233031,7.103918743233031,-6.24863209562367,2.662868217322549,7.090993839689215,7.090993839689215,7.059917103650189,7.059917103650189,7.062157790857828,7.062157790857828,5.469723233478057,7.197305543442859,7.197305543442859,7.015745609060119,7.015745609060119,7.109272110977141,7.109272110977141,1.5596687013796284,7.054948288831266,7.054948288831266,7.224949915529116,7.224949915529116,-1.0440197059792204,-0.4331976470382841,7.04246763931333,7.04246763931333,6.962153430696414,-6.407846444911051,-4.096992509189803,7.046081427607252,7.046081427607252,7.147168745836549,7.147168745836549,7.036072397237184,7.036072397237184,7.289120531557014,7.289120531557014,-6.625796168445688,7.132455015897463,7.132455015897463,7.119734726791982,7.119734726791982,-5.793643533220749,7.143811802597206,7.143811802597206,7.050936359699634,7.050936359699634,6.33129985375238,4.0854869820305595,9.673622829415283,-8.543439306539211,0.018312131321991387,6.863465494755161,6.863465494755161,7.066264291396799,7.066264291396799,7.163914530168686,7.163914530168686,-3.9308820494301555,7.0673322568429775,7.0673322568429775,7.167895187438464,7.167895187438464,7.167895187438464,7.1854624023789455,7.1854624023789455,7.1854624023789455,-2.3983486245717556,7.075303694389159,7.075303694389159,7.075303694389159,7.183204975442926,-0.10268925377775417,6.9438523528560445,6.9438523528560445,6.9438523528560445,7.034924733937331,7.034924733937331,7.034924733937331,7.144422166638726,7.144422166638726,7.144422166638726,7.306649925771531,7.306649925771531,7.306649925771531,7.100869503608294,7.100869503608294,7.100869503608294,6.985835333549375,6.985835333549375,6.985835333549375,6.963852191031286,6.963852191031286,6.963852191031286,7.082015405447812,7.082015405447812,7.082015405447812,3.9941803076670173,2.4595273218437796,5.619634167885707,3.0483080923188233,7.068351900752631,7.068351900752631,7.068351900752631,-3.917509881003223,7.234232694557658,7.234232694557658,7.234232694557658,6.983319474691562,6.983319474691562,6.983319474691562,7.221290339699269,7.221290339699269,7.221290339699269,6.924579513799586,6.924579513799586,6.924579513799586,7.113019994894067,7.113019994894067,7.113019994894067,7.113019994894067,7.113019994894067,-8.074247667551102,4.907261634822518,6.841118379232519,7.049397648877488,7.074971579752685,7.074971579752685,7.074971579752685,7.074971579752685,7.074971579752685,7.210421927526596,7.210421927526596,7.210421927526596,7.210421927526596,7.20361433752754,7.20361433752754,7.20361433752754,7.20361433752754,-3.0705518393747955,7.005337429246339,7.005337429246339,7.197548399356471,7.197548399356471,0.6782855377581107,-6.5859763570729175,-1.0940250735231878,6.982437608206762,6.982437608206762,6.985074040367802,6.985074040367802,6.998958166303261,6.998958166303261,7.23351222207139,7.23351222207139,7.061396011321527,7.061396011321527,-5.851287523411499,5.25515576383966,7.173494785425881,7.173494785425881,7.063760411787772,7.063760411787772,7.061124761103514,7.061124761103514,7.134770171925602,7.134770171925602,7.023400438957822,7.023400438957822,7.023400438957822,7.023400438957822,7.142031265797563,7.142031265797563,7.142031265797563,7.142031265797563,5.762177384536567,7.2175248969366095,7.2175248969366095,7.2175248969366095,7.2175248969366095,7.023577362542746,7.023577362542746,7.023577362542746,7.023577362542746,-3.742664010999894,7.190017674406029,7.190017674406029,7.190017674406029,7.116334618250516,7.116334618250516,7.116334618250516,2.1077298012115087,7.186423230950332,7.186423230950332,-7.878709702391822,-8.739764795147373,7.2365867398967225,7.240987780401266,0.3420617289594503,7.366345469270964,7.085066841937543,6.910550529723192,7.057976419600237,7.217135727899322,7.134453727964807,2.3426839618083264,-8.652097235969125,7.011213371757179,7.225431725722991,7.175014421153481,2.276122170098109,7.062455013284122,7.062455013284122,5.515086244604255,3.3324158093747975,7.157822490897246,7.043996193311052,7.871148673942489,7.224869720067261,7.140118175186693,7.099445831482502,7.16992805188498,-3.762792744066532,7.073636919675334,9.693467668421324,7.065661539404811,3.318558021128057,7.133483695976647,7.256127701924175,7.141389065810138,7.310851869031126,6.997589524136345,7.2051579629747735,7.0877035987917445,7.242265209074137,7.232437909716079,7.250754700525356,-1.0727948174705748,7.142884738211329,7.241671621913667,7.244972609088574,7.227152871641124,7.226414868161488,7.195280136285788,7.353718775894116,-1.353221856472011,7.08599831469553,4.959521916693895,7.218491994784063,7.218491994784063,7.218491994784063,7.218491994784063,7.218491994784063,7.267987391868594,7.267987391868594,2.911354467191263,9.161134907825435,7.207230964033677,7.207230964033677,7.03263510280037,7.03263510280037,7.142820832279625,7.142820832279625,7.309051375978779,7.309051375978779,2.8037410757225167,-2.2006003762868502,-4.319641882561771,7.166330461852059,7.166330461852059,7.2828135203974504,7.2828135203974504,7.192904206517895,7.192904206517895,7.153402979985067,7.153402979985067,7.155600841576209,7.120295465075873,7.120295465075873,7.214237703807967,7.214237703807967,7.114094176152726,7.114094176152726,7.073435336357534,7.073435336357534,7.227518353923685,7.227518353923685,7.224534176444376,7.224534176444376,2.8402774978464755,7.088635079619408,7.088635079619408,7.155105818884998,7.155105818884998,7.155105818884998,7.155105818884998,-6.741406886251129,7.246049156926638,7.246049156926638,7.246049156926638,7.246049156926638,7.20913401317798,7.20913401317798,7.20913401317798,7.127405781249788,-1.815675130851437,7.227297644313428,7.227297644313428,7.227297644313428,6.985804120117621,7.296874708956899,7.199542013072843,7.199542013072843,7.199542013072843,7.154980552270807,7.154980552270807,7.154980552270807,7.17945199807485,7.17945199807485,7.17945199807485,-8.002500731420941,7.159865144218724,7.159865144218724,7.159865144218724,0.19162697055006994,7.234926824015027,7.234926824015027,7.306294961430634,7.253492872481299,7.181732109904566,7.194636672191198,7.109400763155762,7.109400763155762,3.091819441946903,4.22242610804512,7.212575546252793,-7.633739248861746,7.222430065966112,7.193054879316133,7.068413851638386,7.095894193247226,7.169148707767988,7.235581867485397,7.049455809972606,7.1707076958941975,-7.523062419558411,7.389599130579768,7.389599130579768,7.389599130579768,7.119009105811372,7.119009105811372,7.119009105811372,7.119009105811372,7.1424619627427255,-1.357996615761989,7.125292729737506,7.125292729737506,7.125292729737506,7.16321829586693,7.16321829586693,-3.228165909252308,7.2267123682727465,7.2267123682727465,-5.630202879151767,7.090934663234865,7.090934663234865,7.14593592130036,7.14593592130036,7.282013812413098,7.282013812413098,7.20164258264791,7.20164258264791,7.189259236098135,7.0724940154461855,-6.450201956134225,7.07742952057427,7.07742952057427,7.07742952057427,7.022919247997908,7.022919247997908,7.022919247997908,7.025973352438555,7.025973352438555,7.0832824712622475,7.0832824712622475,-0.907198165970355,7.056686071821449,7.056686071821449,8.948759215629682,-6.194686696174127,-9.731475247877741,8.073795631623526,7.078325699107591,7.017307029211871,7.0112902384133164,7.05328851685416,6.994601630958904,7.147388619463438,7.147388619463438,-5.703729975847347,7.196339053262818,7.196339053262818,-2.464122015970327,7.030741108916743,7.030741108916743,7.009907938724474,7.009907938724474,-7.251797328879137,7.036333813460573,7.1931288288505755,6.300558951767563,-9.8782403284873,6.8548032988225245,7.121997701615438,6.992495758574474,-0.541331336304383,2.711617095583989,7.184064599238724,7.082939636515409,7.082939636515409,7.082939636515409,7.082939636515409,7.082939636515409,7.082939636515409,6.945777077314236,7.218499470653207,7.084832164411868,-8.16284968748935,6.918334107975003,0.8736456021996108,8.389216484487662,7.196483582471544,7.118560621104017,9.399727259195508,-1.1782097567241188,6.904167201234959,9.409291621170738,7.280349706372192,7.110132630844838,7.0920441141233255,7.168832752230635,8.82911561867947,7.07488822369714,7.095042177681414,7.098518521693315,-7.988755449958114,6.964966803671711,6.201890365082679,0.5543297986736597,7.05178079682473,4.709476729536441,-1.315508575554043,6.970998110117744,3.919551065037325,7.098432204128088,7.008845528839643,5.997239555584935,7.143146863382768,7.123734645638489,7.042836726913791,7.138238709569812,7.062701028974107,7.089861877473737,7.012277364931155,7.099619688769447,5.1157798773207315,-0.5475020588428414,7.243557556115,7.067827036097434,4.762358700263327,7.160449955667719,7.027068809469334,7.0216014801327695,7.0682722721682225,-2.8025851064593628,6.9490517399013605,6.998287612123711,7.1103895608026875,6.94969870274338,6.923578227121954,7.215511051031051,7.051505486055635,7.068379802188929,4.74963952069575,7.16823199959925,7.07969035800204,7.14369983232951,8.529543104796954,6.974053141113238,7.150907750597902,6.991178635784976,7.049818184106083,6.939847819948426,7.060040480015104,7.02690112671068,7.033904686921794,6.938589119497074,-6.331217538346847,6.950848656451122,6.936393208759728,7.038494441375416,7.105878224560151,-5.229642369703839,5.46177218065657,7.108645080373371,6.957677682060748,-3.772529082971845,6.97417432385571,9.303697589851684,9.303697589851684,8.970306923013421,1.205784965835683,6.999301665038011,6.887905387996646,6.966323561957733,7.079806033570421,9.357225885501862,7.15036506043981,7.038153970597044,7.0297076002254215,7.060076290440261,7.3018687891694825,7.3092395158961025,1.2837930349026614,7.170945983054736,7.035196139469598,6.987363964322178,6.979738605163718,7.126176085167128,7.091411270220878,7.091411270220878,7.177909882421318,7.177909882421318,7.147474810851769,7.147474810851769,6.966337358912639,6.966337358912639,7.130124258238546,7.130124258238546,6.979497077781293,6.979497077781293,7.146849360422067,7.146849360422067,6.997902793017076,6.997902793017076,7.112652246609294,7.112652246609294,7.1369502212940255,7.1369502212940255,7.0814918415194015,7.0814918415194015,-8.572244178348356,-0.8226042044380204,6.974243773662259,6.974243773662259,-3.943772346999781,-8.94818017883442,-2.8278823975252276,7.196574539510859,7.196574539510859,6.954708283835615,6.954708283835615,7.014510957696643,7.014510957696643,-9.22952920235366,7.103036837592779,7.103036837592779,7.045878278163759,7.045878278163759,7.040080710109031,7.040080710109031,7.037480331515063,7.037480331515063,2.146171094838145,2.146171094838145,7.061155511752485,7.061155511752485,7.030221957979947,7.030221957979947,3.780107725897013,7.109395913755236,7.109395913755236,7.071324507385025,7.071324507385025,4.302956181769327,6.9495725673860385,6.9495725673860385,-6.577181693457166,6.983883201973494,6.983883201973494,7.115158345759848,7.115158345759848,7.172129866118308,7.172129866118308,-3.6570782105047055,6.9766741690544976,6.9766741690544976,7.019430901972804,7.019430901972804,7.606728959905631,7.094908144966105,7.094908144966105,7.073513302116549,7.073513302116549,7.035565689339737,7.035565689339737,7.100438611298106,7.100438611298106,7.055815207319714,7.055815207319714,7.114182514587753,7.114182514587753,-4.723239443585479,7.158559758636407,7.158559758636407,-0.225300283049501,5.125774414455563,7.114584709380921,7.114584709380921,7.029250654718517,7.029250654718517,7.135338356297442,7.135338356297442,6.979105807680568,6.979105807680568,6.979105807680568,7.130737689128466,7.130737689128466,7.130737689128466,7.155745507541102,7.155745507541102,7.155745507541102,-7.08996369232211,7.2298557793575995,7.2298557793575995,7.2298557793575995,7.167632138567839,7.167632138567839,7.167632138567839,6.499306060856515,6.856140667433856,6.856140667433856,6.856140667433856,7.115185411828687,7.115185411828687,7.115185411828687,6.999609350310422,6.999609350310422,6.999609350310422,6.958146117280016,6.958146117280016,6.958146117280016,7.019060772190574,7.019060772190574,7.019060772190574,6.963813062134339,6.963813062134339,6.963813062134339,7.013361670310822,7.013361670310822,7.013361670310822,7.139275399460125,7.139275399460125,7.139275399460125,7.027006893401882,7.0721028240945785,7.144239372044336,7.256020893085854,6.99043005537537,7.042110157845379,6.958530620170393,7.046513542758149,1.6923361718998002,7.055922994800596,7.165930840549294,7.2030916385464465,7.109397933299892,7.086745092478928,7.095892172038354,7.169337419583243,6.909191256809983,7.169490474177145,-7.639685412356019,7.079818042214143,-9.163597887677577,6.8898147491965425,7.124886639662499,-5.029259075609849,6.980583772263383,-1.0780077399153232,6.948336558970524,6.948336558970524,6.948336558970524,7.058131039656793,7.134555109360917,7.134555109360917,7.134555109360917,7.154879948103044,7.154879948103044,7.154879948103044,7.015159134321383,7.015159134321383,7.015159134321383,7.015159134321383,7.015159134321383,6.947669843546478,6.947669843546478,6.947669843546478,6.947669843546478,6.947669843546478,-6.694296063963985,3.3452584790195967,2.136023627747667,7.046709030318137,7.046709030318137,7.046709030318137,7.046709030318137,7.0701608323035074,7.0701608323035074,7.0701608323035074,7.0701608323035074,7.031697941541431,7.031697941541431,-0.8554367315163454,4.35588079092472,7.108516160880043,7.108516160880043,7.106407360956471,7.106407360956471,7.051623008076049,7.051623008076049,7.1093456859186475,7.1093456859186475,7.232182660313356,7.232182660313356,7.100730976867691,7.100730976867691,-7.106951306875578,-3.160765054514294,6.807231666831534,6.807231666831534,6.807231666831534,6.807231666831534,-2.6485655026346455,8.099328799885377,6.929940818182743,6.929940818182743,-7.633775097899185,7.1095148802299875,7.1095148802299875,1.3887319538516003,6.289901340899267,-0.5989159452052206,7.137341824260584,7.137341824260584,6.910946262283986,6.910946262283986,6.953698409367853,6.953698409367853,6.953698409367853,6.953698409367853,7.0717167951324775,7.0717167951324775,7.0717167951324775,7.0717167951324775,6.958476005086428,6.958476005086428,6.958476005086428,6.958476005086428,1.8657520852207732,7.17657610081061,7.17657610081061,7.17657610081061,9.50475636775662,7.080278257427583,7.080278257427583,7.080278257427583,6.94376282840355,6.94376282840355,7.137643208458762,7.137643208458762,7.084916850340559,7.179905699124671,7.179905699124671,7.179905699124671,7.179905699124671,7.179905699124671,7.304826751226553,7.159707769982614,-2.7075363319616974,7.185975385803861,-9.323609283682659,2.8670043130355456,4.204331845725346,-9.650282843945927,7.092596241525133,7.153559199953349,7.308335863278096,7.131163987615324,7.2409595757735765,7.294419018623913,7.212304210543394,7.261343046695032,7.154162231071901,7.229128926337033,7.535141433037612,7.274756241219759,7.211666691467428,7.239957637654591,2.6850221671161947,7.196915030234969,-5.518119295369306,7.1887479566862105,-4.084107427632495,7.230743106723569,7.188828304606684,7.300712080917631,7.399697068850287,7.399697068850287,7.399697068850287,7.399697068850287,7.16891383213753,7.228023026364063,7.228023026364063,7.160206510240947,7.160206510240947,7.205278814862684,7.205278814862684,7.2083344625193035,7.2083344625193035,-5.465619681700629,7.220114165999934,7.220114165999934,7.243062150198117,7.243062150198117,7.223032391740169,-7.286843150527305,7.108320407967916,7.108320407967916,7.23441562523724,7.23441562523724,4.769213455306813,7.327701972730907,7.327701972730907,7.189563131082803,7.189563131082803,-3.682900095287862,-7.74054078867922,7.167755779276959,7.167755779276959,-1.9894008879817626,-0.1138032103590838,7.179594695065429,7.179594695065429,-1.7582613185281186,7.164285138838306,7.12583893612598,7.12583893612598,7.192986491360237,7.192986491360237,9.844523330051182,7.1475692451895725,7.1475692451895725,-3.538813626536175,7.233169689196107,7.233169689196107,7.264671693067658,7.264671693067658,7.264671693067658,7.264671693067658,7.182150719556205,7.182150719556205,7.182150719556205,7.082206361231641,7.082206361231641,7.082206361231641,7.129847188062492,7.129847188062492,7.129847188062492,7.2590331050217785,7.2590331050217785,7.2590331050217785,7.227914111123955,7.227914111123955,7.227914111123955,-5.561255198275974,3.5514006570917935,-1.125272537921763,0.3555943683365541,3.03862075605727,7.139225672631639,7.139225672631639,7.139225672631639,7.26818869338922,7.26818869338922,4.22166815072587,-8.221931330980807,-4.2182529003766245,7.201146081641404,1.6516076882628976,7.214630928098845,7.214630928098845,-5.976001717257649,7.077182073578012,7.077182073578012,7.077182073578012,7.077182073578012,8.836876085159137,-3.5959693008694327,-4.605926810943974,7.047537353172693,7.19048063790979,7.045161175516601,7.129310746979918,7.135743937495388,-4.819197580473686,7.166176944913158,7.055259106927281,7.025414648473166,7.194635342683906,6.978762352798231,7.169235530988868,7.169235530988868,7.169235530988868,7.067026684637476,7.067026684637476,7.067026684637476,7.182800231618703,7.182800231618703,7.035514621312576,7.035514621312576,7.158776192273095,7.158776192273095,7.041669775169872,7.041669775169872,8.151918319433264,7.1502683696696,7.1502683696696,9.30053066908416,7.057993174752294,7.057993174752294,2.679832005830832,7.049870548386853,6.350554674440119,7.007219238523422,7.007219238523422,7.007219238523422,7.084808634814568,7.084808634814568,7.084808634814568,7.030221400046944,7.030221400046944,7.06738103582768,7.06738103582768,7.138126882696902,7.138126882696902,6.841110512043926,2.3545791512347964,6.994864556368615,6.994864556368615,3.7140408158717335,7.08537559072699,6.989730575568625,6.980031628310403,6.974602283664918,7.0693173542764285,-5.931895051696969,7.081774466034233,5.296568265588082,7.1183983554361845,7.1183983554361845,6.993197521709341,6.993197521709341,2.2813820532699367,7.048919758217956,7.048919758217956,7.141662200190382,7.115778386129122,7.068834090255724,7.1309054138240775,7.13446571273742,7.015535723104382,7.026639236590736,7.125776952693975,7.226689222102831,7.035763580588991,0.6534546926782898,6.972851144933877,6.972851144933877,6.972851144933877,6.972851144933877,6.972851144933877,6.972851144933877,1.4762431700170282,6.97002391446507,7.133674339986097,9.721163140918335,7.071305569709935,7.156222290641278,-3.7972563503934005,7.10748775387686,-7.825895229087434,-4.641664802466627,-3.0853604475186636,6.961624122816318,7.038086489529597,-9.162901678878407,7.110084157345483,4.170759120342742,6.978578161031237,0.06254063011805044,7.127447974996368,7.08128722520393,-3.762559401086996,7.10586365511492,7.102702234377528,6.978310493929094,7.117299165510996,7.0269078493062125,7.1543816129591455,7.045565025327438,7.025683618435178,7.08532327402316,-8.376300874411706,3.5780503684419322,9.348414821797924,7.014170747230327,5.414473111028109,7.049812542634545,-4.521862333708208,7.038422990386092,7.052758118964995,7.0519940570340545,6.961056952403158,7.163488655072655,-6.122223950550689,7.033712803523645,7.089926059846455,6.976645343111226,-8.39619994172006,7.038847112959861,7.030696823768871,7.051403725601716,6.9560695131327215,7.139626159870257,7.061926007060556,7.160915203798478,7.004062340582276,5.316667464764453,0.9640292292147592,7.155177899345567,7.088306727553338,-5.1670784995038455,7.0472507405396705,7.056387989208659,7.049554102760457,7.1171092652674695,7.101697691070999,7.161265927666339,7.140346819807306,7.078702538332035,-3.5472137528961767,7.091780805006749,8.901108639638146,5.712469178448146,6.985284604273907,7.145864611437418,-1.521457233188885,7.068811065197238,-6.294864833641586,7.122117384193125,7.216255566598015,7.13629684213123,7.14320644805262,-5.7788630259866025,6.974942506880737,7.0420456237098605,7.107718761904074,4.845530037047583,7.002417616292021,6.996365178624721,-7.348881332538523,-1.4057601973870284,-7.625039004214047,9.277362425990255,6.922876022138517,7.090939104329781,-6.0046951021813495,7.116948985412648,1.5827326131439925,7.1353962425530995,7.107373784180705,7.107373784180705,7.054099717081435,7.054099717081435,7.066414196902578,7.066414196902578,7.054996684332028,7.054996684332028,8.60935944930715,7.004281298720777,7.004281298720777,-0.15323407752093843,7.1023083869868415,7.1023083869868415,7.128782976511268,7.128782976511268,7.166897868429714,7.166897868429714,7.050543296315471,7.050543296315471,4.465478860268172,7.176171094973419,7.176171094973419,7.15524890035184,7.15524890035184,7.123659265877627,7.123659265877627,-2.1932460726922542,6.924774368623606,6.924774368623606,7.142799392219043,7.142799392219043,7.131126021568942,7.131126021568942,7.170495778728135,7.170495778728135,7.120138552099597,7.120138552099597,-9.657973277361723,7.459603502747488,7.015554432277131,7.015554432277131,-9.298637856340054,-2.214387687445429,-1.4924080643354287,7.18262396368268,7.18262396368268,-2.970194471441725,7.465454462380226,7.058474224071102,7.058474224071102,7.042393907380429,7.042393907380429,7.017534272170256,7.017534272170256,-5.79825583933663,7.030686283559678,7.030686283559678,6.995360804508543,6.995360804508543,2.243918666455791,-3.1993711750310965,7.045441401411704,7.045441401411704,4.808471504955081,7.132180266751302,7.132180266751302,7.087128314216962,7.087128314216962,7.0447553180302975,7.0447553180302975,7.037593304058149,7.037593304058149,7.073171547928123,7.073171547928123,-6.668933524534082,-0.04453830031078532,7.145391196933414,7.145391196933414,1.158407476002596,7.578795219154497,7.064965107701926,7.064965107701926,7.005647190805014,7.005647190805014,7.09599049751435,7.09599049751435,7.031745007697545,7.031745007697545,7.134675463200825,7.134675463200825,7.204640777007462,7.204640777007462,7.145194079483218,7.145194079483218,-0.7625640663072968,-4.741948177826489,7.1012323811265965,7.1012323811265965,7.095235139361641,7.095235139361641,7.039598896061637,7.039598896061637,-3.038811994474706,7.028875474960856,7.028875474960856,7.028875474960856,7.130536196064554,7.130536196064554,7.130536196064554,2.697042578460252,-1.0093906094657061,-3.0785461021270617,7.07504004376926,7.07504004376926,7.07504004376926,-1.3611826277318446,6.091378741302794,7.074065971985149,7.074065971985149,7.074065971985149,-2.1083020318218315,7.003134312190429,7.003134312190429,7.003134312190429,4.623464703027331,7.002942001997127,7.002942001997127,7.002942001997127,3.2657667978086113,1.8764101871582035,6.973514770505897,6.973514770505897,6.973514770505897,6.9864206299727165,6.9864206299727165,6.9864206299727165,7.027233023897349,7.027233023897349,7.027233023897349,6.950436155255186,6.950436155255186,6.950436155255186,6.994034938423525,6.994034938423525,6.994034938423525,7.010730023735011,7.010730023735011,7.010730023735011,7.084398279155543,7.084398279155543,7.084398279155543,7.094361506147415,7.094361506147415,7.094361506147415,7.194817999132482,7.09349374710218,7.108348962201795,7.023268626790507,6.9174118290680084,-0.352786798120718,7.087273603587075,8.273298469578357,7.166126573412093,4.265450197299041,-4.742145086819121,7.02915865888793,7.103474654729052,-6.011255132311182,-2.4978194356265533,7.023243449582676,-8.32378784005706,-3.7658676972173506,7.109070622661356,7.078280414767587,5.670664079742245,7.112948541965203,7.038533441249044,7.038533441249044,7.038533441249044,7.096231406707027,7.096231406707027,7.096231406707027,6.980931337581666,6.980931337581666,6.980931337581666,6.980931337581666,6.980931337581666,7.032635441231822,7.032635441231822,7.032635441231822,7.032635441231822,7.032635441231822,7.0455579902244665,7.0455579902244665,7.0455579902244665,7.0455579902244665,-6.54322507065692,0.9641944192108927,7.066627206855472,7.066627206855472,7.066627206855472,7.066627206855472,7.042594896341811,7.042594896341811,7.029624546959859,7.029624546959859,7.108261999757492,7.108261999757492,7.041780858548513,7.041780858548513,7.131532745196004,7.131532745196004,6.951014708338477,6.951014708338477,7.074248433990068,7.074248433990068,7.037989453434449,7.037989453434449,7.139411687162852,7.139411687162852,7.102506010244085,7.102506010244085,6.921211642238841,1.7454505963854352,7.133564231215221,7.133564231215221,0.4312443958667984,-4.495862569893472,7.048637606161371,7.048637606161371,7.048637606161371,7.048637606161371,6.981528564605192,6.981528564605192,6.981528564605192,6.981528564605192,7.056858584322313,7.056858584322313,7.056858584322313,7.056858584322313,7.063083191395997,7.063083191395997,7.063083191395997,7.063083191395997,-3.374755793861553,6.896777331796194,7.071967379849337,7.071967379849337,7.071967379849337,3.8228615934677244,6.576820830376022,7.104544575064693,7.104544575064693,7.104544575064693,7.067224474827736,7.067224474827736,7.231480201036074,7.231480201036074,7.093135388690051,7.126789525688469,7.126789525688469,7.126789525688469,7.126789525688469,7.126789525688469,8.693182559295213,7.1243125069063105,6.983909399598222,7.136827070366202,5.249690166736741,6.942932393060666,7.010500151975808,-9.69226763717797,9.210350929235954,0.06461467751792327,3.8084047005946218,-8.061628455401388,0.5820442706723199,7.202656058111973,7.059038848199069,-9.632883500644793,7.110639468588765,-0.19578463658092815,7.122588674195995,7.074454394567823,7.083136678745998,7.09879596893699,7.184088399259167,5.818656344002253,7.0517151592512874,7.160407814010497,7.122836275554015,7.03012846912624,-7.652459456059648,6.93652100277642,-0.9320888920897357,7.114227230628472,0.03314121867042097,7.06036451182268,7.09403884519514,7.09403884519514,7.073484902431002,7.073484902431002,7.131537761569653,7.131537761569653,-1.3223327596019079,-3.8433566324161417,-3.7805230810530404,7.128754967363957,7.128754967363957,7.17349895795094,7.17349895795094,7.058756030722787,7.058756030722787,7.264074215054038,7.148585249589633,7.148585249589633,6.9915606736057825,6.9915606736057825,7.159280799143232,7.159280799143232,9.095341397763413,7.236101925187118,7.236101925187118,6.999960701302083,6.999960701302083,7.156070372397792,7.156070372397792,6.022621972346396,-0.22852283841396215,7.1548304583457,7.1548304583457,1.3252497466758744,7.1407987770308345,7.1407987770308345,7.008703460621291,7.008703460621291,7.088514601996966,7.088514601996966,7.061651878425689,7.061651878425689,7.061651878425689,7.061651878425689,7.074345191566572,7.074345191566572,7.074345191566572,7.074345191566572,7.062817831390401,7.062817831390401,7.062817831390401,2.65369640837468,7.056326868386119,7.056326868386119,7.056326868386119,2.776965415872434,7.176683722476074,7.176683722476074,7.176683722476074,7.177045211671306,7.177045211671306,7.177045211671306,0.5979720223195564,7.121775143524218,7.121775143524218,7.121775143524218,9.742548204444525,7.091560293265285,7.091560293265285,7.091560293265285,7.036056313964327,7.036056313964327,3.3981489208866673,-2.672160832646398,7.039610655225847,-3.726398400304001,0.4614602127410645,6.9796474032894515,7.114186980432407,7.192798936451133,7.192798936451133,7.02891470552273,7.073241355552383,7.073241355552383,7.073241355552383,7.073241355552383,7.119300656254307,7.086281900684771,-2.7213823369399908,7.020499656765512,7.166944747780299,7.197349013661462,7.206215627877036,-8.451495615190707,7.149995273272346,7.11000220616129,7.0703211108682105,7.1692786217755184,7.1692786217755184,7.1692786217755184,-7.387508751380604,9.507127789800233,9.507127789800233,5.247827264403082,-7.35273791497054,7.097105768721391,7.097105768721391,7.097105768721391,7.102420254738874,7.102420254738874,6.937966577265801,6.937966577265801,0.21007988904491803,6.971967260508428,6.971967260508428,-2.1512618330927857,7.1398105448365,7.1398105448365,7.028477184816097,7.028477184816097,-2.261611553498579,7.008060714282447,5.173716379212468,7.08039198849643,7.08039198849643,7.08039198849643,1.5497237199455007,7.091059811958104,7.091059811958104,7.091059811958104,7.077648017552214,7.077648017552214,7.137054157270313,7.137054157270313,7.069716493108334,6.970391496585865,7.028000827223117,7.028000827223117,6.980649909633019,7.982392271505464,7.166194465317098,7.051778594926141,-8.709663576727717,7.025070802830385,7.0340235145389975,7.0340235145389975,7.09832718868752,9.869299190437477,-4.9932688391984215,7.171777516137944,7.171777516137944,7.136709950837169,7.136709950837169,7.13835997880085,7.13835997880085,1.215145982216585,7.047095233465711,-6.962928897637848,6.900877037047657,7.0474519259065715,7.127489509888896,7.015519708118855,7.106276761140585,4.23132540179693,-4.092808085491598,7.127932778448944,-6.194350263015451,0.04365518023344883,7.0963652846564536,7.058941663934274,7.065189894929297,7.082863631919722,7.065295550879576,7.002229875218401,6.963979678603696,-0.9931282766865905,2.074741209858251,7.889059863509502,-9.50964663617561,-4.38274537096339,6.969409895427695,7.101385345060727,-1.2861648038210944,7.053029836851646,7.031192159027327,7.115150943132939,7.027621530489256,3.432631784264583,7.0408685626107435,7.1545050437587605,7.142493916028801,7.003349268493743,6.982721375721685,7.028631207245358,7.140846681719864,7.131518271743889,7.089470838173504,-3.610229025458695,7.072074411329503,7.018291134207608,6.92423086471798,7.113628676032214,7.085074475142047,7.002170463022711,7.0336730709682485,6.9991170274755525,4.605903677709808,5.966575257455569,7.026936725240937,-2.5408599679243826,7.042448214261924,7.1169669199670835,6.980199420341464,4.2599340261329,7.037783927151498,7.187011028887994,7.0823267156611855,6.964422369660607,7.092290856255691,7.0486374239951886,7.041180133695235,7.001695762311691,7.111211562998232,8.996899159914534,8.911963581402954,7.102227527819952,7.095527603176418,7.033685837078131,7.062581128216124,7.008372770802399,7.071680953605789,7.080924251518418,6.999824908427314,4.349852081925942,7.024037843723722,7.041757878628037,4.068913997163815,7.052680601805079,7.171586707120277,7.076397284577901,3.2825951809972125,7.124514533800152,7.051082823609743,7.102064851459666,5.235217035518625,-4.615821937931576,7.047070300759909,1.8109355161328793,7.0693887822569295,7.05681847328993,7.129865450694485,7.1126438082414545,7.112131521345258,7.11649819500127,7.0524309315925,4.142734820016944,7.153405555961289,7.076991251460942,7.069159550567068,2.6267009787009528,7.13130974677512,-6.767212867400694,0.595231751694449,7.063094037956091,7.064212881373791,7.003347579089855,7.009015410903881,9.24591347864219,7.078896229258696,7.044751215512232,-7.579917557729219,7.083859917804784,7.083859917804784,7.083859917804784,7.083859917804784,7.083859917804784,7.083859917804784,7.1088712468802235,7.1088712468802235,8.72354274237896,6.444014400009106,7.161384094041349,7.161384094041349,7.0565223921936,7.0565223921936,-7.163771649023416,8.900234463385772,7.0306364448259515,7.0306364448259515,6.985517410174367,6.985517410174367,7.118149845660071,7.118149845660071,5.053707879501523,7.073548057330484,9.474363870898948,-8.601280290681842,7.0539102105045295,7.0539102105045295,7.018725379787753,7.018725379787753,7.177997794827725,7.177997794827725,6.980789051728809,6.980789051728809,6.9913985374838035,6.9913985374838035,-3.5648648514957593,7.102384355820643,7.102384355820643,6.961978959540936,6.961978959540936,7.0906468647802114,7.0906468647802114,-7.203411168635315,7.007707216919158,7.036566748001725,7.036566748001725,7.050286883714005,7.050286883714005,7.085456501949981,7.085456501949981,7.114840648525423,7.114840648525423,7.13107666484704,7.13107666484704,-3.322518533479231,7.0973079800795205,7.0973079800795205,-6.7726881932819865,-3.795696168487761,7.132208420747094,7.132208420747094,7.111545208925104,7.111545208925104,7.033020082595325,7.033020082595325,7.140699430590644,7.140699430590644,8.674489533354382,7.023816168496744,7.023816168496744,7.087685228925142,7.087685228925142,-4.239659297956935,7.097635211957996,7.097635211957996,7.064276946541479,7.064276946541479,7.02457738118305,7.02457738118305,7.221329643589083,7.221329643589083,7.053427864710503,7.053427864710503,7.099511339179973,7.099511339179973,7.033586153913344,7.033586153913344,7.099208074252573,7.099208074252573,7.079740663136935,7.079740663136935,7.09362203701701,7.09362203701701,7.092539565671242,7.092539565671242,7.039137256764445,7.039137256764445,9.290633515246157,7.143213869973067,7.143213869973067,6.974625807111611,6.974625807111611,6.977531955666198,6.977531955666198,7.094331364264011,7.094331364264011,7.094331364264011,7.0628404597038426,7.0628404597038426,7.0628404597038426,-5.1100037986906415,7.025169184394681,7.025169184394681,7.025169184394681,7.023628027382117,7.023628027382117,7.023628027382117,7.070491948572144,7.070491948572144,7.070491948572144,7.024279580278833,7.024279580278833,7.024279580278833,7.067148892147159,7.067148892147159,7.067148892147159,7.091294098370607,7.091294098370607,7.091294098370607,7.116587430698132,7.116587430698132,7.116587430698132,7.045716370865641,7.045716370865641,7.045716370865641,7.146224739767398,7.146224739767398,7.146224739767398,7.113238603156496,7.113238603156496,7.113238603156496,7.1083224390424995,7.1083224390424995,7.1083224390424995,7.134841004086997,7.111286250170526,7.056694512557037,7.059493454095822,7.063732339234601,7.040690452060385,7.087233447203204,7.112194676210741,7.138748091193271,7.002960956569048,-0.4876463657602095,7.149362139897249,-4.197490452906932,7.118633501400218,7.060847703506447,-8.377920192747311,7.173263423228288,0.2997608616328975,7.099893623633129,7.100917190036299,6.9558598206916855,6.9558598206916855,6.9558598206916855,2.19902865273178,6.993834139806175,6.993834139806175,6.993834139806175,7.0366889671615525,7.0366889671615525,7.0366889671615525,3.249562162491358,7.051626237377732,7.051626237377732,7.051626237377732,7.051626237377732,7.051626237377732,7.171969079508635,7.171969079508635,7.171969079508635,7.171969079508635,7.171969079508635,7.53008673612802,8.401406477891285,7.048908475285792,7.048908475285792,7.048908475285792,7.048908475285792,7.0566392669401665,7.0566392669401665,7.0566392669401665,7.0566392669401665,-1.3645144880778481,7.021171600052824,-2.2353036157015023,7.11601148983226,7.11601148983226,-7.400875324792446,1.7609253845075266,7.118419266643798,7.118419266643798,7.0026797131267,7.0026797131267,-8.819929965745125,7.067060140695098,7.067060140695098,7.150369457015493,7.150369457015493,7.075875246788279,7.075875246788279,7.1198207059447896,7.1198207059447896,7.17234176296957,7.17234176296957,7.139281560112295,7.139281560112295,7.064150474467414,7.064150474467414,7.015220415552001,7.015220415552001,7.088841671847515,7.088841671847515,7.088841671847515,7.088841671847515,7.166723525724542,7.166723525724542,7.166723525724542,7.166723525724542,7.070180853182151,7.070180853182151,7.070180853182151,7.070180853182151,7.036800591955984,7.036800591955984,7.036800591955984,7.036800591955984,7.13120605662629,7.13120605662629,7.13120605662629,7.175631033456252,7.175631033456252,7.175631033456252,7.044097133258983,7.044097133258983,-1.0851738619230211,-4.8995571520058405,7.121053068913909,5.1580640771960145,7.196164980352748,6.964541857478345,6.964541857478345,7.1021030735621125,7.087283523832944,-9.42998143565797,4.595020438337938,7.050151421270844,7.050151421270844,7.050151421270844,7.050151421270844,7.050151421270844,7.103862149359102,7.117742606946138,7.108301524668221,7.02459502426024,-2.7001706418851024,7.071779433596603,-1.6783465204771453,7.148436749507539,7.050484600405873,9.79552422523512,3.5442297068352033,7.129436933742479,-8.30019082687527,7.039882497100443,6.8946437717766855,-1.2769259643070896,7.164241763760817,7.12145859339153,7.13216487759826,7.155893992167851,0.7611170773619342,7.124039094537601,7.085302300540604,-2.853994370190178,7.040770238371618,7.133329859601108,7.06463237879694,7.0404827327176775,8.752776041540798,7.073106041675633,-2.613477742875723,-0.6608616647806116,7.093901994343504,7.093181759180254,-2.6618899352148055,7.125703001666579,7.125703001666579,7.158607567848296,7.158607567848296,-2.2465385737460792,7.014636300935699,7.014636300935699,6.469691084342749,7.016646145316972,7.016646145316972,7.116721149853053,7.116721149853053,7.028297025524356,7.028297025524356,7.048136310210879,7.048136310210879,7.063797477843998,7.063797477843998,7.09737651258337,7.09737651258337,-3.0153202189919703,7.1455667937391425,7.1455667937391425,7.034621990291971,7.034621990291971,0.06387963942649932,7.152199238037586,7.152199238037586,7.029732906928313,7.029732906928313,7.109057611156629,7.109057611156629,7.075287658944767,7.075287658944767,7.161547048282479,7.0980923251714145,7.0980923251714145,7.123792334032814,7.123792334032814,7.123792334032814,7.123792334032814,-3.1799944173584205,7.1126734784327965,7.1126734784327965,7.1126734784327965,7.1126734784327965,7.150517913759522,7.150517913759522,7.150517913759522,7.053876622723681,7.053876622723681,7.053876622723681,7.04072274270812,7.04072274270812,7.04072274270812,-0.5451856275531455,7.121900496776853,7.121900496776853,7.121900496776853,-3.979023134923465,7.110827443612571,7.110827443612571,7.110827443612571,6.996881106714877,6.996881106714877,6.996881106714877,7.127746905421173,7.127746905421173,3.599010715736462,7.12033448225128,7.113456224375383,-8.475475292873394,7.050342327010576,-8.496790621623596,-8.663427107989127,0.9897307840182954,7.012021015494483,8.447832438422601,7.079341911686015,7.079341911686015,7.147546580614311],\"x1\":[1.044554108001165,5.006724179991171,-0.8200047067928331,-4.1338492780913105,3.4075087305770886,8.656469409360255,8.964585941792443,-6.417214798816218,5.881982305722101,-9.457364975303975,-9.70170189950312,-9.70170189950312,-9.70170189950312,-9.70170189950312,-8.205314588465535,-8.859844121857705,4.910475371964029,-9.21589422295237,6.130524112936261,1.982402910097063,7.933138290545543,-9.364487397146277,5.376898405732129,-9.325142193885203,-8.249478053743566,-5.474692191149595,-3.481036189023186,-6.260573150871491,-9.233766808677325,-9.254681000340836,-9.355198453986901,2.394221908171426,-9.427271441773403,-9.301335338634999,-9.390738003659981,-9.398060198005068,-8.806894782328685,-9.285530158448536,-9.285530158448536,-9.285530158448536,-9.285530158448536,6.111351575973572,3.8756829219486484,-9.294583045113926,-9.44676284223054,-9.284443837916927,-2.843925657918575,4.972859950155556,-1.3325162808981084,-9.315752432527066,-3.0424345473117453,-9.410811438663606,-9.364275933356325,-9.34834371559798,4.183098252002285,6.22544765880513,-9.320084106330226,7.24551978728908,-9.336593873040133,-9.293743727462024,-4.646959268912165,-9.362995020550345,-9.345637014949912,-9.337487737706658,-5.600831840716209,-9.329428981994054,7.982555111275214,-9.326126445043785,-1.8819715584763745,-9.399956531127325,-8.80009093737196,-9.44907717872992,-9.36649704769542,-9.359128991641578,-9.36495577489075,-9.35789815059185,-9.360168204514173,-9.36505799011787,-9.385218931004928,-9.373916824026848,-9.409258851152847,-9.346169973302121,-9.391021958123314,-9.311628567014093,-9.37503319228517,-9.353140683164366,3.4105722282764965,-9.356412437776038,-9.402610117422363,-5.267089896780421,-9.335565489022972,-9.36281460160414,8.530697039399765,-9.3479588078513,-9.333941341520084,-9.392357964258842,-6.8952949323529955,-9.34491750959234,-9.383338510085746,6.216927010841136,-4.974922099319709,-4.974922099319709,-4.974922099319709,-4.974922099319709,-4.974922099319709,-2.988178054090705,-9.593262861860213,-9.593262861860213,3.9884117412897684,-9.916318599720492,-9.15524562038276,-9.36773796714632,9.046419431626923,-9.414363927396034,-9.445109567678953,-9.794871969623403,-9.794871969623403,-9.37634007012941,-9.341373587839742,-9.341373587839742,-9.341373587839742,-9.341373587839742,-9.489977562150901,-9.489977562150901,5.50737936921027,4.5536763693906845,-9.297411765147794,-9.546169993135166,-9.546169993135166,-9.197252475237372,-9.3441962040499,-9.456472569547671,-9.415542107195854,-8.47235428204829,-8.10001092141716,-9.262889389221124,-9.981294451793158,-9.981294451793158,-9.54476620161659,-9.54476620161659,-9.521244334245367,-9.521244334245367,-9.37975373014391,-9.498744991865777,-9.498744991865777,-9.530936858328152,-9.530936858328152,-9.425711148111061,-9.604162899117902,-9.604162899117902,-9.384357186020777,-9.40360998698911,-3.6398706474196807,-9.647762285249788,-9.647762285249788,-4.984115839272752,-9.634979492822664,-9.634979492822664,0.46887553544591754,-9.48520681742733,-9.48520681742733,-9.595501616640991,-9.595501616640991,-9.397760368501748,-9.82416249891127,-9.82416249891127,-9.626647825109012,-9.626647825109012,-1.8396139414129191,-9.723839656099253,-9.723839656099253,-0.6063716981792631,-9.666832957528271,-9.666832957528271,-9.546748682832634,-9.546748682832634,-9.712700683617252,-9.712700683617252,-9.65237595108687,-9.65237595108687,-9.727678535972046,-9.727678535972046,5.128335129897188,-9.877872387200501,-9.877872387200501,8.637231871352999,-9.53529175316338,-9.53529175316338,-9.782582111111708,-9.782582111111708,-9.996067877208853,-9.996067877208853,-9.701813161711852,-9.701813161711852,-2.7903959608685707,5.797131085505553,-9.900860964227654,-9.900860964227654,-0.5866424052528689,3.3523793911976973,5.626277271564957,-9.762039455695389,-9.762039455695389,-9.565978890641167,-9.565978890641167,-3.855118032128731,-9.583539373374565,-9.583539373374565,-9.608074382353943,-9.608074382353943,-9.659570447891909,-9.659570447891909,2.391115405714146,-9.68125488249152,-9.823497896631858,-9.823497896631858,-9.49322819605699,-9.49322819605699,-9.534380309244433,-9.534380309244433,-9.534380309244433,-9.476293871000227,-9.476293871000227,8.673806948562206,6.789279774316569,7.940074399782148,-9.53100816260161,-9.53100816260161,-9.53100816260161,-9.53100816260161,-9.623135257915893,-9.623135257915893,-9.623135257915893,-3.996349120545519,-9.556655035668278,-9.556655035668278,-9.556655035668278,5.943215196700338,-7.970069864509977,-9.611261615454653,-9.611261615454653,-9.611261615454653,-9.58433138820181,-9.58433138820181,-9.58433138820181,-9.551277835723795,-9.551277835723795,-9.551277835723795,7.602812666044546,-4.939258901607799,-4.939258901607799,-4.939258901607799,-4.939258901607799,-9.860186355024757,-9.860186355024757,-9.860186355024757,-3.4476444643076327,-3.4476444643076327,-3.4476444643076327,-3.4476444643076327,-3.4476444643076327,-9.714551364062723,-9.714551364062723,-9.714551364062723,-9.438450263718234,-9.686410413024154,-9.686410413024154,-9.409765422387274,7.3309681251644,-9.82720330604877,-9.82720330604877,-9.82720330604877,-9.702329729411739,-9.702329729411739,-9.702329729411739,-9.85365221141381,-9.85365221141381,-9.85365221141381,-9.746104873360439,-9.746104873360439,-9.746104873360439,4.9843783138629405,-9.843624429954552,-9.843624429954552,-9.410411534573965,-9.672933838169095,-9.672933838169095,-9.672933838169095,-3.3984602978786445,-3.3984602978786445,-3.3984602978786445,-3.3984602978786445,-3.3984602978786445,-3.3984602978786445,-9.529420205107785,-9.529420205107785,-9.529420205107785,-9.583590339532911,-9.583590339532911,-9.583590339532911,-9.858488317876812,-9.858488317876812,-9.858488317876812,-8.956732802146885,7.443948286785222,-9.739197334581501,-9.739197334581501,-9.57175242499804,-9.57175242499804,-9.57175242499804,-9.57175242499804,-9.605842937153568,-9.605842937153568,-9.605842937153568,-9.53308900742482,-9.53308900742482,-9.34917824136986,9.500790059565773,2.1265334993203915,-9.685778155238639,-9.685778155238639,-8.200608786796346,-0.5326824810065993,-9.949147197999077,-9.949147197999077,-9.889294103296535,-9.889294103296535,-9.532150331665878,-9.532150331665878,0.8904547381082413,-9.741509558222122,-9.741509558222122,-9.542028116200571,-9.542028116200571,-9.909086565954,-9.909086565954,8.549246383499177,-6.96663371899227,-9.751344754434253,-9.751344754434253,-9.905177322125102,-9.905177322125102,2.1169988992903015,3.553065499590618,7.398900809145832,0.3498231075003915,-9.982466639931209,-9.982466639931209,-9.368447040545844,-9.477062320533229,-9.477062320533229,-9.485369662863945,-9.485369662863945,-9.938570220953258,-9.938570220953258,-9.763863992038713,-9.763863992038713,-9.763863992038713,-9.639904392623457,-9.639904392623457,-8.859399453394284,9.552450752098395,-9.168800949426224,-9.374571589087147,-2.6702478052739096,-3.1714365897798134,-3.1714365897798134,-2.7518296310076433,5.439354412726971,-7.990036814246411,-5.0661834567621415,-3.4531946167751917,-3.4531946167751917,-3.4531946167751917,-3.4531946167751917,-3.4531946167751917,8.397821581263333,-2.9842735874670474,-2.6898466586864007,4.176196336959785,-3.112288478715092,-3.259022339591228,-3.259022339591228,7.856181672711774,-2.4476338685737664,-1.9593585964929634,-3.335474501639811,-3.335474501639811,-3.335474501639811,-3.335474501639811,-2.1226914132954615,-3.347558595597717,-3.347558595597717,-3.347558595597717,-3.347558595597717,-2.57775371167165,-6.697739731090751,-3.1101805941052536,-3.8235602736044996,-3.8235602736044996,-3.8235602736044996,-8.591022927480347,-3.2096108829903773,-3.2096108829903773,-3.2096108829903773,-2.940436459816932,-3.038878596473765,-1.2265306005980552,-2.1639026620622337,-2.5126894099891226,-3.3672940107824845,-3.3672940107824845,-3.3672940107824845,-3.4189722958645605,-3.4189722958645605,-3.4189722958645605,7.603739165918309,0.45138280571606515,-2.474680620019507,-2.474680620019507,-2.7814045241683347,-2.7814045241683347,-7.690013606742641,-7.690013606742641,-2.710718250891315,-2.710718250891315,-2.3332044829175747,3.1165977526111988,-3.5527568711940045,-3.5527568711940045,-3.5527568711940045,-3.1787850544268546,-3.1787850544268546,-3.1787850544268546,-3.248274847847581,-1.6523849529704542,-3.153075506587111,-3.153075506587111,-1.7319678207486966,-2.8693214570197956,-2.8693214570197956,0.22979550533216653,-3.3550225554449664,-3.3550225554449664,-3.0033122657807425,9.014316246384364,-2.3523557598885114,-2.3523557598885114,8.507269307604371,6.044068066772059,6.455746204835247,8.870329781841516,-2.3796317837398746,-3.547217980912663,-3.547217980912663,-2.4071174151948913,-3.0750880383766788,-2.797948788803918,-2.7655465045685794,-4.749109763805621,-4.749109763805621,-2.4410648228442566,-2.4410648228442566,-2.5533164194741422,-2.5533164194741422,-2.732919890432653,-3.153222569191012,9.686434502468671,-3.016932576618638,-3.016932576618638,-2.5650744905706047,-2.5650744905706047,-3.191627656069543,-3.191627656069543,-2.563578652309487,-2.8338147574235792,-2.9144411016556804,-2.8035199234611996,-3.7988682517683126,3.104736184744512,-1.9966874842250313,-2.2063239882740397,-2.2063239882740397,8.006576500406588,-0.4615615641262458,-3.3359693355103683,-3.3359693355103683,-3.3359693355103683,-3.3359693355103683,-3.346399598226336,-3.3278844088184485,4.998585811304739,-5.716620684870028,-6.837757645064166,-4.830225564299733,-3.344271523570889,-3.3227340160593544,-5.932057218966262,-3.344681727223513,-3.344681727223513,-3.344681727223513,-3.35164650370843,-3.35164650370843,-3.35164650370843,-8.446664058533555,7.281726511087239,-3.3195072213688928,-3.3195072213688928,9.05128784053636,-3.3306469990429903,-3.3306469990429903,6.03383934539627,7.831882861679553,2.7595842545229097,4.1371102683186916,-3.355622584799934,-3.355622584799934,-3.327355618768589,-3.327355618768589,-3.341782993093326,-3.341782993093326,-5.750364221254401,-3.334110826598363,-3.334110826598363,-3.3427838522060958,-0.24842105118745117,0.7747222496976569,-3.374462664138484,-3.332425329495373,-3.3591516963868404,-3.339387719810687,-3.354904601034119,-3.3372923349893675,-3.3372923349893675,-3.3372923349893675,-3.3520424071688026,-3.3520424071688026,-3.3520424071688026,-3.3266135637322645,-3.3266135637322645,-3.3554889293862864,-3.3554889293862864,-3.352188192022547,-3.352188192022547,3.5554895890773235,2.210911541185034,-3.334622447353416,-3.334622447353416,7.514511965742777,5.241721155903278,-3.3557254662620224,-3.3300569070845114,-3.3300569070845114,-3.3404159762378374,-3.3404159762378374,-3.350762472163832,-3.350762472163832,7.145093197178269,-3.3449867263867787,-3.3449789403003702,-3.335107266009726,2.356101067123202,-3.338951938781838,-3.3772712345835965,-3.6207112780521387,-3.476648912209386,-3.4728912731389174,-3.4968138114099574,-3.3970916657867454,-3.455357852608472,-3.455357852608472,-3.455357852608472,-3.6183955806324164,-3.4758476490184247,-3.4758476490184247,7.199798960415009,-3.4677564836061894,-3.4677564836061894,-3.4650852547411803,-3.4650852547411803,-1.4699370662312354,-3.4796211569768314,-3.472834979901709,-3.4471773961848857,-3.470769399921614,-3.403315488711952,-3.4406214544683555,-3.472951395149055,-3.4539824121063933,-3.4539824121063933,-3.4659301920423626,-3.4550290402522323,-3.4550290402522323,-3.4475646829987756,-3.4475646829987756,-3.469809418426527,-3.469809418426527,-3.4367521236505194,-3.459065785769222,-3.459065785769222,-3.463709077311874,4.4703610813268,-3.4613773715524196,-3.455587632111074,-3.4669678318405053,-3.4779261991662374,2.256796705670123,-3.457781793955718,-3.457781793955718,-3.4426537730867377,-3.4426537730867377,-5.577743099950167,-5.577743099950167,-3.479341135963379,-3.479341135963379,-3.450955576759492,5.772830706579269,-3.460956493132614,4.299414138787345,-3.47302219725732,-3.47302219725732,-4.579048644823218,-0.7715720386829652,-3.465871709752034,-3.465871709752034,-3.4109591110527573,-3.453782490301416,5.53907868070765,-6.871082592400581,0.7370856842162876,-3.4492376210380638,-3.4492376210380638,-3.472321719990859,-3.472321719990859,-3.410106285007898,1.428237812165909,-3.4751590105960917,-3.4751590105960917,-3.4627557008430285,-3.4665541837616853,-3.4665541837616853,-1.1330498572147718,4.797349025418779,-3.4795723221194983,-3.4453778528368364,-3.4080086518552433,-2.2581779859304563,-3.478662122236136,-3.455624484086023,-3.4881730365178667,-3.462781076001108,-3.462781076001108,-3.479544969235473,-3.479544969235473,-3.4623518881706215,-3.45714587251443,-3.462443593072938,-3.462443593072938,6.65537025956856,-3.454198712320917,-3.454198712320917,-3.453481922018261,-3.453481922018261,-3.4656582721375573,-9.157600059890118,1.0930647211972122,-3.4388800876158756,6.504031922844529,1.1376819985986426,-3.473610352587116,-3.4579581441188525,-3.4718588803249384,-3.4718588803249384,-3.470629737353077,-3.41274301023045,-3.4783372704056017,-3.4783372704056017,-2.2109545209292936,-3.4673419133049688,-3.4673419133049688,-3.491051992130072,-3.491051992130072,-3.46797166862239,-3.446844076201886,5.69692609715678,5.852276668731074,-3.4528732978574572,-3.4705749404077357,-3.4705749404077357,-3.4632829738320057,7.377926052288576,-3.68811704021261,-1.3230076624263347,-3.4473121401728353,-3.441019399868689,-3.6182454408002744,-0.5059225028538918,4.572425467328154,-3.4787479166803212,-3.4787479166803212,-3.4566067879590126,-3.4566067879590126,-3.4427068087097803,-3.4427068087097803,-3.477742217946499,-3.477742217946499,-5.68604127211624,9.01650890659046,-3.4375310210865075,-3.4375310210865075,6.556321119787725,-3.450110424409374,-3.450110424409374,-3.4657972653186286,-3.481222822455509,-3.481222822455509,-3.4742048114154533,-3.4560055608922235,-3.4560055608922235,-5.799256689074765,-3.4545134258380505,-3.4545134258380505,-3.4718033007545666,-3.4718033007545666,-3.4798809938047697,-3.4798809938047697,-3.4724377325160383,-3.4724377325160383,8.864113897570984,9.746467615626084,7.475948691196205,-3.456369375863723,-3.4606901862911332,8.729037421790174,-3.4980634870038347,6.979320528879747,-3.4438844189652675,-3.4551123692974297,-3.4551123692974297,-3.4551123692974297,-3.4551123692974297,-3.4551123692974297,-3.4551123692974297,-3.4731475755025762,-3.467259240764765,-3.467259240764765,-3.467259240764765,-7.413844096913024,-2.3172053409697586,-6.984995313038304,-5.8315973715411324,-5.8315973715411324,-7.600773791790245,-2.3983244004788755,-3.473601203461129,-3.473601203461129,-3.473601203461129,-3.473601203461129,-3.473601203461129,-3.450269165499198,-3.450269165499198,-3.450269165499198,-3.437652297042052,-3.437652297042052,-3.437652297042052,-3.437652297042052,-3.437652297042052,-3.465890413924239,-3.465890413924239,-3.465890413924239,-3.465890413924239,-3.4544680273609973,-3.4544680273609973,-3.4544680273609973,-3.4544680273609973,-3.4528087539563357,-3.4528087539563357,-3.4528087539563357,8.98959944496951,-3.471603041296863,-3.453744132818497,-3.4563082534267275,-3.4563082534267275,-3.4563082534267275,-3.4563082534267275,6.795481573095678,-3.456410417726331,-3.456410417726331,-3.456410417726331,-6.78280239672511,7.908033469595534,-3.462228541425657,-3.462228541425657,-3.462228541425657,-3.4630643289169925,-3.4630643289169925,-3.4630643289169925,-3.4630643289169925,-3.4829961226478137,-3.4829961226478137,-3.4829961226478137,-5.241580088890673,-3.4049966277656516,-3.460602706003826,-3.460602706003826,-3.460602706003826,-3.460602706003826,7.694939244013412,-3.4688912914680694,-3.4688912914680694,-3.4688912914680694,-3.460912426309771,-3.460912426309771,-3.460912426309771,-3.460912426309771,-3.455835774498558,-3.4618982717445483,-3.449318947404427,-3.449318947404427,-3.449318947404427,-3.4552356146225343,-3.4552356146225343,-3.4552356146225343,-3.4639958044191683,-3.4701830832313894,-3.4701830832313894,9.03033053060155,-2.440528901360257,-4.485019625227091,-3.4416417073740497,-3.4623062206160586,-3.4623062206160586,-3.4489218701993343,-3.4489218701993343,-3.4489218701993343,8.111874686859931,-3.46756961392766,-3.4502588533951473,-3.4502588533951473,-3.474142085419486,-3.448913044766769,-0.9505157468583985,-3.4552262513849596,-3.4552262513849596,-3.4431528835479703,-3.476475820257768,-3.47241382164058,2.4599967598673818,-3.4784349516528055,-3.4784349516528055,-0.6647674054868506,-8.259011827606413,-3.4598879090998693,-9.51194113391865,-3.455625888742314,-3.455625888742314,-3.4612037673043528,-3.4637765533131315,-3.4624371962216554,-2.0547363673548036,-6.726509707050674,-3.4506106384677,-3.488210318675657,-3.474510419303999,-3.4752112285980488,-3.461879768667023,-3.4517357465706606,9.398544913439512,-3.4864481838584274,-3.4541275612656683,-3.465418801977279,-3.465418801977279,-3.4569577875532698,-3.4636733523841556,-3.4636733523841556,-3.4762046258578856,-0.6122458871915448,0.5810617413240955,-3.3964689216828035,-3.466798962869796,9.032128533680226,-3.4397092704730667,4.722274174205252,-3.450311688189025,-3.450311688189025,-3.4717787716597206,-3.461512572003473,-3.4654127173507927,-3.4654127173507927,2.4691253933497475,-3.4745893334350173,-3.4745893334350173,-3.464592082337628,-3.464592082337628,8.263770273812604,-3.4588431216551543,-3.4665873095976307,-3.4665873095976307,-3.4665873095976307,-3.459666016307004,-0.46497608008215074,-3.468428705380189,-3.468428705380189,-3.468428705380189,-3.4705021893769565,-2.882189640410509,-3.4637764720987168,-3.4783554401480004,-3.4783554401480004,-3.4783554401480004,-3.417530124883924,-5.896301272475646,-3.413137976289244,-3.413137976289244,-3.413137976289244,-0.44572910539790556,-3.4829546512848886,-3.4829546512848886,-3.4829546512848886,0.252020890073414,-3.4612005482436894,-3.4612005482436894,-3.4612005482436894,-3.4641450305939845,-3.4791509252469996,-3.4081439796619053,-3.4081439796619053,-3.4081439796619053,-3.4584121709689306,-3.4605248201177226,-3.4605248201177226,-3.4534148689396362,3.4463182083178907,-3.4193221390960566,-3.4193221390960566,-3.4193221390960566,-3.4193221390960566,-3.4193221390960566,-1.8840721543732304,-3.417639499300847,-9.355248127648823,-3.399866908152177,-3.3908971545595437,-3.3908971545595437,-3.4119528665366623,-3.4119528665366623,-7.842046276503387,-3.4682701086223204,-8.379747507965284,-4.092000592413452,-1.6958289984392305,-5.359515461403646,-3.471651315295988,-3.4100556510584648,-3.4589160160138412,-3.48356426500796,8.934644321694204,-3.4103788284026626,-3.394666560316484,-3.394666560316484,-3.416403673432164,-3.416403673432164,-0.6008200587287895,-3.452908524156416,-3.4296306476209253,-3.4296306476209253,3.0448495344431805,-3.3941892304443666,-3.3941892304443666,-5.394841670537631,-3.4690135808187526,1.0453524293963667,6.275321771813857,-3.4564048939573935,5.480463117013951,-3.4634545907935177,-3.3968689945343815,-3.3968689945343815,-3.39816351956872,-3.39816351956872,0.8863723375598394,-3.40854986858408,-3.40854986858408,-3.4482936084240547,-3.4703556271260796,-3.4646442846899017,-3.464313121444155,-3.451387260286893,-3.4125587492270935,-3.4125587492270935,-3.4675324403996433,-3.457180479696735,-3.4116065415903414,-3.4116065415903414,-3.4712987778557753,6.171862195556091,-3.402330699459366,-3.402330699459366,2.372194434721049,-3.3960128294827694,-3.3960128294827694,-3.453039473881918,-3.415462512698203,-3.415462512698203,-3.415462512698203,-3.415462512698203,-3.4166457685171867,-3.4166457685171867,-3.4166457685171867,-3.4166457685171867,2.456368526533817,-3.397474357701034,-3.397474357701034,-3.397474357701034,-2.8112278671519864,-8.463741893271244,-3.4059673600140776,-3.4059673600140776,-3.4059673600140776,-3.41733644274405,-3.41733644274405,-3.3973776261010897,-3.3973776261010897,-3.4685359324647225,-2.341033231217933,-4.2774340511749305,-3.39304426106664,-3.39304426106664,-3.39304426106664,-3.45668940085337,-3.4088490138426453,-3.4088490138426453,-3.4088490138426453,-3.4113041897577396,-3.4113041897577396,-3.411454963296519,-3.411454963296519,-3.411454963296519,-3.4586743965169227,-3.46110715185028,-3.4176740735936697,-3.4176740735936697,-3.4176740735936697,-7.591415251388973,-3.471929399046303,1.1356773566928613,0.840814246120285,-3.445488684132595,-3.4059605701622733,-3.4059605701622733,-3.465554055464036,-3.4735607265017263,-3.3974286460864196,-3.3974286460864196,-3.480354601141414,-3.480354601141414,-3.480354601141414,-3.480354601141414,-1.961982430027449,-3.464671464756255,-3.3994934054797543,0.8149792357857457,-2.9853493718907504,-3.4718992182366915,-3.3979962313787437,4.702935708006748,-9.626977649071126,-3.4619457049578735,-3.4619457049578735,-3.4619457049578735,6.498250287559216,4.024518078733623,-3.4558218241392087,-3.4558218241392087,-3.4558218241392087,-3.46766177476328,-3.46766177476328,-3.45863505742079,-3.45863505742079,-3.4674241353050386,-3.4674241353050386,-3.463652637166299,-7.993438727998791,-3.4581881797452727,7.176228223228335,-3.441592908174858,-3.441592908174858,-4.503104702708971,-3.399552117560428,-3.454905453330662,-3.454905453330662,-7.623713655586519,-3.4564367986781344,-3.4564367986781344,-3.389823568039944,-3.389823568039944,-3.389823568039944,-3.410481658797975,-3.410481658797975,-3.3779463233476203,-3.3895389297045053,-3.3926976131908857,2.2820988560774573,-3.3918962671253974,-3.389792643416958,-3.395734502800961,-7.8433012761215455,-3.3946123802129877,-3.3946123802129877,-3.399712633894567,-3.399712633894567,-3.399712633894567,-3.38878814580883,-3.38878814580883,-3.0765798065776506,-0.279420009285559,-2.1817089475319413,-3.3863726263060396,-3.3863726263060396,-1.1684001978270402,-3.415667713994748,-3.415667713994748,-5.452142618999078,2.8580476239586226,2.3346271504369085,-3.428239973226691,-3.428239973226691,-3.4012474962145465,-3.4157162683709092,-3.4157162683709092,-3.4249746447153298,-0.6988767993399119,-3.4036871237188473,9.111900581539565,-3.4339968586699454,4.821092497420272,-3.4036091412657488,-0.653888323687589,-8.582394336794046,-3.421752958040779,8.02212661352587,-3.4073243332592558,-3.4220221270731974,-3.4270160471449795,0.9565361435245823,-3.402504824990161,-3.420676022109424,-6.720122604238766,-3.4292891464712163,-5.9464046853286785,-0.3814470439419395,-3.4144430445269123,-3.4196304518007015,-3.412949422437242,-3.4123326778779797,-3.42510856670327,-3.3981472620380426,-3.412259162795289,-3.4205602080743036,-3.41122986386699,4.199202323109258,-3.409438719598933,-3.403242124263201,-3.4133282704825243,-9.544642590630197,-3.418507838494649,9.12690766982455,8.702439714351765,-3.4160346610472256,-3.939557787067147,-3.405783655569037,-1.811280052732327,4.666656578710324,-5.756364207266406,-3.4094399750286106,-3.425705349240906,-3.409059687094641,-1.9074103500992656,-1.9083656385078243,-3.4197170104569867,-3.409736633164946,-3.411182069484349,-3.414649995824802,-3.1166117472444625,-3.405851131585088,-3.4144866777200944,-3.4120560957202892,-3.4265643385003663,-3.424813908954313,-3.4180631174076828,-3.41221772605662,-7.816834317939216,-3.4048044207562747,-3.415135897882501,-3.4159083762314992,-3.41749424183556,-7.824749001060383,-3.42043014814565,-3.412615948173471,-3.401269405635567,2.528437735212936,1.690468582669082,-3.4245434273090556,5.550994862512972,-3.408484959224724,-3.40594187444717,-3.4074531593629045,-3.415251628623695,-3.427929574438906,-2.710358714791612,-3.418718706593115,-3.4190999815514314,2.1243561387378165,-3.4259976266586802,-3.4285702666213016,-3.412519440425542,1.5763511859354402,1.1666198245219768,2.077156044545319,-3.4125965935674696,-3.4163600637071756,-3.427888486831211,-3.423262422148775,-3.420566184797339,-3.420566184797339,-3.420566184797339,-3.420566184797339,-3.420566184797339,-3.420566184797339,-9.899712426914107,-3.4204882640584,-3.4204882640584,7.657567395213562,-8.114788177075194,-3.4119105749037697,-3.4119105749037697,-3.4089927643659106,-3.4089927643659106,-7.562224079035178,-5.37920499539087,2.965054204868858,-3.4194375553209513,-3.4194375553209513,-3.4139377676104212,-3.4058811066447756,-3.4058811066447756,-3.426012016627843,-3.426012016627843,-3.409526439678481,-3.409526439678481,-3.4209902389426547,-3.4209902389426547,-3.4197750522430557,-3.4197750522430557,-1.7966131920630435,-7.634983572995733,-9.333296061354691,-0.15939327365467904,-3.4178556425172033,-3.4178556425172033,6.85569447089739,-3.4148033634915356,-3.4148033634915356,-3.4188188194756073,-3.4188188194756073,-3.3945775976266503,-3.3945775976266503,-3.422700473348998,-3.422700473348998,3.280273304777232,-5.598530508900243,-3.411193257955194,-3.411193257955194,0.07797430380406034,5.569887286582523,-3.4192633355022073,-3.4192633355022073,-3.082881044449861,-3.4132825871272265,-3.4132825871272265,-3.0334022841198394,-1.9370641538236555,-3.4190146385412534,-3.4190146385412534,-6.982024409244789,1.2540475280632641,-3.4124341771110442,-3.4124341771110442,6.554630664507776,-3.410873999173255,-3.410873999173255,9.37983248072776,-9.097390077725262,-3.4241704900507077,-3.4241704900507077,-3.41696333858817,-3.41696333858817,-3.4332076796059834,-3.4332076796059834,-3.6896695496902314,-3.4122445883316885,-3.4122445883316885,-3.4235064389557675,-3.4235064389557675,-3.429188758903776,-3.429188758903776,-3.273980820798064,-3.4218131028840846,-3.4218131028840846,-3.40380468415157,-3.40380468415157,1.1173485228568403,-8.006013830623013,-3.4206914812240727,-3.4206914812240727,3.051662945002583,0.5161354194549883,-9.462729181101231,-3.4237718473259005,-3.4237718473259005,-3.419641248405756,-3.419641248405756,-3.432703582848334,-3.432703582848334,-3.4286501373883773,-3.4286501373883773,-8.159126801952914,-3.4000141427107664,-3.4000141427107664,-3.4178030447057353,-3.4178030447057353,7.901268156008779,-3.3979026349735664,-3.3979026349735664,-3.408629043936031,-3.408629043936031,2.645264349147549,-7.366945608286182,-2.7285032592164615,-9.487644628387265,4.523008747241583,-3.4177714446597394,-3.4177714446597394,-3.40585833896382,-3.40585833896382,-3.415867398997827,-3.415867398997827,-2.5442208616097117,-3.418577205798975,-3.418577205798975,-3.4217393418876565,-3.4217393418876565,-3.4217393418876565,-3.4229599582749053,-3.4229599582749053,-3.4229599582749053,6.15350745838699,-3.4198965042668537,-3.4198965042668537,-3.4198965042668537,-3.4159051069430095,-7.842553309434319,-3.4171171253843617,-3.4171171253843617,-3.4171171253843617,-3.4094665934283928,-3.4094665934283928,-3.4094665934283928,-3.41728634384703,-3.41728634384703,-3.41728634384703,-3.4115903271324486,-3.4115903271324486,-3.4115903271324486,-3.4226400468515408,-3.4226400468515408,-3.4226400468515408,-3.417717582383796,-3.417717582383796,-3.417717582383796,-3.4171466541428615,-3.4171466541428615,-3.4171466541428615,-3.429335200570863,-3.429335200570863,-3.429335200570863,8.452998036736826,-4.062225840884707,2.375937612434196,1.189403913723595,-3.4243235229759863,-3.4243235229759863,-3.4243235229759863,-7.2533578020029115,-3.407149788658299,-3.407149788658299,-3.407149788658299,-3.4083043425451143,-3.4083043425451143,-3.4083043425451143,-3.407619720209068,-3.407619720209068,-3.407619720209068,-3.4145240657665186,-3.4145240657665186,-3.4145240657665186,-3.4088621317985526,-3.4088621317985526,-3.4088621317985526,-3.4088621317985526,-3.4088621317985526,9.761818038474324,-9.075349542150605,3.927700825417851,-3.417524534086599,-3.423090332378705,-3.423090332378705,-3.423090332378705,-3.423090332378705,-3.423090332378705,-3.412076725756825,-3.412076725756825,-3.412076725756825,-3.412076725756825,-3.420155484313236,-3.420155484313236,-3.420155484313236,-3.420155484313236,-8.184551598637297,-3.4249158027969075,-3.4249158027969075,-3.414300757109528,-3.414300757109528,5.106137614665954,0.7119615942476383,3.35842788169273,-3.418708296971383,-3.418708296971383,-3.4224529723987924,-3.4224529723987924,-3.410631382307842,-3.410631382307842,-3.4240580112918177,-3.4240580112918177,-3.423456848464377,-3.423456848464377,6.217300338593137,-7.750682196756278,-3.4245841556172296,-3.4245841556172296,-3.422743479683602,-3.422743479683602,-3.412045079126802,-3.412045079126802,-3.4149522346785064,-3.4149522346785064,-3.4155062649153214,-3.4155062649153214,-3.4155062649153214,-3.4155062649153214,-3.422777015200654,-3.422777015200654,-3.422777015200654,-3.422777015200654,-6.023809232274662,-3.420516888440833,-3.420516888440833,-3.420516888440833,-3.420516888440833,-3.4195752043751177,-3.4195752043751177,-3.4195752043751177,-3.4195752043751177,-4.924034598744078,-3.4010940904778417,-3.4010940904778417,-3.4010940904778417,-3.4183075536979404,-3.4183075536979404,-3.4183075536979404,1.1055555972056936,-3.4116896896825715,-3.4116896896825715,3.0244099049184534,-1.907683751552426,-3.4235370036348023,-3.4200997481110837,-9.313316011870027,-3.406027572258222,-3.4102633261588435,-3.4165624789124847,-3.4153192311080884,-3.416225225282844,-3.425129879319754,-6.0986359761691205,-5.490616658414087,-3.415396440652807,-3.4202790650155652,-3.419499416029284,9.814043079035372,-3.420459878931535,-3.420459878931535,-0.8125564533640528,-6.206608666024616,-3.4047734167197152,-3.401807875380105,0.21801154644672138,-3.398921272210976,-3.4107533644153296,-3.4029550787707583,-3.4067364894430616,0.09595774322541395,-3.4054266294779403,-8.835362504128707,-3.406389947929723,-0.976487748554689,-3.4184281039084183,-3.418401951192477,-3.4088249242957804,-3.396780810372774,-3.4070696610508726,-3.395999317319653,-3.395916197473511,-3.415115403834365,-3.4253188639648418,-3.3982647260283025,1.4121441020940892,-3.4056394276749256,-3.4158984012759044,-3.4146550278299417,-3.409408029014158,-3.409558249717124,-3.4151595092101186,-3.4097089659954722,5.409097881492141,-3.4100101345484397,7.777909445056061,-3.416293700681142,-3.416293700681142,-3.416293700681142,-3.416293700681142,-3.416293700681142,-3.403016832156423,-3.403016832156423,-3.2165812220103795,-9.197695278509784,-3.4003310920918572,-3.4003310920918572,-3.39945052879073,-3.39945052879073,-3.3863664597763146,-3.3863664597763146,-3.40658636937761,-3.40658636937761,0.7349119003014053,3.249107739828382,-7.586411232258843,-3.415577414441236,-3.415577414441236,-3.4181263472005865,-3.4181263472005865,-3.433189113125761,-3.433189113125761,-3.4104706973345076,-3.4104706973345076,-3.413697852784167,-3.4069900635668082,-3.4069900635668082,-3.400826751687495,-3.400826751687495,-3.4020597410399835,-3.4020597410399835,-3.4000847751923207,-3.4000847751923207,-3.4170018159135207,-3.4170018159135207,-3.4083703184932705,-3.4083703184932705,-6.895628297639198,-3.4106316454687953,-3.4106316454687953,-3.4111748920166853,-3.4111748920166853,-3.4111748920166853,-3.4111748920166853,-3.729663518504336,-3.4065889890519205,-3.4065889890519205,-3.4065889890519205,-3.4065889890519205,-3.4177009606036357,-3.4177009606036357,-3.4177009606036357,-3.405190165309536,0.6184450338059815,-3.4063660606955235,-3.4063660606955235,-3.4063660606955235,-3.409772488252651,-3.4218470766547195,-3.407831811428448,-3.407831811428448,-3.407831811428448,-3.4167114457122194,-3.4167114457122194,-3.4167114457122194,-3.4010409920396487,-3.4010409920396487,-3.4010409920396487,2.9090434324344763,-3.4000780404584674,-3.4000780404584674,-3.4000780404584674,-6.471473477316563,-3.399931135110511,-3.399931135110511,-3.40524929693487,-3.4054674977978454,-3.405090596636228,-3.4074505839158977,-3.4334874635654504,-3.4334874635654504,7.674887211577243,9.33549818122194,-3.409247800575436,9.137565496059242,-3.420415136911564,-3.409198085874438,-3.397601595634666,-3.4077983884818854,-3.4062513397649683,-3.416717809034539,-3.417251172294007,-3.403661282444695,7.9215414846946,-3.40903089435934,-3.40903089435934,-3.40903089435934,-3.414153496720294,-3.414153496720294,-3.414153496720294,-3.414153496720294,1.04467574378641,-1.1295700088168577,-3.40486150958744,-3.40486150958744,-3.40486150958744,-3.41928898562728,-3.41928898562728,5.2201977518948866,-3.408769293645312,-3.408769293645312,9.348314040201554,-3.421453347177387,-3.421453347177387,-3.407997768120497,-3.407997768120497,-3.41325574602949,-3.41325574602949,-3.4324706342673315,-3.4324706342673315,-3.404560529204562,-3.422019126343576,-4.380806782356186,-3.420487870674548,-3.420487870674548,-3.420487870674548,-3.4087096495627156,-3.4087096495627156,-3.4087096495627156,-3.4333237095200877,-3.4333237095200877,-3.410457473353401,-3.410457473353401,5.320106703954382,-3.414002282921105,-3.414002282921105,-7.002521739067989,-0.74971107555141,7.969410713280173,8.289025026953006,-3.418135403532987,-3.426420540353,-3.4160641722737894,-3.4113101875368415,-3.4198183475976336,-3.4081416563717184,-3.4081416563717184,8.748990541554583,-3.4162257337583926,-3.4162257337583926,-2.5152508368613695,-3.4208320756059205,-3.4208320756059205,-3.429792995006954,-3.429792995006954,3.6645083257915374,-3.3956230705503776,-3.4198859771745838,-2.4424188680868486,4.585577731589908,-9.133830825880494,-3.4071768547385144,-3.410306804375808,-7.972722558256753,-5.727803274605572,-3.422696719927546,-3.406839532386604,-3.406839532386604,-3.406839532386604,-3.406839532386604,-3.406839532386604,-3.406839532386604,-3.413059067348666,-3.4202456743711807,-3.4125842695454924,-1.8572632724686216,-3.416050036321275,-1.688680419617647,7.105535815901952,-3.4146978596987996,-3.4044216310679287,0.8795822733643899,6.6864230555115505,-3.422858536576186,6.17430061506386,-3.413844884946604,-3.4064906267687265,-3.4226682633311967,-3.4279489679501207,-7.651872528881616,-3.4048936863091352,-3.4195648604072995,-3.415706919462612,2.499764750790467,-3.4193426349331704,8.087336958193866,2.9065967502488483,-3.414066971185398,8.357657802633732,2.980287177757239,-3.421675349395131,-7.6441350714022605,-3.4270290647484103,-3.4041181213694447,9.528808859085164,-3.419409233124872,-3.4254345080365587,-3.3989565812965328,-3.4236726749388167,-3.418144164356236,-3.4171846891164765,-3.4172652620614823,-3.4164639430975896,2.491942494297298,-8.034789593870808,-3.4151453795923272,-3.4187973333742416,-2.7565098256500526,-3.409393443012431,-3.4066680539706917,-3.4148751779609174,-3.410367369960565,3.3965020416701925,-3.4115532757311797,-3.41080005312509,-3.414452073795365,-3.4212840594923257,-3.4096235982411383,-3.4193971557065206,-3.417193720424361,-3.4184284696150034,-6.655478943067039,-3.4000777904095507,-3.4171058747139424,-3.401925791833305,9.521083867508949,-3.4221446771826507,-3.411214010022813,-3.41449589334169,-3.4112351828243215,-3.406914021657662,-3.41533887382486,-3.421845832944105,-3.4094929023647875,-3.4124832847011044,-7.27975635345193,-3.4105136278563304,-3.409715186727908,-3.4077071240935544,-3.4151874701931826,-0.7342702778098182,-9.210486058641429,-3.407839750752485,-3.414734459200285,5.50187084821685,-3.4296846040647564,-3.4906617828873587,-3.4906617828873587,-2.1964997478307264,5.92436694243178,-3.4181406236528913,-3.3991438176839477,-3.4082580171944468,-3.4163581424161205,-6.707625694499779,-3.4218392876649197,-3.424086359728882,-3.410148727361987,-3.412185306397115,-3.410348513681104,-3.409669996559975,5.301938851527204,-3.4281113309946214,-3.415168753498829,-3.4161376129852625,-3.4272732861369706,-3.413113342699436,-3.4127064328137635,-3.4127064328137635,-3.4217385498452693,-3.4217385498452693,-3.4303619204658897,-3.4303619204658897,-3.418199980810898,-3.418199980810898,-3.4111417689489096,-3.4111417689489096,-3.4123492193830636,-3.4123492193830636,-3.41177374749301,-3.41177374749301,-3.4150526710459843,-3.4150526710459843,-3.4123519978561037,-3.4123519978561037,-3.4113475788690657,-3.4113475788690657,-3.416996700941568,-3.416996700941568,2.8130690597328805,-1.7106244566919067,-3.410758248629369,-3.410758248629369,8.596061327404847,-5.97907981333382,1.4459216145957914,-3.4252800295317627,-3.4252800295317627,-3.4046295313540735,-3.4046295313540735,-3.4176918643873524,-3.4176918643873524,3.0864349714550627,-3.4155154916434327,-3.4155154916434327,-3.42185037161436,-3.42185037161436,-3.409731993046808,-3.409731993046808,-3.4128241201662846,-3.4128241201662846,-4.635844615323091,-4.635844615323091,-3.4155315122447414,-3.4155315122447414,-3.412046281488509,-3.412046281488509,-2.5042297054257574,-3.416115674351996,-3.416115674351996,-3.4161166975089845,-3.4161166975089845,-0.9654311138976919,-3.4174489936989394,-3.4174489936989394,0.07826137522903664,-3.418435813412474,-3.418435813412474,-3.4186391641036398,-3.4186391641036398,-3.4151561080643225,-3.4151561080643225,9.52960499175543,-3.415856998350283,-3.415856998350283,-3.42152359932072,-3.42152359932072,3.8473866787506985,-3.4205086927297934,-3.4205086927297934,-3.4218595029916212,-3.4218595029916212,-3.4070233866218746,-3.4070233866218746,-3.4142551526113483,-3.4142551526113483,-3.4002502881156316,-3.4002502881156316,-3.400281099901706,-3.400281099901706,8.720059343022378,-3.4129070425737247,-3.4129070425737247,-6.227499514505432,2.692804940134595,-3.425786176876864,-3.425786176876864,-3.42100895880768,-3.42100895880768,-3.4112023413851897,-3.4112023413851897,-3.4294674717024076,-3.4294674717024076,-3.4294674717024076,-3.4207735607528553,-3.4207735607528553,-3.4207735607528553,-3.4202258605387046,-3.4202258605387046,-3.4202258605387046,3.7978690084554323,-3.415791816566368,-3.415791816566368,-3.415791816566368,-3.4078370624732344,-3.4078370624732344,-3.4078370624732344,-2.1809233363694114,-3.4160109520181727,-3.4160109520181727,-3.4160109520181727,-3.410834092022208,-3.410834092022208,-3.410834092022208,-3.4201663345284494,-3.4201663345284494,-3.4201663345284494,-3.4227876760447007,-3.4227876760447007,-3.4227876760447007,-3.4095376466326153,-3.4095376466326153,-3.4095376466326153,-3.4104856388329976,-3.4104856388329976,-3.4104856388329976,-3.415209862344505,-3.415209862344505,-3.415209862344505,-3.4111378044151373,-3.4111378044151373,-3.4111378044151373,-3.412241271858268,-3.4174821573535823,-3.4102279144723386,-3.3959478410371737,1.8083211226352862,-3.400016900437821,-3.417683797729371,-3.4162701586757462,0.1174223359833082,-3.410602953103396,-3.425109435776397,-3.4032614071412413,-3.4126390876884463,-3.4053684048191997,-3.4159188360148622,-3.407579698094148,-3.401209847333389,-3.4100945447244646,6.8263673637578535,-3.4084522055117707,-6.506555580326296,-3.4088780904629754,-3.4026608753075305,-1.5460637527796344,-3.432050933195363,-8.619792463968325,-3.4173675305723457,-3.4173675305723457,-3.4173675305723457,-3.4138093383390666,-3.4038644403925424,-3.4038644403925424,-3.4038644403925424,-3.409833661810814,-3.409833661810814,-3.409833661810814,-3.4140313794156283,-3.4140313794156283,-3.4140313794156283,-3.4140313794156283,-3.4140313794156283,-3.425635194641657,-3.425635194641657,-3.425635194641657,-3.425635194641657,-3.425635194641657,6.9622035589243545,0.41769726661103235,-3.256909466295788,-3.4226714175360096,-3.4226714175360096,-3.4226714175360096,-3.4226714175360096,-3.4151948963209886,-3.4151948963209886,-3.4151948963209886,-3.4151948963209886,-3.4175174435519793,-3.4175174435519793,4.25103148910226,0.13744343571808137,-3.4133236841124317,-3.4133236841124317,-3.418242557677212,-3.418242557677212,-3.4249894954684654,-3.4249894954684654,-3.4228813536532225,-3.4228813536532225,-3.3972138207303786,-3.3972138207303786,-3.407989268626112,-3.407989268626112,2.158432004041801,0.54712743966817,-3.413889962257538,-3.413889962257538,-3.413889962257538,-3.413889962257538,4.3839295731183,1.741495962982544,-3.4175680968383,-3.4175680968383,-8.675264439773521,-3.4068864050368655,-3.4068864050368655,6.78297167245017,-0.44301564488801404,-3.6658333494221207,-3.421800940698791,-3.421800940698791,-3.4156247389747705,-3.4156247389747705,-3.4278471303219753,-3.4278471303219753,-3.4278471303219753,-3.4278471303219753,-3.4076240084169607,-3.4076240084169607,-3.4076240084169607,-3.4076240084169607,-3.417429951155352,-3.417429951155352,-3.417429951155352,-3.417429951155352,8.999864822122518,-3.4317417055913992,-3.4317417055913992,-3.4317417055913992,3.1006079850445882,-3.425390165304071,-3.425390165304071,-3.425390165304071,-3.4065800025945494,-3.4065800025945494,-3.4128032795404746,-3.4128032795404746,-3.4101584027801692,-3.433545679332437,-3.433545679332437,-3.433545679332437,-3.433545679332437,-3.433545679332437,-3.425457865215905,-3.4202919135265866,2.8506466391116074,-3.4179173643540617,-6.42601809671659,-5.8491332294101035,5.444854550043916,0.00887477681137483,-3.413398346703315,-3.41351314600129,-3.4160802993240678,-3.421381896830943,-3.4112104627563067,-3.410010201608161,-3.4229058846267417,-3.4170872731505675,-3.4156098354607547,-3.4056723667394913,-7.763406919177656,-3.43211787390712,-3.4076802191666697,-3.415003691630549,-9.248515647041035,-3.4265026658752573,0.4244356012477617,-3.4263880031666396,2.8916454980138617,-3.419330628426086,-3.4240763875054867,-3.4246916545424817,-3.4377150114853903,-3.4377150114853903,-3.4377150114853903,-3.4377150114853903,-3.415531914714456,-3.412828375848802,-3.412828375848802,-3.4349061496886417,-3.4349061496886417,-3.425121443566251,-3.425121443566251,-3.427336889562773,-3.427336889562773,-0.5557690174951979,-3.4083551375209096,-3.4083551375209096,-3.409934247093119,-3.409934247093119,-3.412081006473734,-0.6774040373582828,-3.409406572634329,-3.409406572634329,-3.4197182808587385,-3.4197182808587385,-9.563490986664698,-3.4259719030842186,-3.4259719030842186,-3.4315921480118146,-3.4315921480118146,-2.139541594913121,7.797697834167895,-3.429543225971347,-3.429543225971347,5.09837335607723,5.722194838132751,-3.416857175283101,-3.416857175283101,-3.9974824948276915,-3.4229282180852802,-3.4256289808979137,-3.4256289808979137,-3.4137240360562604,-3.4137240360562604,2.3850571327611885,-3.4148136787735774,-3.4148136787735774,5.232198454917219,-3.428517585187425,-3.428517585187425,-3.4283466197922428,-3.4283466197922428,-3.4283466197922428,-3.4283466197922428,-3.4400656862464025,-3.4400656862464025,-3.4400656862464025,-3.412405261912128,-3.412405261912128,-3.412405261912128,-3.4074692928908865,-3.4074692928908865,-3.4074692928908865,-3.432647118219533,-3.432647118219533,-3.432647118219533,-3.4292433465530516,-3.4292433465530516,-3.4292433465530516,-9.0628134393744,-7.093623478662147,-1.3157040310507835,-2.969859673657334,-4.318187088575178,-3.4065808913522586,-3.4065808913522586,-3.4065808913522586,-3.4165639626539166,-3.4165639626539166,-0.44800653409508584,-7.395749333393136,9.114397285139574,-3.4175453052900737,2.7284780535110382,-3.418326405616777,-3.418326405616777,-3.3059343925662565,-3.427757218256456,-3.427757218256456,-3.427757218256456,-3.427757218256456,4.3590795992571145,-3.540266288546614,-8.625961687463846,-3.3992163187461086,-3.4109525371849445,-3.4065771879488347,-3.420116168027368,-3.4095838562845584,-7.2407073128810095,-3.4027152580576754,-3.41552995096389,-3.408659354060706,-3.4137618908564082,-3.4131354410892643,-3.4133611922393445,-3.4133611922393445,-3.4133611922393445,-3.4080891273089815,-3.4080891273089815,-3.4080891273089815,-3.4110773777232204,-3.4110773777232204,-3.407621641331424,-3.407621641331424,-3.4204522476129116,-3.4204522476129116,-3.3968424211334742,-3.3968424211334742,-5.927962405647882,-3.410639064388975,-3.410639064388975,3.6762070348672164,-3.4148875517924235,-3.4148875517924235,7.652984809172331,-3.417007472113376,-5.762222064027855,-3.4250970427020277,-3.4250970427020277,-3.4250970427020277,-3.4287552157643377,-3.4287552157643377,-3.4287552157643377,-3.4234482875650416,-3.4234482875650416,-3.421761834062849,-3.421761834062849,-3.428477837190126,-3.428477837190126,-3.4138069312003436,6.819567013427783,-3.4041860400634105,-3.4041860400634105,6.607611639061929,-3.419016167884072,-3.4097698820890585,-3.4245751188150173,-3.4212244023821716,-3.420927660697286,-2.493176395875132,-3.428598544718965,9.19457812556534,-3.4160786862700165,-3.4160786862700165,-3.4154042707189056,-3.4154042707189056,1.2190670396060987,-3.416643415208025,-3.416643415208025,-3.4389636278792244,-3.4093330638187256,-3.410213408592587,-3.424827900726637,-3.4088611507170032,-3.4186844857996954,-3.410649190076561,-3.4075478341128465,-3.414707945351373,-3.4269708181642784,-5.440925896332878,-3.4103279731448044,-3.4103279731448044,-3.4103279731448044,-3.4103279731448044,-3.4103279731448044,-3.4103279731448044,5.675263584192422,-3.4227952935502257,-3.4188812854552673,9.326213264367567,-3.4233623795299506,-3.423481267780347,3.650811747791492,-3.4258888068592572,-5.780543737694397,-3.7105863791957656,4.305815548247946,-3.4204061533684307,-3.410767239190628,8.5558432125719,-3.429318104132574,3.6471367590848853,-3.4178045603306657,-0.3233741970829911,-3.4137174000554307,-3.4113724506968923,-4.23629151872432,-3.4103226314117494,-3.4201135408326353,4.750923101623803,-3.407049314484029,-3.4185617768894394,-3.410237601206944,-3.4195595172548297,-3.4033206178437334,-3.4113800699702086,-7.2000155811935596,7.990353223205851,-7.147330421801548,-3.4195893453600057,-1.659225983654819,-3.4286730539365164,3.9976310858897417,-3.41432467415971,-3.4102903339708686,-3.406786136489428,-3.4158763332773177,-3.413786681137145,2.2629493244977787,-3.4135607051368133,-3.4013510787020893,-3.419152966698479,-5.713715408578888,-3.4235546881013708,-3.401664394797125,-3.411205108610882,-3.414449977877685,-3.4087538432876077,-3.4246516927490935,-3.4202585077171257,-3.4202240164054176,9.180748589174804,5.139354106014229,-3.4136463978406066,-3.412231699642758,-0.39393772491968626,-3.4170713633691685,-3.419988945282954,-3.4270746273409696,-3.411638736175286,-3.4178440791422364,-3.4148381060673323,-3.4230207687338687,-3.4078291079442833,8.347881820386732,-3.410534876149635,-1.7094353777739038,-5.253287715996768,-3.413786318766169,-3.4165497258123416,1.2503790598184317,-3.410718225153321,6.740214709547978,-3.4214349486679776,-3.4118618420410227,-3.4191833680312627,-3.4278288255522025,4.431295092047309,-3.404829495022824,-3.4107342419736986,-3.4312187628006816,9.333219414259844,-3.413972752928406,-3.415159557321137,-0.9108794846974568,-4.079085303562615,1.3586003477394382,-2.518714653896346,-3.4187170623854604,-3.4087773779581196,-3.3349850003099473,-3.4104727715683305,-8.681139194954994,-3.4212106952332286,-3.4195114288580744,-3.4195114288580744,-3.4180126851136716,-3.4180126851136716,-3.413844328427933,-3.413844328427933,-3.4175635042393626,-3.4175635042393626,6.109832373049542,-3.4268371413955236,-3.4268371413955236,-6.322022149206679,-3.428160255803517,-3.428160255803517,-3.404485299568062,-3.404485299568062,-3.4150424212797095,-3.4150424212797095,-3.4263554945975496,-3.4263554945975496,9.753462459494436,-3.4149719546064086,-3.4149719546064086,-3.425800179024126,-3.425800179024126,-3.4160723878765973,-3.4160723878765973,-5.5717322459057765,-3.4265149073592838,-3.4265149073592838,-3.414603562524478,-3.414603562524478,-3.420163155342209,-3.420163155342209,-3.4141903154918722,-3.4141903154918722,-3.4114901802318434,-3.4114901802318434,-5.129846503565576,7.274059172142671,-3.415620863783248,-3.415620863783248,-9.59694747075278,-5.223033843105371,-4.864229483095437,-3.4129543597533862,-3.4129543597533862,-5.360484808494048,-3.75328969652929,-3.4105894807236217,-3.4105894807236217,-3.4111677004185434,-3.4111677004185434,-3.4202494940061046,-3.4202494940061046,-7.020898241561739,-3.4087019049474687,-3.4087019049474687,-3.423410555747669,-3.423410555747669,1.1775403032353005,3.5927680970740354,-3.4156141771394246,-3.4156141771394246,3.496562936782407,-3.407712736975034,-3.407712736975034,-3.4108372017245516,-3.4108372017245516,-3.401566671825562,-3.401566671825562,-3.4206721598879195,-3.4206721598879195,-3.415263508585639,-3.415263508585639,6.286935578029713,-2.586131963196503,-3.413179676551092,-3.413179676551092,4.0964418672582585,-3.072679315624889,-3.4124049922280797,-3.4124049922280797,-3.4235057275110057,-3.4235057275110057,-3.4136680515237927,-3.4136680515237927,-3.412660631448645,-3.412660631448645,-3.4099262273906836,-3.4099262273906836,-3.4051154424989774,-3.4051154424989774,-3.415649729125576,-3.415649729125576,-6.312408034035267,3.796435553520734,-3.4120993786962126,-3.4120993786962126,-3.416943178514371,-3.416943178514371,-3.408222824561059,-3.408222824561059,-9.204821105390838,-3.4154199418437594,-3.4154199418437594,-3.4154199418437594,-3.418074101261279,-3.418074101261279,-3.418074101261279,-6.296286752437446,-1.506209718029103,-7.92138649550197,-3.406363356046053,-3.406363356046053,-3.406363356046053,-3.4820729986334475,6.173273950392918,-3.4121955169512583,-3.4121955169512583,-3.4121955169512583,-6.681121428714798,-3.419942514579838,-3.419942514579838,-3.419942514579838,-8.214387374653127,-3.419854836313667,-3.419854836313667,-3.419854836313667,8.143201597108675,7.161968125262774,-3.421803463028656,-3.421803463028656,-3.421803463028656,-3.4231492622289093,-3.4231492622289093,-3.4231492622289093,-3.4096293127147392,-3.4096293127147392,-3.4096293127147392,-3.4091943301524505,-3.4091943301524505,-3.4091943301524505,-3.4054632009361185,-3.4054632009361185,-3.4054632009361185,-3.4077120815036013,-3.4077120815036013,-3.4077120815036013,-3.4076393653673476,-3.4076393653673476,-3.4076393653673476,-3.409498064584283,-3.409498064584283,-3.409498064584283,-3.4081278695924926,-3.426275372555909,-3.4276835449023144,-3.421862769481132,-3.4061565159179787,-6.421961385622672,-3.4064160150764113,-1.624495300389249,-3.4206106468932678,-2.1675706434697384,8.662776142975105,-3.4211382027323456,-3.4088223540037523,-3.4165991402644513,1.8890674343080356,-3.4244189085715107,3.204283351768602,-2.253415215707985,-3.424394842077988,-3.424123061810702,-6.377593088144029,-3.4251260867118667,-3.412407638687246,-3.412407638687246,-3.412407638687246,-3.4031298043752214,-3.4031298043752214,-3.4031298043752214,-3.411999747766153,-3.411999747766153,-3.411999747766153,-3.411999747766153,-3.411999747766153,-3.41281872774851,-3.41281872774851,-3.41281872774851,-3.41281872774851,-3.41281872774851,-3.409950810382277,-3.409950810382277,-3.409950810382277,-3.409950810382277,-7.751708201927778,3.117622568249665,-3.4042386057253973,-3.4042386057253973,-3.4042386057253973,-3.4042386057253973,-3.4045579227617644,-3.4045579227617644,-3.4199068423677375,-3.4199068423677375,-3.411943650655875,-3.411943650655875,-3.409629118838142,-3.409629118838142,-3.4118268720122433,-3.4118268720122433,-3.4139267937851416,-3.4139267937851416,-3.430207004576875,-3.430207004576875,-3.4149050440340094,-3.4149050440340094,-3.412858217881527,-3.412858217881527,-3.4127053796712934,-3.4127053796712934,-4.362609168932092,-0.028831343805924448,-3.421079237672319,-3.421079237672319,6.085572377662849,2.8183533897269797,-3.414688130686746,-3.414688130686746,-3.414688130686746,-3.414688130686746,-3.4062464320537185,-3.4062464320537185,-3.4062464320537185,-3.4062464320537185,-3.416044370430779,-3.416044370430779,-3.416044370430779,-3.416044370430779,-3.421334314301302,-3.421334314301302,-3.421334314301302,-3.421334314301302,-6.634533255398942,-4.647616393550615,-3.423887721202897,-3.423887721202897,-3.423887721202897,-0.2694793887482625,-8.816321005590549,-3.4184276043944983,-3.4184276043944983,-3.4184276043944983,-3.413653262368486,-3.413653262368486,-3.420620524871838,-3.420620524871838,-3.4037645396051275,-3.4075992194735862,-3.4075992194735862,-3.4075992194735862,-3.4075992194735862,-3.4075992194735862,4.853940656897027,-3.416229907557594,-3.396862545279288,-3.41388057931373,9.890664059332064,-3.399353034882914,-3.4201502426279964,2.8499275730101115,-7.0292458161465525,8.05541589835396,2.557573581845178,0.03560056178657511,-7.931445729276363,-3.4163187014746725,-3.4098392873311854,-4.287317504684598,-3.409246835004107,-1.9416547710396266,-3.4164564150203445,-3.4200373999416733,-3.4096696696699276,-3.4244903638752664,-3.4289152085975534,-5.073654721908147,-3.4192555596049097,-3.407019836513758,-3.4222067094267983,-3.4150665318345172,-4.897775059707183,-3.4081547658512026,7.882110202834603,-3.40691238974295,-7.76823540326534,-3.4178451221604798,-3.4083031742773855,-3.4083031742773855,-3.411973862151344,-3.411973862151344,-3.424977323658184,-3.424977323658184,5.581633929899272,3.047846325924123,1.9746938525379054,-3.4030454303728783,-3.4030454303728783,-3.4288420075784654,-3.4288420075784654,-3.4150678156713976,-3.4150678156713976,-9.364541347806604,-3.423090968359589,-3.423090968359589,-3.425203980457053,-3.425203980457053,-3.409237711949671,-3.409237711949671,-5.573841504619709,-3.4243173678827477,-3.4243173678827477,-3.4214575002765413,-3.4214575002765413,-3.4091619247947005,-3.4091619247947005,-7.656719436343808,0.26389065198303996,-3.419684470166434,-3.419684470166434,-1.1554762198899748,-3.4179422228423286,-3.4179422228423286,-3.423363029583056,-3.423363029583056,-3.4315621379958214,-3.4315621379958214,-3.3948227355726734,-3.3948227355726734,-3.3948227355726734,-3.3948227355726734,-3.4229923148397337,-3.4229923148397337,-3.4229923148397337,-3.4229923148397337,-3.4279234696715655,-3.4279234696715655,-3.4279234696715655,8.30643669344915,-3.4129867034662533,-3.4129867034662533,-3.4129867034662533,-5.004782742502059,-3.4062177712736554,-3.4062177712736554,-3.4062177712736554,-3.416028790942791,-3.416028790942791,-3.416028790942791,7.598349008530597,-3.426452025357964,-3.426452025357964,-3.426452025357964,-5.3821404841538385,-3.421610995888738,-3.421610995888738,-3.421610995888738,-3.403680587284029,-3.403680587284029,2.7184347299863774,-6.252581757938329,-3.4296698100322356,-4.898156014283586,0.904696530048728,-3.425598456063021,-3.4290132851152757,-3.4083700749059656,-3.4083700749059656,-3.415136074593967,-3.424196001032863,-3.424196001032863,-3.424196001032863,-3.424196001032863,-3.4273849375743204,-3.428762116138757,2.760955071010576,-3.41051048956876,-3.414427214210926,-3.4107972451369806,-3.417648106289228,2.544773472495729,-3.4119499194040515,-3.433644397009184,-3.428180163646007,-3.4252730318840108,-3.4252730318840108,-3.4252730318840108,-3.0019078622388857,-3.3349003090706812,-3.3349003090706812,-2.409757742065559,-5.348010082842616,-3.4093795790757673,-3.4093795790757673,-3.4093795790757673,-3.4159644718814475,-3.4159644718814475,-3.4273250415034067,-3.4273250415034067,2.3299978875550735,-3.426942786833078,-3.426942786833078,-6.181124873402791,-3.4128972512046696,-3.4128972512046696,-3.4066395680660024,-3.4066395680660024,-4.323514987529309,-3.41088138640535,-6.708768702956835,-3.4024463746794984,-3.4024463746794984,-3.4024463746794984,-0.7110735418594487,-3.4136903439205133,-3.4136903439205133,-3.4136903439205133,-3.4147153186237524,-3.4147153186237524,-3.4152458403598907,-3.4152458403598907,-3.409832060706889,-3.435183023620602,-3.4047560573048905,-3.4047560573048905,-3.4338401136100147,-8.688561079074033,-3.418093289434604,-3.4212093815467277,-4.192971340618605,-3.409374471967724,-3.4209245036073543,-3.4209245036073543,-3.415923104678436,-2.908503784632785,0.4689779017460065,-3.4188767207998367,-3.4188767207998367,-3.4284872071155847,-3.4284872071155847,-3.408249582945391,-3.408249582945391,-3.7716810980381688,-3.415991261924221,-1.755346757337076,-5.879452410266275,-3.4229249297188877,-3.420830141630131,-3.412420617317915,-3.4207913147961078,-5.307172897247712,-8.308846360593925,-3.424460881377466,9.149707726774047,6.638164017770777,-3.413588875387722,-3.416754540922968,-3.4112098935687607,-3.4258795020041504,-3.4206625182467842,-3.433508797144107,-3.4315349584011337,-8.292005406002286,-7.342185439042903,-6.343253390200118,6.6118475768516625,-7.94972210247164,-3.4320411465107368,-3.4219804584398705,-8.800295416155377,-3.4244929126280805,-3.425417673807278,-3.4348647415830103,-3.435523491664025,2.276599512047339,-3.436725478274032,-3.4224944549343226,-3.438578086544176,-3.416041685767487,-3.4184702993279323,-3.4231407612913323,-3.4184875789677065,-3.434245026863593,-3.4149110673996947,7.195185233458044,-3.4261724045138306,-3.4229739828463943,-3.4133946393334336,-3.4243201856276384,-3.420265949610135,-3.4065151044289017,-3.423959352268061,-3.4269689373194225,9.389996677692746,-1.020806838220496,-3.4100791602340808,-4.752030171232446,-3.424290142006136,-3.420497654276856,-3.422455277285861,4.275806164760684,-3.4169921033158515,-3.412735171052484,-3.434713472611019,-3.4123474680282717,-3.422236597916582,-3.415233514686223,-3.417031994108952,-3.4179864248094294,-3.425498473217562,3.9094901913021918,8.93778244805268,-3.434683779447254,-3.4171372644110214,-3.426849094516041,-3.4170160766337947,-3.427433051183792,-3.418635851442021,-3.420898487716377,-3.4143510470265053,-0.7771308294497175,-3.430123151328358,-3.4314210871390944,-4.016891935031115,-3.426199463206255,-3.429735946957729,-3.423797144117552,6.642576593083373,-3.4156774701039243,-3.4148400804147965,-3.421923225600918,-3.8715892865810524,-4.394414320947941,-3.418819174954497,0.4555315827779278,-3.41974002235533,-3.417846304737222,-3.4147128477626074,-3.4339034041449477,-3.4286044441348977,-3.4289004406963297,-3.421558007793016,3.811647699791095,-3.4157121631752574,-3.4297844917534626,-3.418663301926834,4.632233708761786,2.0363715869553864,4.349981832676606,-7.138308443436381,-3.4210909794357844,-3.420598640824311,-3.4230784856428533,-3.418727314067864,0.6885109272320946,-3.4150430209166407,-3.4261494857419352,-0.44404256465988823,-3.416452927623874,-3.416452927623874,-3.416452927623874,-3.416452927623874,-3.416452927623874,-3.416452927623874,-3.4311029365761314,-3.4311029365761314,9.687694463202956,-6.074744175365048,-3.420285789847087,-3.420285789847087,-3.4069450425207055,-3.4069450425207055,5.762904419035088,5.42997857632473,-3.428528919747417,-3.428528919747417,-3.421320728060354,-3.421320728060354,-3.415928895643966,-3.415928895643966,5.892428453712089,-3.42854832819222,-3.2748009373686333,-5.693922337748067,-3.4143917991918373,-3.4143917991918373,-3.4090243911001394,-3.4090243911001394,-3.4185333371155027,-3.4185333371155027,-3.424573778105069,-3.424573778105069,-3.4314061986998388,-3.4314061986998388,2.3983147711862607,-3.4217889128696113,-3.4217889128696113,-3.4184931758880577,-3.4184931758880577,-3.4371298157020123,-3.4371298157020123,4.974773119896037,9.029731492943228,-3.418624659892254,-3.418624659892254,-3.422674475192564,-3.422674475192564,-3.425478060822323,-3.425478060822323,-3.421108964775267,-3.421108964775267,-3.4340388231034202,-3.4340388231034202,3.7068786861963723,-3.4065753319697647,-3.4065753319697647,-7.200617255157882,-3.9972185037064145,-3.420355582045403,-3.420355582045403,-3.426828904014635,-3.426828904014635,-3.4320226411893504,-3.4320226411893504,-3.4227421942131073,-3.4227421942131073,0.4512062347730641,-3.425952133225559,-3.425952133225559,-3.4149309664551755,-3.4149309664551755,6.373689191979114,-3.4189421710889363,-3.4189421710889363,-3.412313695702811,-3.412313695702811,-3.411981515608085,-3.411981515608085,-3.4285862036130244,-3.4285862036130244,-3.4275308485590736,-3.4275308485590736,-3.43254926297927,-3.43254926297927,-3.4311542484948454,-3.4311542484948454,-3.41604161023639,-3.41604161023639,-3.435629031623474,-3.435629031623474,-3.429932778526622,-3.429932778526622,-3.4158661512184043,-3.4158661512184043,-3.4198536819678598,-3.4198536819678598,1.8266206317307123,-3.4218191978289427,-3.4218191978289427,-3.423654503454893,-3.423654503454893,-3.436251645778383,-3.436251645778383,-3.4141461775858044,-3.4141461775858044,-3.4141461775858044,-3.419405680370561,-3.419405680370561,-3.419405680370561,1.6357349480293877,-3.413318256191179,-3.413318256191179,-3.413318256191179,-3.4232718996629172,-3.4232718996629172,-3.4232718996629172,-3.4156072258809855,-3.4156072258809855,-3.4156072258809855,-3.4170744852919412,-3.4170744852919412,-3.4170744852919412,-3.42871154217164,-3.42871154217164,-3.42871154217164,-3.427165785627764,-3.427165785627764,-3.427165785627764,-3.418454536077723,-3.418454536077723,-3.418454536077723,-3.4208002455541795,-3.4208002455541795,-3.4208002455541795,-3.42898331085509,-3.42898331085509,-3.42898331085509,-3.414146852066696,-3.414146852066696,-3.414146852066696,-3.427822837198832,-3.427822837198832,-3.427822837198832,-3.4338822173847463,-3.4309537370519703,-3.4194278856516735,-3.424754356379715,-3.4338312070562047,-3.4344451556949167,-3.4186229876381837,-3.420611379448677,-3.417756632772102,-3.4166016907260657,5.0912082423771,-3.4140909476639223,-9.190941314803112,-3.4199248654360055,-3.415639843843479,7.3293294056338425,-3.411440960251264,9.841236243154306,-3.4150171970961507,-3.4270208620491784,-3.4212358651134966,-3.4212358651134966,-3.4212358651134966,-6.967995635671507,-3.428341702831598,-3.428341702831598,-3.428341702831598,-3.4259640271300107,-3.4259640271300107,-3.4259640271300107,-5.259950865002018,-3.41624037786723,-3.41624037786723,-3.41624037786723,-3.41624037786723,-3.41624037786723,-3.430744686336748,-3.430744686336748,-3.430744686336748,-3.430744686336748,-3.430744686336748,-1.8524388557693818,6.587110884243227,-3.428316769130779,-3.428316769130779,-3.428316769130779,-3.428316769130779,-3.4240266725671535,-3.4240266725671535,-3.4240266725671535,-3.4240266725671535,-1.8753779139222146,8.498732031413631,6.079169346101846,-3.412140233622085,-3.412140233622085,2.0304557090288142,-7.485974173943177,-3.4294668712977936,-3.4294668712977936,-3.418764117297078,-3.418764117297078,4.029583014463359,-3.4262190646905335,-3.4262190646905335,-3.416550902003986,-3.416550902003986,-3.419614182915849,-3.419614182915849,-3.428448425471375,-3.428448425471375,-3.4205233240884967,-3.4205233240884967,-3.412918911424578,-3.412918911424578,-3.42180851845011,-3.42180851845011,-3.432093933581677,-3.432093933581677,-3.4275402792920326,-3.4275402792920326,-3.4275402792920326,-3.4275402792920326,-3.430832946368106,-3.430832946368106,-3.430832946368106,-3.430832946368106,-3.4215548766089876,-3.4215548766089876,-3.4215548766089876,-3.4215548766089876,-3.4252543652688203,-3.4252543652688203,-3.4252543652688203,-3.4252543652688203,-3.428865773737532,-3.428865773737532,-3.428865773737532,-3.4113934485418627,-3.4113934485418627,-3.4113934485418627,-3.4118991791082864,-3.4118991791082864,6.7204719396032,-2.3957838831318785,-3.424429377669788,-1.8830387027302127,-3.4184590928026974,-3.416178684102972,-3.416178684102972,-3.4313557972699984,-3.415029865536134,-9.592480689280539,4.136747939226737,-3.419422830824896,-3.419422830824896,-3.419422830824896,-3.419422830824896,-3.419422830824896,-3.417558071960441,-3.4297054467880628,-3.42163492509402,-3.424568624778815,-2.8552308692850747,-3.420565550610341,3.1481673938110504,-3.406843131618973,-3.4116464207372745,-3.225938614380441,-0.31755305594188776,-3.419927676073046,0.10793140377585608,-3.4152563902742124,-3.4102617424878527,-2.4292667024726944,-3.4199643486907307,-3.4331508802147237,-3.4250187162608645,-3.420480787165702,7.458380060111502,-3.4253278391648623,-3.4214051820736753,8.846609312154218,-3.412715770916642,-3.4298930270630095,-3.413491099774988,-3.4219201392180842,-0.3691905796543722,-3.4258245702966086,6.184006826727991,-5.416201634440599,-3.4046537024583445,-3.421117598276327,-4.4522441269978685,-3.4254505923865164,-3.4254505923865164,-3.4303815384299448,-3.4303815384299448,-8.53992212773505,-3.4303897834102273,-3.4303897834102273,-0.18979798474367193,-3.41369053831421,-3.41369053831421,-3.410751253859737,-3.410751253859737,-3.4178916490228755,-3.4178916490228755,-3.4355753527716058,-3.4355753527716058,-3.402772896691725,-3.402772896691725,-3.4145444355085317,-3.4145444355085317,6.904525091395119,-3.4241447403152527,-3.4241447403152527,-3.417821680739946,-3.417821680739946,6.939727295543328,-3.42126493405393,-3.42126493405393,-3.4209591431220012,-3.4209591431220012,-3.4417101620156068,-3.4417101620156068,-3.4222952023852615,-3.4222952023852615,-3.4329989504806013,-3.4142597349411963,-3.4142597349411963,-3.417170629698715,-3.417170629698715,-3.417170629698715,-3.417170629698715,2.48604965817478,-3.429743496109352,-3.429743496109352,-3.429743496109352,-3.429743496109352,-3.4290612768756645,-3.4290612768756645,-3.4290612768756645,-3.421778495819515,-3.421778495819515,-3.421778495819515,-3.41044067462645,-3.41044067462645,-3.41044067462645,2.443408576759813,-3.416609816581122,-3.416609816581122,-3.416609816581122,5.475643369798879,-3.416235482075173,-3.416235482075173,-3.416235482075173,-3.415525978761443,-3.415525978761443,-3.415525978761443,-3.4272001809880193,-3.4272001809880193,-0.2019875128919182,-3.425800520452759,-3.431419522296064,0.7319080392817767,-3.4216978427101106,6.737040670506087,-1.9641179053663755,-3.155839785192029,-3.410547105724633,9.565892856215797,-3.420837134521646,-3.420837134521646,-3.4136967058524146]},\"selected\":{\"id\":\"11124\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"11125\",\"type\":\"UnionRenderers\"}},\"id\":\"10416\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"high\":0.90683,\"low\":0.015045801948051959,\"palette\":[\"#5e4fa2\",\"#3288bd\",\"#66c2a5\",\"#abdda4\",\"#e6f598\",\"#ffffbf\",\"#fee08b\",\"#fdae61\",\"#f46d43\",\"#d53e4f\",\"#9e0142\"]},\"id\":\"10417\",\"type\":\"LinearColorMapper\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"10\"},\"id\":\"10502\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"2\"},\"id\":\"10702\",\"type\":\"GroupFilter\"},{\"attributes\":{\"bounds\":\"auto\",\"callback\":null,\"end\":1.0995884773662552,\"start\":-0.09547325102880659},\"id\":\"10418\",\"type\":\"Range1d\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10503\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10703\",\"type\":\"GroupFilter\"},{\"attributes\":{\"bounds\":\"auto\",\"callback\":null,\"end\":1.798614198051948,\"start\":0.013541221753246763},\"id\":\"10419\",\"type\":\"Range1d\"},{\"attributes\":{\"filters\":[{\"id\":\"10502\",\"type\":\"GroupFilter\"},{\"id\":\"10503\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10504\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10702\",\"type\":\"GroupFilter\"},{\"id\":\"10703\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10704\",\"type\":\"CDSView\"},{\"attributes\":{\"below\":[{\"id\":\"10427\",\"type\":\"LinearAxis\"}],\"center\":[{\"id\":\"10431\",\"type\":\"Grid\"},{\"id\":\"10436\",\"type\":\"Grid\"}],\"left\":[{\"id\":\"10432\",\"type\":\"LogAxis\"}],\"plot_height\":500,\"renderers\":[{\"id\":\"10454\",\"type\":\"GlyphRenderer\"},{\"id\":\"10461\",\"type\":\"GlyphRenderer\"},{\"id\":\"10468\",\"type\":\"GlyphRenderer\"},{\"id\":\"10474\",\"type\":\"GlyphRenderer\"},{\"id\":\"10481\",\"type\":\"GlyphRenderer\"},{\"id\":\"10488\",\"type\":\"GlyphRenderer\"},{\"id\":\"10494\",\"type\":\"GlyphRenderer\"},{\"id\":\"10501\",\"type\":\"GlyphRenderer\"},{\"id\":\"10508\",\"type\":\"GlyphRenderer\"},{\"id\":\"10514\",\"type\":\"GlyphRenderer\"},{\"id\":\"10521\",\"type\":\"GlyphRenderer\"},{\"id\":\"10528\",\"type\":\"GlyphRenderer\"},{\"id\":\"10534\",\"type\":\"GlyphRenderer\"},{\"id\":\"10541\",\"type\":\"GlyphRenderer\"},{\"id\":\"10548\",\"type\":\"GlyphRenderer\"},{\"id\":\"10554\",\"type\":\"GlyphRenderer\"},{\"id\":\"10561\",\"type\":\"GlyphRenderer\"},{\"id\":\"10568\",\"type\":\"GlyphRenderer\"},{\"id\":\"10574\",\"type\":\"GlyphRenderer\"},{\"id\":\"10581\",\"type\":\"GlyphRenderer\"},{\"id\":\"10588\",\"type\":\"GlyphRenderer\"},{\"id\":\"10594\",\"type\":\"GlyphRenderer\"},{\"id\":\"10601\",\"type\":\"GlyphRenderer\"},{\"id\":\"10608\",\"type\":\"GlyphRenderer\"},{\"id\":\"10614\",\"type\":\"GlyphRenderer\"},{\"id\":\"10621\",\"type\":\"GlyphRenderer\"},{\"id\":\"10628\",\"type\":\"GlyphRenderer\"},{\"id\":\"10634\",\"type\":\"GlyphRenderer\"},{\"id\":\"10641\",\"type\":\"GlyphRenderer\"},{\"id\":\"10648\",\"type\":\"GlyphRenderer\"},{\"id\":\"10654\",\"type\":\"GlyphRenderer\"},{\"id\":\"10661\",\"type\":\"GlyphRenderer\"},{\"id\":\"10668\",\"type\":\"GlyphRenderer\"},{\"id\":\"10674\",\"type\":\"GlyphRenderer\"},{\"id\":\"10681\",\"type\":\"GlyphRenderer\"},{\"id\":\"10688\",\"type\":\"GlyphRenderer\"},{\"id\":\"10694\",\"type\":\"GlyphRenderer\"},{\"id\":\"10701\",\"type\":\"GlyphRenderer\"},{\"id\":\"10708\",\"type\":\"GlyphRenderer\"},{\"id\":\"10714\",\"type\":\"GlyphRenderer\"},{\"id\":\"10721\",\"type\":\"GlyphRenderer\"},{\"id\":\"10728\",\"type\":\"GlyphRenderer\"},{\"id\":\"10734\",\"type\":\"GlyphRenderer\"},{\"id\":\"10741\",\"type\":\"GlyphRenderer\"},{\"id\":\"10748\",\"type\":\"GlyphRenderer\"},{\"id\":\"10754\",\"type\":\"GlyphRenderer\"},{\"id\":\"10761\",\"type\":\"GlyphRenderer\"},{\"id\":\"10768\",\"type\":\"GlyphRenderer\"},{\"id\":\"10774\",\"type\":\"GlyphRenderer\"},{\"id\":\"10781\",\"type\":\"GlyphRenderer\"},{\"id\":\"10788\",\"type\":\"GlyphRenderer\"},{\"id\":\"10794\",\"type\":\"GlyphRenderer\"},{\"id\":\"10801\",\"type\":\"GlyphRenderer\"},{\"id\":\"10808\",\"type\":\"GlyphRenderer\"},{\"id\":\"10814\",\"type\":\"GlyphRenderer\"},{\"id\":\"10821\",\"type\":\"GlyphRenderer\"},{\"id\":\"10828\",\"type\":\"GlyphRenderer\"},{\"id\":\"10834\",\"type\":\"GlyphRenderer\"},{\"id\":\"10841\",\"type\":\"GlyphRenderer\"},{\"id\":\"10848\",\"type\":\"GlyphRenderer\"},{\"id\":\"10854\",\"type\":\"GlyphRenderer\"},{\"id\":\"10861\",\"type\":\"GlyphRenderer\"},{\"id\":\"10868\",\"type\":\"GlyphRenderer\"},{\"id\":\"10874\",\"type\":\"GlyphRenderer\"},{\"id\":\"10881\",\"type\":\"GlyphRenderer\"},{\"id\":\"10888\",\"type\":\"GlyphRenderer\"},{\"id\":\"10894\",\"type\":\"GlyphRenderer\"},{\"id\":\"10901\",\"type\":\"GlyphRenderer\"},{\"id\":\"10908\",\"type\":\"GlyphRenderer\"},{\"id\":\"10914\",\"type\":\"GlyphRenderer\"},{\"id\":\"10921\",\"type\":\"GlyphRenderer\"},{\"id\":\"10928\",\"type\":\"GlyphRenderer\"},{\"id\":\"10934\",\"type\":\"GlyphRenderer\"},{\"id\":\"10941\",\"type\":\"GlyphRenderer\"},{\"id\":\"10948\",\"type\":\"GlyphRenderer\"},{\"id\":\"10954\",\"type\":\"GlyphRenderer\"},{\"id\":\"10961\",\"type\":\"GlyphRenderer\"},{\"id\":\"10968\",\"type\":\"GlyphRenderer\"},{\"id\":\"10974\",\"type\":\"GlyphRenderer\"},{\"id\":\"10981\",\"type\":\"GlyphRenderer\"},{\"id\":\"10988\",\"type\":\"GlyphRenderer\"},{\"id\":\"10994\",\"type\":\"GlyphRenderer\"},{\"id\":\"11001\",\"type\":\"GlyphRenderer\"},{\"id\":\"11008\",\"type\":\"GlyphRenderer\"},{\"id\":\"11014\",\"type\":\"GlyphRenderer\"},{\"id\":\"11021\",\"type\":\"GlyphRenderer\"},{\"id\":\"11028\",\"type\":\"GlyphRenderer\"},{\"id\":\"11034\",\"type\":\"GlyphRenderer\"},{\"id\":\"11041\",\"type\":\"GlyphRenderer\"},{\"id\":\"11048\",\"type\":\"GlyphRenderer\"},{\"id\":\"11054\",\"type\":\"GlyphRenderer\"},{\"id\":\"11061\",\"type\":\"GlyphRenderer\"},{\"id\":\"11068\",\"type\":\"GlyphRenderer\"},{\"id\":\"11074\",\"type\":\"GlyphRenderer\"},{\"id\":\"11081\",\"type\":\"GlyphRenderer\"},{\"id\":\"11088\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"11115\",\"type\":\"Title\"},\"toolbar\":{\"id\":\"10442\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"10418\",\"type\":\"Range1d\"},\"x_scale\":{\"id\":\"10423\",\"type\":\"LinearScale\"},\"y_range\":{\"id\":\"10419\",\"type\":\"Range1d\"},\"y_scale\":{\"id\":\"10425\",\"type\":\"LogScale\"}},\"id\":\"10420\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"17\"},\"id\":\"10629\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10506\",\"type\":\"Circle\"},{\"attributes\":{\"args\":{\"glyph_renderer0\":{\"id\":\"10454\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"10461\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"10921\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"10928\",\"type\":\"GlyphRenderer\"},\"glyph_renderer12\":{\"id\":\"10974\",\"type\":\"GlyphRenderer\"},\"glyph_renderer13\":{\"id\":\"10981\",\"type\":\"GlyphRenderer\"},\"glyph_renderer14\":{\"id\":\"10988\",\"type\":\"GlyphRenderer\"},\"glyph_renderer15\":{\"id\":\"10994\",\"type\":\"GlyphRenderer\"},\"glyph_renderer16\":{\"id\":\"11001\",\"type\":\"GlyphRenderer\"},\"glyph_renderer17\":{\"id\":\"11008\",\"type\":\"GlyphRenderer\"},\"glyph_renderer18\":{\"id\":\"11014\",\"type\":\"GlyphRenderer\"},\"glyph_renderer19\":{\"id\":\"11021\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"10468\",\"type\":\"GlyphRenderer\"},\"glyph_renderer20\":{\"id\":\"11028\",\"type\":\"GlyphRenderer\"},\"glyph_renderer21\":{\"id\":\"11034\",\"type\":\"GlyphRenderer\"},\"glyph_renderer22\":{\"id\":\"11041\",\"type\":\"GlyphRenderer\"},\"glyph_renderer23\":{\"id\":\"11048\",\"type\":\"GlyphRenderer\"},\"glyph_renderer24\":{\"id\":\"11054\",\"type\":\"GlyphRenderer\"},\"glyph_renderer25\":{\"id\":\"11061\",\"type\":\"GlyphRenderer\"},\"glyph_renderer26\":{\"id\":\"11068\",\"type\":\"GlyphRenderer\"},\"glyph_renderer27\":{\"id\":\"11074\",\"type\":\"GlyphRenderer\"},\"glyph_renderer28\":{\"id\":\"11081\",\"type\":\"GlyphRenderer\"},\"glyph_renderer29\":{\"id\":\"11088\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"10474\",\"type\":\"GlyphRenderer\"},\"glyph_renderer30\":{\"id\":\"10494\",\"type\":\"GlyphRenderer\"},\"glyph_renderer31\":{\"id\":\"10501\",\"type\":\"GlyphRenderer\"},\"glyph_renderer32\":{\"id\":\"10508\",\"type\":\"GlyphRenderer\"},\"glyph_renderer33\":{\"id\":\"10514\",\"type\":\"GlyphRenderer\"},\"glyph_renderer34\":{\"id\":\"10521\",\"type\":\"GlyphRenderer\"},\"glyph_renderer35\":{\"id\":\"10528\",\"type\":\"GlyphRenderer\"},\"glyph_renderer36\":{\"id\":\"10534\",\"type\":\"GlyphRenderer\"},\"glyph_renderer37\":{\"id\":\"10541\",\"type\":\"GlyphRenderer\"},\"glyph_renderer38\":{\"id\":\"10548\",\"type\":\"GlyphRenderer\"},\"glyph_renderer39\":{\"id\":\"10554\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"10481\",\"type\":\"GlyphRenderer\"},\"glyph_renderer40\":{\"id\":\"10561\",\"type\":\"GlyphRenderer\"},\"glyph_renderer41\":{\"id\":\"10568\",\"type\":\"GlyphRenderer\"},\"glyph_renderer42\":{\"id\":\"10574\",\"type\":\"GlyphRenderer\"},\"glyph_renderer43\":{\"id\":\"10581\",\"type\":\"GlyphRenderer\"},\"glyph_renderer44\":{\"id\":\"10588\",\"type\":\"GlyphRenderer\"},\"glyph_renderer45\":{\"id\":\"10594\",\"type\":\"GlyphRenderer\"},\"glyph_renderer46\":{\"id\":\"10601\",\"type\":\"GlyphRenderer\"},\"glyph_renderer47\":{\"id\":\"10608\",\"type\":\"GlyphRenderer\"},\"glyph_renderer48\":{\"id\":\"10614\",\"type\":\"GlyphRenderer\"},\"glyph_renderer49\":{\"id\":\"10621\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"10488\",\"type\":\"GlyphRenderer\"},\"glyph_renderer50\":{\"id\":\"10628\",\"type\":\"GlyphRenderer\"},\"glyph_renderer51\":{\"id\":\"10634\",\"type\":\"GlyphRenderer\"},\"glyph_renderer52\":{\"id\":\"10641\",\"type\":\"GlyphRenderer\"},\"glyph_renderer53\":{\"id\":\"10648\",\"type\":\"GlyphRenderer\"},\"glyph_renderer54\":{\"id\":\"10654\",\"type\":\"GlyphRenderer\"},\"glyph_renderer55\":{\"id\":\"10661\",\"type\":\"GlyphRenderer\"},\"glyph_renderer56\":{\"id\":\"10668\",\"type\":\"GlyphRenderer\"},\"glyph_renderer57\":{\"id\":\"10674\",\"type\":\"GlyphRenderer\"},\"glyph_renderer58\":{\"id\":\"10681\",\"type\":\"GlyphRenderer\"},\"glyph_renderer59\":{\"id\":\"10688\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"10694\",\"type\":\"GlyphRenderer\"},\"glyph_renderer60\":{\"id\":\"10714\",\"type\":\"GlyphRenderer\"},\"glyph_renderer61\":{\"id\":\"10721\",\"type\":\"GlyphRenderer\"},\"glyph_renderer62\":{\"id\":\"10728\",\"type\":\"GlyphRenderer\"},\"glyph_renderer63\":{\"id\":\"10734\",\"type\":\"GlyphRenderer\"},\"glyph_renderer64\":{\"id\":\"10741\",\"type\":\"GlyphRenderer\"},\"glyph_renderer65\":{\"id\":\"10748\",\"type\":\"GlyphRenderer\"},\"glyph_renderer66\":{\"id\":\"10754\",\"type\":\"GlyphRenderer\"},\"glyph_renderer67\":{\"id\":\"10761\",\"type\":\"GlyphRenderer\"},\"glyph_renderer68\":{\"id\":\"10768\",\"type\":\"GlyphRenderer\"},\"glyph_renderer69\":{\"id\":\"10774\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"10701\",\"type\":\"GlyphRenderer\"},\"glyph_renderer70\":{\"id\":\"10781\",\"type\":\"GlyphRenderer\"},\"glyph_renderer71\":{\"id\":\"10788\",\"type\":\"GlyphRenderer\"},\"glyph_renderer72\":{\"id\":\"10794\",\"type\":\"GlyphRenderer\"},\"glyph_renderer73\":{\"id\":\"10801\",\"type\":\"GlyphRenderer\"},\"glyph_renderer74\":{\"id\":\"10808\",\"type\":\"GlyphRenderer\"},\"glyph_renderer75\":{\"id\":\"10814\",\"type\":\"GlyphRenderer\"},\"glyph_renderer76\":{\"id\":\"10821\",\"type\":\"GlyphRenderer\"},\"glyph_renderer77\":{\"id\":\"10828\",\"type\":\"GlyphRenderer\"},\"glyph_renderer78\":{\"id\":\"10834\",\"type\":\"GlyphRenderer\"},\"glyph_renderer79\":{\"id\":\"10841\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"10708\",\"type\":\"GlyphRenderer\"},\"glyph_renderer80\":{\"id\":\"10848\",\"type\":\"GlyphRenderer\"},\"glyph_renderer81\":{\"id\":\"10854\",\"type\":\"GlyphRenderer\"},\"glyph_renderer82\":{\"id\":\"10861\",\"type\":\"GlyphRenderer\"},\"glyph_renderer83\":{\"id\":\"10868\",\"type\":\"GlyphRenderer\"},\"glyph_renderer84\":{\"id\":\"10874\",\"type\":\"GlyphRenderer\"},\"glyph_renderer85\":{\"id\":\"10881\",\"type\":\"GlyphRenderer\"},\"glyph_renderer86\":{\"id\":\"10888\",\"type\":\"GlyphRenderer\"},\"glyph_renderer87\":{\"id\":\"10894\",\"type\":\"GlyphRenderer\"},\"glyph_renderer88\":{\"id\":\"10901\",\"type\":\"GlyphRenderer\"},\"glyph_renderer89\":{\"id\":\"10908\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"10914\",\"type\":\"GlyphRenderer\"},\"glyph_renderer90\":{\"id\":\"10934\",\"type\":\"GlyphRenderer\"},\"glyph_renderer91\":{\"id\":\"10941\",\"type\":\"GlyphRenderer\"},\"glyph_renderer92\":{\"id\":\"10948\",\"type\":\"GlyphRenderer\"},\"glyph_renderer93\":{\"id\":\"10954\",\"type\":\"GlyphRenderer\"},\"glyph_renderer94\":{\"id\":\"10961\",\"type\":\"GlyphRenderer\"},\"glyph_renderer95\":{\"id\":\"10968\",\"type\":\"GlyphRenderer\"}},\"code\":\"len_labels = 32;glyph_renderers = [[glyph_renderer0,glyph_renderer1,glyph_renderer2],[glyph_renderer3,glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7,glyph_renderer8],[glyph_renderer9,glyph_renderer10,glyph_renderer11],[glyph_renderer12,glyph_renderer13,glyph_renderer14],[glyph_renderer15,glyph_renderer16,glyph_renderer17],[glyph_renderer18,glyph_renderer19,glyph_renderer20],[glyph_renderer21,glyph_renderer22,glyph_renderer23],[glyph_renderer24,glyph_renderer25,glyph_renderer26],[glyph_renderer27,glyph_renderer28,glyph_renderer29],[glyph_renderer30,glyph_renderer31,glyph_renderer32],[glyph_renderer33,glyph_renderer34,glyph_renderer35],[glyph_renderer36,glyph_renderer37,glyph_renderer38],[glyph_renderer39,glyph_renderer40,glyph_renderer41],[glyph_renderer42,glyph_renderer43,glyph_renderer44],[glyph_renderer45,glyph_renderer46,glyph_renderer47],[glyph_renderer48,glyph_renderer49,glyph_renderer50],[glyph_renderer51,glyph_renderer52,glyph_renderer53],[glyph_renderer54,glyph_renderer55,glyph_renderer56],[glyph_renderer57,glyph_renderer58,glyph_renderer59],[glyph_renderer60,glyph_renderer61,glyph_renderer62],[glyph_renderer63,glyph_renderer64,glyph_renderer65],[glyph_renderer66,glyph_renderer67,glyph_renderer68],[glyph_renderer69,glyph_renderer70,glyph_renderer71],[glyph_renderer72,glyph_renderer73,glyph_renderer74],[glyph_renderer75,glyph_renderer76,glyph_renderer77],[glyph_renderer78,glyph_renderer79,glyph_renderer80],[glyph_renderer81,glyph_renderer82,glyph_renderer83],[glyph_renderer84,glyph_renderer85,glyph_renderer86],[glyph_renderer87,glyph_renderer88,glyph_renderer89],[glyph_renderer90,glyph_renderer91,glyph_renderer92],[glyph_renderer93,glyph_renderer94,glyph_renderer95]];\\n for (i = 0; i < len_labels; i++) {\\n if (cb_obj.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"11089\",\"type\":\"CustomJS\"},{\"attributes\":{},\"id\":\"10423\",\"type\":\"LinearScale\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10799\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10800\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10797\",\"type\":\"CDSView\"}},\"id\":\"10801\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10507\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"10425\",\"type\":\"LogScale\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10719\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10506\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10507\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10504\",\"type\":\"CDSView\"}},\"id\":\"10508\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"axis_label\":\"Time\",\"formatter\":{\"id\":\"11118\",\"type\":\"BasicTickFormatter\"},\"ticker\":{\"id\":\"10428\",\"type\":\"BasicTicker\"}},\"id\":\"10427\",\"type\":\"LinearAxis\"},{\"attributes\":{\"filters\":[{\"id\":\"10589\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10590\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10835\",\"type\":\"GroupFilter\"},{\"id\":\"10836\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10837\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10872\",\"type\":\"MultiLine\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"24\"},\"id\":\"10802\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"11003\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10632\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10633\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10630\",\"type\":\"CDSView\"}},\"id\":\"10634\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"10428\",\"type\":\"BasicTicker\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10639\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10873\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10880\",\"type\":\"CircleX\"},{\"attributes\":{\"filters\":[{\"id\":\"11002\",\"type\":\"GroupFilter\"},{\"id\":\"11003\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"11004\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10839\",\"type\":\"CircleX\"},{\"attributes\":{\"ticker\":{\"id\":\"10428\",\"type\":\"BasicTicker\"}},\"id\":\"10431\",\"type\":\"Grid\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10872\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10873\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10870\",\"type\":\"CDSView\"}},\"id\":\"10874\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11046\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11047\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"11044\",\"type\":\"CDSView\"}},\"id\":\"11048\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10592\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10640\",\"type\":\"CircleX\"},{\"attributes\":{\"axis_label\":\"Cost\",\"formatter\":{\"id\":\"11120\",\"type\":\"LogTickFormatter\"},\"ticker\":{\"id\":\"10433\",\"type\":\"LogTicker\"}},\"id\":\"10432\",\"type\":\"LogAxis\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10639\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10640\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10637\",\"type\":\"CDSView\"}},\"id\":\"10641\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10886\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10887\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10884\",\"type\":\"CDSView\"}},\"id\":\"10888\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10593\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10840\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11006\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10592\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10593\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10590\",\"type\":\"CDSView\"}},\"id\":\"10594\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10839\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10840\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10837\",\"type\":\"CDSView\"}},\"id\":\"10841\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"num_minor_ticks\":10},\"id\":\"10433\",\"type\":\"LogTicker\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11007\",\"type\":\"Circle\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"17\"},\"id\":\"10642\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"29\"},\"id\":\"10889\",\"type\":\"GroupFilter\"},{\"attributes\":{\"dimension\":1,\"ticker\":{\"id\":\"10433\",\"type\":\"LogTicker\"}},\"id\":\"10436\",\"type\":\"Grid\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11006\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11007\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"11004\",\"type\":\"CDSView\"}},\"id\":\"11008\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"15\"},\"id\":\"10595\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10643\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10889\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10890\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"26\"},\"id\":\"10842\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10449\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10450\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10642\",\"type\":\"GroupFilter\"},{\"id\":\"10643\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10644\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10596\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10843\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10966\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10967\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10964\",\"type\":\"CDSView\"}},\"id\":\"10968\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"0\"},\"id\":\"10449\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"6\"},\"id\":\"11009\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10595\",\"type\":\"GroupFilter\"},{\"id\":\"10596\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10597\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10842\",\"type\":\"GroupFilter\"},{\"id\":\"10843\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10844\",\"type\":\"CDSView\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"10414\",\"type\":\"HoverTool\"},{\"id\":\"10437\",\"type\":\"SaveTool\"},{\"id\":\"10438\",\"type\":\"PanTool\"},{\"id\":\"10439\",\"type\":\"WheelZoomTool\"},{\"id\":\"10440\",\"type\":\"BoxZoomTool\"},{\"id\":\"10441\",\"type\":\"ResetTool\"}]},\"id\":\"10442\",\"type\":\"Toolbar\"},{\"attributes\":{\"filters\":[{\"id\":\"10709\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10710\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10892\",\"type\":\"MultiLine\"},{\"attributes\":{},\"id\":\"10437\",\"type\":\"SaveTool\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10633\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10646\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10879\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10893\",\"type\":\"MultiLine\"},{\"attributes\":{\"filters\":[{\"id\":\"11009\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"11010\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11047\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"10438\",\"type\":\"PanTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10599\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10647\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10846\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10892\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10893\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10890\",\"type\":\"CDSView\"}},\"id\":\"10894\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"11012\",\"type\":\"MultiLine\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10646\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10647\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10644\",\"type\":\"CDSView\"}},\"id\":\"10648\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"10439\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10600\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10847\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"11013\",\"type\":\"MultiLine\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"29\"},\"id\":\"10895\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10599\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10600\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10597\",\"type\":\"CDSView\"}},\"id\":\"10601\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10846\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10847\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10844\",\"type\":\"CDSView\"}},\"id\":\"10848\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"overlay\":{\"id\":\"11121\",\"type\":\"BoxAnnotation\"}},\"id\":\"10440\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11012\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11013\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"11010\",\"type\":\"CDSView\"}},\"id\":\"11014\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"18\"},\"id\":\"10649\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10896\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"10441\",\"type\":\"ResetTool\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"15\"},\"id\":\"10602\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10649\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10650\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10895\",\"type\":\"GroupFilter\"},{\"id\":\"10896\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10897\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"27\"},\"id\":\"10849\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10603\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"6\"},\"id\":\"11015\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10849\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10850\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10967\",\"type\":\"Circle\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"11016\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10602\",\"type\":\"GroupFilter\"},{\"id\":\"10603\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10604\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"20\"},\"id\":\"10709\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10652\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10899\",\"type\":\"CircleX\"},{\"attributes\":{\"filters\":[{\"id\":\"11015\",\"type\":\"GroupFilter\"},{\"id\":\"11016\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"11017\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10632\",\"type\":\"MultiLine\"},{\"attributes\":{\"filters\":[{\"id\":\"10969\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10970\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"0\"},\"id\":\"10455\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10852\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10900\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10452\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10653\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10606\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11046\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10899\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10900\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10897\",\"type\":\"CDSView\"}},\"id\":\"10901\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10652\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10653\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10650\",\"type\":\"CDSView\"}},\"id\":\"10654\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10453\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10607\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10853\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11019\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10852\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10853\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10850\",\"type\":\"CDSView\"}},\"id\":\"10854\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10452\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10453\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10450\",\"type\":\"CDSView\"}},\"id\":\"10454\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11020\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10606\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10607\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10604\",\"type\":\"CDSView\"}},\"id\":\"10608\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"18\"},\"id\":\"10655\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"29\"},\"id\":\"10902\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11019\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11020\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"11017\",\"type\":\"CDSView\"}},\"id\":\"11021\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10456\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10656\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"27\"},\"id\":\"10855\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10903\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10455\",\"type\":\"GroupFilter\"},{\"id\":\"10456\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10457\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10655\",\"type\":\"GroupFilter\"},{\"id\":\"10656\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10657\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10902\",\"type\":\"GroupFilter\"},{\"id\":\"10903\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10904\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"16\"},\"id\":\"10609\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10856\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"6\"},\"id\":\"11022\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10626\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10627\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10624\",\"type\":\"CDSView\"}},\"id\":\"10628\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10706\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10707\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10704\",\"type\":\"CDSView\"}},\"id\":\"10708\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"10609\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10610\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10855\",\"type\":\"GroupFilter\"},{\"id\":\"10856\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10857\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10966\",\"type\":\"Circle\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"11023\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10459\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10659\",\"type\":\"CircleX\"},{\"attributes\":{\"filters\":[{\"id\":\"10875\",\"type\":\"GroupFilter\"},{\"id\":\"10876\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10877\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10712\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10906\",\"type\":\"Circle\"},{\"attributes\":{\"filters\":[{\"id\":\"11022\",\"type\":\"GroupFilter\"},{\"id\":\"11023\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"11024\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10907\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10460\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10612\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10660\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10859\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10459\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10460\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10457\",\"type\":\"CDSView\"}},\"id\":\"10461\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10659\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10660\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10657\",\"type\":\"CDSView\"}},\"id\":\"10661\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10906\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10907\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10904\",\"type\":\"CDSView\"}},\"id\":\"10908\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10613\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10860\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11026\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10612\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10613\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10610\",\"type\":\"CDSView\"}},\"id\":\"10614\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10859\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10860\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10857\",\"type\":\"CDSView\"}},\"id\":\"10861\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11027\",\"type\":\"Circle\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"0\"},\"id\":\"10462\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"18\"},\"id\":\"10662\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"3\"},\"id\":\"10909\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11026\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11027\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"11024\",\"type\":\"CDSView\"}},\"id\":\"11028\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10463\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"16\"},\"id\":\"10615\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10909\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10910\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10663\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"27\"},\"id\":\"10862\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10462\",\"type\":\"GroupFilter\"},{\"id\":\"10463\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10464\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10662\",\"type\":\"GroupFilter\"},{\"id\":\"10663\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10664\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10616\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10863\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"7\"},\"id\":\"11029\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11052\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11053\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"11050\",\"type\":\"CDSView\"}},\"id\":\"11054\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"10542\",\"type\":\"GroupFilter\"},{\"id\":\"10543\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10544\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10615\",\"type\":\"GroupFilter\"},{\"id\":\"10616\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10617\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10707\",\"type\":\"Circle\"},{\"attributes\":{\"filters\":[{\"id\":\"10862\",\"type\":\"GroupFilter\"},{\"id\":\"10863\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10864\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10912\",\"type\":\"MultiLine\"},{\"attributes\":{\"filters\":[{\"id\":\"11029\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"11030\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10466\",\"type\":\"Circle\"},{\"attributes\":{\"filters\":[{\"id\":\"10629\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10630\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10666\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10913\",\"type\":\"MultiLine\"},{\"attributes\":{\"filters\":[{\"id\":\"11042\",\"type\":\"GroupFilter\"},{\"id\":\"11043\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"11044\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10876\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10866\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10467\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10619\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10912\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10913\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10910\",\"type\":\"CDSView\"}},\"id\":\"10914\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10667\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"11032\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10867\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10466\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10467\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10464\",\"type\":\"CDSView\"}},\"id\":\"10468\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10666\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10667\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10664\",\"type\":\"CDSView\"}},\"id\":\"10668\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10620\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"11033\",\"type\":\"MultiLine\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"3\"},\"id\":\"10915\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10619\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10620\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10617\",\"type\":\"CDSView\"}},\"id\":\"10621\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10866\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10867\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10864\",\"type\":\"CDSView\"}},\"id\":\"10868\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11032\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11033\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"11030\",\"type\":\"CDSView\"}},\"id\":\"11034\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"1\"},\"id\":\"10469\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"19\"},\"id\":\"10669\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10916\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10469\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10470\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10669\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10670\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10915\",\"type\":\"GroupFilter\"},{\"id\":\"10916\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10917\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"17\"},\"id\":\"10635\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"28\"},\"id\":\"10869\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"7\"},\"id\":\"11035\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10706\",\"type\":\"Circle\"},{\"attributes\":{\"filters\":[{\"id\":\"10869\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10870\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10962\",\"type\":\"GroupFilter\"},{\"id\":\"10963\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10964\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10543\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10636\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"11036\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10919\",\"type\":\"CircleX\"},{\"attributes\":{\"filters\":[{\"id\":\"10635\",\"type\":\"GroupFilter\"},{\"id\":\"10636\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10637\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10472\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10672\",\"type\":\"MultiLine\"},{\"attributes\":{\"filters\":[{\"id\":\"11035\",\"type\":\"GroupFilter\"},{\"id\":\"11036\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"11037\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"28\"},\"id\":\"10875\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"13\"},\"id\":\"10555\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"8\"},\"id\":\"11055\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11039\",\"type\":\"CircleX\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10556\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10555\",\"type\":\"GroupFilter\"},{\"id\":\"10556\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10557\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11040\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11039\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11040\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"11037\",\"type\":\"CDSView\"}},\"id\":\"11041\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10626\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10559\",\"type\":\"CircleX\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"7\"},\"id\":\"11042\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10560\",\"type\":\"CircleX\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"11043\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10559\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10560\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10557\",\"type\":\"CDSView\"}},\"id\":\"10561\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"11056\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"13\"},\"id\":\"10562\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11055\",\"type\":\"GroupFilter\"},{\"id\":\"11056\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"11057\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10563\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"11124\",\"type\":\"Selection\"},{\"attributes\":{\"filters\":[{\"id\":\"10562\",\"type\":\"GroupFilter\"},{\"id\":\"10563\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10564\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11059\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10713\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11060\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10566\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11059\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11060\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"11057\",\"type\":\"CDSView\"}},\"id\":\"11061\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10567\",\"type\":\"Circle\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"8\"},\"id\":\"11062\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10566\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10567\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10564\",\"type\":\"CDSView\"}},\"id\":\"10568\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"11063\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11062\",\"type\":\"GroupFilter\"},{\"id\":\"11063\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"11064\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"14\"},\"id\":\"10569\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10569\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10570\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"11123\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"filters\":[{\"id\":\"10622\",\"type\":\"GroupFilter\"},{\"id\":\"10623\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10624\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11066\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10572\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11067\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11066\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11067\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"11064\",\"type\":\"CDSView\"}},\"id\":\"11068\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10573\",\"type\":\"MultiLine\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10572\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10573\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10570\",\"type\":\"CDSView\"}},\"id\":\"10574\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"9\"},\"id\":\"11069\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"14\"},\"id\":\"10575\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11069\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"11070\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10576\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"11122\",\"type\":\"Selection\"},{\"attributes\":{\"filters\":[{\"id\":\"10575\",\"type\":\"GroupFilter\"},{\"id\":\"10576\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10577\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"11072\",\"type\":\"MultiLine\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10623\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"11073\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10579\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11072\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11073\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"11070\",\"type\":\"CDSView\"}},\"id\":\"11074\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10580\",\"type\":\"CircleX\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"9\"},\"id\":\"11075\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10579\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10580\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10577\",\"type\":\"CDSView\"}},\"id\":\"10581\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"11076\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"14\"},\"id\":\"10582\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11075\",\"type\":\"GroupFilter\"},{\"id\":\"11076\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"11077\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10583\",\"type\":\"GroupFilter\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"11121\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"filters\":[{\"id\":\"10582\",\"type\":\"GroupFilter\"},{\"id\":\"10583\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10584\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11079\",\"type\":\"CircleX\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"16\"},\"id\":\"10622\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11080\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10586\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11079\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11080\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"11077\",\"type\":\"CDSView\"}},\"id\":\"11081\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10587\",\"type\":\"Circle\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"9\"},\"id\":\"11082\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10586\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10587\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10584\",\"type\":\"CDSView\"}},\"id\":\"10588\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"11083\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11082\",\"type\":\"GroupFilter\"},{\"id\":\"11083\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"11084\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"15\"},\"id\":\"10589\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10789\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10790\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"22\"},\"id\":\"10755\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"31\"},\"id\":\"10955\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10756\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10803\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10956\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10802\",\"type\":\"GroupFilter\"},{\"id\":\"10803\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10804\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10755\",\"type\":\"GroupFilter\"},{\"id\":\"10756\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10757\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10955\",\"type\":\"GroupFilter\"},{\"id\":\"10956\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10957\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"24\"},\"id\":\"10795\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10552\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10553\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10550\",\"type\":\"CDSView\"}},\"id\":\"10554\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"4\"},\"id\":\"10969\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10759\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10806\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"11053\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10972\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10760\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10807\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10973\",\"type\":\"MultiLine\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10759\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10760\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10757\",\"type\":\"CDSView\"}},\"id\":\"10761\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10806\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10807\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10804\",\"type\":\"CDSView\"}},\"id\":\"10808\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10972\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10973\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10970\",\"type\":\"CDSView\"}},\"id\":\"10974\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"22\"},\"id\":\"10762\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"25\"},\"id\":\"10809\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"4\"},\"id\":\"10975\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10763\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10809\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10810\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10976\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10762\",\"type\":\"GroupFilter\"},{\"id\":\"10763\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10764\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10882\",\"type\":\"GroupFilter\"},{\"id\":\"10883\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10884\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10975\",\"type\":\"GroupFilter\"},{\"id\":\"10976\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10977\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10792\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10793\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10790\",\"type\":\"CDSView\"}},\"id\":\"10794\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10812\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"11052\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10766\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10813\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10979\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10767\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10812\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10813\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10810\",\"type\":\"CDSView\"}},\"id\":\"10814\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10980\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10766\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10767\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10764\",\"type\":\"CDSView\"}},\"id\":\"10768\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10979\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10980\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10977\",\"type\":\"CDSView\"}},\"id\":\"10981\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"25\"},\"id\":\"10815\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"23\"},\"id\":\"10769\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10816\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"4\"},\"id\":\"10982\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10769\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10770\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10815\",\"type\":\"GroupFilter\"},{\"id\":\"10816\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10817\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10983\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10793\",\"type\":\"MultiLine\"},{\"attributes\":{\"filters\":[{\"id\":\"10982\",\"type\":\"GroupFilter\"},{\"id\":\"10983\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10984\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10883\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10819\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10772\",\"type\":\"MultiLine\"},{\"attributes\":{},\"id\":\"11125\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10773\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10820\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10986\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10772\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10773\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10770\",\"type\":\"CDSView\"}},\"id\":\"10774\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10819\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10820\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10817\",\"type\":\"CDSView\"}},\"id\":\"10821\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10987\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10986\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10987\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10984\",\"type\":\"CDSView\"}},\"id\":\"10988\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"23\"},\"id\":\"10775\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"25\"},\"id\":\"10822\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10776\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10823\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"5\"},\"id\":\"10989\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10775\",\"type\":\"GroupFilter\"},{\"id\":\"10776\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10777\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10822\",\"type\":\"GroupFilter\"},{\"id\":\"10823\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10824\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10989\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10990\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10792\",\"type\":\"MultiLine\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"28\"},\"id\":\"10882\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11049\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"11050\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10779\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10826\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10992\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10780\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10827\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10993\",\"type\":\"MultiLine\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10779\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10780\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10777\",\"type\":\"CDSView\"}},\"id\":\"10781\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10826\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10827\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10824\",\"type\":\"CDSView\"}},\"id\":\"10828\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10992\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10993\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10990\",\"type\":\"CDSView\"}},\"id\":\"10994\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"23\"},\"id\":\"10782\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"26\"},\"id\":\"10829\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"5\"},\"id\":\"10995\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10783\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10829\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10830\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10996\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10782\",\"type\":\"GroupFilter\"},{\"id\":\"10783\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10784\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10879\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10880\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10877\",\"type\":\"CDSView\"}},\"id\":\"10881\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"10995\",\"type\":\"GroupFilter\"},{\"id\":\"10996\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10997\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10887\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10832\",\"type\":\"MultiLine\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"8\"},\"id\":\"11049\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10786\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10833\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10999\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10787\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10832\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10833\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10830\",\"type\":\"CDSView\"}},\"id\":\"10834\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"11000\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10786\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10787\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10784\",\"type\":\"CDSView\"}},\"id\":\"10788\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10999\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11000\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10997\",\"type\":\"CDSView\"}},\"id\":\"11001\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"26\"},\"id\":\"10835\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"24\"},\"id\":\"10789\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10836\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"5\"},\"id\":\"11002\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10720\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10719\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10720\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10717\",\"type\":\"CDSView\"}},\"id\":\"10721\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"11\"},\"id\":\"10509\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10509\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10510\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"20\"},\"id\":\"10722\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"13\"},\"id\":\"10549\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10723\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10512\",\"type\":\"MultiLine\"},{\"attributes\":{\"filters\":[{\"id\":\"10722\",\"type\":\"GroupFilter\"},{\"id\":\"10723\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10724\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10513\",\"type\":\"MultiLine\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10800\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10512\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10513\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10510\",\"type\":\"CDSView\"}},\"id\":\"10514\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10726\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10727\",\"type\":\"Circle\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"11\"},\"id\":\"10515\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10726\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10727\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10724\",\"type\":\"CDSView\"}},\"id\":\"10728\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10516\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10515\",\"type\":\"GroupFilter\"},{\"id\":\"10516\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10517\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"21\"},\"id\":\"10729\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10729\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10730\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10519\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10799\",\"type\":\"CircleX\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10520\",\"type\":\"CircleX\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10732\",\"type\":\"MultiLine\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10519\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10520\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10517\",\"type\":\"CDSView\"}},\"id\":\"10521\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10733\",\"type\":\"MultiLine\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"11\"},\"id\":\"10522\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10732\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10733\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10730\",\"type\":\"CDSView\"}},\"id\":\"10734\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10523\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"21\"},\"id\":\"10735\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10522\",\"type\":\"GroupFilter\"},{\"id\":\"10523\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10524\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10736\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10546\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10547\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10544\",\"type\":\"CDSView\"}},\"id\":\"10548\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"10735\",\"type\":\"GroupFilter\"},{\"id\":\"10736\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10737\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10526\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10886\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10527\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10739\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10526\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10527\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10524\",\"type\":\"CDSView\"}},\"id\":\"10528\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10740\",\"type\":\"CircleX\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10739\",\"type\":\"CircleX\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10740\",\"type\":\"CircleX\"},\"selection_glyph\":null,\"view\":{\"id\":\"10737\",\"type\":\"CDSView\"}},\"id\":\"10741\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"12\"},\"id\":\"10529\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10529\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10530\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"21\"},\"id\":\"10742\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=False\"},\"id\":\"10743\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10547\",\"type\":\"Circle\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10532\",\"type\":\"MultiLine\"},{\"attributes\":{\"filters\":[{\"id\":\"10742\",\"type\":\"GroupFilter\"},{\"id\":\"10743\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10744\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10533\",\"type\":\"MultiLine\"},{\"attributes\":{\"filters\":[{\"id\":\"10795\",\"type\":\"GroupFilter\"},{\"id\":\"10796\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10797\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10746\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10532\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10533\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10530\",\"type\":\"CDSView\"}},\"id\":\"10534\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10747\",\"type\":\"Circle\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"12\"},\"id\":\"10535\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10746\",\"type\":\"Circle\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10747\",\"type\":\"Circle\"},\"selection_glyph\":null,\"view\":{\"id\":\"10744\",\"type\":\"CDSView\"}},\"id\":\"10748\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10536\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"10535\",\"type\":\"GroupFilter\"},{\"id\":\"10536\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10416\",\"type\":\"ColumnDataSource\"}},\"id\":\"10537\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"HB_iteration\",\"group\":\"22\"},\"id\":\"10749\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_color\":{\"field\":\"colors\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10546\",\"type\":\"Circle\"},{\"attributes\":{\"filters\":[{\"id\":\"10549\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10550\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"10749\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"}},\"id\":\"10750\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"units\":\"screen\",\"value\":20},\"x\":{\"field\":\"times\"},\"y\":{\"field\":\"losses\"}},\"id\":\"10627\",\"type\":\"Circle\"},{\"attributes\":{\"column_name\":\"config_info\",\"group\":\"model_based_pick=True\"},\"id\":\"10796\",\"type\":\"GroupFilter\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10552\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.5},\"line_color\":{\"field\":\"colors\",\"transform\":{\"id\":\"10417\",\"type\":\"LinearColorMapper\"}},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10752\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10553\",\"type\":\"MultiLine\"},{\"attributes\":{\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"line_width\":{\"value\":5},\"xs\":{\"field\":\"times\"},\"ys\":{\"field\":\"losses\"}},\"id\":\"10753\",\"type\":\"MultiLine\"},{\"attributes\":{\"data_source\":{\"id\":\"10415\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"10752\",\"type\":\"MultiLine\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"10753\",\"type\":\"MultiLine\"},\"selection_glyph\":null,\"view\":{\"id\":\"10750\",\"type\":\"CDSView\"}},\"id\":\"10754\",\"type\":\"GlyphRenderer\"}],\"root_ids\":[\"11103\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"498d9e37-3070-47b1-a557-9cd10ff09054\",\"roots\":{\"11103\":\"8111f6a3-50e2-4e94-aec8-854c77dd6b39\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "11103" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.bohb_learning_curves();" ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
# aggregated parallel BOHB runs1
# parameters2
Deterministic target algorithmTrue
Optimized run objectivequality
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
budget 0.0budget 0.1budget 0.3budget 1
Total time spent evaluating configurations11.35 sec5.60 sec2.85 sec1.60 sec
Average time per configuration (mean / std)0.02 sec (± 0.01)0.02 sec (± 0.01)0.02 sec (± 0.01)0.02 sec (± 0.01)
# evaluated configurations45924312672
# changed parameters (default to incumbent)2222
Configuration originsAcquisition Function : 405, Random : 54Acquisition Function : 209, Random : 34Acquisition Function : 108, Random : 18Acquisition Function : 62, Random : 10
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.overview_table();" ] @@ -702,65 +157,11 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
budget 0.0budget 0.0budget 0.0budget 0.1budget 0.3budget 1
x09.474969.474969.474962.597289.474967.73635
x1-3.45319-3.45319-3.45319-3.44764-3.45319-3.39846
Cost0.0540.0540.0540.0310.0250.015
" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.bohb_incumbents_per_budget();" ] @@ -787,8 +188,7 @@ }, "outputs": [], "source": [ - "%%capture\n", - "cave.cave_fanova(run='budget_0.0');" + "cave.cave_fanova(run='budget_0.00');" ] }, { @@ -799,7 +199,7 @@ }, "outputs": [], "source": [ - "cave.local_parameter_importance(run='budget_0.0');" + "cave.local_parameter_importance(run='budget_0.00');" ] }, { @@ -811,377 +211,11 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"11192\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"11192\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '11192' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"11192\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"11192\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"11192\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '11192' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"11192\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"a2c99529-e48f-4096-b018-fc2fdf459cf7\":{\"roots\":{\"references\":[{\"attributes\":{\"columns\":[{\"id\":\"11194\",\"type\":\"TableColumn\"},{\"id\":\"11195\",\"type\":\"TableColumn\"},{\"id\":\"11196\",\"type\":\"TableColumn\"}],\"height\":80,\"index_position\":null,\"source\":{\"id\":\"11193\",\"type\":\"ColumnDataSource\"},\"view\":{\"id\":\"11198\",\"type\":\"CDSView\"}},\"id\":\"11197\",\"type\":\"DataTable\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"11223\",\"type\":\"StringEditor\"},\"field\":\"Parameters\",\"formatter\":{\"id\":\"11224\",\"type\":\"StringFormatter\"},\"sortable\":false,\"title\":\"Parameters\",\"width\":150},\"id\":\"11194\",\"type\":\"TableColumn\"},{\"attributes\":{},\"id\":\"11228\",\"type\":\"StringFormatter\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"11227\",\"type\":\"StringEditor\"},\"field\":\"fANOVA\",\"formatter\":{\"id\":\"11228\",\"type\":\"StringFormatter\"},\"title\":\"fANOVA\",\"width\":100},\"id\":\"11196\",\"type\":\"TableColumn\"},{\"attributes\":{\"callback\":null,\"data\":{\"LPI\":[\"63.34 +/- 27.69\",\"36.66 +/- 27.69\"],\"Parameters\":[\"x1\",\"x0\"],\"fANOVA\":[\"39.89 +/- 15.86\",\"30.48 +/- 16.14\"]},\"selected\":{\"id\":\"11221\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"11222\",\"type\":\"UnionRenderers\"}},\"id\":\"11193\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"11225\",\"type\":\"StringEditor\"},{\"attributes\":{},\"id\":\"11221\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"11227\",\"type\":\"StringEditor\"},{\"attributes\":{},\"id\":\"11224\",\"type\":\"StringFormatter\"},{\"attributes\":{\"default_sort\":\"descending\",\"editor\":{\"id\":\"11225\",\"type\":\"StringEditor\"},\"field\":\"LPI\",\"formatter\":{\"id\":\"11226\",\"type\":\"StringFormatter\"},\"title\":\"LPI\",\"width\":100},\"id\":\"11195\",\"type\":\"TableColumn\"},{\"attributes\":{},\"id\":\"11223\",\"type\":\"StringEditor\"},{\"attributes\":{},\"id\":\"11226\",\"type\":\"StringFormatter\"},{\"attributes\":{\"source\":{\"id\":\"11193\",\"type\":\"ColumnDataSource\"}},\"id\":\"11198\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"11222\",\"type\":\"UnionRenderers\"}],\"root_ids\":[\"11197\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"a2c99529-e48f-4096-b018-fc2fdf459cf7\",\"roots\":{\"11197\":\"99434858-a0c1-4835-85bc-f8538bc2d71a\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "11197" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ - "cave.pimp_comparison_table(run='budget_0.0');" + "cave.pimp_comparison_table(run='budget_0.00');" ] }, { @@ -1193,754 +227,22 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"14877\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"14877\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '14877' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"14877\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"14877\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"14877\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '14877' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"14877\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"4feb7cc8-6485-44b1-b3ae-5602ead37507\":{\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"14606\",\"type\":\"Column\"},{\"id\":\"14614\",\"type\":\"Column\"}]},\"id\":\"14615\",\"type\":\"Row\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13243\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13227\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12614\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13251\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13244\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13246\",\"type\":\"GroupFilter\"},{\"id\":\"13247\",\"type\":\"GroupFilter\"},{\"id\":\"13248\",\"type\":\"GroupFilter\"},{\"id\":\"13249\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13250\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12636\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"12613\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13241\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12615\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13232\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12613\",\"type\":\"GroupFilter\"},{\"id\":\"12614\",\"type\":\"GroupFilter\"},{\"id\":\"12615\",\"type\":\"GroupFilter\"},{\"id\":\"12616\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12617\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13247\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13226\",\"type\":\"GroupFilter\"},{\"id\":\"13227\",\"type\":\"GroupFilter\"},{\"id\":\"13228\",\"type\":\"GroupFilter\"},{\"id\":\"13229\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13230\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12635\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13241\",\"type\":\"GroupFilter\"},{\"id\":\"13242\",\"type\":\"GroupFilter\"},{\"id\":\"13243\",\"type\":\"GroupFilter\"},{\"id\":\"13244\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13245\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"12618\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13236\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,true,false,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,true,false,true,true,false,false,false,true,false,true,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,true,true,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,false,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13254\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12616\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12628\",\"type\":\"GroupFilter\"},{\"id\":\"12629\",\"type\":\"GroupFilter\"},{\"id\":\"12630\",\"type\":\"GroupFilter\"},{\"id\":\"12631\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12632\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,true,false,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,true,false,true,true,false,false,false,true,false,true,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,true,true,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,false,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13234\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,false,true,false,true,true,true,true,false,true,false,true,true,false,true,false,true,true,false,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13249\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13228\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12621\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13242\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12634\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12620\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13237\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12619\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12618\",\"type\":\"GroupFilter\"},{\"id\":\"12619\",\"type\":\"GroupFilter\"},{\"id\":\"12620\",\"type\":\"GroupFilter\"},{\"id\":\"12621\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12622\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13233\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13236\",\"type\":\"GroupFilter\"},{\"id\":\"13237\",\"type\":\"GroupFilter\"},{\"id\":\"13238\",\"type\":\"GroupFilter\"},{\"id\":\"13239\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13240\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12633\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12624\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,true,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13239\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12631\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13248\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13231\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"12623\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13231\",\"type\":\"GroupFilter\"},{\"id\":\"13232\",\"type\":\"GroupFilter\"},{\"id\":\"13233\",\"type\":\"GroupFilter\"},{\"id\":\"13234\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13235\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12630\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13253\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,true,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12626\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13246\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12625\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12629\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13238\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12623\",\"type\":\"GroupFilter\"},{\"id\":\"12624\",\"type\":\"GroupFilter\"},{\"id\":\"12625\",\"type\":\"GroupFilter\"},{\"id\":\"12626\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12627\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,false,true,false,true,true,true,true,false,true,false,true,true,false,true,false,true,true,false,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13229\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13252\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13251\",\"type\":\"GroupFilter\"},{\"id\":\"13252\",\"type\":\"GroupFilter\"},{\"id\":\"13253\",\"type\":\"GroupFilter\"},{\"id\":\"13254\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13255\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"12628\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12818\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12322\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12971\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13451\",\"type\":\"GroupFilter\"},{\"id\":\"13452\",\"type\":\"GroupFilter\"},{\"id\":\"13453\",\"type\":\"GroupFilter\"},{\"id\":\"13454\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13455\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12321\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12322\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12119\",\"type\":\"CDSView\"}},\"id\":\"12323\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12998\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13226\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12846\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12847\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12617\",\"type\":\"CDSView\"}},\"id\":\"12848\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"13026\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,true,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12606\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12847\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12974\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12325\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"13456\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12326\",\"type\":\"Scatter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"red\",\"red\",\"red\",\"red\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\"],\"origin\":[\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\"],\"p_x0\":[6.574464556273277,5.7536777878861365,7.736347845999433,9.763309496699001,2.5972799060231466,9.474961566033091,9.871362871242816,9.833278494248546,9.886452888244584,9.659978816242457,9.720765316628007,9.917050037475647,9.816910255812132,1.651316474408187,9.776817393895318,9.845836462655662,9.898873650588051,9.904330081569782,9.73152110627979,9.949001370643916,9.943908702941538,9.73675639035756,9.515535846321107,9.825245388766497,8.016492727414843,9.741387065780977,9.337914228642113,9.797311138147144,1.1344746876642553,9.908496858829082,9.059711281175883,9.578555231336935,9.603130497268694,9.860124295824477,9.255873975995492,9.85242276096097,9.97761305912243,7.418534824316293,9.573555654550788,9.852654208444719,9.93514470050441,9.519192797858263,9.49149351583819,9.766625205475894,7.53961957904589,9.61868536217969,9.778345392544232,9.735591243931417,9.493507556639841,9.520346098341822,7.068579202572202,9.524262766575717,-0.5659946881901483,6.975901816177355,9.550778961798404,9.938346756147599,7.3769789068517575,9.895065655794141,7.358764932916685,9.618756224977101,9.871046567030117,9.911983688041445,6.88535638580332,9.49755608636551,9.872823275937296,-0.21873770106086,7.229559719542614,9.51619779772168,9.879837456246456,9.908775109969731,0.8800498921991906,9.796889931468758,7.225974752632634,9.66966925868439,9.923189706388072,9.547898595576878,2.9105054359762548,9.816722156831865,9.892626771603346,9.73267438287007,7.065431941731276,9.291177315149419,-3.8507618097339025,-1.9733245831802666,3.995984525628433,7.545691827174991,7.028602922244069,7.329604579522929,9.922470010649384,7.597358290567826,7.218491994784063,9.818169403001558,7.119009105811372,9.770928578887766,9.796782234293236,7.07742952057427,9.70959382958295,9.811635910692754,7.022919247997908,9.77532705006847,7.196339053262818,7.407237213965118,7.030741108916743,7.551105481010705,7.009907938724474,9.663089956070397,6.8548032988225245,9.94829512628565,7.26842940641442,7.121997701615438,5.615675661958155,7.484076014268929,6.992495758574474,9.104614896355304,1.063892947013688,-0.541331336304383,5.988209772046654,-3.2162313976786594,2.711617095583989,-9.531116737197745,7.184064599238724,9.45486037274653,-4.990638170649746,9.641650353996543,7.082939636515409,9.986121640544297,1.8969836014395032,7.179905699124671,9.366189494786983,9.841844000897776,7.732471631719321,9.845548800259639,3.405312809441325,7.408577247739348,4.511865410143471,-4.249152820626438,9.533582999697472,9.723713392965486,9.145125495881544,9.555886478083973,7.113019994894067,9.758091648356665,9.72735420124604,7.074971579752685,9.460498892657117,9.573827133213676,9.391535072313758,9.995214390136507,7.155105818884998,9.343456700295452,9.999409905745992,7.246049156926638,7.389599130579768,9.806081528284516,9.87925253753674,7.125292729737506,5.151535475672658,7.522610236284937,-4.8642747685896275,7.411345672949146,-8.298331221205949,7.881492781306324,7.025973352438555,-3.910056656236698,7.421859047935804,7.0832824712622475,9.954331557663323,7.438403113424876,7.056686071821449,9.802489868617286,7.610934774934023,7.147388619463438,9.88003317092,-2.464122015970327,6.708567131908499,9.706713713915413,-9.71267945684989,9.777447515720706,-7.251797328879137,9.699305972421602,7.036333813460573,-7.685194042283332,9.606368272629563,7.1931288288505755,9.539854098275406,6.300558951767563,7.199456193905437,9.638268180675581,-9.8782403284873,-6.508045913108347,-6.7785710768717955,7.015159134321383,2.3574246650039843,7.2495645056534315,6.947669843546478,7.339917835979527,7.237360934484094,7.399697068850287,5.456584220316801,7.264671693067658,-0.1635985689683217,7.241607431261407,7.060364010645152,9.911577840583249,6.899295117388693,9.284461322708005,6.804330849592816,9.275221344899371,9.41369673732407,7.280421493817396,-6.406768406433459,-4.645570819183826,9.134897296150854,7.90398015146646,9.094061744014159,9.163092117221801,7.210421927526596,9.469236547635354,7.20361433752754,7.023400438957822,9.101299965439502,7.142031265797563,7.2175248969366095,9.154918484240017,7.023577362542746,9.076976746880195,9.468557212942514,9.290761292575827,9.25063685745737,7.20913401317798,9.345842403020775,7.227297644313428,7.346688651964179,7.199542013072843,9.259002774264435,7.154980552270807,9.025335381609704,7.17945199807485,7.2446197840015145,7.159865144218724,7.421259540911819,7.686906581055521,7.550583388734108,7.16321829586693,7.459578400176092,7.2267123682727465,7.559184427679931,7.090934663234865,7.626640727000954,7.14593592130036,7.51285438396032,7.282013812413098,7.579880542620273,7.20164258264791,7.507197281187871,-6.450201956134225,7.508346867166683,7.496072503390469,7.786287484887634,7.580039121720958,-0.907198165970355,8.948759215629682,-6.194686696174127,7.19816704189439,-9.731475247877741,7.349941203599798,8.073795631623526,7.078325699107591,7.017307029211871,7.154135372144722,7.0112902384133164,7.05328851685416,6.994601630958904,7.650390224409744,7.107955248336157,-5.703729975847347,-5.686179864880212,9.151152734053777,7.392253422125975,7.046709030318137,-2.455159946422798,7.0701608323035074,-4.225592349633896,6.807231666831534,9.59344481936084,6.953698409367853,7.597236834814279,7.0717167951324775,3.130079876401613,6.958476005086428,-6.212333991933057,-4.263525822204759,4.702576896428422,7.182150719556205,7.082206361231641,7.129847188062492,7.2590331050217785,7.227914111123955,9.220785821648487,7.139225672631639,9.781260230951414,9.287002027838412,0.6812295761255776,-1.126259210756519,7.480765901617637,9.068066140095638,7.167895187438464,7.1854624023789455,7.075303694389159,6.9438523528560445,7.034924733937331,7.144422166638726,7.306649925771531,7.100869503608294,6.985835333549375,6.963852191031286,7.082015405447812,7.068351900752631,7.234232694557658,6.983319474691562,7.221290339699269,6.924579513799586,7.190017674406029,7.116334618250516,7.267987391868594,7.207230964033677,7.03263510280037,7.142820832279625,7.309051375978779,7.166330461852059,7.2828135203974504,7.192904206517895,7.153402979985067,7.120295465075873,7.214237703807967,7.114094176152726,7.073435336357534,7.227518353923685,7.224534176444376,7.088635079619408,7.234926824015027,7.109400763155762,4.22242610804512,7.212575546252793,-7.633739248861746,7.222430065966112,7.193054879316133,7.068413851638386,7.095894193247226,7.169148707767988,7.235581867485397,7.049455809972606,7.1707076958941975,-7.523062419558411,7.1424619627427255,-1.357996615761989,-3.228165909252308,-5.630202879151767,7.189259236098135,7.0724940154461855,6.979105807680568,7.130737689128466,7.155745507541102,7.2298557793575995,7.167632138567839,6.856140667433856,7.115185411828687,6.999609350310422,6.958146117280016,7.019060772190574,6.963813062134339,7.013361670310822,7.139275399460125,6.948336558970524,7.134555109360917,7.154879948103044,7.17657610081061,7.080278257427583,7.228023026364063,7.160206510240947,7.205278814862684,7.2083344625193035,7.220114165999934,7.243062150198117,7.108320407967916,7.23441562523724,7.327701972730907,7.189563131082803,7.167755779276959,7.179594695065429,7.12583893612598,7.192986491360237,7.1475692451895725,7.233169689196107,7.26818869338922,7.214630928098845],\"p_x1\":[-9.70170189950312,-4.974922099319709,-3.3984602978786445,-9.285530158448536,-3.4476444643076327,-3.4531946167751917,-3.3359693355103683,-9.341373587839742,-3.3372923349893675,-9.534380309244433,-9.53100816260161,-3.335474501639811,-3.3520424071688026,-4.939258901607799,-3.347558595597717,-3.3300569070845114,-9.623135257915893,-3.3404159762378374,-9.556655035668278,-3.344681727223513,-3.350762472163832,-9.611261615454653,-9.57175242499804,-3.35164650370843,-3.3772712345835965,-9.58433138820181,-3.6207112780521387,-9.551277835723795,-3.476648912209386,-3.3266135637322645,-3.4728912731389174,-9.860186355024757,-3.8235602736044996,-3.3554889293862864,-3.4968138114099574,-3.2096108829903773,-3.352188192022547,-3.3970916657867454,-9.714551364062723,-3.3672940107824845,-3.334622447353416,-3.4551123692974297,-9.82720330604877,-3.4189722958645605,-3.4193221390960566,-9.702329729411739,-3.5527568711940045,-3.480354601141414,-9.85365221141381,-3.1787850544268546,-3.389823568039944,-9.746104873360439,7.145093197178269,-3.399712633894567,-9.672933838169095,-3.3449867263867787,-3.415667713994748,-3.3449789403003702,-3.428239973226691,-9.529420205107785,-3.3195072213688928,-3.335107266009726,-3.4157162683709092,-9.583590339532911,-3.3306469990429903,2.356101067123202,-3.4036871237188473,-9.858488317876812,-3.355622584799934,-3.338951938781838,9.111900581539565,-3.327355618768589,-3.4339968586699454,-9.605842937153568,-3.341782993093326,-3.473601203461129,4.821092497420272,-9.763863992038713,-3.334110826598363,-3.437652297042052,-3.4036091412657488,-3.1714365897798134,-0.24842105118745117,-0.653888323687589,0.7747222496976569,-3.415462512698203,-3.420566184797339,-3.259022339591228,-3.374462664138484,-3.4166457685171867,-3.416293700681142,-3.332425329495373,-3.414153496720294,-3.3591516963868404,-3.4619457049578735,-3.420487870674548,-3.339387719810687,-3.4558218241392087,-3.4087096495627156,-3.354904601034119,-3.4162257337583926,-3.410481658797975,-3.4208320756059205,-3.3946123802129877,-3.429792995006954,-2.474680620019507,-9.133830825880494,-2.7814045241683347,-3.38878814580883,-3.4071768547385144,-7.690013606742641,-3.3863726263060396,-3.410306804375808,-2.710718250891315,3.5554895890773235,-7.972722558256753,2.210911541185034,-5.452142618999078,-5.727803274605572,2.8580476239586226,-3.422696719927546,-3.153075506587111,7.514511965742777,2.3346271504369085,-3.406839532386604,-2.8693214570197956,5.241721155903278,-3.433545679332437,-3.3550225554449664,-3.3557254662620224,-3.4012474962145465,-2.3523557598885114,-3.547217980912663,-3.4249746447153298,-4.749109763805621,-0.6988767993399119,-2.4410648228442566,-3.465890413924239,-2.5533164194741422,-3.4544680273609973,-3.4088621317985526,-3.016932576618638,-3.4563082534267275,-3.423090332378705,-2.5650744905706047,-3.4630643289169925,-3.191627656069543,-3.460602706003826,-3.4111748920166853,-2.2063239882740397,-3.460912426309771,-3.4065889890519205,-3.40903089435934,-3.346399598226336,-3.3278844088184485,-3.40486150958744,4.998585811304739,-3.397474357701034,-5.716620684870028,-3.4059673600140776,-6.837757645064166,-3.39304426106664,-3.4333237095200877,-4.830225564299733,-3.4088490138426453,-3.410457473353401,-3.344271523570889,-3.411454963296519,-3.414002282921105,-3.3227340160593544,-3.4176740735936697,-3.4081416563717184,-5.932057218966262,-2.5152508368613695,-8.446664058533555,-3.46766177476328,7.281726511087239,-3.45863505742079,3.6645083257915374,-3.4674241353050386,-3.3956230705503776,9.05128784053636,-3.441592908174858,-3.4198859771745838,-3.454905453330662,-2.4424188680868486,6.03383934539627,-3.4564367986781344,4.585577731589908,7.831882861679553,2.7595842545229097,-3.4140313794156283,4.1371102683186916,-3.3779463233476203,-3.425635194641657,-3.3895389297045053,-3.3926976131908857,-3.4377150114853903,2.2820988560774573,-3.4283466197922428,-5.750364221254401,-3.3918962671253974,-3.389792643416958,-3.3427838522060958,-3.395734502800961,-3.455357852608472,-7.8433012761215455,-3.467259240764765,-3.450269165499198,-3.0765798065776506,-0.279420009285559,-2.1817089475319413,-3.4528087539563357,-1.1684001978270402,-3.456410417726331,-3.462228541425657,-3.412076725756825,-3.4829961226478137,-3.420155484313236,-3.4155062649153214,-3.4688912914680694,-3.422777015200654,-3.420516888440833,-3.449318947404427,-3.4195752043751177,-3.4552356146225343,-3.4489218701993343,-3.4665873095976307,-3.468428705380189,-3.4177009606036357,-3.4783554401480004,-3.4063660606955235,-3.413137976289244,-3.407831811428448,-3.4829546512848886,-3.4167114457122194,-3.4612005482436894,-3.4010409920396487,-3.4081439796619053,-3.4000780404584674,-3.3908971545595437,-3.4119528665366623,-3.394666560316484,-3.41928898562728,-3.416403673432164,-3.408769293645312,-3.4296306476209253,-3.421453347177387,-3.3941892304443666,-3.407997768120497,-3.3968689945343815,-3.41325574602949,-3.39816351956872,-3.4324706342673315,-3.40854986858408,-4.380806782356186,-3.4125587492270935,-3.4116065415903414,-3.402330699459366,-3.3960128294827694,5.320106703954382,-7.002521739067989,-0.74971107555141,-3.41733644274405,7.969410713280173,-3.3973776261010897,8.289025026953006,-3.418135403532987,-3.426420540353,-3.4113041897577396,-3.4160641722737894,-3.4113101875368415,-3.4198183475976336,-3.4059605701622733,-3.3974286460864196,8.748990541554583,-1.961982430027449,-3.464671464756255,-3.3994934054797543,-3.4226714175360096,0.8149792357857457,-3.4151948963209886,-2.9853493718907504,-3.413889962257538,-3.4718992182366915,-3.4278471303219753,-3.3979962313787437,-3.4076240084169607,4.702935708006748,-3.417429951155352,-9.626977649071126,6.498250287559216,4.024518078733623,-3.4400656862464025,-3.412405261912128,-3.4074692928908865,-3.432647118219533,-3.4292433465530516,-3.463652637166299,-3.4065808913522586,-7.993438727998791,-3.4581881797452727,7.176228223228335,-4.503104702708971,-3.399552117560428,-7.623713655586519,-3.4217393418876565,-3.4229599582749053,-3.4198965042668537,-3.4171171253843617,-3.4094665934283928,-3.41728634384703,-3.4115903271324486,-3.4226400468515408,-3.417717582383796,-3.4171466541428615,-3.429335200570863,-3.4243235229759863,-3.407149788658299,-3.4083043425451143,-3.407619720209068,-3.4145240657665186,-3.4010940904778417,-3.4183075536979404,-3.403016832156423,-3.4003310920918572,-3.39945052879073,-3.3863664597763146,-3.40658636937761,-3.415577414441236,-3.4181263472005865,-3.433189113125761,-3.4104706973345076,-3.4069900635668082,-3.400826751687495,-3.4020597410399835,-3.4000847751923207,-3.4170018159135207,-3.4083703184932705,-3.4106316454687953,-3.399931135110511,-3.4334874635654504,9.33549818122194,-3.409247800575436,9.137565496059242,-3.420415136911564,-3.409198085874438,-3.397601595634666,-3.4077983884818854,-3.4062513397649683,-3.416717809034539,-3.417251172294007,-3.403661282444695,7.9215414846946,1.04467574378641,-1.1295700088168577,5.2201977518948866,9.348314040201554,-3.404560529204562,-3.422019126343576,-3.4294674717024076,-3.4207735607528553,-3.4202258605387046,-3.415791816566368,-3.4078370624732344,-3.4160109520181727,-3.410834092022208,-3.4201663345284494,-3.4227876760447007,-3.4095376466326153,-3.4104856388329976,-3.415209862344505,-3.4111378044151373,-3.4173675305723457,-3.4038644403925424,-3.409833661810814,-3.4317417055913992,-3.425390165304071,-3.412828375848802,-3.4349061496886417,-3.425121443566251,-3.427336889562773,-3.4083551375209096,-3.409934247093119,-3.409406572634329,-3.4197182808587385,-3.4259719030842186,-3.4315921480118146,-3.429543225971347,-3.416857175283101,-3.4256289808979137,-3.4137240360562604,-3.4148136787735774,-3.428517585187425,-3.4165639626539166,-3.418326405616777],\"runs\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Incumbent\",\"Final Incumbent\",\"Incumbent\",\"Incumbent\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"5kusIYIL2T/fjbNJcBm8P49OkQLlu6M/6coyB5Z92T+pb9EkBNquv24IZtM9xbQ/0zYouNectD/waKmzZLLZP3zZNd3qp7Q/YWgvK2I32j9l+nLO8jvaP6Z0v4DQq7Q/4DKB4TG/tD9Au79qaKGmP1OOZA6fnrQ/jrPEU4OBtD+O1FyOhLnaP25glnjNuLQ/kRpbgE1S2j92aj3MW9S0P7YmK+uX6bQ/dB/Farl/2j8hPemT7EbaP4sXJav3wLQ/gSlxeNs7pj+TlXmW1WraP1AYhI+fmrc/VexKWDZb2j/PohJ1yRCyv02uZUk7i7Q/GSsC9Gm2sj/DqxPKGjLbP3lvHPdKD7w/AuSPTdzXtD9OZDu4ulO0P8bH9ZI+BLM/+M3lDaz3tD9435nR1xegP6ay1siov9o/vmszvub7tD/qXzWtQK60PzdHxxmHFbU/tmdzpnsU2z/obzobvnC1P8WBjGzyRqI/mITYV2G62j+m1GSLks+3P1xaDvr2f7Y/+jgHsHAp2z8hn6zEoaywP0YHpzlZbJg/M4MYeurU2j+FpnsT5uHov0Cg07ltipc/d/I8IRKc2j8wYnX0g9K0PwZN3N68UaA/ht/PwaLEtD8/s4R2NJ+gP4Tpgvp7L9o/AMAvuwJjtD944roOBKm0P1Tj1z9UMZc/6Md4TqNO2j9EuaS954u0P6DJEpDyBt+/q9UbvGGFnD938N9HIS7bPz1WKQAw37Q/lXTi9eO0tD8DV54LS6brv2cfrisqZ7Q/ANrektXXnj8QlzcLmHHaP13GGym8w7Q/bQDwSLaftT/uyd2Jbn7iv0ARm8tXB9s/O9lCSJOftD/qVkprVrO1PzdARLeGbJk/r+MA+8zRrT+RJBcfCuvTvw+SeqCJ2dG/eJ9FI7o01L/Z03NFkTOiP2aHvKNxIJo/odI0WJe0kj8Ab3UyhDW1Pzij1DnR0aI/evLX9UlFnT8LJVRmN4G0P6+shVxcQZs/BOLkxN28tD/T/d8mAEq2P9wYo5yLAZs/oPXQHNtKtD/BP7r+bjW2P0tGnfqtEZk/BIxQXUKztD9ltvkUndqcPxkfFxq8d6A/HQ1Bxygwmj8qDDLozYehP6r/GRbXiZo/PG/6JLpxoD9SJeOuL4PWP1HiS3Zko6s/tWD3xYkTnD/K7lS3DsGaP+Tp2k7sZr6/1GOpyolroD/OQ2iD36yYP7zrHghmZ5Y/8nHVqI9t4b/qw6J0fBnNP+HsMRDY2dS/pJIpZJHQpz+FXjl9CHLAPzQ8VDIQVeK/IwSaLNUtnT/R34EeoYWvPwcIWmlXdeq/65TlGzaM0b9mv5dNVwWaPwdhw20X7a0/ChrYdW4Q5L95+B3fOQGePyUj5+p4hbI/I8ioQe7StD9kVr+ijsijPyqFim8eQp4/R6HNFOBMpr8LgxdWYwehPx76ZuCgNrM/+NXeG3nt0b/fAYOLqgCaP1NLFmWTM7Y/zRWHUVH3jD9P7v/n/Ui1P1tGvkRltpo/Q416+HFLsD9nm/zhowi2P9MTTgmRKZs/DVYfepTenT9iH2oquo21PwPWt7Nd7q8/dpdjniPYtj+Sep02Aa+bP9Xcx21BuGY/CGGZtD3dtj+4OjVOGQedPzIXOJeONaA/LzNZEMqotD+8floy/YS0P8r4+UNeoZo/msyiDvlG4L8Y4epz/UyhP7jVvqtROao/38SpVGhYoD8mR1IbLrq/P7/WG39nLaU/qByYhQUImz8t7yl1n5hWv2qox18DkKA/eFZnyTVRmj9v92Fsa9S0PzGt50A12qA/LcvjEQ4Vmj9FO7p9pVm0P61bKuMYA6M/ToKCPDBLmz+EJXji4uXNP1eOx+TQ2MK/6FwrSbBB1D/xcWgMxC62PxiKX0jGb+y/vIplGacwtj9qJW2s7YDjv9nxeaOhJ7Y/Dj51uBtDmD+oIP6uZyPuv71ybwfTSbU/1xKillkYnT8ZWnIiezO1P1GPMsCzsqy/x4RGwyj63b/n2YJV2La1P3e4LsmPYOa//J+eKWXz6r/4JqFFEkbhv3KIkTegYpk/UCWz2h+44b916tkwkuGaP/aa0itrI5k/Qowp3gmtnT83XpWkyNabPzSJ40OtdKE/Zaj1fhOE1r9QeHGC+zifPypP4Q26N7k/ayd6BdPXmz+kqIcizkCYP0aoAl/xwrQ/K3WtQG/XlT82TiFXmpyzP4deJeu+29E/AW0NV8rMsz871YeHSU+0P4EzeWQKInc/4SZCVOqT1L87/D86/JfGv+0TWMMttbI/SNWepNkEu799zOd6qY6yP9OpSE/UDbM/ZXH9LmvHnD9Jb/eT3Fa1P2SYqUGZUp0/QgIA/SCjmT+wb6DSpNiyP/xhzrF9YJw/8PCzMX6ZnT8ZHdTZF8GyP8wrrxr995k/iwNkOglysj8qY9OB+KS0PyjTgzyB3rM/sAwMn3uwsz9NCcSiVTedP2tukzGHdLQ/hEClYuytnD/0/w0TybqfP3TBOO49Ppw/rX+gh+8KtD9SF6JlMR+cP/sD0mKoR7I/C7rp5H1bmz9VQCvAXh6dP0fbWbAR65o/0/iyea7Dnz/HN7JA+6SjP/5fuHjShqE/CYQAy+V/nD/omTjSdUehP152Fc482Jw/KWORTfLfoj9zryZ0DlubP8uO+KscXKI/G+RiNR1Bmz+bhkPrGyuhP4+ngyEaUZ4/RvRi03j5oT9K0L3+hU2eP/bCDrAihaE/NzxiAlDzo79oUw0TTK2hP4dMjm9BgaE/ZMA/JrtqpD8KydGZv+ahP6U6k5OYqeW/rOm35B8/0j/tnr4vvk3Sv/YUHqu6+pw/5KQ1p33Z7b9+p+vke5WeP3qd1RDqd+K/dd3vHmLWmj/MKXdi/maaP6CcvWPQrJs/7J0FyYh+mT+XoDv7ss6ZP5/XhSV+gZk/4OvEm5IIoz+d/L9gTLGZP5xr4py5xOy/f2SLKb9Lyb9vuRCkhAizP9VnQdYiw58/qNAF9r+fmj/ngRrJu8nYvx2ZJf0xb5o/SdFVOfrgvr+47UMKXHyVP87/RvDV07U/WR0lyJ1qmT9JOQ+rTyuiPzAQmvqs4Jk/wXLoF94U4r9UKqEEjayYP9nDpf52RNE/BzWYvsqI6L/FOiiLV2XevzacVk4MlZ4/sM3ik550mj8T584CT+2aP67p538meJ8/Ga3JTjZ+nj+3tLkGH2uzP5eVEX8dBZs/ikwf86Kt1T9AlZXHQ66zP42ffWfAUOi/BWyfQZT6gr/KAr1I/OKgPxaepMncSNQ/Ln2Yq03KnD8Rj004zzmdP5SqOnIA6po/+tb3jz1hmD+zLtXGQlSZP8+tS+wG+Zs/seY67p24nj8QSePWKaSbP5W2tU9NLpk//vqRxA6+mD/gRE3cMtGbP0wrHqsAIps/zB8YRSvcnD+V6PVkL1qYP8Wkinh2pZw/4TzwLozOlz9WYYGs446bP2NeJIM2jJs/KYHpXBs0nT8LIjHSxNKbP2CWAXvGfpg/QF/YIzCMmT86pEoFj1+eP72xInuoQZw/40cl2f68nj8Zr28PGzOeP7YPvJgBmJs/awO856a0mj8cOM0PaP+bP0ezNPCoL5o/J6JpOP9PmT96pjSiHX+dP+1kUzsBxZw/08qwKqdsmj9lOm7OvlacP4/tXqeSspw/s0oYrIa86L8/E2E5d5icP2mHXz5NWO6/4sfko/itnT9YsjRaszucP9B7GohjBJk/8k6M9gRPmj/3V1yb8JObP7xEDrGmoZ0/wTYwRt07mj+9koKFZWebP+SlZBLbOey/TcjsICSZy78Un26D4yXPvykhyWBU7uW/RCvPO6is7b/gxHqS6s2bP0lbloVGBps/vUTfgJD5mT8em+HVuQKcP3kMd3BObJw/4NTHc0NynT9jAZNq36ubP2J7oaoJqZY/KnZDRrvpmj/T0GqlgqGZP0P1AiymGpk/Qv1zDy4RmT8YS6On3i+YPy71tq7FdJk/a+b8jUFhmz+WErg9jnuYP163+p4muJo/bMHqQquSmz+/Mwg2TsqdP7J/ncOfdps/vUwJB68tnT+X1zX1hLudP7Y/eOq2w50/SWONdZEAnj/2yROvha2cP1hdxWVROp0/Ka1dXueqmj8j07hHiNmdP4cnhR6zLqA/Er5/Fx0Dnj/XqMUhwW2dP4wJbHvNnJw/dU9N49JSnD9HbF9x2JacP5PzCi/I1Js/YYaI49WJnj+YrYECfUuePz3jL6FhXZ0/\",\"dtype\":\"float64\",\"shape\":[396]},\"y\":{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[396]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"13680\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"13681\",\"type\":\"UnionRenderers\"}},\"id\":\"11272\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12818\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12819\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12582\",\"type\":\"CDSView\"}},\"id\":\"12820\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12325\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12326\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12124\",\"type\":\"CDSView\"}},\"id\":\"12327\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12946\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"14607\",\"type\":\"WidgetBox\"},{\"id\":\"14608\",\"type\":\"WidgetBox\"},{\"id\":\"14611\",\"type\":\"Row\"},{\"id\":\"14612\",\"type\":\"WidgetBox\"},{\"id\":\"14613\",\"type\":\"WidgetBox\"}]},\"id\":\"14614\",\"type\":\"Column\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12970\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12971\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12772\",\"type\":\"CDSView\"}},\"id\":\"12972\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12819\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12609\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12329\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12975\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13461\",\"type\":\"GroupFilter\"},{\"id\":\"13462\",\"type\":\"GroupFilter\"},{\"id\":\"13463\",\"type\":\"GroupFilter\"},{\"id\":\"13464\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13465\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12330\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12994\",\"type\":\"Scatter\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"11570\",\"type\":\"GlyphRenderer\"},{\"id\":\"11574\",\"type\":\"GlyphRenderer\"},{\"id\":\"11578\",\"type\":\"GlyphRenderer\"},{\"id\":\"11582\",\"type\":\"GlyphRenderer\"},{\"id\":\"11586\",\"type\":\"GlyphRenderer\"},{\"id\":\"11590\",\"type\":\"GlyphRenderer\"},{\"id\":\"11594\",\"type\":\"GlyphRenderer\"},{\"id\":\"11598\",\"type\":\"GlyphRenderer\"},{\"id\":\"11602\",\"type\":\"GlyphRenderer\"},{\"id\":\"11606\",\"type\":\"GlyphRenderer\"},{\"id\":\"11610\",\"type\":\"GlyphRenderer\"},{\"id\":\"11614\",\"type\":\"GlyphRenderer\"},{\"id\":\"11618\",\"type\":\"GlyphRenderer\"},{\"id\":\"11622\",\"type\":\"GlyphRenderer\"},{\"id\":\"11626\",\"type\":\"GlyphRenderer\"},{\"id\":\"11630\",\"type\":\"GlyphRenderer\"},{\"id\":\"11634\",\"type\":\"GlyphRenderer\"},{\"id\":\"11638\",\"type\":\"GlyphRenderer\"},{\"id\":\"11642\",\"type\":\"GlyphRenderer\"},{\"id\":\"11646\",\"type\":\"GlyphRenderer\"},{\"id\":\"11650\",\"type\":\"GlyphRenderer\"},{\"id\":\"11654\",\"type\":\"GlyphRenderer\"},{\"id\":\"11658\",\"type\":\"GlyphRenderer\"},{\"id\":\"11662\",\"type\":\"GlyphRenderer\"},{\"id\":\"11666\",\"type\":\"GlyphRenderer\"},{\"id\":\"11670\",\"type\":\"GlyphRenderer\"},{\"id\":\"11674\",\"type\":\"GlyphRenderer\"},{\"id\":\"11678\",\"type\":\"GlyphRenderer\"},{\"id\":\"11682\",\"type\":\"GlyphRenderer\"},{\"id\":\"11686\",\"type\":\"GlyphRenderer\"},{\"id\":\"11690\",\"type\":\"GlyphRenderer\"},{\"id\":\"11694\",\"type\":\"GlyphRenderer\"},{\"id\":\"11698\",\"type\":\"GlyphRenderer\"},{\"id\":\"11702\",\"type\":\"GlyphRenderer\"},{\"id\":\"11706\",\"type\":\"GlyphRenderer\"},{\"id\":\"11710\",\"type\":\"GlyphRenderer\"},{\"id\":\"11714\",\"type\":\"GlyphRenderer\"},{\"id\":\"11718\",\"type\":\"GlyphRenderer\"},{\"id\":\"11722\",\"type\":\"GlyphRenderer\"},{\"id\":\"11726\",\"type\":\"GlyphRenderer\"},{\"id\":\"11730\",\"type\":\"GlyphRenderer\"},{\"id\":\"11734\",\"type\":\"GlyphRenderer\"},{\"id\":\"11738\",\"type\":\"GlyphRenderer\"},{\"id\":\"11742\",\"type\":\"GlyphRenderer\"},{\"id\":\"11746\",\"type\":\"GlyphRenderer\"},{\"id\":\"11750\",\"type\":\"GlyphRenderer\"},{\"id\":\"11754\",\"type\":\"GlyphRenderer\"},{\"id\":\"11758\",\"type\":\"GlyphRenderer\"},{\"id\":\"12183\",\"type\":\"GlyphRenderer\"},{\"id\":\"12187\",\"type\":\"GlyphRenderer\"},{\"id\":\"12191\",\"type\":\"GlyphRenderer\"},{\"id\":\"12195\",\"type\":\"GlyphRenderer\"},{\"id\":\"12199\",\"type\":\"GlyphRenderer\"},{\"id\":\"12203\",\"type\":\"GlyphRenderer\"},{\"id\":\"12207\",\"type\":\"GlyphRenderer\"},{\"id\":\"12211\",\"type\":\"GlyphRenderer\"},{\"id\":\"12215\",\"type\":\"GlyphRenderer\"},{\"id\":\"12219\",\"type\":\"GlyphRenderer\"},{\"id\":\"12223\",\"type\":\"GlyphRenderer\"},{\"id\":\"12227\",\"type\":\"GlyphRenderer\"},{\"id\":\"12231\",\"type\":\"GlyphRenderer\"},{\"id\":\"12235\",\"type\":\"GlyphRenderer\"},{\"id\":\"12239\",\"type\":\"GlyphRenderer\"},{\"id\":\"12243\",\"type\":\"GlyphRenderer\"},{\"id\":\"12247\",\"type\":\"GlyphRenderer\"},{\"id\":\"12251\",\"type\":\"GlyphRenderer\"},{\"id\":\"12255\",\"type\":\"GlyphRenderer\"},{\"id\":\"12259\",\"type\":\"GlyphRenderer\"},{\"id\":\"12263\",\"type\":\"GlyphRenderer\"},{\"id\":\"12267\",\"type\":\"GlyphRenderer\"},{\"id\":\"12271\",\"type\":\"GlyphRenderer\"},{\"id\":\"12275\",\"type\":\"GlyphRenderer\"},{\"id\":\"12279\",\"type\":\"GlyphRenderer\"},{\"id\":\"12283\",\"type\":\"GlyphRenderer\"},{\"id\":\"12287\",\"type\":\"GlyphRenderer\"},{\"id\":\"12291\",\"type\":\"GlyphRenderer\"},{\"id\":\"12295\",\"type\":\"GlyphRenderer\"},{\"id\":\"12299\",\"type\":\"GlyphRenderer\"},{\"id\":\"12303\",\"type\":\"GlyphRenderer\"},{\"id\":\"12307\",\"type\":\"GlyphRenderer\"},{\"id\":\"12311\",\"type\":\"GlyphRenderer\"},{\"id\":\"12315\",\"type\":\"GlyphRenderer\"},{\"id\":\"12319\",\"type\":\"GlyphRenderer\"},{\"id\":\"12323\",\"type\":\"GlyphRenderer\"},{\"id\":\"12327\",\"type\":\"GlyphRenderer\"},{\"id\":\"12331\",\"type\":\"GlyphRenderer\"},{\"id\":\"12335\",\"type\":\"GlyphRenderer\"},{\"id\":\"12339\",\"type\":\"GlyphRenderer\"},{\"id\":\"12343\",\"type\":\"GlyphRenderer\"},{\"id\":\"12347\",\"type\":\"GlyphRenderer\"},{\"id\":\"12351\",\"type\":\"GlyphRenderer\"},{\"id\":\"12355\",\"type\":\"GlyphRenderer\"},{\"id\":\"12359\",\"type\":\"GlyphRenderer\"},{\"id\":\"12363\",\"type\":\"GlyphRenderer\"},{\"id\":\"12367\",\"type\":\"GlyphRenderer\"},{\"id\":\"12371\",\"type\":\"GlyphRenderer\"},{\"id\":\"12816\",\"type\":\"GlyphRenderer\"},{\"id\":\"12820\",\"type\":\"GlyphRenderer\"},{\"id\":\"12824\",\"type\":\"GlyphRenderer\"},{\"id\":\"12828\",\"type\":\"GlyphRenderer\"},{\"id\":\"12832\",\"type\":\"GlyphRenderer\"},{\"id\":\"12836\",\"type\":\"GlyphRenderer\"},{\"id\":\"12840\",\"type\":\"GlyphRenderer\"},{\"id\":\"12844\",\"type\":\"GlyphRenderer\"},{\"id\":\"12848\",\"type\":\"GlyphRenderer\"},{\"id\":\"12852\",\"type\":\"GlyphRenderer\"},{\"id\":\"12856\",\"type\":\"GlyphRenderer\"},{\"id\":\"12860\",\"type\":\"GlyphRenderer\"},{\"id\":\"12864\",\"type\":\"GlyphRenderer\"},{\"id\":\"12868\",\"type\":\"GlyphRenderer\"},{\"id\":\"12872\",\"type\":\"GlyphRenderer\"},{\"id\":\"12876\",\"type\":\"GlyphRenderer\"},{\"id\":\"12880\",\"type\":\"GlyphRenderer\"},{\"id\":\"12884\",\"type\":\"GlyphRenderer\"},{\"id\":\"12888\",\"type\":\"GlyphRenderer\"},{\"id\":\"12892\",\"type\":\"GlyphRenderer\"},{\"id\":\"12896\",\"type\":\"GlyphRenderer\"},{\"id\":\"12900\",\"type\":\"GlyphRenderer\"},{\"id\":\"12904\",\"type\":\"GlyphRenderer\"},{\"id\":\"12908\",\"type\":\"GlyphRenderer\"},{\"id\":\"12912\",\"type\":\"GlyphRenderer\"},{\"id\":\"12916\",\"type\":\"GlyphRenderer\"},{\"id\":\"12920\",\"type\":\"GlyphRenderer\"},{\"id\":\"12924\",\"type\":\"GlyphRenderer\"},{\"id\":\"12928\",\"type\":\"GlyphRenderer\"},{\"id\":\"12932\",\"type\":\"GlyphRenderer\"},{\"id\":\"12936\",\"type\":\"GlyphRenderer\"},{\"id\":\"12940\",\"type\":\"GlyphRenderer\"},{\"id\":\"12944\",\"type\":\"GlyphRenderer\"},{\"id\":\"12948\",\"type\":\"GlyphRenderer\"},{\"id\":\"12952\",\"type\":\"GlyphRenderer\"},{\"id\":\"12956\",\"type\":\"GlyphRenderer\"},{\"id\":\"12960\",\"type\":\"GlyphRenderer\"},{\"id\":\"12964\",\"type\":\"GlyphRenderer\"},{\"id\":\"12968\",\"type\":\"GlyphRenderer\"},{\"id\":\"12972\",\"type\":\"GlyphRenderer\"},{\"id\":\"12976\",\"type\":\"GlyphRenderer\"},{\"id\":\"12980\",\"type\":\"GlyphRenderer\"},{\"id\":\"12984\",\"type\":\"GlyphRenderer\"},{\"id\":\"12988\",\"type\":\"GlyphRenderer\"},{\"id\":\"12992\",\"type\":\"GlyphRenderer\"},{\"id\":\"12996\",\"type\":\"GlyphRenderer\"},{\"id\":\"13000\",\"type\":\"GlyphRenderer\"},{\"id\":\"13004\",\"type\":\"GlyphRenderer\"},{\"id\":\"13469\",\"type\":\"GlyphRenderer\"},{\"id\":\"13473\",\"type\":\"GlyphRenderer\"},{\"id\":\"13477\",\"type\":\"GlyphRenderer\"},{\"id\":\"13481\",\"type\":\"GlyphRenderer\"},{\"id\":\"13485\",\"type\":\"GlyphRenderer\"},{\"id\":\"13489\",\"type\":\"GlyphRenderer\"},{\"id\":\"13493\",\"type\":\"GlyphRenderer\"},{\"id\":\"13497\",\"type\":\"GlyphRenderer\"},{\"id\":\"13501\",\"type\":\"GlyphRenderer\"},{\"id\":\"13505\",\"type\":\"GlyphRenderer\"},{\"id\":\"13509\",\"type\":\"GlyphRenderer\"},{\"id\":\"13513\",\"type\":\"GlyphRenderer\"},{\"id\":\"13517\",\"type\":\"GlyphRenderer\"},{\"id\":\"13521\",\"type\":\"GlyphRenderer\"},{\"id\":\"13525\",\"type\":\"GlyphRenderer\"},{\"id\":\"13529\",\"type\":\"GlyphRenderer\"},{\"id\":\"13533\",\"type\":\"GlyphRenderer\"},{\"id\":\"13537\",\"type\":\"GlyphRenderer\"},{\"id\":\"13541\",\"type\":\"GlyphRenderer\"},{\"id\":\"13545\",\"type\":\"GlyphRenderer\"},{\"id\":\"13549\",\"type\":\"GlyphRenderer\"},{\"id\":\"13553\",\"type\":\"GlyphRenderer\"},{\"id\":\"13557\",\"type\":\"GlyphRenderer\"},{\"id\":\"13561\",\"type\":\"GlyphRenderer\"},{\"id\":\"13565\",\"type\":\"GlyphRenderer\"},{\"id\":\"13569\",\"type\":\"GlyphRenderer\"},{\"id\":\"13573\",\"type\":\"GlyphRenderer\"},{\"id\":\"13577\",\"type\":\"GlyphRenderer\"},{\"id\":\"13581\",\"type\":\"GlyphRenderer\"},{\"id\":\"13585\",\"type\":\"GlyphRenderer\"},{\"id\":\"13589\",\"type\":\"GlyphRenderer\"},{\"id\":\"13593\",\"type\":\"GlyphRenderer\"},{\"id\":\"13597\",\"type\":\"GlyphRenderer\"},{\"id\":\"13601\",\"type\":\"GlyphRenderer\"},{\"id\":\"13605\",\"type\":\"GlyphRenderer\"},{\"id\":\"13609\",\"type\":\"GlyphRenderer\"},{\"id\":\"13613\",\"type\":\"GlyphRenderer\"},{\"id\":\"13617\",\"type\":\"GlyphRenderer\"},{\"id\":\"13621\",\"type\":\"GlyphRenderer\"},{\"id\":\"13625\",\"type\":\"GlyphRenderer\"},{\"id\":\"13629\",\"type\":\"GlyphRenderer\"},{\"id\":\"13633\",\"type\":\"GlyphRenderer\"},{\"id\":\"13637\",\"type\":\"GlyphRenderer\"},{\"id\":\"13641\",\"type\":\"GlyphRenderer\"},{\"id\":\"13645\",\"type\":\"GlyphRenderer\"},{\"id\":\"13649\",\"type\":\"GlyphRenderer\"},{\"id\":\"13653\",\"type\":\"GlyphRenderer\"},{\"id\":\"13657\",\"type\":\"GlyphRenderer\"},{\"id\":\"14142\",\"type\":\"GlyphRenderer\"},{\"id\":\"14146\",\"type\":\"GlyphRenderer\"},{\"id\":\"14150\",\"type\":\"GlyphRenderer\"},{\"id\":\"14154\",\"type\":\"GlyphRenderer\"},{\"id\":\"14158\",\"type\":\"GlyphRenderer\"},{\"id\":\"14162\",\"type\":\"GlyphRenderer\"},{\"id\":\"14166\",\"type\":\"GlyphRenderer\"},{\"id\":\"14170\",\"type\":\"GlyphRenderer\"},{\"id\":\"14174\",\"type\":\"GlyphRenderer\"},{\"id\":\"14178\",\"type\":\"GlyphRenderer\"},{\"id\":\"14182\",\"type\":\"GlyphRenderer\"},{\"id\":\"14186\",\"type\":\"GlyphRenderer\"},{\"id\":\"14190\",\"type\":\"GlyphRenderer\"},{\"id\":\"14194\",\"type\":\"GlyphRenderer\"},{\"id\":\"14198\",\"type\":\"GlyphRenderer\"},{\"id\":\"14202\",\"type\":\"GlyphRenderer\"},{\"id\":\"14206\",\"type\":\"GlyphRenderer\"},{\"id\":\"14210\",\"type\":\"GlyphRenderer\"},{\"id\":\"14214\",\"type\":\"GlyphRenderer\"},{\"id\":\"14218\",\"type\":\"GlyphRenderer\"},{\"id\":\"14222\",\"type\":\"GlyphRenderer\"},{\"id\":\"14226\",\"type\":\"GlyphRenderer\"},{\"id\":\"14230\",\"type\":\"GlyphRenderer\"},{\"id\":\"14234\",\"type\":\"GlyphRenderer\"},{\"id\":\"14238\",\"type\":\"GlyphRenderer\"},{\"id\":\"14242\",\"type\":\"GlyphRenderer\"},{\"id\":\"14246\",\"type\":\"GlyphRenderer\"},{\"id\":\"14250\",\"type\":\"GlyphRenderer\"},{\"id\":\"14254\",\"type\":\"GlyphRenderer\"},{\"id\":\"14258\",\"type\":\"GlyphRenderer\"},{\"id\":\"14262\",\"type\":\"GlyphRenderer\"},{\"id\":\"14266\",\"type\":\"GlyphRenderer\"},{\"id\":\"14270\",\"type\":\"GlyphRenderer\"},{\"id\":\"14274\",\"type\":\"GlyphRenderer\"},{\"id\":\"14278\",\"type\":\"GlyphRenderer\"},{\"id\":\"14282\",\"type\":\"GlyphRenderer\"},{\"id\":\"14286\",\"type\":\"GlyphRenderer\"},{\"id\":\"14290\",\"type\":\"GlyphRenderer\"},{\"id\":\"14294\",\"type\":\"GlyphRenderer\"},{\"id\":\"14298\",\"type\":\"GlyphRenderer\"},{\"id\":\"14302\",\"type\":\"GlyphRenderer\"},{\"id\":\"14306\",\"type\":\"GlyphRenderer\"},{\"id\":\"14310\",\"type\":\"GlyphRenderer\"},{\"id\":\"14314\",\"type\":\"GlyphRenderer\"},{\"id\":\"14318\",\"type\":\"GlyphRenderer\"},{\"id\":\"14322\",\"type\":\"GlyphRenderer\"},{\"id\":\"14326\",\"type\":\"GlyphRenderer\"},{\"id\":\"14330\",\"type\":\"GlyphRenderer\"}],\"tooltips\":[[\"type\",\"@type\"],[\"origin\",\"@origin\"],[\"runs\",\"@runs\"],[\"x0\",\"@p_x0\"],[\"x1\",\"@p_x1\"]]},\"id\":\"14592\",\"type\":\"HoverTool\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12329\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12330\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12129\",\"type\":\"CDSView\"}},\"id\":\"12331\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12850\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12822\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12823\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12587\",\"type\":\"CDSView\"}},\"id\":\"12824\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12978\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,true,false,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,true,false,true,true,false,false,false,true,false,true,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,true,true,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,false,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13454\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13500\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13453\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12333\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12823\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"14603\",\"type\":\"RadioButtonGroup\"}]},\"id\":\"14613\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12334\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12995\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12333\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12334\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12134\",\"type\":\"CDSView\"}},\"id\":\"12335\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12851\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"13025\",\"type\":\"Selection\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12974\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12975\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12777\",\"type\":\"CDSView\"}},\"id\":\"12976\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12822\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12854\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12611\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12982\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13458\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12337\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12846\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13456\",\"type\":\"GroupFilter\"},{\"id\":\"13457\",\"type\":\"GroupFilter\"},{\"id\":\"13458\",\"type\":\"GroupFilter\"},{\"id\":\"13459\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13460\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12994\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12995\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12802\",\"type\":\"CDSView\"}},\"id\":\"12996\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12338\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12826\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13457\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12337\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12338\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12139\",\"type\":\"CDSView\"}},\"id\":\"12339\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12838\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,true,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13459\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12978\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12979\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12782\",\"type\":\"CDSView\"}},\"id\":\"12980\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12830\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12604\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13463\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12341\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12342\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12990\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12947\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12979\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12341\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12342\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12144\",\"type\":\"CDSView\"}},\"id\":\"12343\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12998\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12999\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12807\",\"type\":\"CDSView\"}},\"id\":\"13000\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12839\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"12608\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13467\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13468\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13230\",\"type\":\"CDSView\"}},\"id\":\"13469\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12826\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12827\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12592\",\"type\":\"CDSView\"}},\"id\":\"12828\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"12608\",\"type\":\"GroupFilter\"},{\"id\":\"12609\",\"type\":\"GroupFilter\"},{\"id\":\"12610\",\"type\":\"GroupFilter\"},{\"id\":\"12611\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12612\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12986\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12345\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13462\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12346\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12991\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12827\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12345\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12346\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12149\",\"type\":\"CDSView\"}},\"id\":\"12347\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12838\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12839\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12607\",\"type\":\"CDSView\"}},\"id\":\"12840\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12850\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12851\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12622\",\"type\":\"CDSView\"}},\"id\":\"12852\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12982\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12983\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12787\",\"type\":\"CDSView\"}},\"id\":\"12984\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12349\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12843\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12830\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12831\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12597\",\"type\":\"CDSView\"}},\"id\":\"12832\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12990\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12991\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12797\",\"type\":\"CDSView\"}},\"id\":\"12992\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12350\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12983\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"13461\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12349\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12350\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12154\",\"type\":\"CDSView\"}},\"id\":\"12351\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12842\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12843\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12612\",\"type\":\"CDSView\"}},\"id\":\"12844\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12999\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12831\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12605\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12986\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12987\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12792\",\"type\":\"CDSView\"}},\"id\":\"12988\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"12603\",\"type\":\"GroupFilter\"},{\"id\":\"12604\",\"type\":\"GroupFilter\"},{\"id\":\"12605\",\"type\":\"GroupFilter\"},{\"id\":\"12606\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12607\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13467\",\"type\":\"Scatter\"},{\"attributes\":{\"children\":[{\"id\":\"14604\",\"type\":\"Div\"}]},\"id\":\"14612\",\"type\":\"WidgetBox\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12353\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12354\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12834\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12835\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12602\",\"type\":\"CDSView\"}},\"id\":\"12836\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13464\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12353\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12354\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12159\",\"type\":\"CDSView\"}},\"id\":\"12355\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12834\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13002\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13468\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12855\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12987\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12835\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12610\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12357\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13981\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14228\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14229\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14013\",\"type\":\"CDSView\"}},\"id\":\"14230\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14261\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14204\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14205\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13983\",\"type\":\"CDSView\"}},\"id\":\"14206\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14216\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13995\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14257\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13989\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14260\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14212\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14213\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13993\",\"type\":\"CDSView\"}},\"id\":\"14214\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14208\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14209\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13988\",\"type\":\"CDSView\"}},\"id\":\"14210\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"13989\",\"type\":\"GroupFilter\"},{\"id\":\"13990\",\"type\":\"GroupFilter\"},{\"id\":\"13991\",\"type\":\"GroupFilter\"},{\"id\":\"13992\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13993\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13990\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13974\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14209\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13999\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13986\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14212\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,true,false,false,false,false,true,true,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,false,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13992\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14213\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13984\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13974\",\"type\":\"GroupFilter\"},{\"id\":\"13975\",\"type\":\"GroupFilter\"},{\"id\":\"13976\",\"type\":\"GroupFilter\"},{\"id\":\"13977\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13978\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"13969\",\"type\":\"GroupFilter\"},{\"id\":\"13970\",\"type\":\"GroupFilter\"},{\"id\":\"13971\",\"type\":\"GroupFilter\"},{\"id\":\"13972\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13973\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14224\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13994\",\"type\":\"GroupFilter\"},{\"id\":\"13995\",\"type\":\"GroupFilter\"},{\"id\":\"13996\",\"type\":\"GroupFilter\"},{\"id\":\"13997\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13998\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"13984\",\"type\":\"GroupFilter\"},{\"id\":\"13985\",\"type\":\"GroupFilter\"},{\"id\":\"13986\",\"type\":\"GroupFilter\"},{\"id\":\"13987\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13988\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"13979\",\"type\":\"GroupFilter\"},{\"id\":\"13980\",\"type\":\"GroupFilter\"},{\"id\":\"13981\",\"type\":\"GroupFilter\"},{\"id\":\"13982\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13983\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14225\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13996\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14205\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13979\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14232\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14200\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13980\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14216\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14217\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13998\",\"type\":\"CDSView\"}},\"id\":\"14218\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14220\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14221\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14003\",\"type\":\"CDSView\"}},\"id\":\"14222\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,false,true,false,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,false,false,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,true,false,true,true,false,true,false,false,true,false,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,false,true,true,false,true,false,false,true,false,true,false,true,true,true,false,true,false,true,false,true,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"14002\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13977\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14256\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14257\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14048\",\"type\":\"CDSView\"}},\"id\":\"14258\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14224\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14225\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14008\",\"type\":\"CDSView\"}},\"id\":\"14226\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13994\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13999\",\"type\":\"GroupFilter\"},{\"id\":\"14000\",\"type\":\"GroupFilter\"},{\"id\":\"14001\",\"type\":\"GroupFilter\"},{\"id\":\"14002\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14003\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14229\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13997\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14232\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14233\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14018\",\"type\":\"CDSView\"}},\"id\":\"14234\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13991\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14200\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14201\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13978\",\"type\":\"CDSView\"}},\"id\":\"14202\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14221\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13985\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14208\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14228\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,true,false,false,true,true,false,true,false,false,false,false,true,true,false,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,false,true,false,false,false,false,false,true,false,false,true,false,true,false,false,true,true,true,false,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,false,true,false,true,true,true,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,true,true,true,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,true,false,true,false,true,true,false,true,true,true,false,false,false,false,false,false,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,true,true,true,true,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,true,true,true,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,true,true,false,false,true,true,true,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13987\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14256\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14233\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14201\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14001\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,true,false,false,false,false,true,true,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,false,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13972\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14220\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13975\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14000\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14260\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14261\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14053\",\"type\":\"CDSView\"}},\"id\":\"14262\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14204\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,false,true,false,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,false,false,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,true,false,true,true,false,true,false,false,true,false,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,false,true,true,false,true,false,false,true,false,true,false,true,true,true,false,true,false,true,false,true,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13982\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13976\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14217\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11520\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11517\",\"type\":\"GroupFilter\"},{\"id\":\"11518\",\"type\":\"GroupFilter\"},{\"id\":\"11519\",\"type\":\"GroupFilter\"},{\"id\":\"11520\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11521\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14056\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12716\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"11522\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14049\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12728\",\"type\":\"GroupFilter\"},{\"id\":\"12729\",\"type\":\"GroupFilter\"},{\"id\":\"12730\",\"type\":\"GroupFilter\"},{\"id\":\"12731\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12732\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,true,false,false,false,false,true,true,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,false,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14052\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12713\",\"type\":\"GroupFilter\"},{\"id\":\"12714\",\"type\":\"GroupFilter\"},{\"id\":\"12715\",\"type\":\"GroupFilter\"},{\"id\":\"12716\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12717\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11523\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11524\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11525\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12718\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14054\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14050\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11522\",\"type\":\"GroupFilter\"},{\"id\":\"11523\",\"type\":\"GroupFilter\"},{\"id\":\"11524\",\"type\":\"GroupFilter\"},{\"id\":\"11525\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11526\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12733\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14037\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"11527\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14064\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14044\",\"type\":\"GroupFilter\"},{\"id\":\"14045\",\"type\":\"GroupFilter\"},{\"id\":\"14046\",\"type\":\"GroupFilter\"},{\"id\":\"14047\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14048\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12719\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11528\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11529\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14066\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12715\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11530\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,true,false,false,true,true,false,true,false,false,false,false,true,true,false,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,false,true,false,false,false,false,false,true,false,false,true,false,true,false,false,true,true,true,false,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,false,true,false,true,true,true,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,true,true,true,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,true,false,true,false,true,true,false,true,true,true,false,false,false,false,false,false,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,true,true,true,true,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,true,true,true,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,true,true,false,false,true,true,true,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14067\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11527\",\"type\":\"GroupFilter\"},{\"id\":\"11528\",\"type\":\"GroupFilter\"},{\"id\":\"11529\",\"type\":\"GroupFilter\"},{\"id\":\"11530\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11531\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14060\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12714\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14046\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"11532\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12734\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11533\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14049\",\"type\":\"GroupFilter\"},{\"id\":\"14050\",\"type\":\"GroupFilter\"},{\"id\":\"14051\",\"type\":\"GroupFilter\"},{\"id\":\"14052\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14053\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11534\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,true,false,true,true,false,false,true,false,true,true,true,true,false,true,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11535\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12713\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14051\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11532\",\"type\":\"GroupFilter\"},{\"id\":\"11533\",\"type\":\"GroupFilter\"},{\"id\":\"11534\",\"type\":\"GroupFilter\"},{\"id\":\"11535\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11536\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12708\",\"type\":\"GroupFilter\"},{\"id\":\"12709\",\"type\":\"GroupFilter\"},{\"id\":\"12710\",\"type\":\"GroupFilter\"},{\"id\":\"12711\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12712\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"11537\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14054\",\"type\":\"GroupFilter\"},{\"id\":\"14055\",\"type\":\"GroupFilter\"},{\"id\":\"14056\",\"type\":\"GroupFilter\"},{\"id\":\"14057\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14058\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12729\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12711\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14065\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11538\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14045\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11539\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14055\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14034\",\"type\":\"GroupFilter\"},{\"id\":\"14035\",\"type\":\"GroupFilter\"},{\"id\":\"14036\",\"type\":\"GroupFilter\"},{\"id\":\"14037\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14038\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12721\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11540\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11537\",\"type\":\"GroupFilter\"},{\"id\":\"11538\",\"type\":\"GroupFilter\"},{\"id\":\"11539\",\"type\":\"GroupFilter\"},{\"id\":\"11540\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11541\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12730\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12720\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14057\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"11542\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12718\",\"type\":\"GroupFilter\"},{\"id\":\"12719\",\"type\":\"GroupFilter\"},{\"id\":\"12720\",\"type\":\"GroupFilter\"},{\"id\":\"12721\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12722\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"14059\",\"type\":\"GroupFilter\"},{\"id\":\"14060\",\"type\":\"GroupFilter\"},{\"id\":\"14061\",\"type\":\"GroupFilter\"},{\"id\":\"14062\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14063\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11543\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11544\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12731\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14041\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11545\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12724\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,false,true,false,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,false,false,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,true,false,true,true,false,true,false,false,true,false,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,false,true,true,false,true,false,false,true,false,true,false,true,true,true,false,true,false,true,false,true,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"14062\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,false,true,false,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,false,false,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,true,false,true,true,false,true,false,false,true,false,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,false,true,true,false,true,false,false,true,false,true,false,true,true,true,false,true,false,true,false,true,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"14042\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11542\",\"type\":\"GroupFilter\"},{\"id\":\"11543\",\"type\":\"GroupFilter\"},{\"id\":\"11544\",\"type\":\"GroupFilter\"},{\"id\":\"11545\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11546\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14044\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"11547\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12725\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14039\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12723\",\"type\":\"GroupFilter\"},{\"id\":\"12724\",\"type\":\"GroupFilter\"},{\"id\":\"12725\",\"type\":\"GroupFilter\"},{\"id\":\"12726\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12727\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11548\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14059\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14039\",\"type\":\"GroupFilter\"},{\"id\":\"14040\",\"type\":\"GroupFilter\"},{\"id\":\"14041\",\"type\":\"GroupFilter\"},{\"id\":\"14042\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14043\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11549\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11550\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12723\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14061\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11547\",\"type\":\"GroupFilter\"},{\"id\":\"11548\",\"type\":\"GroupFilter\"},{\"id\":\"11549\",\"type\":\"GroupFilter\"},{\"id\":\"11550\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11551\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14040\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,true,false,false,true,true,false,true,false,false,false,false,true,true,false,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,false,true,false,false,false,false,false,true,false,false,true,false,true,false,false,true,true,true,false,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,false,true,false,true,true,true,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,true,true,true,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,true,false,true,false,true,true,false,true,true,true,false,false,false,false,false,false,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,true,true,true,true,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,true,true,true,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,true,true,false,false,true,true,true,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14047\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"11552\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12728\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14036\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,true,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12726\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14035\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"11422\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12055\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12122\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11423\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12056\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12121\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11424\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12057\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12120\",\"type\":\"GroupFilter\"},{\"id\":\"12121\",\"type\":\"GroupFilter\"},{\"id\":\"12122\",\"type\":\"GroupFilter\"},{\"id\":\"12123\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12124\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11425\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12058\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,false,true,false,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12123\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11422\",\"type\":\"GroupFilter\"},{\"id\":\"11423\",\"type\":\"GroupFilter\"},{\"id\":\"11424\",\"type\":\"GroupFilter\"},{\"id\":\"11425\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11426\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12055\",\"type\":\"GroupFilter\"},{\"id\":\"12056\",\"type\":\"GroupFilter\"},{\"id\":\"12057\",\"type\":\"GroupFilter\"},{\"id\":\"12058\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12059\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"11427\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12060\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12125\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12127\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11428\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12061\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12126\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11429\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12062\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12135\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11430\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,false,true,false,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12063\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12128\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11427\",\"type\":\"GroupFilter\"},{\"id\":\"11428\",\"type\":\"GroupFilter\"},{\"id\":\"11429\",\"type\":\"GroupFilter\"},{\"id\":\"11430\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11431\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12060\",\"type\":\"GroupFilter\"},{\"id\":\"12061\",\"type\":\"GroupFilter\"},{\"id\":\"12062\",\"type\":\"GroupFilter\"},{\"id\":\"12063\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12064\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12125\",\"type\":\"GroupFilter\"},{\"id\":\"12126\",\"type\":\"GroupFilter\"},{\"id\":\"12127\",\"type\":\"GroupFilter\"},{\"id\":\"12128\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12129\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"11432\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12065\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12130\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11433\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12066\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12131\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11434\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12067\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12132\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,true,false,true,true,false,false,true,false,true,true,true,true,false,true,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11435\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12068\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,true,false,true,true,false,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12133\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11432\",\"type\":\"GroupFilter\"},{\"id\":\"11433\",\"type\":\"GroupFilter\"},{\"id\":\"11434\",\"type\":\"GroupFilter\"},{\"id\":\"11435\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11436\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12065\",\"type\":\"GroupFilter\"},{\"id\":\"12066\",\"type\":\"GroupFilter\"},{\"id\":\"12067\",\"type\":\"GroupFilter\"},{\"id\":\"12068\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12069\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12130\",\"type\":\"GroupFilter\"},{\"id\":\"12131\",\"type\":\"GroupFilter\"},{\"id\":\"12132\",\"type\":\"GroupFilter\"},{\"id\":\"12133\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12134\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"11437\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12070\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12140\",\"type\":\"GroupFilter\"},{\"id\":\"12141\",\"type\":\"GroupFilter\"},{\"id\":\"12142\",\"type\":\"GroupFilter\"},{\"id\":\"12143\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12144\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11438\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12071\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12136\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11439\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12072\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12137\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11440\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,true,false,true,true,false,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12073\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12138\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11437\",\"type\":\"GroupFilter\"},{\"id\":\"11438\",\"type\":\"GroupFilter\"},{\"id\":\"11439\",\"type\":\"GroupFilter\"},{\"id\":\"11440\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11441\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12070\",\"type\":\"GroupFilter\"},{\"id\":\"12071\",\"type\":\"GroupFilter\"},{\"id\":\"12072\",\"type\":\"GroupFilter\"},{\"id\":\"12073\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12074\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12135\",\"type\":\"GroupFilter\"},{\"id\":\"12136\",\"type\":\"GroupFilter\"},{\"id\":\"12137\",\"type\":\"GroupFilter\"},{\"id\":\"12138\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12139\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"11442\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12075\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12141\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12140\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11443\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12076\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11444\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12077\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12142\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11445\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12078\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,false,true,false,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12143\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11442\",\"type\":\"GroupFilter\"},{\"id\":\"11443\",\"type\":\"GroupFilter\"},{\"id\":\"11444\",\"type\":\"GroupFilter\"},{\"id\":\"11445\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11446\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12075\",\"type\":\"GroupFilter\"},{\"id\":\"12076\",\"type\":\"GroupFilter\"},{\"id\":\"12077\",\"type\":\"GroupFilter\"},{\"id\":\"12078\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12079\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12145\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"11447\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12080\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12152\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11448\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12081\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12146\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11449\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12082\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12147\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11450\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,false,true,false,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12083\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12148\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11447\",\"type\":\"GroupFilter\"},{\"id\":\"11448\",\"type\":\"GroupFilter\"},{\"id\":\"11449\",\"type\":\"GroupFilter\"},{\"id\":\"11450\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11451\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12080\",\"type\":\"GroupFilter\"},{\"id\":\"12081\",\"type\":\"GroupFilter\"},{\"id\":\"12082\",\"type\":\"GroupFilter\"},{\"id\":\"12083\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12084\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12145\",\"type\":\"GroupFilter\"},{\"id\":\"12146\",\"type\":\"GroupFilter\"},{\"id\":\"12147\",\"type\":\"GroupFilter\"},{\"id\":\"12148\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12149\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"11452\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12085\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12150\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11453\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12086\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12151\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11454\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12087\",\"type\":\"GroupFilter\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"14595\",\"type\":\"CheckboxButtonGroup\"},\"glyph0\":{\"id\":\"11570\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"11574\",\"type\":\"GlyphRenderer\"},\"glyph10\":{\"id\":\"11610\",\"type\":\"GlyphRenderer\"},\"glyph100\":{\"id\":\"12832\",\"type\":\"GlyphRenderer\"},\"glyph101\":{\"id\":\"12836\",\"type\":\"GlyphRenderer\"},\"glyph102\":{\"id\":\"12840\",\"type\":\"GlyphRenderer\"},\"glyph103\":{\"id\":\"12844\",\"type\":\"GlyphRenderer\"},\"glyph104\":{\"id\":\"12848\",\"type\":\"GlyphRenderer\"},\"glyph105\":{\"id\":\"12852\",\"type\":\"GlyphRenderer\"},\"glyph106\":{\"id\":\"12856\",\"type\":\"GlyphRenderer\"},\"glyph107\":{\"id\":\"12860\",\"type\":\"GlyphRenderer\"},\"glyph108\":{\"id\":\"12864\",\"type\":\"GlyphRenderer\"},\"glyph109\":{\"id\":\"12868\",\"type\":\"GlyphRenderer\"},\"glyph11\":{\"id\":\"11614\",\"type\":\"GlyphRenderer\"},\"glyph110\":{\"id\":\"12872\",\"type\":\"GlyphRenderer\"},\"glyph111\":{\"id\":\"12876\",\"type\":\"GlyphRenderer\"},\"glyph112\":{\"id\":\"12880\",\"type\":\"GlyphRenderer\"},\"glyph113\":{\"id\":\"12884\",\"type\":\"GlyphRenderer\"},\"glyph114\":{\"id\":\"12888\",\"type\":\"GlyphRenderer\"},\"glyph115\":{\"id\":\"12892\",\"type\":\"GlyphRenderer\"},\"glyph116\":{\"id\":\"12896\",\"type\":\"GlyphRenderer\"},\"glyph117\":{\"id\":\"12900\",\"type\":\"GlyphRenderer\"},\"glyph118\":{\"id\":\"12904\",\"type\":\"GlyphRenderer\"},\"glyph119\":{\"id\":\"12908\",\"type\":\"GlyphRenderer\"},\"glyph12\":{\"id\":\"11618\",\"type\":\"GlyphRenderer\"},\"glyph120\":{\"id\":\"12912\",\"type\":\"GlyphRenderer\"},\"glyph121\":{\"id\":\"12916\",\"type\":\"GlyphRenderer\"},\"glyph122\":{\"id\":\"12920\",\"type\":\"GlyphRenderer\"},\"glyph123\":{\"id\":\"12924\",\"type\":\"GlyphRenderer\"},\"glyph124\":{\"id\":\"12928\",\"type\":\"GlyphRenderer\"},\"glyph125\":{\"id\":\"12932\",\"type\":\"GlyphRenderer\"},\"glyph126\":{\"id\":\"12936\",\"type\":\"GlyphRenderer\"},\"glyph127\":{\"id\":\"12940\",\"type\":\"GlyphRenderer\"},\"glyph128\":{\"id\":\"12944\",\"type\":\"GlyphRenderer\"},\"glyph129\":{\"id\":\"12948\",\"type\":\"GlyphRenderer\"},\"glyph13\":{\"id\":\"11622\",\"type\":\"GlyphRenderer\"},\"glyph130\":{\"id\":\"12952\",\"type\":\"GlyphRenderer\"},\"glyph131\":{\"id\":\"12956\",\"type\":\"GlyphRenderer\"},\"glyph132\":{\"id\":\"12960\",\"type\":\"GlyphRenderer\"},\"glyph133\":{\"id\":\"12964\",\"type\":\"GlyphRenderer\"},\"glyph134\":{\"id\":\"12968\",\"type\":\"GlyphRenderer\"},\"glyph135\":{\"id\":\"12972\",\"type\":\"GlyphRenderer\"},\"glyph136\":{\"id\":\"12976\",\"type\":\"GlyphRenderer\"},\"glyph137\":{\"id\":\"12980\",\"type\":\"GlyphRenderer\"},\"glyph138\":{\"id\":\"12984\",\"type\":\"GlyphRenderer\"},\"glyph139\":{\"id\":\"12988\",\"type\":\"GlyphRenderer\"},\"glyph14\":{\"id\":\"11626\",\"type\":\"GlyphRenderer\"},\"glyph140\":{\"id\":\"12992\",\"type\":\"GlyphRenderer\"},\"glyph141\":{\"id\":\"12996\",\"type\":\"GlyphRenderer\"},\"glyph142\":{\"id\":\"13000\",\"type\":\"GlyphRenderer\"},\"glyph143\":{\"id\":\"13004\",\"type\":\"GlyphRenderer\"},\"glyph144\":{\"id\":\"13469\",\"type\":\"GlyphRenderer\"},\"glyph145\":{\"id\":\"13473\",\"type\":\"GlyphRenderer\"},\"glyph146\":{\"id\":\"13477\",\"type\":\"GlyphRenderer\"},\"glyph147\":{\"id\":\"13481\",\"type\":\"GlyphRenderer\"},\"glyph148\":{\"id\":\"13485\",\"type\":\"GlyphRenderer\"},\"glyph149\":{\"id\":\"13489\",\"type\":\"GlyphRenderer\"},\"glyph15\":{\"id\":\"11630\",\"type\":\"GlyphRenderer\"},\"glyph150\":{\"id\":\"13493\",\"type\":\"GlyphRenderer\"},\"glyph151\":{\"id\":\"13497\",\"type\":\"GlyphRenderer\"},\"glyph152\":{\"id\":\"13501\",\"type\":\"GlyphRenderer\"},\"glyph153\":{\"id\":\"13505\",\"type\":\"GlyphRenderer\"},\"glyph154\":{\"id\":\"13509\",\"type\":\"GlyphRenderer\"},\"glyph155\":{\"id\":\"13513\",\"type\":\"GlyphRenderer\"},\"glyph156\":{\"id\":\"13517\",\"type\":\"GlyphRenderer\"},\"glyph157\":{\"id\":\"13521\",\"type\":\"GlyphRenderer\"},\"glyph158\":{\"id\":\"13525\",\"type\":\"GlyphRenderer\"},\"glyph159\":{\"id\":\"13529\",\"type\":\"GlyphRenderer\"},\"glyph16\":{\"id\":\"11634\",\"type\":\"GlyphRenderer\"},\"glyph160\":{\"id\":\"13533\",\"type\":\"GlyphRenderer\"},\"glyph161\":{\"id\":\"13537\",\"type\":\"GlyphRenderer\"},\"glyph162\":{\"id\":\"13541\",\"type\":\"GlyphRenderer\"},\"glyph163\":{\"id\":\"13545\",\"type\":\"GlyphRenderer\"},\"glyph164\":{\"id\":\"13549\",\"type\":\"GlyphRenderer\"},\"glyph165\":{\"id\":\"13553\",\"type\":\"GlyphRenderer\"},\"glyph166\":{\"id\":\"13557\",\"type\":\"GlyphRenderer\"},\"glyph167\":{\"id\":\"13561\",\"type\":\"GlyphRenderer\"},\"glyph168\":{\"id\":\"13565\",\"type\":\"GlyphRenderer\"},\"glyph169\":{\"id\":\"13569\",\"type\":\"GlyphRenderer\"},\"glyph17\":{\"id\":\"11638\",\"type\":\"GlyphRenderer\"},\"glyph170\":{\"id\":\"13573\",\"type\":\"GlyphRenderer\"},\"glyph171\":{\"id\":\"13577\",\"type\":\"GlyphRenderer\"},\"glyph172\":{\"id\":\"13581\",\"type\":\"GlyphRenderer\"},\"glyph173\":{\"id\":\"13585\",\"type\":\"GlyphRenderer\"},\"glyph174\":{\"id\":\"13589\",\"type\":\"GlyphRenderer\"},\"glyph175\":{\"id\":\"13593\",\"type\":\"GlyphRenderer\"},\"glyph176\":{\"id\":\"13597\",\"type\":\"GlyphRenderer\"},\"glyph177\":{\"id\":\"13601\",\"type\":\"GlyphRenderer\"},\"glyph178\":{\"id\":\"13605\",\"type\":\"GlyphRenderer\"},\"glyph179\":{\"id\":\"13609\",\"type\":\"GlyphRenderer\"},\"glyph18\":{\"id\":\"11642\",\"type\":\"GlyphRenderer\"},\"glyph180\":{\"id\":\"13613\",\"type\":\"GlyphRenderer\"},\"glyph181\":{\"id\":\"13617\",\"type\":\"GlyphRenderer\"},\"glyph182\":{\"id\":\"13621\",\"type\":\"GlyphRenderer\"},\"glyph183\":{\"id\":\"13625\",\"type\":\"GlyphRenderer\"},\"glyph184\":{\"id\":\"13629\",\"type\":\"GlyphRenderer\"},\"glyph185\":{\"id\":\"13633\",\"type\":\"GlyphRenderer\"},\"glyph186\":{\"id\":\"13637\",\"type\":\"GlyphRenderer\"},\"glyph187\":{\"id\":\"13641\",\"type\":\"GlyphRenderer\"},\"glyph188\":{\"id\":\"13645\",\"type\":\"GlyphRenderer\"},\"glyph189\":{\"id\":\"13649\",\"type\":\"GlyphRenderer\"},\"glyph19\":{\"id\":\"11646\",\"type\":\"GlyphRenderer\"},\"glyph190\":{\"id\":\"13653\",\"type\":\"GlyphRenderer\"},\"glyph191\":{\"id\":\"13657\",\"type\":\"GlyphRenderer\"},\"glyph192\":{\"id\":\"14142\",\"type\":\"GlyphRenderer\"},\"glyph193\":{\"id\":\"14146\",\"type\":\"GlyphRenderer\"},\"glyph194\":{\"id\":\"14150\",\"type\":\"GlyphRenderer\"},\"glyph195\":{\"id\":\"14154\",\"type\":\"GlyphRenderer\"},\"glyph196\":{\"id\":\"14158\",\"type\":\"GlyphRenderer\"},\"glyph197\":{\"id\":\"14162\",\"type\":\"GlyphRenderer\"},\"glyph198\":{\"id\":\"14166\",\"type\":\"GlyphRenderer\"},\"glyph199\":{\"id\":\"14170\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"11578\",\"type\":\"GlyphRenderer\"},\"glyph20\":{\"id\":\"11650\",\"type\":\"GlyphRenderer\"},\"glyph200\":{\"id\":\"14174\",\"type\":\"GlyphRenderer\"},\"glyph201\":{\"id\":\"14178\",\"type\":\"GlyphRenderer\"},\"glyph202\":{\"id\":\"14182\",\"type\":\"GlyphRenderer\"},\"glyph203\":{\"id\":\"14186\",\"type\":\"GlyphRenderer\"},\"glyph204\":{\"id\":\"14190\",\"type\":\"GlyphRenderer\"},\"glyph205\":{\"id\":\"14194\",\"type\":\"GlyphRenderer\"},\"glyph206\":{\"id\":\"14198\",\"type\":\"GlyphRenderer\"},\"glyph207\":{\"id\":\"14202\",\"type\":\"GlyphRenderer\"},\"glyph208\":{\"id\":\"14206\",\"type\":\"GlyphRenderer\"},\"glyph209\":{\"id\":\"14210\",\"type\":\"GlyphRenderer\"},\"glyph21\":{\"id\":\"11654\",\"type\":\"GlyphRenderer\"},\"glyph210\":{\"id\":\"14214\",\"type\":\"GlyphRenderer\"},\"glyph211\":{\"id\":\"14218\",\"type\":\"GlyphRenderer\"},\"glyph212\":{\"id\":\"14222\",\"type\":\"GlyphRenderer\"},\"glyph213\":{\"id\":\"14226\",\"type\":\"GlyphRenderer\"},\"glyph214\":{\"id\":\"14230\",\"type\":\"GlyphRenderer\"},\"glyph215\":{\"id\":\"14234\",\"type\":\"GlyphRenderer\"},\"glyph216\":{\"id\":\"14238\",\"type\":\"GlyphRenderer\"},\"glyph217\":{\"id\":\"14242\",\"type\":\"GlyphRenderer\"},\"glyph218\":{\"id\":\"14246\",\"type\":\"GlyphRenderer\"},\"glyph219\":{\"id\":\"14250\",\"type\":\"GlyphRenderer\"},\"glyph22\":{\"id\":\"11658\",\"type\":\"GlyphRenderer\"},\"glyph220\":{\"id\":\"14254\",\"type\":\"GlyphRenderer\"},\"glyph221\":{\"id\":\"14258\",\"type\":\"GlyphRenderer\"},\"glyph222\":{\"id\":\"14262\",\"type\":\"GlyphRenderer\"},\"glyph223\":{\"id\":\"14266\",\"type\":\"GlyphRenderer\"},\"glyph224\":{\"id\":\"14270\",\"type\":\"GlyphRenderer\"},\"glyph225\":{\"id\":\"14274\",\"type\":\"GlyphRenderer\"},\"glyph226\":{\"id\":\"14278\",\"type\":\"GlyphRenderer\"},\"glyph227\":{\"id\":\"14282\",\"type\":\"GlyphRenderer\"},\"glyph228\":{\"id\":\"14286\",\"type\":\"GlyphRenderer\"},\"glyph229\":{\"id\":\"14290\",\"type\":\"GlyphRenderer\"},\"glyph23\":{\"id\":\"11662\",\"type\":\"GlyphRenderer\"},\"glyph230\":{\"id\":\"14294\",\"type\":\"GlyphRenderer\"},\"glyph231\":{\"id\":\"14298\",\"type\":\"GlyphRenderer\"},\"glyph232\":{\"id\":\"14302\",\"type\":\"GlyphRenderer\"},\"glyph233\":{\"id\":\"14306\",\"type\":\"GlyphRenderer\"},\"glyph234\":{\"id\":\"14310\",\"type\":\"GlyphRenderer\"},\"glyph235\":{\"id\":\"14314\",\"type\":\"GlyphRenderer\"},\"glyph236\":{\"id\":\"14318\",\"type\":\"GlyphRenderer\"},\"glyph237\":{\"id\":\"14322\",\"type\":\"GlyphRenderer\"},\"glyph238\":{\"id\":\"14326\",\"type\":\"GlyphRenderer\"},\"glyph239\":{\"id\":\"14330\",\"type\":\"GlyphRenderer\"},\"glyph24\":{\"id\":\"11666\",\"type\":\"GlyphRenderer\"},\"glyph25\":{\"id\":\"11670\",\"type\":\"GlyphRenderer\"},\"glyph26\":{\"id\":\"11674\",\"type\":\"GlyphRenderer\"},\"glyph27\":{\"id\":\"11678\",\"type\":\"GlyphRenderer\"},\"glyph28\":{\"id\":\"11682\",\"type\":\"GlyphRenderer\"},\"glyph29\":{\"id\":\"11686\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"11582\",\"type\":\"GlyphRenderer\"},\"glyph30\":{\"id\":\"11690\",\"type\":\"GlyphRenderer\"},\"glyph31\":{\"id\":\"11694\",\"type\":\"GlyphRenderer\"},\"glyph32\":{\"id\":\"11698\",\"type\":\"GlyphRenderer\"},\"glyph33\":{\"id\":\"11702\",\"type\":\"GlyphRenderer\"},\"glyph34\":{\"id\":\"11706\",\"type\":\"GlyphRenderer\"},\"glyph35\":{\"id\":\"11710\",\"type\":\"GlyphRenderer\"},\"glyph36\":{\"id\":\"11714\",\"type\":\"GlyphRenderer\"},\"glyph37\":{\"id\":\"11718\",\"type\":\"GlyphRenderer\"},\"glyph38\":{\"id\":\"11722\",\"type\":\"GlyphRenderer\"},\"glyph39\":{\"id\":\"11726\",\"type\":\"GlyphRenderer\"},\"glyph4\":{\"id\":\"11586\",\"type\":\"GlyphRenderer\"},\"glyph40\":{\"id\":\"11730\",\"type\":\"GlyphRenderer\"},\"glyph41\":{\"id\":\"11734\",\"type\":\"GlyphRenderer\"},\"glyph42\":{\"id\":\"11738\",\"type\":\"GlyphRenderer\"},\"glyph43\":{\"id\":\"11742\",\"type\":\"GlyphRenderer\"},\"glyph44\":{\"id\":\"11746\",\"type\":\"GlyphRenderer\"},\"glyph45\":{\"id\":\"11750\",\"type\":\"GlyphRenderer\"},\"glyph46\":{\"id\":\"11754\",\"type\":\"GlyphRenderer\"},\"glyph47\":{\"id\":\"11758\",\"type\":\"GlyphRenderer\"},\"glyph48\":{\"id\":\"12183\",\"type\":\"GlyphRenderer\"},\"glyph49\":{\"id\":\"12187\",\"type\":\"GlyphRenderer\"},\"glyph5\":{\"id\":\"11590\",\"type\":\"GlyphRenderer\"},\"glyph50\":{\"id\":\"12191\",\"type\":\"GlyphRenderer\"},\"glyph51\":{\"id\":\"12195\",\"type\":\"GlyphRenderer\"},\"glyph52\":{\"id\":\"12199\",\"type\":\"GlyphRenderer\"},\"glyph53\":{\"id\":\"12203\",\"type\":\"GlyphRenderer\"},\"glyph54\":{\"id\":\"12207\",\"type\":\"GlyphRenderer\"},\"glyph55\":{\"id\":\"12211\",\"type\":\"GlyphRenderer\"},\"glyph56\":{\"id\":\"12215\",\"type\":\"GlyphRenderer\"},\"glyph57\":{\"id\":\"12219\",\"type\":\"GlyphRenderer\"},\"glyph58\":{\"id\":\"12223\",\"type\":\"GlyphRenderer\"},\"glyph59\":{\"id\":\"12227\",\"type\":\"GlyphRenderer\"},\"glyph6\":{\"id\":\"11594\",\"type\":\"GlyphRenderer\"},\"glyph60\":{\"id\":\"12231\",\"type\":\"GlyphRenderer\"},\"glyph61\":{\"id\":\"12235\",\"type\":\"GlyphRenderer\"},\"glyph62\":{\"id\":\"12239\",\"type\":\"GlyphRenderer\"},\"glyph63\":{\"id\":\"12243\",\"type\":\"GlyphRenderer\"},\"glyph64\":{\"id\":\"12247\",\"type\":\"GlyphRenderer\"},\"glyph65\":{\"id\":\"12251\",\"type\":\"GlyphRenderer\"},\"glyph66\":{\"id\":\"12255\",\"type\":\"GlyphRenderer\"},\"glyph67\":{\"id\":\"12259\",\"type\":\"GlyphRenderer\"},\"glyph68\":{\"id\":\"12263\",\"type\":\"GlyphRenderer\"},\"glyph69\":{\"id\":\"12267\",\"type\":\"GlyphRenderer\"},\"glyph7\":{\"id\":\"11598\",\"type\":\"GlyphRenderer\"},\"glyph70\":{\"id\":\"12271\",\"type\":\"GlyphRenderer\"},\"glyph71\":{\"id\":\"12275\",\"type\":\"GlyphRenderer\"},\"glyph72\":{\"id\":\"12279\",\"type\":\"GlyphRenderer\"},\"glyph73\":{\"id\":\"12283\",\"type\":\"GlyphRenderer\"},\"glyph74\":{\"id\":\"12287\",\"type\":\"GlyphRenderer\"},\"glyph75\":{\"id\":\"12291\",\"type\":\"GlyphRenderer\"},\"glyph76\":{\"id\":\"12295\",\"type\":\"GlyphRenderer\"},\"glyph77\":{\"id\":\"12299\",\"type\":\"GlyphRenderer\"},\"glyph78\":{\"id\":\"12303\",\"type\":\"GlyphRenderer\"},\"glyph79\":{\"id\":\"12307\",\"type\":\"GlyphRenderer\"},\"glyph8\":{\"id\":\"11602\",\"type\":\"GlyphRenderer\"},\"glyph80\":{\"id\":\"12311\",\"type\":\"GlyphRenderer\"},\"glyph81\":{\"id\":\"12315\",\"type\":\"GlyphRenderer\"},\"glyph82\":{\"id\":\"12319\",\"type\":\"GlyphRenderer\"},\"glyph83\":{\"id\":\"12323\",\"type\":\"GlyphRenderer\"},\"glyph84\":{\"id\":\"12327\",\"type\":\"GlyphRenderer\"},\"glyph85\":{\"id\":\"12331\",\"type\":\"GlyphRenderer\"},\"glyph86\":{\"id\":\"12335\",\"type\":\"GlyphRenderer\"},\"glyph87\":{\"id\":\"12339\",\"type\":\"GlyphRenderer\"},\"glyph88\":{\"id\":\"12343\",\"type\":\"GlyphRenderer\"},\"glyph89\":{\"id\":\"12347\",\"type\":\"GlyphRenderer\"},\"glyph9\":{\"id\":\"11606\",\"type\":\"GlyphRenderer\"},\"glyph90\":{\"id\":\"12351\",\"type\":\"GlyphRenderer\"},\"glyph91\":{\"id\":\"12355\",\"type\":\"GlyphRenderer\"},\"glyph92\":{\"id\":\"12359\",\"type\":\"GlyphRenderer\"},\"glyph93\":{\"id\":\"12363\",\"type\":\"GlyphRenderer\"},\"glyph94\":{\"id\":\"12367\",\"type\":\"GlyphRenderer\"},\"glyph95\":{\"id\":\"12371\",\"type\":\"GlyphRenderer\"},\"glyph96\":{\"id\":\"12816\",\"type\":\"GlyphRenderer\"},\"glyph97\":{\"id\":\"12820\",\"type\":\"GlyphRenderer\"},\"glyph98\":{\"id\":\"12824\",\"type\":\"GlyphRenderer\"},\"glyph99\":{\"id\":\"12828\",\"type\":\"GlyphRenderer\"},\"time_slider\":{\"id\":\"14594\",\"type\":\"Slider\"}},\"code\":\"checkbox.active = [0, 1, 2, 3];var glyphs = [glyph0, glyph1, glyph2, glyph3, glyph4, glyph5, glyph6, glyph7, glyph8, glyph9, glyph10, glyph11, glyph12, glyph13, glyph14, glyph15, glyph16, glyph17, glyph18, glyph19, glyph20, glyph21, glyph22, glyph23, glyph24, glyph25, glyph26, glyph27, glyph28, glyph29, glyph30, glyph31, glyph32, glyph33, glyph34, glyph35, glyph36, glyph37, glyph38, glyph39, glyph40, glyph41, glyph42, glyph43, glyph44, glyph45, glyph46, glyph47, glyph48, glyph49, glyph50, glyph51, glyph52, glyph53, glyph54, glyph55, glyph56, glyph57, glyph58, glyph59, glyph60, glyph61, glyph62, glyph63, glyph64, glyph65, glyph66, glyph67, glyph68, glyph69, glyph70, glyph71, glyph72, glyph73, glyph74, glyph75, glyph76, glyph77, glyph78, glyph79, glyph80, glyph81, glyph82, glyph83, glyph84, glyph85, glyph86, glyph87, glyph88, glyph89, glyph90, glyph91, glyph92, glyph93, glyph94, glyph95, glyph96, glyph97, glyph98, glyph99, glyph100, glyph101, glyph102, glyph103, glyph104, glyph105, glyph106, glyph107, glyph108, glyph109, glyph110, glyph111, glyph112, glyph113, glyph114, glyph115, glyph116, glyph117, glyph118, glyph119, glyph120, glyph121, glyph122, glyph123, glyph124, glyph125, glyph126, glyph127, glyph128, glyph129, glyph130, glyph131, glyph132, glyph133, glyph134, glyph135, glyph136, glyph137, glyph138, glyph139, glyph140, glyph141, glyph142, glyph143, glyph144, glyph145, glyph146, glyph147, glyph148, glyph149, glyph150, glyph151, glyph152, glyph153, glyph154, glyph155, glyph156, glyph157, glyph158, glyph159, glyph160, glyph161, glyph162, glyph163, glyph164, glyph165, glyph166, glyph167, glyph168, glyph169, glyph170, glyph171, glyph172, glyph173, glyph174, glyph175, glyph176, glyph177, glyph178, glyph179, glyph180, glyph181, glyph182, glyph183, glyph184, glyph185, glyph186, glyph187, glyph188, glyph189, glyph190, glyph191, glyph192, glyph193, glyph194, glyph195, glyph196, glyph197, glyph198, glyph199, glyph200, glyph201, glyph202, glyph203, glyph204, glyph205, glyph206, glyph207, glyph208, glyph209, glyph210, glyph211, glyph212, glyph213, glyph214, glyph215, glyph216, glyph217, glyph218, glyph219, glyph220, glyph221, glyph222, glyph223, glyph224, glyph225, glyph226, glyph227, glyph228, glyph229, glyph230, glyph231, glyph232, glyph233, glyph234, glyph235, glyph236, glyph237, glyph238, glyph239];var overtime = [[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191],[192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239]];var runs = [[0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236],[1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237],[2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238],[3,7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83,87,91,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,163,167,171,175,179,183,187,191,195,199,203,207,211,215,219,223,227,231,235,239]];\\n glyphs.forEach(function(g) {\\n g.visible = false;\\n })\\n // union function\\n function union_arrays(x, y) {\\n var obj = {};\\n for (var i = x.length-1; i >= 0; -- i)\\n obj[x[i]] = x[i];\\n for (var i = y.length-1; i >= 0; -- i)\\n obj[y[i]] = y[i];\\n var res = []\\n for (var k in obj) {\\n if (obj.hasOwnProperty(k)) // <-- optional\\n res.push(obj[k]);\\n }\\n return res;\\n }\\n console.log(\\\"Timeslider: \\\" + time_slider.value);\\n console.log(\\\"Checkbox: \\\" + checkbox.active);var slider_labels = ['41.46', '42.74', '76.94', '141.07', '212.23'];console.log(\\\"Detected slider_labels: \\\" + slider_labels);time_slider.title = \\\"Until wallclocktime \\\" + slider_labels[time_slider.value - 1] + \\\". Step no.\\\"; \\n var activate = [];\\n // if we want multiple checkboxes at the same time, we need to combine the arrays\\n checkbox.active.forEach(function(c) {\\n activate = union_arrays(activate, runs[c]);\\n })\\n // now the intersection of timeslider-activated and checkbox-activated\\n activate = activate.filter(value => -1 !== overtime[time_slider.value - 1].indexOf(value));\\n activate.forEach(function(idx) {\\n glyphs[idx].visible = true;\\n })\\n \"},\"id\":\"14598\",\"type\":\"CustomJS\"},{\"attributes\":{\"filters\":[{\"id\":\"12773\",\"type\":\"GroupFilter\"},{\"id\":\"12774\",\"type\":\"GroupFilter\"},{\"id\":\"12775\",\"type\":\"GroupFilter\"},{\"id\":\"12776\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12777\",\"type\":\"CDSView\"},{\"attributes\":{\"children\":[{\"id\":\"14599\",\"type\":\"Button\"}],\"width\":100},\"id\":\"14609\",\"type\":\"WidgetBox\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12763\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12781\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"14595\",\"type\":\"CheckboxButtonGroup\"},\"glyph0\":{\"id\":\"11570\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"11574\",\"type\":\"GlyphRenderer\"},\"glyph10\":{\"id\":\"11610\",\"type\":\"GlyphRenderer\"},\"glyph100\":{\"id\":\"12832\",\"type\":\"GlyphRenderer\"},\"glyph101\":{\"id\":\"12836\",\"type\":\"GlyphRenderer\"},\"glyph102\":{\"id\":\"12840\",\"type\":\"GlyphRenderer\"},\"glyph103\":{\"id\":\"12844\",\"type\":\"GlyphRenderer\"},\"glyph104\":{\"id\":\"12848\",\"type\":\"GlyphRenderer\"},\"glyph105\":{\"id\":\"12852\",\"type\":\"GlyphRenderer\"},\"glyph106\":{\"id\":\"12856\",\"type\":\"GlyphRenderer\"},\"glyph107\":{\"id\":\"12860\",\"type\":\"GlyphRenderer\"},\"glyph108\":{\"id\":\"12864\",\"type\":\"GlyphRenderer\"},\"glyph109\":{\"id\":\"12868\",\"type\":\"GlyphRenderer\"},\"glyph11\":{\"id\":\"11614\",\"type\":\"GlyphRenderer\"},\"glyph110\":{\"id\":\"12872\",\"type\":\"GlyphRenderer\"},\"glyph111\":{\"id\":\"12876\",\"type\":\"GlyphRenderer\"},\"glyph112\":{\"id\":\"12880\",\"type\":\"GlyphRenderer\"},\"glyph113\":{\"id\":\"12884\",\"type\":\"GlyphRenderer\"},\"glyph114\":{\"id\":\"12888\",\"type\":\"GlyphRenderer\"},\"glyph115\":{\"id\":\"12892\",\"type\":\"GlyphRenderer\"},\"glyph116\":{\"id\":\"12896\",\"type\":\"GlyphRenderer\"},\"glyph117\":{\"id\":\"12900\",\"type\":\"GlyphRenderer\"},\"glyph118\":{\"id\":\"12904\",\"type\":\"GlyphRenderer\"},\"glyph119\":{\"id\":\"12908\",\"type\":\"GlyphRenderer\"},\"glyph12\":{\"id\":\"11618\",\"type\":\"GlyphRenderer\"},\"glyph120\":{\"id\":\"12912\",\"type\":\"GlyphRenderer\"},\"glyph121\":{\"id\":\"12916\",\"type\":\"GlyphRenderer\"},\"glyph122\":{\"id\":\"12920\",\"type\":\"GlyphRenderer\"},\"glyph123\":{\"id\":\"12924\",\"type\":\"GlyphRenderer\"},\"glyph124\":{\"id\":\"12928\",\"type\":\"GlyphRenderer\"},\"glyph125\":{\"id\":\"12932\",\"type\":\"GlyphRenderer\"},\"glyph126\":{\"id\":\"12936\",\"type\":\"GlyphRenderer\"},\"glyph127\":{\"id\":\"12940\",\"type\":\"GlyphRenderer\"},\"glyph128\":{\"id\":\"12944\",\"type\":\"GlyphRenderer\"},\"glyph129\":{\"id\":\"12948\",\"type\":\"GlyphRenderer\"},\"glyph13\":{\"id\":\"11622\",\"type\":\"GlyphRenderer\"},\"glyph130\":{\"id\":\"12952\",\"type\":\"GlyphRenderer\"},\"glyph131\":{\"id\":\"12956\",\"type\":\"GlyphRenderer\"},\"glyph132\":{\"id\":\"12960\",\"type\":\"GlyphRenderer\"},\"glyph133\":{\"id\":\"12964\",\"type\":\"GlyphRenderer\"},\"glyph134\":{\"id\":\"12968\",\"type\":\"GlyphRenderer\"},\"glyph135\":{\"id\":\"12972\",\"type\":\"GlyphRenderer\"},\"glyph136\":{\"id\":\"12976\",\"type\":\"GlyphRenderer\"},\"glyph137\":{\"id\":\"12980\",\"type\":\"GlyphRenderer\"},\"glyph138\":{\"id\":\"12984\",\"type\":\"GlyphRenderer\"},\"glyph139\":{\"id\":\"12988\",\"type\":\"GlyphRenderer\"},\"glyph14\":{\"id\":\"11626\",\"type\":\"GlyphRenderer\"},\"glyph140\":{\"id\":\"12992\",\"type\":\"GlyphRenderer\"},\"glyph141\":{\"id\":\"12996\",\"type\":\"GlyphRenderer\"},\"glyph142\":{\"id\":\"13000\",\"type\":\"GlyphRenderer\"},\"glyph143\":{\"id\":\"13004\",\"type\":\"GlyphRenderer\"},\"glyph144\":{\"id\":\"13469\",\"type\":\"GlyphRenderer\"},\"glyph145\":{\"id\":\"13473\",\"type\":\"GlyphRenderer\"},\"glyph146\":{\"id\":\"13477\",\"type\":\"GlyphRenderer\"},\"glyph147\":{\"id\":\"13481\",\"type\":\"GlyphRenderer\"},\"glyph148\":{\"id\":\"13485\",\"type\":\"GlyphRenderer\"},\"glyph149\":{\"id\":\"13489\",\"type\":\"GlyphRenderer\"},\"glyph15\":{\"id\":\"11630\",\"type\":\"GlyphRenderer\"},\"glyph150\":{\"id\":\"13493\",\"type\":\"GlyphRenderer\"},\"glyph151\":{\"id\":\"13497\",\"type\":\"GlyphRenderer\"},\"glyph152\":{\"id\":\"13501\",\"type\":\"GlyphRenderer\"},\"glyph153\":{\"id\":\"13505\",\"type\":\"GlyphRenderer\"},\"glyph154\":{\"id\":\"13509\",\"type\":\"GlyphRenderer\"},\"glyph155\":{\"id\":\"13513\",\"type\":\"GlyphRenderer\"},\"glyph156\":{\"id\":\"13517\",\"type\":\"GlyphRenderer\"},\"glyph157\":{\"id\":\"13521\",\"type\":\"GlyphRenderer\"},\"glyph158\":{\"id\":\"13525\",\"type\":\"GlyphRenderer\"},\"glyph159\":{\"id\":\"13529\",\"type\":\"GlyphRenderer\"},\"glyph16\":{\"id\":\"11634\",\"type\":\"GlyphRenderer\"},\"glyph160\":{\"id\":\"13533\",\"type\":\"GlyphRenderer\"},\"glyph161\":{\"id\":\"13537\",\"type\":\"GlyphRenderer\"},\"glyph162\":{\"id\":\"13541\",\"type\":\"GlyphRenderer\"},\"glyph163\":{\"id\":\"13545\",\"type\":\"GlyphRenderer\"},\"glyph164\":{\"id\":\"13549\",\"type\":\"GlyphRenderer\"},\"glyph165\":{\"id\":\"13553\",\"type\":\"GlyphRenderer\"},\"glyph166\":{\"id\":\"13557\",\"type\":\"GlyphRenderer\"},\"glyph167\":{\"id\":\"13561\",\"type\":\"GlyphRenderer\"},\"glyph168\":{\"id\":\"13565\",\"type\":\"GlyphRenderer\"},\"glyph169\":{\"id\":\"13569\",\"type\":\"GlyphRenderer\"},\"glyph17\":{\"id\":\"11638\",\"type\":\"GlyphRenderer\"},\"glyph170\":{\"id\":\"13573\",\"type\":\"GlyphRenderer\"},\"glyph171\":{\"id\":\"13577\",\"type\":\"GlyphRenderer\"},\"glyph172\":{\"id\":\"13581\",\"type\":\"GlyphRenderer\"},\"glyph173\":{\"id\":\"13585\",\"type\":\"GlyphRenderer\"},\"glyph174\":{\"id\":\"13589\",\"type\":\"GlyphRenderer\"},\"glyph175\":{\"id\":\"13593\",\"type\":\"GlyphRenderer\"},\"glyph176\":{\"id\":\"13597\",\"type\":\"GlyphRenderer\"},\"glyph177\":{\"id\":\"13601\",\"type\":\"GlyphRenderer\"},\"glyph178\":{\"id\":\"13605\",\"type\":\"GlyphRenderer\"},\"glyph179\":{\"id\":\"13609\",\"type\":\"GlyphRenderer\"},\"glyph18\":{\"id\":\"11642\",\"type\":\"GlyphRenderer\"},\"glyph180\":{\"id\":\"13613\",\"type\":\"GlyphRenderer\"},\"glyph181\":{\"id\":\"13617\",\"type\":\"GlyphRenderer\"},\"glyph182\":{\"id\":\"13621\",\"type\":\"GlyphRenderer\"},\"glyph183\":{\"id\":\"13625\",\"type\":\"GlyphRenderer\"},\"glyph184\":{\"id\":\"13629\",\"type\":\"GlyphRenderer\"},\"glyph185\":{\"id\":\"13633\",\"type\":\"GlyphRenderer\"},\"glyph186\":{\"id\":\"13637\",\"type\":\"GlyphRenderer\"},\"glyph187\":{\"id\":\"13641\",\"type\":\"GlyphRenderer\"},\"glyph188\":{\"id\":\"13645\",\"type\":\"GlyphRenderer\"},\"glyph189\":{\"id\":\"13649\",\"type\":\"GlyphRenderer\"},\"glyph19\":{\"id\":\"11646\",\"type\":\"GlyphRenderer\"},\"glyph190\":{\"id\":\"13653\",\"type\":\"GlyphRenderer\"},\"glyph191\":{\"id\":\"13657\",\"type\":\"GlyphRenderer\"},\"glyph192\":{\"id\":\"14142\",\"type\":\"GlyphRenderer\"},\"glyph193\":{\"id\":\"14146\",\"type\":\"GlyphRenderer\"},\"glyph194\":{\"id\":\"14150\",\"type\":\"GlyphRenderer\"},\"glyph195\":{\"id\":\"14154\",\"type\":\"GlyphRenderer\"},\"glyph196\":{\"id\":\"14158\",\"type\":\"GlyphRenderer\"},\"glyph197\":{\"id\":\"14162\",\"type\":\"GlyphRenderer\"},\"glyph198\":{\"id\":\"14166\",\"type\":\"GlyphRenderer\"},\"glyph199\":{\"id\":\"14170\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"11578\",\"type\":\"GlyphRenderer\"},\"glyph20\":{\"id\":\"11650\",\"type\":\"GlyphRenderer\"},\"glyph200\":{\"id\":\"14174\",\"type\":\"GlyphRenderer\"},\"glyph201\":{\"id\":\"14178\",\"type\":\"GlyphRenderer\"},\"glyph202\":{\"id\":\"14182\",\"type\":\"GlyphRenderer\"},\"glyph203\":{\"id\":\"14186\",\"type\":\"GlyphRenderer\"},\"glyph204\":{\"id\":\"14190\",\"type\":\"GlyphRenderer\"},\"glyph205\":{\"id\":\"14194\",\"type\":\"GlyphRenderer\"},\"glyph206\":{\"id\":\"14198\",\"type\":\"GlyphRenderer\"},\"glyph207\":{\"id\":\"14202\",\"type\":\"GlyphRenderer\"},\"glyph208\":{\"id\":\"14206\",\"type\":\"GlyphRenderer\"},\"glyph209\":{\"id\":\"14210\",\"type\":\"GlyphRenderer\"},\"glyph21\":{\"id\":\"11654\",\"type\":\"GlyphRenderer\"},\"glyph210\":{\"id\":\"14214\",\"type\":\"GlyphRenderer\"},\"glyph211\":{\"id\":\"14218\",\"type\":\"GlyphRenderer\"},\"glyph212\":{\"id\":\"14222\",\"type\":\"GlyphRenderer\"},\"glyph213\":{\"id\":\"14226\",\"type\":\"GlyphRenderer\"},\"glyph214\":{\"id\":\"14230\",\"type\":\"GlyphRenderer\"},\"glyph215\":{\"id\":\"14234\",\"type\":\"GlyphRenderer\"},\"glyph216\":{\"id\":\"14238\",\"type\":\"GlyphRenderer\"},\"glyph217\":{\"id\":\"14242\",\"type\":\"GlyphRenderer\"},\"glyph218\":{\"id\":\"14246\",\"type\":\"GlyphRenderer\"},\"glyph219\":{\"id\":\"14250\",\"type\":\"GlyphRenderer\"},\"glyph22\":{\"id\":\"11658\",\"type\":\"GlyphRenderer\"},\"glyph220\":{\"id\":\"14254\",\"type\":\"GlyphRenderer\"},\"glyph221\":{\"id\":\"14258\",\"type\":\"GlyphRenderer\"},\"glyph222\":{\"id\":\"14262\",\"type\":\"GlyphRenderer\"},\"glyph223\":{\"id\":\"14266\",\"type\":\"GlyphRenderer\"},\"glyph224\":{\"id\":\"14270\",\"type\":\"GlyphRenderer\"},\"glyph225\":{\"id\":\"14274\",\"type\":\"GlyphRenderer\"},\"glyph226\":{\"id\":\"14278\",\"type\":\"GlyphRenderer\"},\"glyph227\":{\"id\":\"14282\",\"type\":\"GlyphRenderer\"},\"glyph228\":{\"id\":\"14286\",\"type\":\"GlyphRenderer\"},\"glyph229\":{\"id\":\"14290\",\"type\":\"GlyphRenderer\"},\"glyph23\":{\"id\":\"11662\",\"type\":\"GlyphRenderer\"},\"glyph230\":{\"id\":\"14294\",\"type\":\"GlyphRenderer\"},\"glyph231\":{\"id\":\"14298\",\"type\":\"GlyphRenderer\"},\"glyph232\":{\"id\":\"14302\",\"type\":\"GlyphRenderer\"},\"glyph233\":{\"id\":\"14306\",\"type\":\"GlyphRenderer\"},\"glyph234\":{\"id\":\"14310\",\"type\":\"GlyphRenderer\"},\"glyph235\":{\"id\":\"14314\",\"type\":\"GlyphRenderer\"},\"glyph236\":{\"id\":\"14318\",\"type\":\"GlyphRenderer\"},\"glyph237\":{\"id\":\"14322\",\"type\":\"GlyphRenderer\"},\"glyph238\":{\"id\":\"14326\",\"type\":\"GlyphRenderer\"},\"glyph239\":{\"id\":\"14330\",\"type\":\"GlyphRenderer\"},\"glyph24\":{\"id\":\"11666\",\"type\":\"GlyphRenderer\"},\"glyph25\":{\"id\":\"11670\",\"type\":\"GlyphRenderer\"},\"glyph26\":{\"id\":\"11674\",\"type\":\"GlyphRenderer\"},\"glyph27\":{\"id\":\"11678\",\"type\":\"GlyphRenderer\"},\"glyph28\":{\"id\":\"11682\",\"type\":\"GlyphRenderer\"},\"glyph29\":{\"id\":\"11686\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"11582\",\"type\":\"GlyphRenderer\"},\"glyph30\":{\"id\":\"11690\",\"type\":\"GlyphRenderer\"},\"glyph31\":{\"id\":\"11694\",\"type\":\"GlyphRenderer\"},\"glyph32\":{\"id\":\"11698\",\"type\":\"GlyphRenderer\"},\"glyph33\":{\"id\":\"11702\",\"type\":\"GlyphRenderer\"},\"glyph34\":{\"id\":\"11706\",\"type\":\"GlyphRenderer\"},\"glyph35\":{\"id\":\"11710\",\"type\":\"GlyphRenderer\"},\"glyph36\":{\"id\":\"11714\",\"type\":\"GlyphRenderer\"},\"glyph37\":{\"id\":\"11718\",\"type\":\"GlyphRenderer\"},\"glyph38\":{\"id\":\"11722\",\"type\":\"GlyphRenderer\"},\"glyph39\":{\"id\":\"11726\",\"type\":\"GlyphRenderer\"},\"glyph4\":{\"id\":\"11586\",\"type\":\"GlyphRenderer\"},\"glyph40\":{\"id\":\"11730\",\"type\":\"GlyphRenderer\"},\"glyph41\":{\"id\":\"11734\",\"type\":\"GlyphRenderer\"},\"glyph42\":{\"id\":\"11738\",\"type\":\"GlyphRenderer\"},\"glyph43\":{\"id\":\"11742\",\"type\":\"GlyphRenderer\"},\"glyph44\":{\"id\":\"11746\",\"type\":\"GlyphRenderer\"},\"glyph45\":{\"id\":\"11750\",\"type\":\"GlyphRenderer\"},\"glyph46\":{\"id\":\"11754\",\"type\":\"GlyphRenderer\"},\"glyph47\":{\"id\":\"11758\",\"type\":\"GlyphRenderer\"},\"glyph48\":{\"id\":\"12183\",\"type\":\"GlyphRenderer\"},\"glyph49\":{\"id\":\"12187\",\"type\":\"GlyphRenderer\"},\"glyph5\":{\"id\":\"11590\",\"type\":\"GlyphRenderer\"},\"glyph50\":{\"id\":\"12191\",\"type\":\"GlyphRenderer\"},\"glyph51\":{\"id\":\"12195\",\"type\":\"GlyphRenderer\"},\"glyph52\":{\"id\":\"12199\",\"type\":\"GlyphRenderer\"},\"glyph53\":{\"id\":\"12203\",\"type\":\"GlyphRenderer\"},\"glyph54\":{\"id\":\"12207\",\"type\":\"GlyphRenderer\"},\"glyph55\":{\"id\":\"12211\",\"type\":\"GlyphRenderer\"},\"glyph56\":{\"id\":\"12215\",\"type\":\"GlyphRenderer\"},\"glyph57\":{\"id\":\"12219\",\"type\":\"GlyphRenderer\"},\"glyph58\":{\"id\":\"12223\",\"type\":\"GlyphRenderer\"},\"glyph59\":{\"id\":\"12227\",\"type\":\"GlyphRenderer\"},\"glyph6\":{\"id\":\"11594\",\"type\":\"GlyphRenderer\"},\"glyph60\":{\"id\":\"12231\",\"type\":\"GlyphRenderer\"},\"glyph61\":{\"id\":\"12235\",\"type\":\"GlyphRenderer\"},\"glyph62\":{\"id\":\"12239\",\"type\":\"GlyphRenderer\"},\"glyph63\":{\"id\":\"12243\",\"type\":\"GlyphRenderer\"},\"glyph64\":{\"id\":\"12247\",\"type\":\"GlyphRenderer\"},\"glyph65\":{\"id\":\"12251\",\"type\":\"GlyphRenderer\"},\"glyph66\":{\"id\":\"12255\",\"type\":\"GlyphRenderer\"},\"glyph67\":{\"id\":\"12259\",\"type\":\"GlyphRenderer\"},\"glyph68\":{\"id\":\"12263\",\"type\":\"GlyphRenderer\"},\"glyph69\":{\"id\":\"12267\",\"type\":\"GlyphRenderer\"},\"glyph7\":{\"id\":\"11598\",\"type\":\"GlyphRenderer\"},\"glyph70\":{\"id\":\"12271\",\"type\":\"GlyphRenderer\"},\"glyph71\":{\"id\":\"12275\",\"type\":\"GlyphRenderer\"},\"glyph72\":{\"id\":\"12279\",\"type\":\"GlyphRenderer\"},\"glyph73\":{\"id\":\"12283\",\"type\":\"GlyphRenderer\"},\"glyph74\":{\"id\":\"12287\",\"type\":\"GlyphRenderer\"},\"glyph75\":{\"id\":\"12291\",\"type\":\"GlyphRenderer\"},\"glyph76\":{\"id\":\"12295\",\"type\":\"GlyphRenderer\"},\"glyph77\":{\"id\":\"12299\",\"type\":\"GlyphRenderer\"},\"glyph78\":{\"id\":\"12303\",\"type\":\"GlyphRenderer\"},\"glyph79\":{\"id\":\"12307\",\"type\":\"GlyphRenderer\"},\"glyph8\":{\"id\":\"11602\",\"type\":\"GlyphRenderer\"},\"glyph80\":{\"id\":\"12311\",\"type\":\"GlyphRenderer\"},\"glyph81\":{\"id\":\"12315\",\"type\":\"GlyphRenderer\"},\"glyph82\":{\"id\":\"12319\",\"type\":\"GlyphRenderer\"},\"glyph83\":{\"id\":\"12323\",\"type\":\"GlyphRenderer\"},\"glyph84\":{\"id\":\"12327\",\"type\":\"GlyphRenderer\"},\"glyph85\":{\"id\":\"12331\",\"type\":\"GlyphRenderer\"},\"glyph86\":{\"id\":\"12335\",\"type\":\"GlyphRenderer\"},\"glyph87\":{\"id\":\"12339\",\"type\":\"GlyphRenderer\"},\"glyph88\":{\"id\":\"12343\",\"type\":\"GlyphRenderer\"},\"glyph89\":{\"id\":\"12347\",\"type\":\"GlyphRenderer\"},\"glyph9\":{\"id\":\"11606\",\"type\":\"GlyphRenderer\"},\"glyph90\":{\"id\":\"12351\",\"type\":\"GlyphRenderer\"},\"glyph91\":{\"id\":\"12355\",\"type\":\"GlyphRenderer\"},\"glyph92\":{\"id\":\"12359\",\"type\":\"GlyphRenderer\"},\"glyph93\":{\"id\":\"12363\",\"type\":\"GlyphRenderer\"},\"glyph94\":{\"id\":\"12367\",\"type\":\"GlyphRenderer\"},\"glyph95\":{\"id\":\"12371\",\"type\":\"GlyphRenderer\"},\"glyph96\":{\"id\":\"12816\",\"type\":\"GlyphRenderer\"},\"glyph97\":{\"id\":\"12820\",\"type\":\"GlyphRenderer\"},\"glyph98\":{\"id\":\"12824\",\"type\":\"GlyphRenderer\"},\"glyph99\":{\"id\":\"12828\",\"type\":\"GlyphRenderer\"},\"time_slider\":{\"id\":\"14594\",\"type\":\"Slider\"}},\"code\":\"checkbox.active = [];var glyphs = [glyph0, glyph1, glyph2, glyph3, glyph4, glyph5, glyph6, glyph7, glyph8, glyph9, glyph10, glyph11, glyph12, glyph13, glyph14, glyph15, glyph16, glyph17, glyph18, glyph19, glyph20, glyph21, glyph22, glyph23, glyph24, glyph25, glyph26, glyph27, glyph28, glyph29, glyph30, glyph31, glyph32, glyph33, glyph34, glyph35, glyph36, glyph37, glyph38, glyph39, glyph40, glyph41, glyph42, glyph43, glyph44, glyph45, glyph46, glyph47, glyph48, glyph49, glyph50, glyph51, glyph52, glyph53, glyph54, glyph55, glyph56, glyph57, glyph58, glyph59, glyph60, glyph61, glyph62, glyph63, glyph64, glyph65, glyph66, glyph67, glyph68, glyph69, glyph70, glyph71, glyph72, glyph73, glyph74, glyph75, glyph76, glyph77, glyph78, glyph79, glyph80, glyph81, glyph82, glyph83, glyph84, glyph85, glyph86, glyph87, glyph88, glyph89, glyph90, glyph91, glyph92, glyph93, glyph94, glyph95, glyph96, glyph97, glyph98, glyph99, glyph100, glyph101, glyph102, glyph103, glyph104, glyph105, glyph106, glyph107, glyph108, glyph109, glyph110, glyph111, glyph112, glyph113, glyph114, glyph115, glyph116, glyph117, glyph118, glyph119, glyph120, glyph121, glyph122, glyph123, glyph124, glyph125, glyph126, glyph127, glyph128, glyph129, glyph130, glyph131, glyph132, glyph133, glyph134, glyph135, glyph136, glyph137, glyph138, glyph139, glyph140, glyph141, glyph142, glyph143, glyph144, glyph145, glyph146, glyph147, glyph148, glyph149, glyph150, glyph151, glyph152, glyph153, glyph154, glyph155, glyph156, glyph157, glyph158, glyph159, glyph160, glyph161, glyph162, glyph163, glyph164, glyph165, glyph166, glyph167, glyph168, glyph169, glyph170, glyph171, glyph172, glyph173, glyph174, glyph175, glyph176, glyph177, glyph178, glyph179, glyph180, glyph181, glyph182, glyph183, glyph184, glyph185, glyph186, glyph187, glyph188, glyph189, glyph190, glyph191, glyph192, glyph193, glyph194, glyph195, glyph196, glyph197, glyph198, glyph199, glyph200, glyph201, glyph202, glyph203, glyph204, glyph205, glyph206, glyph207, glyph208, glyph209, glyph210, glyph211, glyph212, glyph213, glyph214, glyph215, glyph216, glyph217, glyph218, glyph219, glyph220, glyph221, glyph222, glyph223, glyph224, glyph225, glyph226, glyph227, glyph228, glyph229, glyph230, glyph231, glyph232, glyph233, glyph234, glyph235, glyph236, glyph237, glyph238, glyph239];var overtime = [[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191],[192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239]];var runs = [[0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236],[1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237],[2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238],[3,7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83,87,91,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,163,167,171,175,179,183,187,191,195,199,203,207,211,215,219,223,227,231,235,239]];\\n glyphs.forEach(function(g) {\\n g.visible = false;\\n })\\n // union function\\n function union_arrays(x, y) {\\n var obj = {};\\n for (var i = x.length-1; i >= 0; -- i)\\n obj[x[i]] = x[i];\\n for (var i = y.length-1; i >= 0; -- i)\\n obj[y[i]] = y[i];\\n var res = []\\n for (var k in obj) {\\n if (obj.hasOwnProperty(k)) // <-- optional\\n res.push(obj[k]);\\n }\\n return res;\\n }\\n console.log(\\\"Timeslider: \\\" + time_slider.value);\\n console.log(\\\"Checkbox: \\\" + checkbox.active);var slider_labels = ['41.46', '42.74', '76.94', '141.07', '212.23'];console.log(\\\"Detected slider_labels: \\\" + slider_labels);time_slider.title = \\\"Until wallclocktime \\\" + slider_labels[time_slider.value - 1] + \\\". Step no.\\\"; \\n var activate = [];\\n // if we want multiple checkboxes at the same time, we need to combine the arrays\\n checkbox.active.forEach(function(c) {\\n activate = union_arrays(activate, runs[c]);\\n })\\n // now the intersection of timeslider-activated and checkbox-activated\\n activate = activate.filter(value => -1 !== overtime[time_slider.value - 1].indexOf(value));\\n activate.forEach(function(idx) {\\n glyphs[idx].visible = true;\\n })\\n \"},\"id\":\"14600\",\"type\":\"CustomJS\"},{\"attributes\":{\"filters\":[{\"id\":\"12758\",\"type\":\"GroupFilter\"},{\"id\":\"12759\",\"type\":\"GroupFilter\"},{\"id\":\"12760\",\"type\":\"GroupFilter\"},{\"id\":\"12761\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12762\",\"type\":\"CDSView\"},{\"attributes\":{\"args\":{\"colormapper\":{\"id\":\"11303\",\"type\":\"LinearColorMapper\"},\"glyph0\":{\"id\":\"11307\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"11312\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"11317\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"11322\",\"type\":\"GlyphRenderer\"}},\"code\":\"var len_labels = 4,glyphs = [ glyph0,glyph1,glyph2,glyph3],mins = [0.054565000000000016, 0.03125666666666668, 0.024544166666666672, 0.015045801948051959],maxs = [0.8995867000000001, 0.8942918856413712, 0.8935998210426346, 0.5807446514467143];\\n for (i = 0; i < len_labels; i++) {\\n if (cb_obj.active === i) {\\n // console.log('Setting to true: ' + i);\\n glyphs[i].visible = true;\\n colormapper.low = mins[i];\\n colormapper.high = maxs[i];\\n } else {\\n // console.log('Setting to false: ' + i);\\n glyphs[i].visible = false;\\n }\\n }\\n \"},\"id\":\"14602\",\"type\":\"CustomJS\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12783\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12774\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":{\"id\":\"14598\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"All\"},\"id\":\"14599\",\"type\":\"Button\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12761\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"children\":[{\"id\":\"14595\",\"type\":\"CheckboxButtonGroup\"}]},\"id\":\"14608\",\"type\":\"WidgetBox\"},{\"attributes\":{\"children\":[{\"id\":\"14601\",\"type\":\"Button\"}],\"width\":100},\"id\":\"14610\",\"type\":\"WidgetBox\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12760\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12763\",\"type\":\"GroupFilter\"},{\"id\":\"12764\",\"type\":\"GroupFilter\"},{\"id\":\"12765\",\"type\":\"GroupFilter\"},{\"id\":\"12766\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12767\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12775\",\"type\":\"GroupFilter\"},{\"attributes\":{\"children\":[{\"id\":\"14594\",\"type\":\"Slider\"}]},\"id\":\"14605\",\"type\":\"WidgetBox\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,true,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12766\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12783\",\"type\":\"GroupFilter\"},{\"id\":\"12784\",\"type\":\"GroupFilter\"},{\"id\":\"12785\",\"type\":\"GroupFilter\"},{\"id\":\"12786\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12787\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12765\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12776\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"active\":[0,1,2,3],\"callback\":{\"id\":\"14596\",\"type\":\"CustomJS\"},\"labels\":[\"budget 0.0\",\"budget 0.1\",\"budget 0.3\",\"budget 1\"]},\"id\":\"14595\",\"type\":\"CheckboxButtonGroup\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12764\",\"type\":\"GroupFilter\"},{\"attributes\":{\"children\":[{\"id\":\"11274\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"14605\",\"type\":\"WidgetBox\"}]},\"id\":\"14606\",\"type\":\"Column\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12770\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12773\",\"type\":\"GroupFilter\"},{\"attributes\":{\"children\":[{\"id\":\"14597\",\"type\":\"Div\"}]},\"id\":\"14607\",\"type\":\"WidgetBox\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12769\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12768\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12784\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12778\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12771\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12768\",\"type\":\"GroupFilter\"},{\"id\":\"12769\",\"type\":\"GroupFilter\"},{\"id\":\"12770\",\"type\":\"GroupFilter\"},{\"id\":\"12771\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12772\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,true,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12786\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12780\",\"type\":\"GroupFilter\"},{\"attributes\":{\"text\":\"Showing only configurations evaluated in:\"},\"id\":\"14597\",\"type\":\"Div\"},{\"attributes\":{\"children\":[{\"id\":\"14609\",\"type\":\"WidgetBox\"},{\"id\":\"14610\",\"type\":\"WidgetBox\"}]},\"id\":\"14611\",\"type\":\"Row\"},{\"attributes\":{\"callback\":{\"id\":\"14600\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"None\"},\"id\":\"14601\",\"type\":\"Button\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12785\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13639\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12779\",\"type\":\"GroupFilter\"},{\"attributes\":{\"active\":0,\"callback\":{\"id\":\"14602\",\"type\":\"CustomJS\"},\"labels\":[\"budget 0.0\",\"budget 0.1\",\"budget 0.3\",\"budget 1\"]},\"id\":\"14603\",\"type\":\"RadioButtonGroup\"},{\"attributes\":{\"filters\":[{\"id\":\"12778\",\"type\":\"GroupFilter\"},{\"id\":\"12779\",\"type\":\"GroupFilter\"},{\"id\":\"12780\",\"type\":\"GroupFilter\"},{\"id\":\"12781\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12782\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"end\":1.4249331448942792,\"start\":-1.9482790201402453},\"id\":\"11275\",\"type\":\"Range1d\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"13371\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"end\":1.9797737531887616,\"start\":-1.2943108115824964},\"id\":\"11277\",\"type\":\"Range1d\"},{\"attributes\":{},\"id\":\"11279\",\"type\":\"LinearScale\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13344\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"11281\",\"type\":\"LinearScale\"},{\"attributes\":{\"axis_label\":\"MDS-X\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"11762\",\"type\":\"BasicTickFormatter\"},\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"11284\",\"type\":\"BasicTicker\"}},\"id\":\"11283\",\"type\":\"LinearAxis\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"13346\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"11284\",\"type\":\"BasicTicker\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13347\",\"type\":\"GroupFilter\"},{\"attributes\":{\"ticker\":{\"id\":\"11284\",\"type\":\"BasicTicker\"}},\"id\":\"11287\",\"type\":\"Grid\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13348\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13364\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"axis_label\":\"MDS-Y\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"11764\",\"type\":\"BasicTickFormatter\"},\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"11289\",\"type\":\"BasicTicker\"}},\"id\":\"11288\",\"type\":\"LinearAxis\"},{\"attributes\":{\"filters\":[{\"id\":\"13341\",\"type\":\"GroupFilter\"},{\"id\":\"13342\",\"type\":\"GroupFilter\"},{\"id\":\"13343\",\"type\":\"GroupFilter\"},{\"id\":\"13344\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13345\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"11289\",\"type\":\"BasicTicker\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"13366\",\"type\":\"GroupFilter\"},{\"attributes\":{\"dimension\":1,\"ticker\":{\"id\":\"11289\",\"type\":\"BasicTicker\"}},\"id\":\"11292\",\"type\":\"Grid\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,false,true,false,true,true,true,true,false,true,false,true,true,false,true,false,true,true,false,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13369\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"high\":0.8995867000000001,\"low\":0.015045801948051959,\"palette\":[\"#440154\",\"#440255\",\"#440357\",\"#450558\",\"#45065A\",\"#45085B\",\"#46095C\",\"#460B5E\",\"#460C5F\",\"#460E61\",\"#470F62\",\"#471163\",\"#471265\",\"#471466\",\"#471567\",\"#471669\",\"#47186A\",\"#48196B\",\"#481A6C\",\"#481C6E\",\"#481D6F\",\"#481E70\",\"#482071\",\"#482172\",\"#482273\",\"#482374\",\"#472575\",\"#472676\",\"#472777\",\"#472878\",\"#472A79\",\"#472B7A\",\"#472C7B\",\"#462D7C\",\"#462F7C\",\"#46307D\",\"#46317E\",\"#45327F\",\"#45347F\",\"#453580\",\"#453681\",\"#443781\",\"#443982\",\"#433A83\",\"#433B83\",\"#433C84\",\"#423D84\",\"#423E85\",\"#424085\",\"#414186\",\"#414286\",\"#404387\",\"#404487\",\"#3F4587\",\"#3F4788\",\"#3E4888\",\"#3E4989\",\"#3D4A89\",\"#3D4B89\",\"#3D4C89\",\"#3C4D8A\",\"#3C4E8A\",\"#3B508A\",\"#3B518A\",\"#3A528B\",\"#3A538B\",\"#39548B\",\"#39558B\",\"#38568B\",\"#38578C\",\"#37588C\",\"#37598C\",\"#365A8C\",\"#365B8C\",\"#355C8C\",\"#355D8C\",\"#345E8D\",\"#345F8D\",\"#33608D\",\"#33618D\",\"#32628D\",\"#32638D\",\"#31648D\",\"#31658D\",\"#31668D\",\"#30678D\",\"#30688D\",\"#2F698D\",\"#2F6A8D\",\"#2E6B8E\",\"#2E6C8E\",\"#2E6D8E\",\"#2D6E8E\",\"#2D6F8E\",\"#2C708E\",\"#2C718E\",\"#2C728E\",\"#2B738E\",\"#2B748E\",\"#2A758E\",\"#2A768E\",\"#2A778E\",\"#29788E\",\"#29798E\",\"#287A8E\",\"#287A8E\",\"#287B8E\",\"#277C8E\",\"#277D8E\",\"#277E8E\",\"#267F8E\",\"#26808E\",\"#26818E\",\"#25828E\",\"#25838D\",\"#24848D\",\"#24858D\",\"#24868D\",\"#23878D\",\"#23888D\",\"#23898D\",\"#22898D\",\"#228A8D\",\"#228B8D\",\"#218C8D\",\"#218D8C\",\"#218E8C\",\"#208F8C\",\"#20908C\",\"#20918C\",\"#1F928C\",\"#1F938B\",\"#1F948B\",\"#1F958B\",\"#1F968B\",\"#1E978A\",\"#1E988A\",\"#1E998A\",\"#1E998A\",\"#1E9A89\",\"#1E9B89\",\"#1E9C89\",\"#1E9D88\",\"#1E9E88\",\"#1E9F88\",\"#1EA087\",\"#1FA187\",\"#1FA286\",\"#1FA386\",\"#20A485\",\"#20A585\",\"#21A685\",\"#21A784\",\"#22A784\",\"#23A883\",\"#23A982\",\"#24AA82\",\"#25AB81\",\"#26AC81\",\"#27AD80\",\"#28AE7F\",\"#29AF7F\",\"#2AB07E\",\"#2BB17D\",\"#2CB17D\",\"#2EB27C\",\"#2FB37B\",\"#30B47A\",\"#32B57A\",\"#33B679\",\"#35B778\",\"#36B877\",\"#38B976\",\"#39B976\",\"#3BBA75\",\"#3DBB74\",\"#3EBC73\",\"#40BD72\",\"#42BE71\",\"#44BE70\",\"#45BF6F\",\"#47C06E\",\"#49C16D\",\"#4BC26C\",\"#4DC26B\",\"#4FC369\",\"#51C468\",\"#53C567\",\"#55C666\",\"#57C665\",\"#59C764\",\"#5BC862\",\"#5EC961\",\"#60C960\",\"#62CA5F\",\"#64CB5D\",\"#67CC5C\",\"#69CC5B\",\"#6BCD59\",\"#6DCE58\",\"#70CE56\",\"#72CF55\",\"#74D054\",\"#77D052\",\"#79D151\",\"#7CD24F\",\"#7ED24E\",\"#81D34C\",\"#83D34B\",\"#86D449\",\"#88D547\",\"#8BD546\",\"#8DD644\",\"#90D643\",\"#92D741\",\"#95D73F\",\"#97D83E\",\"#9AD83C\",\"#9DD93A\",\"#9FD938\",\"#A2DA37\",\"#A5DA35\",\"#A7DB33\",\"#AADB32\",\"#ADDC30\",\"#AFDC2E\",\"#B2DD2C\",\"#B5DD2B\",\"#B7DD29\",\"#BADE27\",\"#BDDE26\",\"#BFDF24\",\"#C2DF22\",\"#C5DF21\",\"#C7E01F\",\"#CAE01E\",\"#CDE01D\",\"#CFE11C\",\"#D2E11B\",\"#D4E11A\",\"#D7E219\",\"#DAE218\",\"#DCE218\",\"#DFE318\",\"#E1E318\",\"#E4E318\",\"#E7E419\",\"#E9E419\",\"#ECE41A\",\"#EEE51B\",\"#F1E51C\",\"#F3E51E\",\"#F6E61F\",\"#F8E621\",\"#FAE622\",\"#FDE724\"]},\"id\":\"11303\",\"type\":\"LinearColorMapper\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13368\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13357\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"11293\",\"type\":\"SaveTool\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,false,true,false,true,true,true,true,false,true,false,true,true,false,true,false,true,true,false,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13349\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"overlay\":{\"id\":\"11766\",\"type\":\"BoxAnnotation\"}},\"id\":\"11294\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"filters\":[{\"id\":\"13361\",\"type\":\"GroupFilter\"},{\"id\":\"13362\",\"type\":\"GroupFilter\"},{\"id\":\"13363\",\"type\":\"GroupFilter\"},{\"id\":\"13364\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13365\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"11295\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13367\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"11296\",\"type\":\"ResetTool\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"11293\",\"type\":\"SaveTool\"},{\"id\":\"11294\",\"type\":\"BoxZoomTool\"},{\"id\":\"11295\",\"type\":\"WheelZoomTool\"},{\"id\":\"11296\",\"type\":\"ResetTool\"},{\"id\":\"14592\",\"type\":\"HoverTool\"}]},\"id\":\"11297\",\"type\":\"Toolbar\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[17,17]},{\"__ndarray__\":\"V7LpQH+19L9XsulAf7X0v1ey6UB/tfS/V7LpQH+19L9XsulAf7X0v1ey6UB/tfS/V7LpQH+19L9XsulAf7X0v1ey6UB/tfS/V7LpQH+19L9XsulAf7X0v1ey6UB/tfS/V7LpQH+19L9XsulAf7X0v1ey6UB/tfS/V7LpQH+19L9XsulAf7X0vyR/tg1MgvG/JH+2DUyC8b8kf7YNTILxvyR/tg1MgvG/JH+2DUyC8b8kf7YNTILxvyR/tg1MgvG/JH+2DUyC8b8kf7YNTILxvyR/tg1MgvG/JH+2DUyC8b8kf7YNTILxvyR/tg1MgvG/JH+2DUyC8b8kf7YNTILxvyR/tg1MgvG/JH+2DUyC8b/ilwa1MZ7sv+KXBrUxnuy/4pcGtTGe7L/ilwa1MZ7sv+KXBrUxnuy/4pcGtTGe7L/ilwa1MZ7sv+KXBrUxnuy/4pcGtTGe7L/ilwa1MZ7sv+KXBrUxnuy/4pcGtTGe7L/ilwa1MZ7sv+KXBrUxnuy/4pcGtTGe7L/ilwa1MZ7sv+KXBrUxnuy/fDGgTss35r98MaBOyzfmv3wxoE7LN+a/fDGgTss35r98MaBOyzfmv3wxoE7LN+a/fDGgTss35r98MaBOyzfmv3wxoE7LN+a/fDGgTss35r98MaBOyzfmv3wxoE7LN+a/fDGgTss35r98MaBOyzfmv3wxoE7LN+a/fDGgTss35r98MaBOyzfmvyyWc9DJot+/LJZz0Mmi378slnPQyaLfvyyWc9DJot+/LJZz0Mmi378slnPQyaLfvyyWc9DJot+/LJZz0Mmi378slnPQyaLfvyyWc9DJot+/LJZz0Mmi378slnPQyaLfvyyWc9DJot+/LJZz0Mmi378slnPQyaLfvyyWc9DJot+/LJZz0Mmi379gyaYD/dXSv2DJpgP91dK/YMmmA/3V0r9gyaYD/dXSv2DJpgP91dK/YMmmA/3V0r9gyaYD/dXSv2DJpgP91dK/YMmmA/3V0r9gyaYD/dXSv2DJpgP91dK/YMmmA/3V0r9gyaYD/dXSv2DJpgP91dK/YMmmA/3V0r9gyaYD/dXSv2DJpgP91dK/UPJn28AkuL9Q8mfbwCS4v1DyZ9vAJLi/UPJn28AkuL9Q8mfbwCS4v1DyZ9vAJLi/UPJn28AkuL9Q8mfbwCS4v1DyZ9vAJLi/UPJn28AkuL9Q8mfbwCS4v1DyZ9vAJLi/UPJn28AkuL9Q8mfbwCS4v1DyZ9vAJLi/UPJn28AkuL9Q8mfbwCS4v+BAy1dyDrs/4EDLV3IOuz/gQMtXcg67P+BAy1dyDrs/4EDLV3IOuz/gQMtXcg67P+BAy1dyDrs/4EDLV3IOuz/gQMtXcg67P+BAy1dyDrs/4EDLV3IOuz/gQMtXcg67P+BAy1dyDrs/4EDLV3IOuz/gQMtXcg67P+BAy1dyDrs/4EDLV3IOuz8Enb9iaZDTPwSdv2JpkNM/BJ2/YmmQ0z8Enb9iaZDTPwSdv2JpkNM/BJ2/YmmQ0z8Enb9iaZDTPwSdv2JpkNM/BJ2/YmmQ0z8Enb9iaZDTPwSdv2JpkNM/BJ2/YmmQ0z8Enb9iaZDTPwSdv2JpkNM/BJ2/YmmQ0z8Enb9iaZDTPwSdv2JpkNM/6DTGF5su4D/oNMYXmy7gP+g0xhebLuA/6DTGF5su4D/oNMYXmy7gP+g0xhebLuA/6DTGF5su4D/oNMYXmy7gP+g0xhebLuA/6DTGF5su4D/oNMYXmy7gP+g0xhebLuA/6DTGF5su4D/oNMYXmy7gP+g0xhebLuA/6DTGF5su4D/oNMYXmy7gP06bLH4BleY/TpssfgGV5j9Omyx+AZXmP06bLH4BleY/TpssfgGV5j9Omyx+AZXmP06bLH4BleY/TpssfgGV5j9Omyx+AZXmP06bLH4BleY/TpssfgGV5j9Omyx+AZXmP06bLH4BleY/TpssfgGV5j9Omyx+AZXmP06bLH4BleY/TpssfgGV5j+yAZPkZ/vsP7IBk+Rn++w/sgGT5Gf77D+yAZPkZ/vsP7IBk+Rn++w/sgGT5Gf77D+yAZPkZ/vsP7IBk+Rn++w/sgGT5Gf77D+yAZPkZ/vsP7IBk+Rn++w/sgGT5Gf77D+yAZPkZ/vsP7IBk+Rn++w/sgGT5Gf77D+yAZPkZ/vsP7IBk+Rn++w/DbR8Jeew8T8NtHwl57DxPw20fCXnsPE/DbR8Jeew8T8NtHwl57DxPw20fCXnsPE/DbR8Jeew8T8NtHwl57DxPw20fCXnsPE/DbR8Jeew8T8NtHwl57DxPw20fCXnsPE/DbR8Jeew8T8NtHwl57DxPw20fCXnsPE/DbR8Jeew8T8NtHwl57DxP0Hnr1ga5PQ/QeevWBrk9D9B569YGuT0P0Hnr1ga5PQ/QeevWBrk9D9B569YGuT0P0Hnr1ga5PQ/QeevWBrk9D9B569YGuT0P0Hnr1ga5PQ/QeevWBrk9D9B569YGuT0P0Hnr1ga5PQ/QeevWBrk9D9B569YGuT0P0Hnr1ga5PQ/QeevWBrk9D9zGuOLTRf4P3Ma44tNF/g/cxrji00X+D9zGuOLTRf4P3Ma44tNF/g/cxrji00X+D9zGuOLTRf4P3Ma44tNF/g/cxrji00X+D9zGuOLTRf4P3Ma44tNF/g/cxrji00X+D9zGuOLTRf4P3Ma44tNF/g/cxrji00X+D9zGuOLTRf4P3Ma44tNF/g/pU0Wv4BK+z+lTRa/gEr7P6VNFr+ASvs/pU0Wv4BK+z+lTRa/gEr7P6VNFr+ASvs/pU0Wv4BK+z+lTRa/gEr7P6VNFr+ASvs/pU0Wv4BK+z+lTRa/gEr7P6VNFr+ASvs/pU0Wv4BK+z+lTRa/gEr7P6VNFr+ASvs/pU0Wv4BK+z+lTRa/gEr7P9mASfKzff4/2YBJ8rN9/j/ZgEnys33+P9mASfKzff4/2YBJ8rN9/j/ZgEnys33+P9mASfKzff4/2YBJ8rN9/j/ZgEnys33+P9mASfKzff4/2YBJ8rN9/j/ZgEnys33+P9mASfKzff4/2YBJ8rN9/j/ZgEnys33+P9mASfKzff4/2YBJ8rN9/j8=\",\"dtype\":\"float64\",\"shape\":[17,17]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[17,17]}]},\"selected\":{\"id\":\"11767\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"11768\",\"type\":\"UnionRenderers\"}},\"id\":\"11304\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"13351\",\"type\":\"GroupFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"11303\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":3.274084564771258},\"dw\":{\"units\":\"data\",\"value\":3.3732121650345244},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-1.9482790201402453},\"y\":{\"value\":-1.2943108115824964}},\"id\":\"11305\",\"type\":\"Image\"},{\"attributes\":{\"color_mapper\":{\"id\":\"11303\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":3.274084564771258},\"dw\":{\"units\":\"data\",\"value\":3.3732121650345244},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-1.9482790201402453},\"y\":{\"value\":-1.2943108115824964}},\"id\":\"11306\",\"type\":\"Image\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13352\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11304\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11305\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11306\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"11308\",\"type\":\"CDSView\"}},\"id\":\"11307\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,true,false,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,true,false,true,true,false,false,false,true,false,true,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,true,true,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,false,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13354\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"source\":{\"id\":\"11304\",\"type\":\"ColumnDataSource\"}},\"id\":\"11308\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"13356\",\"type\":\"GroupFilter\"},{\"id\":\"13357\",\"type\":\"GroupFilter\"},{\"id\":\"13358\",\"type\":\"GroupFilter\"},{\"id\":\"13359\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13360\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[17,17]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[17,17]},{\"__ndarray__\":\"5o0GSR/c6z/mjQZJH9zrP+aNBkkf3Os/5o0GSR/c6z/mjQZJH9zrP+aNBkkf3Os/NVirz1Xc6z+D6+577t/rP04NkRnA4+s/2l/x96fO5z8Ynqi25W2iP1DVhaDrQ7I/44YWEJHRsz/jhhYQkdGzP+OGFhCR0bM/44YWEJHRsz/jhhYQkdGzP+aNBkkf3Os/5o0GSR/c6z/mjQZJH9zrP+aNBkkf3Os/5o0GSR/c6z/mjQZJH9zrPzVYq89V3Os/g+vue+7f6z9ODZEZwOPrP9pf8fenzuc/GJ6otuVtoj9Q1YWg60OyP+OGFhCR0bM/44YWEJHRsz/jhhYQkdGzP+OGFhCR0bM/44YWEJHRsz/mjQZJH9zrP+aNBkkf3Os/5o0GSR/c6z/mjQZJH9zrP+aNBkkf3Os/5o0GSR/c6z81WKvPVdzrP4Pr7nvu3+s/Tg2RGcDj6z/aX/H3p87nPxieqLblbaI/UNWFoOtDsj/jhhYQkdGzP+OGFhCR0bM/44YWEJHRsz/jhhYQkdGzP+OGFhCR0bM/5o0GSR/c6z/mjQZJH9zrP+aNBkkf3Os/5o0GSR/c6z/mjQZJH9zrP+aNBkkf3Os/NVirz1Xc6z+D6+577t/rP04NkRnA4+s/2l/x96fO5z8Ynqi25W2iP1DVhaDrQ7I/44YWEJHRsz/jhhYQkdGzP+OGFhCR0bM/44YWEJHRsz/jhhYQkdGzP+aNBkkf3Os/5o0GSR/c6z/mjQZJH9zrP+aNBkkf3Os/5o0GSR/c6z/mjQZJH9zrPzVYq89V3Os/g+vue+7f6z9ODZEZwOPrP9pf8fenzuc/GJ6otuVtoj9Q1YWg60OyP+OGFhCR0bM/44YWEJHRsz/jhhYQkdGzP+OGFhCR0bM/44YWEJHRsz/mjQZJH9zrP+aNBkkf3Os/5o0GSR/c6z/mjQZJH9zrP+aNBkkf3Os/5o0GSR/c6z81WKvPVdzrP4Pr7nvu3+s/Tg2RGcDj6z/aX/H3p87nPxieqLblbaI/UNWFoOtDsj/jhhYQkdGzP+OGFhCR0bM/44YWEJHRsz/jhhYQkdGzP+OGFhCR0bM/5o0GSR/c6z/mjQZJH9zrP+aNBkkf3Os/5o0GSR/c6z/mjQZJH9zrP+aNBkkf3Os/NVirz1Xc6z+D6+577t/rP04NkRnA4+s/2l/x96fO5z98CTuy3wCgP4bL86ks07E/EM/nnl2Tsz8Qz+eeXZOzPxDP555dk7M/EM/nnl2Tsz8Qz+eeXZOzP6jeU+YZ1es/qN5T5hnV6z+o3lPmGdXrP6jeU+YZ1es/qN5T5hnV6z+o3lPmGdXrP/io+GxQ1es/Rjw8GenY6z8QXt62utzrP9pf8fenzuc/qA9yhIjpoj/4ahCvtFWxPwJ0R9QGD7M/AnRH1AYPsz8CdEfUBg+zPwJ0R9QGD7M/AnRH1AYPsz8Dsu2tAYPsPwOy7a0Bg+w/A7LtrQGD7D8Dsu2tAYPsPwOy7a0Bg+w/A7LtrQGD7D9TfJI0OIPsP6MP1uDQhuw/vfscBdmK7D9bdvhcrn7oP6gPcoSI6aI/+GoQr7RVsT8CdEfUBg+zPwJ0R9QGD7M/AnRH1AYPsz8CdEfUBg+zPwJ0R9QGD7M/esMNrTKW7D96ww2tMpbsP3rDDa0yluw/esMNrTKW7D96ww2tMpbsP3rDDa0yluw/yo2yM2mW7D8aIfbfAZrsPzMNPQQKnuw/+68thBeS6D+oD3KEiOmiP/hqEK+0VbE/AnRH1AYPsz8CdEfUBg+zPwJ0R9QGD7M/AnRH1AYPsz8CdEfUBg+zPyL3IW+QkOw/Ivchb5CQ7D8i9yFvkJDsPyL3IW+QkOw/Ivchb5CQ7D8i9yFvkJDsP3LBxvXGkOw/wFQKol+U7D/1L4D3fpbsP9a3N0v5iug/qA9yhIjpoj/4ahCvtFWxPwJ0R9QGD7M/AnRH1AYPsz8CdEfUBg+zPwJ0R9QGD7M/AnRH1AYPsz/TLH3oWZDsP9MsfehZkOw/0yx96FmQ7D/TLH3oWZDsP9MsfehZkOw/0yx96FmQ7D8i9yFvkJDsP8BUCqJflOw/9S+A936W7D/WtzdL+YroP6gPcoSI6aI/+GoQr7RVsT8CdEfUBg+zPwJ0R9QGD7M/AnRH1AYPsz8CdEfUBg+zPwJ0R9QGD7M/0yx96FmQ7D/TLH3oWZDsP9MsfehZkOw/0yx96FmQ7D/TLH3oWZDsP9MsfehZkOw/Ivchb5CQ7D/AVAqiX5TsP/UvgPd+luw/1rc3S/mK6D+oD3KEiOmiP/hqEK+0VbE/AnRH1AYPsz8CdEfUBg+zPwJ0R9QGD7M/AnRH1AYPsz8CdEfUBg+zP9MsfehZkOw/0yx96FmQ7D/TLH3oWZDsP9MsfehZkOw/0yx96FmQ7D/TLH3oWZDsPyL3IW+QkOw/wFQKol+U7D/1L4D3fpbsP9a3N0v5iug/qA9yhIjpoj/4ahCvtFWxPwJ0R9QGD7M/AnRH1AYPsz8CdEfUBg+zPwJ0R9QGD7M/AnRH1AYPsz/TLH3oWZDsP9MsfehZkOw/0yx96FmQ7D/TLH3oWZDsP9MsfehZkOw/0yx96FmQ7D8i9yFvkJDsP8BUCqJflOw/9S+A936W7D/WtzdL+YroP6gPcoSI6aI/+GoQr7RVsT8CdEfUBg+zPwJ0R9QGD7M/AnRH1AYPsz8CdEfUBg+zPwJ0R9QGD7M/0yx96FmQ7D/TLH3oWZDsP9MsfehZkOw/0yx96FmQ7D/TLH3oWZDsP9MsfehZkOw/Ivchb5CQ7D/AVAqiX5TsP/UvgPd+luw/1rc3S/mK6D+oD3KEiOmiP/hqEK+0VbE/AnRH1AYPsz8CdEfUBg+zPwJ0R9QGD7M/AnRH1AYPsz8CdEfUBg+zP9MsfehZkOw/0yx96FmQ7D/TLH3oWZDsP9MsfehZkOw/0yx96FmQ7D/TLH3oWZDsPyL3IW+QkOw/wFQKol+U7D/1L4D3fpbsP9a3N0v5iug/qA9yhIjpoj/4ahCvtFWxPwJ0R9QGD7M/AnRH1AYPsz8CdEfUBg+zPwJ0R9QGD7M/AnRH1AYPsz8=\",\"dtype\":\"float64\",\"shape\":[17,17]}]},\"selected\":{\"id\":\"11769\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"11770\",\"type\":\"UnionRenderers\"}},\"id\":\"11309\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"color_mapper\":{\"id\":\"11303\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":3.274084564771258},\"dw\":{\"units\":\"data\",\"value\":3.3732121650345244},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-1.9482790201402453},\"y\":{\"value\":-1.2943108115824964}},\"id\":\"11310\",\"type\":\"Image\"},{\"attributes\":{\"filters\":[{\"id\":\"13346\",\"type\":\"GroupFilter\"},{\"id\":\"13347\",\"type\":\"GroupFilter\"},{\"id\":\"13348\",\"type\":\"GroupFilter\"},{\"id\":\"13349\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13350\",\"type\":\"CDSView\"},{\"attributes\":{\"color_mapper\":{\"id\":\"11303\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":3.274084564771258},\"dw\":{\"units\":\"data\",\"value\":3.3732121650345244},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-1.9482790201402453},\"y\":{\"value\":-1.2943108115824964}},\"id\":\"11311\",\"type\":\"Image\"},{\"attributes\":{\"data_source\":{\"id\":\"11309\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11310\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11311\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"11313\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"11312\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13353\",\"type\":\"GroupFilter\"},{\"attributes\":{\"source\":{\"id\":\"11309\",\"type\":\"ColumnDataSource\"}},\"id\":\"11313\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"13351\",\"type\":\"GroupFilter\"},{\"id\":\"13352\",\"type\":\"GroupFilter\"},{\"id\":\"13353\",\"type\":\"GroupFilter\"},{\"id\":\"13354\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13355\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[17,17]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[17,17]},{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[17,17]}]},\"selected\":{\"id\":\"11771\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"11772\",\"type\":\"UnionRenderers\"}},\"id\":\"11314\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"color_mapper\":{\"id\":\"11303\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":3.274084564771258},\"dw\":{\"units\":\"data\",\"value\":3.3732121650345244},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-1.9482790201402453},\"y\":{\"value\":-1.2943108115824964}},\"id\":\"11315\",\"type\":\"Image\"},{\"attributes\":{\"color_mapper\":{\"id\":\"11303\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":3.274084564771258},\"dw\":{\"units\":\"data\",\"value\":3.3732121650345244},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-1.9482790201402453},\"y\":{\"value\":-1.2943108115824964}},\"id\":\"11316\",\"type\":\"Image\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13358\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11314\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11315\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11316\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"11318\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"11317\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"13366\",\"type\":\"GroupFilter\"},{\"id\":\"13367\",\"type\":\"GroupFilter\"},{\"id\":\"13368\",\"type\":\"GroupFilter\"},{\"id\":\"13369\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13370\",\"type\":\"CDSView\"},{\"attributes\":{\"source\":{\"id\":\"11314\",\"type\":\"ColumnDataSource\"}},\"id\":\"11318\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"13361\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"image\":[{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[17,17]},{\"__ndarray__\":\"V7LpQH+19L9XsulAf7X0v1ey6UB/tfS/V7LpQH+19L9XsulAf7X0v1ey6UB/tfS/V7LpQH+19L9XsulAf7X0v1ey6UB/tfS/V7LpQH+19L9XsulAf7X0v1ey6UB/tfS/V7LpQH+19L9XsulAf7X0v1ey6UB/tfS/V7LpQH+19L9XsulAf7X0vyR/tg1MgvG/JH+2DUyC8b8kf7YNTILxvyR/tg1MgvG/JH+2DUyC8b8kf7YNTILxvyR/tg1MgvG/JH+2DUyC8b8kf7YNTILxvyR/tg1MgvG/JH+2DUyC8b8kf7YNTILxvyR/tg1MgvG/JH+2DUyC8b8kf7YNTILxvyR/tg1MgvG/JH+2DUyC8b/ilwa1MZ7sv+KXBrUxnuy/4pcGtTGe7L/ilwa1MZ7sv+KXBrUxnuy/4pcGtTGe7L/ilwa1MZ7sv+KXBrUxnuy/4pcGtTGe7L/ilwa1MZ7sv+KXBrUxnuy/4pcGtTGe7L/ilwa1MZ7sv+KXBrUxnuy/4pcGtTGe7L/ilwa1MZ7sv+KXBrUxnuy/fDGgTss35r98MaBOyzfmv3wxoE7LN+a/fDGgTss35r98MaBOyzfmv3wxoE7LN+a/fDGgTss35r98MaBOyzfmv3wxoE7LN+a/fDGgTss35r98MaBOyzfmv3wxoE7LN+a/fDGgTss35r98MaBOyzfmv3wxoE7LN+a/fDGgTss35r98MaBOyzfmvyyWc9DJot+/LJZz0Mmi378slnPQyaLfvyyWc9DJot+/LJZz0Mmi378slnPQyaLfvyyWc9DJot+/LJZz0Mmi378slnPQyaLfvyyWc9DJot+/LJZz0Mmi378slnPQyaLfvyyWc9DJot+/LJZz0Mmi378slnPQyaLfvyyWc9DJot+/LJZz0Mmi379gyaYD/dXSv2DJpgP91dK/YMmmA/3V0r9gyaYD/dXSv2DJpgP91dK/YMmmA/3V0r9gyaYD/dXSv2DJpgP91dK/YMmmA/3V0r9gyaYD/dXSv2DJpgP91dK/YMmmA/3V0r9gyaYD/dXSv2DJpgP91dK/YMmmA/3V0r9gyaYD/dXSv2DJpgP91dK/UPJn28AkuL9Q8mfbwCS4v1DyZ9vAJLi/UPJn28AkuL9Q8mfbwCS4v1DyZ9vAJLi/UPJn28AkuL9Q8mfbwCS4v1DyZ9vAJLi/UPJn28AkuL9Q8mfbwCS4v1DyZ9vAJLi/UPJn28AkuL9Q8mfbwCS4v1DyZ9vAJLi/UPJn28AkuL9Q8mfbwCS4v+BAy1dyDrs/4EDLV3IOuz/gQMtXcg67P+BAy1dyDrs/4EDLV3IOuz/gQMtXcg67P+BAy1dyDrs/4EDLV3IOuz/gQMtXcg67P+BAy1dyDrs/4EDLV3IOuz/gQMtXcg67P+BAy1dyDrs/4EDLV3IOuz/gQMtXcg67P+BAy1dyDrs/4EDLV3IOuz8Enb9iaZDTPwSdv2JpkNM/BJ2/YmmQ0z8Enb9iaZDTPwSdv2JpkNM/BJ2/YmmQ0z8Enb9iaZDTPwSdv2JpkNM/BJ2/YmmQ0z8Enb9iaZDTPwSdv2JpkNM/BJ2/YmmQ0z8Enb9iaZDTPwSdv2JpkNM/BJ2/YmmQ0z8Enb9iaZDTPwSdv2JpkNM/6DTGF5su4D/oNMYXmy7gP+g0xhebLuA/6DTGF5su4D/oNMYXmy7gP+g0xhebLuA/6DTGF5su4D/oNMYXmy7gP+g0xhebLuA/6DTGF5su4D/oNMYXmy7gP+g0xhebLuA/6DTGF5su4D/oNMYXmy7gP+g0xhebLuA/6DTGF5su4D/oNMYXmy7gP06bLH4BleY/TpssfgGV5j9Omyx+AZXmP06bLH4BleY/TpssfgGV5j9Omyx+AZXmP06bLH4BleY/TpssfgGV5j9Omyx+AZXmP06bLH4BleY/TpssfgGV5j9Omyx+AZXmP06bLH4BleY/TpssfgGV5j9Omyx+AZXmP06bLH4BleY/TpssfgGV5j+yAZPkZ/vsP7IBk+Rn++w/sgGT5Gf77D+yAZPkZ/vsP7IBk+Rn++w/sgGT5Gf77D+yAZPkZ/vsP7IBk+Rn++w/sgGT5Gf77D+yAZPkZ/vsP7IBk+Rn++w/sgGT5Gf77D+yAZPkZ/vsP7IBk+Rn++w/sgGT5Gf77D+yAZPkZ/vsP7IBk+Rn++w/DbR8Jeew8T8NtHwl57DxPw20fCXnsPE/DbR8Jeew8T8NtHwl57DxPw20fCXnsPE/DbR8Jeew8T8NtHwl57DxPw20fCXnsPE/DbR8Jeew8T8NtHwl57DxPw20fCXnsPE/DbR8Jeew8T8NtHwl57DxPw20fCXnsPE/DbR8Jeew8T8NtHwl57DxP0Hnr1ga5PQ/QeevWBrk9D9B569YGuT0P0Hnr1ga5PQ/QeevWBrk9D9B569YGuT0P0Hnr1ga5PQ/QeevWBrk9D9B569YGuT0P0Hnr1ga5PQ/QeevWBrk9D9B569YGuT0P0Hnr1ga5PQ/QeevWBrk9D9B569YGuT0P0Hnr1ga5PQ/QeevWBrk9D9zGuOLTRf4P3Ma44tNF/g/cxrji00X+D9zGuOLTRf4P3Ma44tNF/g/cxrji00X+D9zGuOLTRf4P3Ma44tNF/g/cxrji00X+D9zGuOLTRf4P3Ma44tNF/g/cxrji00X+D9zGuOLTRf4P3Ma44tNF/g/cxrji00X+D9zGuOLTRf4P3Ma44tNF/g/pU0Wv4BK+z+lTRa/gEr7P6VNFr+ASvs/pU0Wv4BK+z+lTRa/gEr7P6VNFr+ASvs/pU0Wv4BK+z+lTRa/gEr7P6VNFr+ASvs/pU0Wv4BK+z+lTRa/gEr7P6VNFr+ASvs/pU0Wv4BK+z+lTRa/gEr7P6VNFr+ASvs/pU0Wv4BK+z+lTRa/gEr7P9mASfKzff4/2YBJ8rN9/j/ZgEnys33+P9mASfKzff4/2YBJ8rN9/j/ZgEnys33+P9mASfKzff4/2YBJ8rN9/j/ZgEnys33+P9mASfKzff4/2YBJ8rN9/j/ZgEnys33+P9mASfKzff4/2YBJ8rN9/j/ZgEnys33+P9mASfKzff4/2YBJ8rN9/j8=\",\"dtype\":\"float64\",\"shape\":[17,17]},{\"__ndarray__\":\"SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/Fe1iQFsxzz+LyHhaVdCOP69LYQ7sdbA/r0thDux1sD+vS2EO7HWwP69LYQ7sdbA/r0thDux1sD+vS2EO7HWwP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gPxXtYkBbMc8/i8h4WlXQjj+vS2EO7HWwP69LYQ7sdbA/r0thDux1sD+vS2EO7HWwP69LYQ7sdbA/r0thDux1sD9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D8V7WJAWzHPP4vIeFpV0I4/r0thDux1sD+vS2EO7HWwP69LYQ7sdbA/r0thDux1sD+vS2EO7HWwP69LYQ7sdbA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/Fe1iQFsxzz+LyHhaVdCOP69LYQ7sdbA/r0thDux1sD+vS2EO7HWwP69LYQ7sdbA/r0thDux1sD+vS2EO7HWwP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gPxXtYkBbMc8/i8h4WlXQjj+vS2EO7HWwP69LYQ7sdbA/r0thDux1sD+vS2EO7HWwP69LYQ7sdbA/r0thDux1sD9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D8V7WJAWzHPP4vIeFpV0I4/r0thDux1sD+vS2EO7HWwP69LYQ7sdbA/r0thDux1sD+vS2EO7HWwP69LYQ7sdbA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/SHPzJTQN4D9Ic/MlNA3gP0hz8yU0DeA/Fe1iQFsxzz+LyHhaVdCOP69LYQ7sdbA/r0thDux1sD+vS2EO7HWwP69LYQ7sdbA/r0thDux1sD+vS2EO7HWwP37KJC3S/eA/fsokLdL94D9+yiQt0v3gP37KJC3S/eA/fsokLdL94D9+yiQt0v3gP37KJC3S/eA/fsokLdL94D9+yiQt0v3gP5x4+xnzxtE/F5ZSQn8jsT8zVeIWK828PzNV4hYrzbw/M1XiFivNvD8zVeIWK828PzNV4hYrzbw/M1XiFivNvD8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8ffARdOvbUPyKkdk6c4L0/kMz9162dxD+QzP3XrZ3EP5DM/detncQ/kMz9162dxD+QzP3XrZ3EP5DM/detncQ/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/H3wEXTr21D8ipHZOnOC9P5DM/detncQ/kMz9162dxD+QzP3XrZ3EP5DM/detncQ/kMz9162dxD+QzP3XrZ3EPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPx98BF069tQ/IqR2TpzgvT+QzP3XrZ3EP5DM/detncQ/kMz9162dxD+QzP3XrZ3EP5DM/detncQ/kMz9162dxD8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8ffARdOvbUPyKkdk6c4L0/kMz9162dxD+QzP3XrZ3EP5DM/detncQ/kMz9162dxD+QzP3XrZ3EP5DM/detncQ/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/H3wEXTr21D8ipHZOnOC9P5DM/detncQ/kMz9162dxD+QzP3XrZ3EP5DM/detncQ/kMz9162dxD+QzP3XrZ3EPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPx98BF069tQ/IqR2TpzgvT+QzP3XrZ3EP5DM/detncQ/kMz9162dxD+QzP3XrZ3EP5DM/detncQ/kMz9162dxD8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8ffARdOvbUPyKkdk6c4L0/kMz9162dxD+QzP3XrZ3EP5DM/detncQ/kMz9162dxD+QzP3XrZ3EP5DM/detncQ/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/H3wEXTr21D8ipHZOnOC9P5DM/detncQ/kMz9162dxD+QzP3XrZ3EP5DM/detncQ/kMz9162dxD+QzP3XrZ3EPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPz5Mqc51leI/PkypznWV4j8+TKnOdZXiPx98BF069tQ/IqR2TpzgvT+QzP3XrZ3EP5DM/detncQ/kMz9162dxD+QzP3XrZ3EP5DM/detncQ/kMz9162dxD8=\",\"dtype\":\"float64\",\"shape\":[17,17]}]},\"selected\":{\"id\":\"11773\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"11774\",\"type\":\"UnionRenderers\"}},\"id\":\"11319\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"color_mapper\":{\"id\":\"11303\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":3.274084564771258},\"dw\":{\"units\":\"data\",\"value\":3.3732121650345244},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-1.9482790201402453},\"y\":{\"value\":-1.2943108115824964}},\"id\":\"11320\",\"type\":\"Image\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13362\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"13356\",\"type\":\"GroupFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"11303\",\"type\":\"LinearColorMapper\"},\"dh\":{\"units\":\"data\",\"value\":3.274084564771258},\"dw\":{\"units\":\"data\",\"value\":3.3732121650345244},\"image\":{\"field\":\"image\"},\"x\":{\"value\":-1.9482790201402453},\"y\":{\"value\":-1.2943108115824964}},\"id\":\"11321\",\"type\":\"Image\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,true,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13359\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11319\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11320\",\"type\":\"Image\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11321\",\"type\":\"Image\"},\"selection_glyph\":null,\"view\":{\"id\":\"11323\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"11322\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13363\",\"type\":\"GroupFilter\"},{\"attributes\":{\"source\":{\"id\":\"11319\",\"type\":\"ColumnDataSource\"}},\"id\":\"11323\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11389\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14156\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11390\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14152\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14153\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13918\",\"type\":\"CDSView\"}},\"id\":\"14154\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"11387\",\"type\":\"GroupFilter\"},{\"id\":\"11388\",\"type\":\"GroupFilter\"},{\"id\":\"11389\",\"type\":\"GroupFilter\"},{\"id\":\"11390\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11391\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14153\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"11392\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14134\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14144\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11393\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14144\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14145\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13908\",\"type\":\"CDSView\"}},\"id\":\"14146\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11394\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14148\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14149\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13913\",\"type\":\"CDSView\"}},\"id\":\"14150\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,true,false,true,true,false,false,true,false,true,true,true,true,false,true,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11395\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11392\",\"type\":\"GroupFilter\"},{\"id\":\"11393\",\"type\":\"GroupFilter\"},{\"id\":\"11394\",\"type\":\"GroupFilter\"},{\"id\":\"11395\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11396\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14149\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14168\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14169\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13938\",\"type\":\"CDSView\"}},\"id\":\"14170\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"11397\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14136\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11398\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11399\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14131\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11400\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14268\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14269\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14063\",\"type\":\"CDSView\"}},\"id\":\"14270\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"11397\",\"type\":\"GroupFilter\"},{\"id\":\"11398\",\"type\":\"GroupFilter\"},{\"id\":\"11399\",\"type\":\"GroupFilter\"},{\"id\":\"11400\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11401\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"11402\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14140\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11403\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14140\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14141\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13903\",\"type\":\"CDSView\"}},\"id\":\"14142\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14145\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11404\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11405\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14129\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11402\",\"type\":\"GroupFilter\"},{\"id\":\"11403\",\"type\":\"GroupFilter\"},{\"id\":\"11404\",\"type\":\"GroupFilter\"},{\"id\":\"11405\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11406\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"11407\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,true,false,false,false,false,true,true,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,false,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14132\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14125\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14124\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11408\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11409\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14129\",\"type\":\"GroupFilter\"},{\"id\":\"14130\",\"type\":\"GroupFilter\"},{\"id\":\"14131\",\"type\":\"GroupFilter\"},{\"id\":\"14132\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14133\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11410\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14135\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11407\",\"type\":\"GroupFilter\"},{\"id\":\"11408\",\"type\":\"GroupFilter\"},{\"id\":\"11409\",\"type\":\"GroupFilter\"},{\"id\":\"11410\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11411\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14172\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"11412\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14126\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11413\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,true,false,false,true,true,false,true,false,false,false,false,true,true,false,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,false,true,false,false,false,false,false,true,false,false,true,false,true,false,false,true,true,true,false,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,false,true,false,true,true,true,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,true,true,true,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,true,false,true,false,true,true,false,true,true,true,false,false,false,false,false,false,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,true,true,true,true,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,true,true,true,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,true,true,false,false,true,true,true,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14127\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14152\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11414\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,true,false,true,true,false,false,true,false,true,true,true,true,false,true,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11415\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14130\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11412\",\"type\":\"GroupFilter\"},{\"id\":\"11413\",\"type\":\"GroupFilter\"},{\"id\":\"11414\",\"type\":\"GroupFilter\"},{\"id\":\"11415\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11416\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"14124\",\"type\":\"GroupFilter\"},{\"id\":\"14125\",\"type\":\"GroupFilter\"},{\"id\":\"14126\",\"type\":\"GroupFilter\"},{\"id\":\"14127\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14128\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14148\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"11417\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14134\",\"type\":\"GroupFilter\"},{\"id\":\"14135\",\"type\":\"GroupFilter\"},{\"id\":\"14136\",\"type\":\"GroupFilter\"},{\"id\":\"14137\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14138\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14141\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11418\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11419\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14169\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11420\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14137\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11417\",\"type\":\"GroupFilter\"},{\"id\":\"11418\",\"type\":\"GroupFilter\"},{\"id\":\"11419\",\"type\":\"GroupFilter\"},{\"id\":\"11420\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11421\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14019\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14305\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,true,false,true,true,false,false,true,false,true,true,true,true,false,true,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11455\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13282\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13257\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11452\",\"type\":\"GroupFilter\"},{\"id\":\"11453\",\"type\":\"GroupFilter\"},{\"id\":\"11454\",\"type\":\"GroupFilter\"},{\"id\":\"11455\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11456\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"11457\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13276\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13258\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14017\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14300\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14301\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14103\",\"type\":\"CDSView\"}},\"id\":\"14302\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11458\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,false,true,false,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,false,false,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,true,false,true,true,false,true,false,false,true,false,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,false,true,true,false,true,false,false,true,false,true,false,true,true,true,false,true,false,true,false,true,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"14022\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11459\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14292\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14293\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14093\",\"type\":\"CDSView\"}},\"id\":\"14294\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11460\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11457\",\"type\":\"GroupFilter\"},{\"id\":\"11458\",\"type\":\"GroupFilter\"},{\"id\":\"11459\",\"type\":\"GroupFilter\"},{\"id\":\"11460\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11461\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13256\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14024\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14316\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,true,false,false,false,false,true,true,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,false,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14032\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13256\",\"type\":\"GroupFilter\"},{\"id\":\"13257\",\"type\":\"GroupFilter\"},{\"id\":\"13258\",\"type\":\"GroupFilter\"},{\"id\":\"13259\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13260\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"11462\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14293\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14034\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11463\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14304\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14305\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14108\",\"type\":\"CDSView\"}},\"id\":\"14306\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,true,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13259\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14020\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14308\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11464\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13278\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14313\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13261\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14312\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14313\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14118\",\"type\":\"CDSView\"}},\"id\":\"14314\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14019\",\"type\":\"GroupFilter\"},{\"id\":\"14020\",\"type\":\"GroupFilter\"},{\"id\":\"14021\",\"type\":\"GroupFilter\"},{\"id\":\"14022\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14023\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11465\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12205\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"11462\",\"type\":\"GroupFilter\"},{\"id\":\"11463\",\"type\":\"GroupFilter\"},{\"id\":\"11464\",\"type\":\"GroupFilter\"},{\"id\":\"11465\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11466\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14014\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14300\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14024\",\"type\":\"GroupFilter\"},{\"id\":\"14025\",\"type\":\"GroupFilter\"},{\"id\":\"14026\",\"type\":\"GroupFilter\"},{\"id\":\"14027\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14028\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14304\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"11467\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14301\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13262\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13281\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14025\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14004\",\"type\":\"GroupFilter\"},{\"id\":\"14005\",\"type\":\"GroupFilter\"},{\"id\":\"14006\",\"type\":\"GroupFilter\"},{\"id\":\"14007\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14008\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14296\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11468\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,true,false,false,true,true,false,true,false,false,false,false,true,true,false,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,false,true,false,false,false,false,false,true,false,false,true,false,true,false,false,true,true,true,false,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,false,true,false,true,true,true,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,true,true,true,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,true,false,true,false,true,true,false,true,true,true,false,false,false,false,false,false,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,true,true,true,true,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,true,true,true,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,true,true,false,false,true,true,true,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14027\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11469\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13263\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14284\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14285\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14083\",\"type\":\"CDSView\"}},\"id\":\"14286\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14029\",\"type\":\"GroupFilter\"},{\"id\":\"14030\",\"type\":\"GroupFilter\"},{\"id\":\"14031\",\"type\":\"GroupFilter\"},{\"id\":\"14032\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14033\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11470\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14015\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14029\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11467\",\"type\":\"GroupFilter\"},{\"id\":\"11468\",\"type\":\"GroupFilter\"},{\"id\":\"11469\",\"type\":\"GroupFilter\"},{\"id\":\"11470\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11471\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13271\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14030\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13273\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14031\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"11472\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13264\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14309\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14288\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14289\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14088\",\"type\":\"CDSView\"}},\"id\":\"14290\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14289\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11473\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14021\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13261\",\"type\":\"GroupFilter\"},{\"id\":\"13262\",\"type\":\"GroupFilter\"},{\"id\":\"13263\",\"type\":\"GroupFilter\"},{\"id\":\"13264\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13265\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11474\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,true,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13279\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14011\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14006\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,true,false,true,true,false,false,true,false,true,true,true,true,false,true,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11475\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13277\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13266\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14004\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11472\",\"type\":\"GroupFilter\"},{\"id\":\"11473\",\"type\":\"GroupFilter\"},{\"id\":\"11474\",\"type\":\"GroupFilter\"},{\"id\":\"11475\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11476\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,true,false,false,false,false,true,true,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,false,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14012\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13271\",\"type\":\"GroupFilter\"},{\"id\":\"13272\",\"type\":\"GroupFilter\"},{\"id\":\"13273\",\"type\":\"GroupFilter\"},{\"id\":\"13274\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13275\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"14009\",\"type\":\"GroupFilter\"},{\"id\":\"14010\",\"type\":\"GroupFilter\"},{\"id\":\"14011\",\"type\":\"GroupFilter\"},{\"id\":\"14012\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14013\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"11477\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14312\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13283\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14010\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11478\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,true,false,false,true,true,false,true,false,false,false,false,true,true,false,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,false,true,false,false,false,false,false,true,false,false,true,false,true,false,false,true,true,true,false,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,false,true,false,true,true,true,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,true,true,true,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,true,false,true,false,true,true,false,true,true,true,false,false,false,false,false,false,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,true,true,true,true,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,true,true,true,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,true,true,false,false,true,true,true,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14007\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11479\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14026\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14005\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11480\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,false,true,false,true,true,true,true,false,true,false,true,true,false,true,false,true,true,false,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13269\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14288\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,true,false,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,true,false,true,true,false,false,false,true,false,true,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,true,true,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,false,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13274\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11477\",\"type\":\"GroupFilter\"},{\"id\":\"11478\",\"type\":\"GroupFilter\"},{\"id\":\"11479\",\"type\":\"GroupFilter\"},{\"id\":\"11480\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11481\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14285\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13267\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14296\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14297\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14098\",\"type\":\"CDSView\"}},\"id\":\"14298\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13284\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"11482\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13272\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13268\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14016\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14317\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11483\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14014\",\"type\":\"GroupFilter\"},{\"id\":\"14015\",\"type\":\"GroupFilter\"},{\"id\":\"14016\",\"type\":\"GroupFilter\"},{\"id\":\"14017\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14018\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14292\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11484\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13266\",\"type\":\"GroupFilter\"},{\"id\":\"13267\",\"type\":\"GroupFilter\"},{\"id\":\"13268\",\"type\":\"GroupFilter\"},{\"id\":\"13269\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13270\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14297\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11485\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11482\",\"type\":\"GroupFilter\"},{\"id\":\"11483\",\"type\":\"GroupFilter\"},{\"id\":\"11484\",\"type\":\"GroupFilter\"},{\"id\":\"11485\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11486\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"13276\",\"type\":\"GroupFilter\"},{\"id\":\"13277\",\"type\":\"GroupFilter\"},{\"id\":\"13278\",\"type\":\"GroupFilter\"},{\"id\":\"13279\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13280\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14308\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14309\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14113\",\"type\":\"CDSView\"}},\"id\":\"14310\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"11487\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"14009\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12938\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11990\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12858\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11991\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12942\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12943\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12737\",\"type\":\"CDSView\"}},\"id\":\"12944\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13639\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13640\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13445\",\"type\":\"CDSView\"}},\"id\":\"13641\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11992\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12882\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,true,false,true,true,false,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11993\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12854\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12855\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12627\",\"type\":\"CDSView\"}},\"id\":\"12856\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"11990\",\"type\":\"GroupFilter\"},{\"id\":\"11991\",\"type\":\"GroupFilter\"},{\"id\":\"11992\",\"type\":\"GroupFilter\"},{\"id\":\"11993\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"11994\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13643\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11995\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12943\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12883\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11996\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12878\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12879\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12657\",\"type\":\"CDSView\"}},\"id\":\"12880\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11997\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12858\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12859\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12632\",\"type\":\"CDSView\"}},\"id\":\"12860\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13643\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13644\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13450\",\"type\":\"CDSView\"}},\"id\":\"13645\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11998\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13651\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13652\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13460\",\"type\":\"CDSView\"}},\"id\":\"13653\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"11995\",\"type\":\"GroupFilter\"},{\"id\":\"11996\",\"type\":\"GroupFilter\"},{\"id\":\"11997\",\"type\":\"GroupFilter\"},{\"id\":\"11998\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"11999\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12859\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13640\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12874\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12875\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12652\",\"type\":\"CDSView\"}},\"id\":\"12876\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12000\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12862\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12863\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12637\",\"type\":\"CDSView\"}},\"id\":\"12864\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12886\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13647\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13648\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13455\",\"type\":\"CDSView\"}},\"id\":\"13649\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12001\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12863\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13644\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12002\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,false,true,false,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12003\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12939\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"12000\",\"type\":\"GroupFilter\"},{\"id\":\"12001\",\"type\":\"GroupFilter\"},{\"id\":\"12002\",\"type\":\"GroupFilter\"},{\"id\":\"12003\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12004\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12862\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14168\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13648\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12005\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12867\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12006\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12878\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12007\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12866\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12008\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13647\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"12005\",\"type\":\"GroupFilter\"},{\"id\":\"12006\",\"type\":\"GroupFilter\"},{\"id\":\"12007\",\"type\":\"GroupFilter\"},{\"id\":\"12008\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12009\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12942\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13652\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12010\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12879\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13655\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13656\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13465\",\"type\":\"CDSView\"}},\"id\":\"13657\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12011\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12866\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12867\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12642\",\"type\":\"CDSView\"}},\"id\":\"12868\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12012\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,true,false,true,true,false,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12013\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"13680\",\"type\":\"Selection\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12870\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12871\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12647\",\"type\":\"CDSView\"}},\"id\":\"12872\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"12010\",\"type\":\"GroupFilter\"},{\"id\":\"12011\",\"type\":\"GroupFilter\"},{\"id\":\"12012\",\"type\":\"GroupFilter\"},{\"id\":\"12013\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12014\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"13681\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12015\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12871\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12016\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13656\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12882\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12883\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12662\",\"type\":\"CDSView\"}},\"id\":\"12884\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12017\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12870\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12938\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12939\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12732\",\"type\":\"CDSView\"}},\"id\":\"12940\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12018\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13651\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"12015\",\"type\":\"GroupFilter\"},{\"id\":\"12016\",\"type\":\"GroupFilter\"},{\"id\":\"12017\",\"type\":\"GroupFilter\"},{\"id\":\"12018\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12019\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13899\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12020\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12875\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13655\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12021\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12874\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"12598\",\"type\":\"GroupFilter\"},{\"id\":\"12599\",\"type\":\"GroupFilter\"},{\"id\":\"12600\",\"type\":\"GroupFilter\"},{\"id\":\"12601\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12602\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12229\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12230\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12229\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12230\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12004\",\"type\":\"CDSView\"}},\"id\":\"12231\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"12603\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12233\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12234\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12233\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12234\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12009\",\"type\":\"CDSView\"}},\"id\":\"12235\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12297\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12298\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12089\",\"type\":\"CDSView\"}},\"id\":\"12299\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12237\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12238\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12237\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12238\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12014\",\"type\":\"CDSView\"}},\"id\":\"12239\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12298\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12241\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12242\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12241\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12242\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12019\",\"type\":\"CDSView\"}},\"id\":\"12243\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12297\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12245\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12246\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12245\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12246\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12024\",\"type\":\"CDSView\"}},\"id\":\"12247\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12249\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12250\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12249\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12250\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12029\",\"type\":\"CDSView\"}},\"id\":\"12251\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12293\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12294\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12084\",\"type\":\"CDSView\"}},\"id\":\"12295\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12253\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12254\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12253\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12254\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12034\",\"type\":\"CDSView\"}},\"id\":\"12255\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12294\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12257\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12258\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12257\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12258\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12039\",\"type\":\"CDSView\"}},\"id\":\"12259\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12293\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12261\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12262\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12261\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12262\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12044\",\"type\":\"CDSView\"}},\"id\":\"12263\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11960\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11962\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11961\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13002\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13003\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12812\",\"type\":\"CDSView\"}},\"id\":\"13004\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11965\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11960\",\"type\":\"GroupFilter\"},{\"id\":\"11961\",\"type\":\"GroupFilter\"},{\"id\":\"11962\",\"type\":\"GroupFilter\"},{\"id\":\"11963\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"11964\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13003\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,false,true,false,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11963\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11967\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11966\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11970\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11965\",\"type\":\"GroupFilter\"},{\"id\":\"11966\",\"type\":\"GroupFilter\"},{\"id\":\"11967\",\"type\":\"GroupFilter\"},{\"id\":\"11968\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"11969\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11968\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,true,false,true,true,false,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11973\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11972\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11971\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11977\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11976\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11975\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"red\",\"red\",\"red\",\"red\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\"],\"origin\":[\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\"],\"p_x0\":[6.574464556273277,5.7536777878861365,7.736347845999433,9.763309496699001,2.5972799060231466,9.474961566033091,9.871362871242816,9.833278494248546,9.886452888244584,9.659978816242457,9.720765316628007,9.917050037475647,9.816910255812132,1.651316474408187,9.776817393895318,9.898873650588051,9.73152110627979,9.949001370643916,9.73675639035756,9.515535846321107,9.825245388766497,9.741387065780977,9.797311138147144,9.908496858829082,9.578555231336935,9.603130497268694,9.860124295824477,9.85242276096097,9.97761305912243,9.573555654550788,9.852654208444719,9.93514470050441,9.49149351583819,9.766625205475894,9.61868536217969,9.778345392544232,9.493507556639841,9.520346098341822,9.524262766575717,9.550778961798404,9.618756224977101,9.871046567030117,9.49755608636551,9.872823275937296,9.51619779772168,9.879837456246456,9.796889931468758,9.66966925868439,9.923189706388072,9.816722156831865,9.892626771603346,9.291177315149419,-3.8507618097339025,3.995984525628433,7.329604579522929,9.922470010649384,9.818169403001558,9.770928578887766,9.70959382958295,9.77532705006847,9.663089956070397,9.94829512628565,5.615675661958155,9.104614896355304,1.063892947013688,5.988209772046654,9.45486037274653,-4.990638170649746,9.986121640544297,1.8969836014395032,9.366189494786983,9.841844000897776,9.845548800259639,3.405312809441325,4.511865410143471,9.533582999697472,9.145125495881544,9.758091648356665,9.460498892657117,9.391535072313758,9.343456700295452,9.806081528284516,9.87925253753674,5.151535475672658,-4.8642747685896275,-8.298331221205949,-3.910056656236698,9.954331557663323,9.802489868617286,9.88003317092,6.708567131908499,-9.71267945684989,-7.685194042283332,7.199456193905437,-6.508045913108347,-6.7785710768717955,2.3574246650039843,-0.1635985689683217,9.911577840583249],\"p_x1\":[-9.70170189950312,-4.974922099319709,-3.3984602978786445,-9.285530158448536,-3.4476444643076327,-3.4531946167751917,-3.3359693355103683,-9.341373587839742,-3.3372923349893675,-9.534380309244433,-9.53100816260161,-3.335474501639811,-3.3520424071688026,-4.939258901607799,-3.347558595597717,-9.623135257915893,-9.556655035668278,-3.344681727223513,-9.611261615454653,-9.57175242499804,-3.35164650370843,-9.58433138820181,-9.551277835723795,-3.3266135637322645,-9.860186355024757,-3.8235602736044996,-3.3554889293862864,-3.2096108829903773,-3.352188192022547,-9.714551364062723,-3.3672940107824845,-3.334622447353416,-9.82720330604877,-3.4189722958645605,-9.702329729411739,-3.5527568711940045,-9.85365221141381,-3.1787850544268546,-9.746104873360439,-9.672933838169095,-9.529420205107785,-3.3195072213688928,-9.583590339532911,-3.3306469990429903,-9.858488317876812,-3.355622584799934,-3.327355618768589,-9.605842937153568,-3.341782993093326,-9.763863992038713,-3.334110826598363,-3.1714365897798134,-0.24842105118745117,0.7747222496976569,-3.259022339591228,-3.374462664138484,-3.332425329495373,-3.3591516963868404,-3.339387719810687,-3.354904601034119,-2.474680620019507,-2.7814045241683347,-7.690013606742641,-2.710718250891315,3.5554895890773235,2.210911541185034,-3.153075506587111,7.514511965742777,-2.8693214570197956,5.241721155903278,-3.3550225554449664,-3.3557254662620224,-2.3523557598885114,-3.547217980912663,-4.749109763805621,-2.4410648228442566,-2.5533164194741422,-3.016932576618638,-2.5650744905706047,-3.191627656069543,-2.2063239882740397,-3.346399598226336,-3.3278844088184485,4.998585811304739,-5.716620684870028,-6.837757645064166,-4.830225564299733,-3.344271523570889,-3.3227340160593544,-5.932057218966262,-8.446664058533555,7.281726511087239,9.05128784053636,6.03383934539627,7.831882861679553,2.7595842545229097,4.1371102683186916,-5.750364221254401,-3.3427838522060958],\"runs\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Incumbent\",\"Final Incumbent\",\"Incumbent\",\"Incumbent\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"5kusIYIL2T/fjbNJcBm8P49OkQLlu6M/6coyB5Z92T+pb9EkBNquv24IZtM9xbQ/0zYouNectD/waKmzZLLZP3zZNd3qp7Q/YWgvK2I32j9l+nLO8jvaP6Z0v4DQq7Q/4DKB4TG/tD9Au79qaKGmP1OOZA6fnrQ/jtRcjoS52j+RGluATVLaP3ZqPcxb1LQ/dB/Farl/2j8hPemT7EbaP4sXJav3wLQ/k5V5ltVq2j9V7EpYNlvaP02uZUk7i7Q/w6sTyhoy2z95bxz3Sg+8PwLkj03c17Q/xsf1kj4Esz/4zeUNrPe0P6ay1siov9o/vmszvub7tD/qXzWtQK60P7Znc6Z7FNs/6G86G75wtT+YhNhXYbraP6bUZIuSz7c/+jgHsHAp2z8hn6zEoaywPzODGHrq1No/d/I8IRKc2j+E6YL6ey/aPwDAL7sCY7Q/6Md4TqNO2j9EuaS954u0P3fw30chLts/PVYpADDftD9nH64rKme0PxCXNwuYcdo/XcYbKbzDtD9AEZvLVwfbPzvZQkiTn7Q/r+MA+8zRrT+RJBcfCuvTv3ifRSO6NNS/odI0WJe0kj8Ab3UyhDW1PwslVGY3gbQ/BOLkxN28tD+g9dAc20q0PwSMUF1Cs7Q/PG/6JLpxoD9R4kt2ZKOrP+Tp2k7sZr6/vOseCGZnlj/ycdWoj23hv+HsMRDY2dS/0d+BHqGFrz8HCFppV3Xqvwdhw20X7a0/ChrYdW4Q5L8lI+fqeIWyPyPIqEHu0rQ/KoWKbx5Cnj9Hoc0U4Eymvx76ZuCgNrM/3wGDi6oAmj/NFYdRUfeMP0ONevhxS7A/DVYfepTenT8D1rezXe6vP9Xcx21BuGY/LzNZEMqotD+8floy/YS0P5rMog75RuC/uNW+q1E5qj8mR1IbLrq/Py3vKXWfmFa/b/dhbGvUtD9FO7p9pVm0P4QleOLi5c0/6FwrSbBB1D8Yil9Ixm/sv6gg/q5nI+6/x4RGwyj63b/8n54pZfPqv/gmoUUSRuG/UCWz2h+44b8qT+ENuje5P0aoAl/xwrQ/\",\"dtype\":\"float64\",\"shape\":[99]},\"y\":{\"__ndarray__\":\"KWivigy6jD9qAczTa9W0P40bieUqdLK/wxVWeMphzr/qMYonFEnGP0AmBHa8dMO/wGuvQXuHxr/7hDb8lDzPv1eJK35Hnsa/Mq8zuN3jzb9fMfHatn3Ov5J1gBXw1ca/cjgOeawKxr9bcYy/gobTP5m5M66xz8W/+vIQB+kM0L93rU+1/KTOvwiay07S+sa/yF3pAirLzr9BNcwsHnvMv/3q1G+0Gca/+FBmDmvIzr9pV9CW3DnPv2oFc2bO2Ma/4zw14bbBzb9EkvzdmLfEv2CsOzpSTsa/jnDcT5hbx79sO29qJR3Hv0SKk9cDWs2/6qHSGx0qxr9nTeQ4jfbGv8G7SKESr8y/HZJXLHVBxb/kSAUo7cvNv8Wc01o3hsW/5D2mws7EzL8tCBZXy5XFv2EnOJvq4sy/8emM9usGzb+lrHOf9HPNv1a18gKHp8a/no4s2t1RzL+CLawyH5TGv0alvLdICs2/yrqxU6Fvxr8kvNa3VxjGv5cbrDPgIs6/7Gj0gAvUxr9LZpAKmN3Pv7Yl7AXvrsa/fpHq4ApIxL/yFfwD/6XiP3wt2+/wArk/k5AoU+dwrb+Ld4dgTZHGvz44fM7iMsa/I+bjJKuvxb+qa77VgnLFvx0oqUwvv8W/OWhJRQL0yr+9ReAJY9rKv5OJvKlsv9K/f3Sfh24qxr8V0hFDdH/RP2KVKlPzKZ2/RDtJkdNmxb9rbIciX/fmP1b+CMpjisq/VZyamK0tyj+t6wWD00jDv9WP8uhuLsa/ytZnc6K8zL9+nW7H0PHBP6Df8NH26cI/btMZepBYyr/D39kUbj/Hv/cQ8Qk7Jci/nu5d7oU3yb+WX85Af7jEv85WnMFVQsq/m3O4RkMDxr+8u5sYcaTGv/a0CM5q+42/vFaWy3SL5T8xxcZzj5XsP55iD6VFvOI/dPMgIbkEx7/gF4NhzyrGv+/TYhRa78i/uqu4XEWGmD+tNTtoVSTvPyGwBIbM2+w/6Z2cb6Egw79Cu7oeb6rqP6alHbidC+k/C7cFPUK+xj8lo4lkMpDbP084wkZvvsa/\",\"dtype\":\"float64\",\"shape\":[99]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"11775\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"11776\",\"type\":\"UnionRenderers\"}},\"id\":\"11269\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"filters\":[{\"id\":\"11970\",\"type\":\"GroupFilter\"},{\"id\":\"11971\",\"type\":\"GroupFilter\"},{\"id\":\"11972\",\"type\":\"GroupFilter\"},{\"id\":\"11973\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"11974\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11980\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11975\",\"type\":\"GroupFilter\"},{\"id\":\"11976\",\"type\":\"GroupFilter\"},{\"id\":\"11977\",\"type\":\"GroupFilter\"},{\"id\":\"11978\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"11979\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11978\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11981\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11955\",\"type\":\"GroupFilter\"},{\"id\":\"11956\",\"type\":\"GroupFilter\"},{\"id\":\"11957\",\"type\":\"GroupFilter\"},{\"id\":\"11958\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"11959\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11958\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11982\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13611\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11987\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11985\",\"type\":\"GroupFilter\"},{\"id\":\"11986\",\"type\":\"GroupFilter\"},{\"id\":\"11987\",\"type\":\"GroupFilter\"},{\"id\":\"11988\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"11989\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11985\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11988\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11986\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,false,true,false,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11983\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11980\",\"type\":\"GroupFilter\"},{\"id\":\"11981\",\"type\":\"GroupFilter\"},{\"id\":\"11982\",\"type\":\"GroupFilter\"},{\"id\":\"11983\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"11984\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11553\",\"type\":\"GroupFilter\"},{\"attributes\":{\"desired_num_ticks\":15},\"id\":\"11324\",\"type\":\"BasicTicker\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14094\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11554\",\"type\":\"GroupFilter\"},{\"attributes\":{\"color_mapper\":{\"id\":\"11303\",\"type\":\"LinearColorMapper\"},\"formatter\":{\"id\":\"11765\",\"type\":\"BasicTickFormatter\"},\"label_standoff\":12,\"location\":[0,0],\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"11324\",\"type\":\"BasicTicker\"}},\"id\":\"11325\",\"type\":\"ColorBar\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14095\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,true,false,true,true,false,false,true,false,true,true,true,true,false,true,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11555\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11552\",\"type\":\"GroupFilter\"},{\"id\":\"11553\",\"type\":\"GroupFilter\"},{\"id\":\"11554\",\"type\":\"GroupFilter\"},{\"id\":\"11555\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11556\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"11771\",\"type\":\"Selection\"},{\"attributes\":{\"filters\":[{\"id\":\"14089\",\"type\":\"GroupFilter\"},{\"id\":\"14090\",\"type\":\"GroupFilter\"},{\"id\":\"14091\",\"type\":\"GroupFilter\"},{\"id\":\"14092\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14093\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11327\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"11557\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11328\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14089\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11329\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11558\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11559\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11330\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11327\",\"type\":\"GroupFilter\"},{\"id\":\"11328\",\"type\":\"GroupFilter\"},{\"id\":\"11329\",\"type\":\"GroupFilter\"},{\"id\":\"11330\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11331\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11560\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,true,false,false,true,true,false,true,false,false,false,false,true,true,false,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,false,true,false,false,false,false,false,true,false,false,true,false,true,false,false,true,true,true,false,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,false,true,false,true,true,true,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,true,true,true,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,true,false,true,false,true,true,false,true,true,true,false,false,false,false,false,false,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,true,true,true,true,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,true,true,true,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,true,true,false,false,true,true,true,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14087\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11557\",\"type\":\"GroupFilter\"},{\"id\":\"11558\",\"type\":\"GroupFilter\"},{\"id\":\"11559\",\"type\":\"GroupFilter\"},{\"id\":\"11560\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11561\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11332\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14085\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"11562\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14090\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11333\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14084\",\"type\":\"GroupFilter\"},{\"id\":\"14085\",\"type\":\"GroupFilter\"},{\"id\":\"14086\",\"type\":\"GroupFilter\"},{\"id\":\"14087\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14088\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11334\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11563\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14079\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11564\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,true,false,true,true,false,false,true,false,true,true,true,true,false,true,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11335\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14091\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14081\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11565\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11332\",\"type\":\"GroupFilter\"},{\"id\":\"11333\",\"type\":\"GroupFilter\"},{\"id\":\"11334\",\"type\":\"GroupFilter\"},{\"id\":\"11335\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11336\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"11562\",\"type\":\"GroupFilter\"},{\"id\":\"11563\",\"type\":\"GroupFilter\"},{\"id\":\"11564\",\"type\":\"GroupFilter\"},{\"id\":\"11565\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11566\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11337\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14076\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11644\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11568\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11338\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14084\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11339\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11569\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11340\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"14080\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11568\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11569\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11331\",\"type\":\"CDSView\"}},\"id\":\"11570\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,true,false,false,false,false,true,true,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,false,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14072\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11337\",\"type\":\"GroupFilter\"},{\"id\":\"11338\",\"type\":\"GroupFilter\"},{\"id\":\"11339\",\"type\":\"GroupFilter\"},{\"id\":\"11340\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11341\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11342\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11736\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14079\",\"type\":\"GroupFilter\"},{\"id\":\"14080\",\"type\":\"GroupFilter\"},{\"id\":\"14081\",\"type\":\"GroupFilter\"},{\"id\":\"14082\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14083\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11572\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,false,true,false,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,false,false,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,true,false,true,true,false,true,false,false,true,false,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,false,true,true,false,true,false,false,true,false,true,false,true,true,true,false,true,false,true,false,true,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"14082\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14077\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11343\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11573\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14069\",\"type\":\"GroupFilter\"},{\"id\":\"14070\",\"type\":\"GroupFilter\"},{\"id\":\"14071\",\"type\":\"GroupFilter\"},{\"id\":\"14072\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14073\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11344\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11572\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11573\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11336\",\"type\":\"CDSView\"}},\"id\":\"11574\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"14064\",\"type\":\"GroupFilter\"},{\"id\":\"14065\",\"type\":\"GroupFilter\"},{\"id\":\"14066\",\"type\":\"GroupFilter\"},{\"id\":\"14067\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14068\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"14074\",\"type\":\"GroupFilter\"},{\"id\":\"14075\",\"type\":\"GroupFilter\"},{\"id\":\"14076\",\"type\":\"GroupFilter\"},{\"id\":\"14077\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14078\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11640\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11641\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11421\",\"type\":\"CDSView\"}},\"id\":\"11642\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11345\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14071\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11576\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"11342\",\"type\":\"GroupFilter\"},{\"id\":\"11343\",\"type\":\"GroupFilter\"},{\"id\":\"11344\",\"type\":\"GroupFilter\"},{\"id\":\"11345\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11346\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,true,false,false,false,false,true,true,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,false,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14092\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14075\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11577\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11347\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14069\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11576\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11577\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11341\",\"type\":\"CDSView\"}},\"id\":\"11578\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11348\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"14074\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11641\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11349\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11580\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11350\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14086\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11581\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"14094\",\"type\":\"GroupFilter\"},{\"id\":\"14095\",\"type\":\"GroupFilter\"},{\"id\":\"14096\",\"type\":\"GroupFilter\"},{\"id\":\"14097\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14098\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"11347\",\"type\":\"GroupFilter\"},{\"id\":\"11348\",\"type\":\"GroupFilter\"},{\"id\":\"11349\",\"type\":\"GroupFilter\"},{\"id\":\"11350\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11351\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11580\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11581\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11346\",\"type\":\"CDSView\"}},\"id\":\"11582\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11352\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11640\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11584\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11353\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14097\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14096\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11354\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11585\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,true,false,true,true,false,false,true,false,true,true,true,true,false,true,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11355\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11584\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11585\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11351\",\"type\":\"CDSView\"}},\"id\":\"11586\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14070\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11352\",\"type\":\"GroupFilter\"},{\"id\":\"11353\",\"type\":\"GroupFilter\"},{\"id\":\"11354\",\"type\":\"GroupFilter\"},{\"id\":\"11355\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11356\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11737\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"12633\",\"type\":\"GroupFilter\"},{\"id\":\"12634\",\"type\":\"GroupFilter\"},{\"id\":\"12635\",\"type\":\"GroupFilter\"},{\"id\":\"12636\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12637\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12601\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12599\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12661\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12600\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12638\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12581\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12660\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"12588\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12639\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"12583\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12640\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12659\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12578\",\"type\":\"GroupFilter\"},{\"id\":\"12579\",\"type\":\"GroupFilter\"},{\"id\":\"12580\",\"type\":\"GroupFilter\"},{\"id\":\"12581\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12582\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12641\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12596\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12638\",\"type\":\"GroupFilter\"},{\"id\":\"12639\",\"type\":\"GroupFilter\"},{\"id\":\"12640\",\"type\":\"GroupFilter\"},{\"id\":\"12641\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12642\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12579\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12643\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12593\",\"type\":\"GroupFilter\"},{\"id\":\"12594\",\"type\":\"GroupFilter\"},{\"id\":\"12595\",\"type\":\"GroupFilter\"},{\"id\":\"12596\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12597\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12658\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12644\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12580\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12645\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12653\",\"type\":\"GroupFilter\"},{\"id\":\"12654\",\"type\":\"GroupFilter\"},{\"id\":\"12655\",\"type\":\"GroupFilter\"},{\"id\":\"12656\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12657\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"12598\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12585\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,true,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12646\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12643\",\"type\":\"GroupFilter\"},{\"id\":\"12644\",\"type\":\"GroupFilter\"},{\"id\":\"12645\",\"type\":\"GroupFilter\"},{\"id\":\"12646\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12647\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12589\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12595\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12656\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"12578\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12648\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"12593\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12655\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12590\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12649\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12650\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12584\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12654\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12651\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,true,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12586\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12594\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12583\",\"type\":\"GroupFilter\"},{\"id\":\"12584\",\"type\":\"GroupFilter\"},{\"id\":\"12585\",\"type\":\"GroupFilter\"},{\"id\":\"12586\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12587\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12648\",\"type\":\"GroupFilter\"},{\"id\":\"12649\",\"type\":\"GroupFilter\"},{\"id\":\"12650\",\"type\":\"GroupFilter\"},{\"id\":\"12651\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12652\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12588\",\"type\":\"GroupFilter\"},{\"id\":\"12589\",\"type\":\"GroupFilter\"},{\"id\":\"12590\",\"type\":\"GroupFilter\"},{\"id\":\"12591\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12592\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12591\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12653\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12670\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12669\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13488\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12671\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13491\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13492\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"12668\",\"type\":\"GroupFilter\"},{\"id\":\"12669\",\"type\":\"GroupFilter\"},{\"id\":\"12670\",\"type\":\"GroupFilter\"},{\"id\":\"12671\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12672\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13487\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13488\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13255\",\"type\":\"CDSView\"}},\"id\":\"13489\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14324\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14325\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14133\",\"type\":\"CDSView\"}},\"id\":\"14326\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12673\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12668\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13600\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12674\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12663\",\"type\":\"GroupFilter\"},{\"id\":\"12664\",\"type\":\"GroupFilter\"},{\"id\":\"12665\",\"type\":\"GroupFilter\"},{\"id\":\"12666\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12667\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14157\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12675\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13508\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13499\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13500\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13270\",\"type\":\"CDSView\"}},\"id\":\"13501\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"red\",\"red\",\"red\",\"red\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\"],\"origin\":[\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\"],\"p_x0\":[6.574464556273277,5.7536777878861365,7.736347845999433,9.763309496699001,2.5972799060231466,9.474961566033091,9.871362871242816,9.833278494248546,9.886452888244584,9.659978816242457,9.720765316628007,9.917050037475647,9.816910255812132,1.651316474408187,9.776817393895318,9.845836462655662,9.898873650588051,9.904330081569782,9.73152110627979,9.949001370643916,9.943908702941538,9.73675639035756,9.515535846321107,9.825245388766497,8.016492727414843,9.741387065780977,9.337914228642113,9.797311138147144,1.1344746876642553,9.908496858829082,9.059711281175883,9.578555231336935,9.603130497268694,9.860124295824477,9.255873975995492,9.85242276096097,9.97761305912243,7.418534824316293,9.573555654550788,9.852654208444719,9.93514470050441,9.519192797858263,9.49149351583819,9.766625205475894,7.53961957904589,9.61868536217969,9.778345392544232,9.735591243931417,9.493507556639841,9.520346098341822,7.068579202572202,9.524262766575717,-0.5659946881901483,6.975901816177355,9.550778961798404,9.938346756147599,7.3769789068517575,9.895065655794141,7.358764932916685,9.618756224977101,9.871046567030117,9.911983688041445,6.88535638580332,9.49755608636551,9.872823275937296,-0.21873770106086,7.229559719542614,9.51619779772168,9.879837456246456,9.908775109969731,0.8800498921991906,9.796889931468758,7.225974752632634,9.66966925868439,9.923189706388072,9.547898595576878,2.9105054359762548,9.816722156831865,9.892626771603346,9.73267438287007,7.065431941731276,9.291177315149419,-3.8507618097339025,-1.9733245831802666,3.995984525628433,7.545691827174991,7.028602922244069,7.329604579522929,9.922470010649384,7.597358290567826,7.218491994784063,9.818169403001558,7.119009105811372,9.770928578887766,9.796782234293236,7.07742952057427,9.70959382958295,9.811635910692754,7.022919247997908,9.77532705006847,7.196339053262818,7.407237213965118,7.030741108916743,7.551105481010705,7.009907938724474,9.663089956070397,6.8548032988225245,9.94829512628565,7.26842940641442,7.121997701615438,5.615675661958155,7.484076014268929,6.992495758574474,9.104614896355304,1.063892947013688,-0.541331336304383,5.988209772046654,-3.2162313976786594,2.711617095583989,-9.531116737197745,7.184064599238724,9.45486037274653,-4.990638170649746,9.641650353996543,7.082939636515409,9.986121640544297,1.8969836014395032,7.179905699124671,9.366189494786983,9.841844000897776,7.732471631719321,7.077182073578012,9.845548800259639,7.007219238523422,3.405312809441325,7.408577247739348,7.084808634814568,4.511865410143471,-4.249152820626438,7.1183983554361845,9.533582999697472,9.723713392965486,6.993197521709341,9.145125495881544,9.555886478083973,7.113019994894067,7.048919758217956,9.758091648356665,9.72735420124604,7.074971579752685,7.015535723104382,9.460498892657117,9.573827133213676,7.026639236590736,9.391535072313758,9.995214390136507,7.155105818884998,7.125776952693975,9.343456700295452,9.999409905745992,7.246049156926638,7.226689222102831,7.389599130579768,7.035763580588991,9.806081528284516,0.6534546926782898,9.87925253753674,7.125292729737506,6.972851144933877,5.151535475672658,7.522610236284937,7.126789525688469,-4.8642747685896275,7.411345672949146,7.073241355552383,-8.298331221205949,7.881492781306324,7.025973352438555,7.08039198849643,-3.910056656236698,7.421859047935804,7.0832824712622475,7.091059811958104,9.954331557663323,7.438403113424876,7.056686071821449,7.171777516137944,9.802489868617286,7.610934774934023,7.147388619463438,7.136709950837169,9.88003317092,7.13835997880085,-2.464122015970327,7.127489509888896,7.015519708118855,6.708567131908499,9.706713713915413,7.106276761140585,-9.71267945684989,9.777447515720706,-7.251797328879137,4.23132540179693,9.699305972421602,7.036333813460573,-4.092808085491598,-7.685194042283332,9.606368272629563,7.1931288288505755,7.127932778448944,9.539854098275406,6.300558951767563,7.083859917804784,7.199456193905437,9.638268180675581,-9.8782403284873,7.050151421270844,-6.508045913108347,-6.7785710768717955,7.015159134321383,2.3574246650039843,7.2495645056534315,6.947669843546478,7.339917835979527,7.237360934484094,7.399697068850287,5.456584220316801,7.264671693067658,-0.1635985689683217,7.241607431261407,7.060364010645152,7.169235530988868,9.911577840583249,6.899295117388693,7.067026684637476,9.284461322708005,6.804330849592816,9.275221344899371,7.030221400046944,7.06738103582768,9.41369673732407,7.280421493817396,7.138126882696902,-6.406768406433459,6.994864556368615,-4.645570819183826,9.134897296150854,7.90398015146646,2.2813820532699367,9.094061744014159,7.141662200190382,9.163092117221801,7.115778386129122,7.210421927526596,7.068834090255724,9.469236547635354,7.20361433752754,7.1309054138240775,7.023400438957822,7.13446571273742,9.101299965439502,7.142031265797563,7.2175248969366095,6.980931337581666,9.154918484240017,7.023577362542746,7.032635441231822,9.076976746880195,9.468557212942514,7.061651878425689,9.290761292575827,7.074345191566572,9.25063685745737,7.20913401317798,9.345842403020775,7.227297644313428,7.1692786217755184,7.346688651964179,7.199542013072843,7.097105768721391,9.259002774264435,7.154980552270807,9.025335381609704,7.17945199807485,7.2446197840015145,7.159865144218724,7.077648017552214,7.137054157270313,7.421259540911819,7.028000827223117,7.686906581055521,7.0340235145389975,7.550583388734108,7.16321829586693,-4.9932688391984215,7.459578400176092,7.2267123682727465,7.559184427679931,7.090934663234865,7.626640727000954,7.14593592130036,7.51285438396032,7.282013812413098,1.215145982216585,7.579880542620273,7.20164258264791,7.047095233465711,7.507197281187871,-6.450201956134225,-6.962928897637848,7.508346867166683,6.900877037047657,7.496072503390469,7.0474519259065715,7.786287484887634,7.580039121720958,7.051626237377732,-0.907198165970355,7.171969079508635,8.948759215629682,7.123792334032814,-6.194686696174127,7.1126734784327965,7.19816704189439,-9.731475247877741,7.349941203599798,8.073795631623526,7.078325699107591,7.017307029211871,7.154135372144722,7.0112902384133164,7.05328851685416,6.994601630958904,7.650390224409744,7.107955248336157,-5.703729975847347,-5.686179864880212,9.151152734053777,7.392253422125975,7.046709030318137,-2.455159946422798,7.0701608323035074,-4.225592349633896,6.807231666831534,9.59344481936084,6.953698409367853,7.597236834814279,7.0717167951324775,3.130079876401613,6.958476005086428,-6.212333991933057,-4.263525822204759,4.702576896428422,7.182150719556205,7.082206361231641,7.129847188062492,7.2590331050217785,7.227914111123955,9.220785821648487,7.139225672631639,9.781260230951414,9.287002027838412,0.6812295761255776,7.182800231618703,-1.126259210756519,7.035514621312576,7.480765901617637,7.158776192273095,7.041669775169872,9.068066140095638,7.1502683696696,7.057993174752294,6.350554674440119,7.167895187438464,7.1854624023789455,7.075303694389159,6.9438523528560445,7.034924733937331,7.144422166638726,6.841110512043926,7.306649925771531,2.3545791512347964,7.100869503608294,6.985835333549375,3.7140408158717335,6.963852191031286,7.08537559072699,7.082015405447812,6.989730575568625,7.068351900752631,6.980031628310403,7.234232694557658,6.974602283664918,6.983319474691562,7.0693173542764285,7.221290339699269,-5.931895051696969,6.924579513799586,7.081774466034233,5.296568265588082,7.0455579902244665,7.066627206855472,7.048637606161371,6.981528564605192,7.190017674406029,7.056858584322313,7.116334618250516,7.063083191395997,7.267987391868594,7.207230964033677,7.03263510280037,7.062817831390401,7.142820832279625,7.056326868386119,7.309051375978779,7.176683722476074,7.166330461852059,7.177045211671306,7.2828135203974504,7.121775143524218,7.192904206517895,7.091560293265285,7.153402979985067,7.120295465075873,7.214237703807967,9.507127789800233,7.114094176152726,7.073435336357534,7.102420254738874,7.227518353923685,6.937966577265801,7.224534176444376,6.971967260508428,7.088635079619408,7.1398105448365,7.028477184816097,5.173716379212468,1.5497237199455007,7.069716493108334,7.234926824015027,6.970391496585865,7.109400763155762,4.22242610804512,6.980649909633019,7.212575546252793,7.982392271505464,-7.633739248861746,7.166194465317098,7.222430065966112,7.051778594926141,7.193054879316133,-8.709663576727717,7.068413851638386,7.025070802830385,7.095894193247226,7.169148707767988,7.09832718868752,7.235581867485397,9.869299190437477,7.049455809972606,7.1707076958941975,-7.523062419558411,7.048908475285792,7.0566392669401665,7.1424619627427255,7.088841671847515,-1.357996615761989,7.166723525724542,7.070180853182151,7.036800591955984,-3.228165909252308,-5.630202879151767,7.150517913759522,7.053876622723681,7.04072274270812,7.121900496776853,7.189259236098135,7.110827443612571,7.0724940154461855,6.996881106714877,6.979105807680568,7.130737689128466,7.155745507541102,7.2298557793575995,7.167632138567839,6.856140667433856,7.115185411828687,6.999609350310422,6.958146117280016,7.019060772190574,6.963813062134339,7.013361670310822,7.139275399460125,6.948336558970524,7.134555109360917,7.154879948103044,7.17657610081061,7.080278257427583,7.228023026364063,7.160206510240947,7.205278814862684,7.2083344625193035,7.220114165999934,7.243062150198117,7.108320407967916,7.23441562523724,7.327701972730907,7.189563131082803,7.167755779276959,7.179594695065429,7.12583893612598,7.192986491360237,7.1475692451895725,7.233169689196107,7.26818869338922,7.214630928098845,8.836876085159137,-3.5959693008694327,-4.605926810943974,7.047537353172693,7.19048063790979,7.045161175516601,7.129310746979918,7.135743937495388,-4.819197580473686,7.166176944913158,7.055259106927281,7.025414648473166,7.194635342683906,6.978762352798231,8.151918319433264,9.30053066908416,2.679832005830832,7.049870548386853,7.028875474960856,7.130536196064554,7.07504004376926,7.074065971985149,7.003134312190429,7.002942001997127,6.973514770505897,6.9864206299727165,7.027233023897349,6.950436155255186,6.994034938423525,7.010730023735011,7.084398279155543,7.094361506147415,7.038533441249044,7.096231406707027,7.071967379849337,7.104544575064693,7.09403884519514,7.073484902431002,7.131537761569653,7.128754967363957,7.17349895795094,7.058756030722787,7.148585249589633,6.9915606736057825,7.159280799143232,7.236101925187118,6.999960701302083,7.156070372397792,7.1548304583457,7.1407987770308345,7.008703460621291,7.088514601996966,7.036056313964327,7.192798936451133,7.119300656254307,7.086281900684771,-2.7213823369399908,7.020499656765512,7.166944747780299,7.197349013661462,7.206215627877036,-8.451495615190707,7.149995273272346,7.11000220616129,7.0703211108682105,-7.387508751380604,5.247827264403082,-7.35273791497054,0.21007988904491803,-2.1512618330927857,-2.261611553498579,7.008060714282447,7.094331364264011,7.0628404597038426,7.025169184394681,7.023628027382117,7.070491948572144,7.024279580278833,7.067148892147159,7.091294098370607,7.116587430698132,7.045716370865641,7.146224739767398,7.113238603156496,7.1083224390424995,6.9558598206916855,6.993834139806175,7.0366889671615525,7.13120605662629,7.175631033456252,7.125703001666579,7.158607567848296,7.014636300935699,7.016646145316972,7.116721149853053,7.028297025524356,7.048136310210879,7.063797477843998,7.09737651258337,7.1455667937391425,7.034621990291971,7.152199238037586,7.029732906928313,7.109057611156629,7.075287658944767,7.0980923251714145,7.127746905421173,7.079341911686015],\"p_x1\":[-9.70170189950312,-4.974922099319709,-3.3984602978786445,-9.285530158448536,-3.4476444643076327,-3.4531946167751917,-3.3359693355103683,-9.341373587839742,-3.3372923349893675,-9.534380309244433,-9.53100816260161,-3.335474501639811,-3.3520424071688026,-4.939258901607799,-3.347558595597717,-3.3300569070845114,-9.623135257915893,-3.3404159762378374,-9.556655035668278,-3.344681727223513,-3.350762472163832,-9.611261615454653,-9.57175242499804,-3.35164650370843,-3.3772712345835965,-9.58433138820181,-3.6207112780521387,-9.551277835723795,-3.476648912209386,-3.3266135637322645,-3.4728912731389174,-9.860186355024757,-3.8235602736044996,-3.3554889293862864,-3.4968138114099574,-3.2096108829903773,-3.352188192022547,-3.3970916657867454,-9.714551364062723,-3.3672940107824845,-3.334622447353416,-3.4551123692974297,-9.82720330604877,-3.4189722958645605,-3.4193221390960566,-9.702329729411739,-3.5527568711940045,-3.480354601141414,-9.85365221141381,-3.1787850544268546,-3.389823568039944,-9.746104873360439,7.145093197178269,-3.399712633894567,-9.672933838169095,-3.3449867263867787,-3.415667713994748,-3.3449789403003702,-3.428239973226691,-9.529420205107785,-3.3195072213688928,-3.335107266009726,-3.4157162683709092,-9.583590339532911,-3.3306469990429903,2.356101067123202,-3.4036871237188473,-9.858488317876812,-3.355622584799934,-3.338951938781838,9.111900581539565,-3.327355618768589,-3.4339968586699454,-9.605842937153568,-3.341782993093326,-3.473601203461129,4.821092497420272,-9.763863992038713,-3.334110826598363,-3.437652297042052,-3.4036091412657488,-3.1714365897798134,-0.24842105118745117,-0.653888323687589,0.7747222496976569,-3.415462512698203,-3.420566184797339,-3.259022339591228,-3.374462664138484,-3.4166457685171867,-3.416293700681142,-3.332425329495373,-3.414153496720294,-3.3591516963868404,-3.4619457049578735,-3.420487870674548,-3.339387719810687,-3.4558218241392087,-3.4087096495627156,-3.354904601034119,-3.4162257337583926,-3.410481658797975,-3.4208320756059205,-3.3946123802129877,-3.429792995006954,-2.474680620019507,-9.133830825880494,-2.7814045241683347,-3.38878814580883,-3.4071768547385144,-7.690013606742641,-3.3863726263060396,-3.410306804375808,-2.710718250891315,3.5554895890773235,-7.972722558256753,2.210911541185034,-5.452142618999078,-5.727803274605572,2.8580476239586226,-3.422696719927546,-3.153075506587111,7.514511965742777,2.3346271504369085,-3.406839532386604,-2.8693214570197956,5.241721155903278,-3.433545679332437,-3.3550225554449664,-3.3557254662620224,-3.4012474962145465,-3.427757218256456,-2.3523557598885114,-3.4250970427020277,-3.547217980912663,-3.4249746447153298,-3.4287552157643377,-4.749109763805621,-0.6988767993399119,-3.4160786862700165,-2.4410648228442566,-3.465890413924239,-3.4154042707189056,-2.5533164194741422,-3.4544680273609973,-3.4088621317985526,-3.416643415208025,-3.016932576618638,-3.4563082534267275,-3.423090332378705,-3.4186844857996954,-2.5650744905706047,-3.4630643289169925,-3.410649190076561,-3.191627656069543,-3.460602706003826,-3.4111748920166853,-3.4075478341128465,-2.2063239882740397,-3.460912426309771,-3.4065889890519205,-3.414707945351373,-3.40903089435934,-3.4269708181642784,-3.346399598226336,-5.440925896332878,-3.3278844088184485,-3.40486150958744,-3.4103279731448044,4.998585811304739,-3.397474357701034,-3.4075992194735862,-5.716620684870028,-3.4059673600140776,-3.424196001032863,-6.837757645064166,-3.39304426106664,-3.4333237095200877,-3.4024463746794984,-4.830225564299733,-3.4088490138426453,-3.410457473353401,-3.4136903439205133,-3.344271523570889,-3.411454963296519,-3.414002282921105,-3.4188767207998367,-3.3227340160593544,-3.4176740735936697,-3.4081416563717184,-3.4284872071155847,-5.932057218966262,-3.408249582945391,-2.5152508368613695,-3.420830141630131,-3.412420617317915,-8.446664058533555,-3.46766177476328,-3.4207913147961078,7.281726511087239,-3.45863505742079,3.6645083257915374,-5.307172897247712,-3.4674241353050386,-3.3956230705503776,-8.308846360593925,9.05128784053636,-3.441592908174858,-3.4198859771745838,-3.424460881377466,-3.454905453330662,-2.4424188680868486,-3.416452927623874,6.03383934539627,-3.4564367986781344,4.585577731589908,-3.419422830824896,7.831882861679553,2.7595842545229097,-3.4140313794156283,4.1371102683186916,-3.3779463233476203,-3.425635194641657,-3.3895389297045053,-3.3926976131908857,-3.4377150114853903,2.2820988560774573,-3.4283466197922428,-5.750364221254401,-3.3918962671253974,-3.389792643416958,-3.4133611922393445,-3.3427838522060958,-3.395734502800961,-3.4080891273089815,-3.455357852608472,-7.8433012761215455,-3.467259240764765,-3.4234482875650416,-3.421761834062849,-3.450269165499198,-3.0765798065776506,-3.428477837190126,-0.279420009285559,-3.4041860400634105,-2.1817089475319413,-3.4528087539563357,-1.1684001978270402,1.2190670396060987,-3.456410417726331,-3.4389636278792244,-3.462228541425657,-3.4093330638187256,-3.412076725756825,-3.410213408592587,-3.4829961226478137,-3.420155484313236,-3.424827900726637,-3.4155062649153214,-3.4088611507170032,-3.4688912914680694,-3.422777015200654,-3.420516888440833,-3.411999747766153,-3.449318947404427,-3.4195752043751177,-3.41281872774851,-3.4552356146225343,-3.4489218701993343,-3.3948227355726734,-3.4665873095976307,-3.4229923148397337,-3.468428705380189,-3.4177009606036357,-3.4783554401480004,-3.4063660606955235,-3.4252730318840108,-3.413137976289244,-3.407831811428448,-3.4093795790757673,-3.4829546512848886,-3.4167114457122194,-3.4612005482436894,-3.4010409920396487,-3.4081439796619053,-3.4000780404584674,-3.4147153186237524,-3.4152458403598907,-3.3908971545595437,-3.4047560573048905,-3.4119528665366623,-3.4209245036073543,-3.394666560316484,-3.41928898562728,0.4689779017460065,-3.416403673432164,-3.408769293645312,-3.4296306476209253,-3.421453347177387,-3.3941892304443666,-3.407997768120497,-3.3968689945343815,-3.41325574602949,-3.7716810980381688,-3.39816351956872,-3.4324706342673315,-3.415991261924221,-3.40854986858408,-4.380806782356186,-1.755346757337076,-3.4125587492270935,-5.879452410266275,-3.4116065415903414,-3.4229249297188877,-3.402330699459366,-3.3960128294827694,-3.41624037786723,5.320106703954382,-3.430744686336748,-7.002521739067989,-3.417170629698715,-0.74971107555141,-3.429743496109352,-3.41733644274405,7.969410713280173,-3.3973776261010897,8.289025026953006,-3.418135403532987,-3.426420540353,-3.4113041897577396,-3.4160641722737894,-3.4113101875368415,-3.4198183475976336,-3.4059605701622733,-3.3974286460864196,8.748990541554583,-1.961982430027449,-3.464671464756255,-3.3994934054797543,-3.4226714175360096,0.8149792357857457,-3.4151948963209886,-2.9853493718907504,-3.413889962257538,-3.4718992182366915,-3.4278471303219753,-3.3979962313787437,-3.4076240084169607,4.702935708006748,-3.417429951155352,-9.626977649071126,6.498250287559216,4.024518078733623,-3.4400656862464025,-3.412405261912128,-3.4074692928908865,-3.432647118219533,-3.4292433465530516,-3.463652637166299,-3.4065808913522586,-7.993438727998791,-3.4581881797452727,7.176228223228335,-3.4110773777232204,-4.503104702708971,-3.407621641331424,-3.399552117560428,-3.4204522476129116,-3.3968424211334742,-7.623713655586519,-3.410639064388975,-3.4148875517924235,-5.762222064027855,-3.4217393418876565,-3.4229599582749053,-3.4198965042668537,-3.4171171253843617,-3.4094665934283928,-3.41728634384703,-3.4138069312003436,-3.4115903271324486,6.819567013427783,-3.4226400468515408,-3.417717582383796,6.607611639061929,-3.4171466541428615,-3.419016167884072,-3.429335200570863,-3.4097698820890585,-3.4243235229759863,-3.4245751188150173,-3.407149788658299,-3.4212244023821716,-3.4083043425451143,-3.420927660697286,-3.407619720209068,-2.493176395875132,-3.4145240657665186,-3.428598544718965,9.19457812556534,-3.409950810382277,-3.4042386057253973,-3.414688130686746,-3.4062464320537185,-3.4010940904778417,-3.416044370430779,-3.4183075536979404,-3.421334314301302,-3.403016832156423,-3.4003310920918572,-3.39945052879073,-3.4279234696715655,-3.3863664597763146,-3.4129867034662533,-3.40658636937761,-3.4062177712736554,-3.415577414441236,-3.416028790942791,-3.4181263472005865,-3.426452025357964,-3.433189113125761,-3.421610995888738,-3.4104706973345076,-3.4069900635668082,-3.400826751687495,-3.3349003090706812,-3.4020597410399835,-3.4000847751923207,-3.4159644718814475,-3.4170018159135207,-3.4273250415034067,-3.4083703184932705,-3.426942786833078,-3.4106316454687953,-3.4128972512046696,-3.4066395680660024,-6.708768702956835,-0.7110735418594487,-3.409832060706889,-3.399931135110511,-3.435183023620602,-3.4334874635654504,9.33549818122194,-3.4338401136100147,-3.409247800575436,-8.688561079074033,9.137565496059242,-3.418093289434604,-3.420415136911564,-3.4212093815467277,-3.409198085874438,-4.192971340618605,-3.397601595634666,-3.409374471967724,-3.4077983884818854,-3.4062513397649683,-3.415923104678436,-3.416717809034539,-2.908503784632785,-3.417251172294007,-3.403661282444695,7.9215414846946,-3.428316769130779,-3.4240266725671535,1.04467574378641,-3.4275402792920326,-1.1295700088168577,-3.430832946368106,-3.4215548766089876,-3.4252543652688203,5.2201977518948866,9.348314040201554,-3.4290612768756645,-3.421778495819515,-3.41044067462645,-3.416609816581122,-3.404560529204562,-3.416235482075173,-3.422019126343576,-3.415525978761443,-3.4294674717024076,-3.4207735607528553,-3.4202258605387046,-3.415791816566368,-3.4078370624732344,-3.4160109520181727,-3.410834092022208,-3.4201663345284494,-3.4227876760447007,-3.4095376466326153,-3.4104856388329976,-3.415209862344505,-3.4111378044151373,-3.4173675305723457,-3.4038644403925424,-3.409833661810814,-3.4317417055913992,-3.425390165304071,-3.412828375848802,-3.4349061496886417,-3.425121443566251,-3.427336889562773,-3.4083551375209096,-3.409934247093119,-3.409406572634329,-3.4197182808587385,-3.4259719030842186,-3.4315921480118146,-3.429543225971347,-3.416857175283101,-3.4256289808979137,-3.4137240360562604,-3.4148136787735774,-3.428517585187425,-3.4165639626539166,-3.418326405616777,4.3590795992571145,-3.540266288546614,-8.625961687463846,-3.3992163187461086,-3.4109525371849445,-3.4065771879488347,-3.420116168027368,-3.4095838562845584,-7.2407073128810095,-3.4027152580576754,-3.41552995096389,-3.408659354060706,-3.4137618908564082,-3.4131354410892643,-5.927962405647882,3.6762070348672164,7.652984809172331,-3.417007472113376,-3.4154199418437594,-3.418074101261279,-3.406363356046053,-3.4121955169512583,-3.419942514579838,-3.419854836313667,-3.421803463028656,-3.4231492622289093,-3.4096293127147392,-3.4091943301524505,-3.4054632009361185,-3.4077120815036013,-3.4076393653673476,-3.409498064584283,-3.412407638687246,-3.4031298043752214,-3.423887721202897,-3.4184276043944983,-3.4083031742773855,-3.411973862151344,-3.424977323658184,-3.4030454303728783,-3.4288420075784654,-3.4150678156713976,-3.423090968359589,-3.425203980457053,-3.409237711949671,-3.4243173678827477,-3.4214575002765413,-3.4091619247947005,-3.419684470166434,-3.4179422228423286,-3.423363029583056,-3.4315621379958214,-3.403680587284029,-3.4083700749059656,-3.4273849375743204,-3.428762116138757,2.760955071010576,-3.41051048956876,-3.414427214210926,-3.4107972451369806,-3.417648106289228,2.544773472495729,-3.4119499194040515,-3.433644397009184,-3.428180163646007,-3.0019078622388857,-2.409757742065559,-5.348010082842616,2.3299978875550735,-6.181124873402791,-4.323514987529309,-3.41088138640535,-3.4141461775858044,-3.419405680370561,-3.413318256191179,-3.4232718996629172,-3.4156072258809855,-3.4170744852919412,-3.42871154217164,-3.427165785627764,-3.418454536077723,-3.4208002455541795,-3.42898331085509,-3.414146852066696,-3.427822837198832,-3.4212358651134966,-3.428341702831598,-3.4259640271300107,-3.428865773737532,-3.4113934485418627,-3.4254505923865164,-3.4303815384299448,-3.4303897834102273,-3.41369053831421,-3.410751253859737,-3.4178916490228755,-3.4355753527716058,-3.402772896691725,-3.4145444355085317,-3.4241447403152527,-3.417821680739946,-3.42126493405393,-3.4209591431220012,-3.4417101620156068,-3.4222952023852615,-3.4142597349411963,-3.4272001809880193,-3.420837134521646],\"runs\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Incumbent\",\"Final Incumbent\",\"Incumbent\",\"Incumbent\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[624]},\"y\":{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[624]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"14355\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"14356\",\"type\":\"UnionRenderers\"}},\"id\":\"11273\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12676\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13503\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13504\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13275\",\"type\":\"CDSView\"}},\"id\":\"13505\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,true,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12666\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12673\",\"type\":\"GroupFilter\"},{\"id\":\"12674\",\"type\":\"GroupFilter\"},{\"id\":\"12675\",\"type\":\"GroupFilter\"},{\"id\":\"12676\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12677\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14328\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13491\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13492\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13260\",\"type\":\"CDSView\"}},\"id\":\"13493\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14324\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14325\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12678\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14156\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14157\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13923\",\"type\":\"CDSView\"}},\"id\":\"14158\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14316\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14317\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14123\",\"type\":\"CDSView\"}},\"id\":\"14318\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12665\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13504\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12679\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14320\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14321\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14128\",\"type\":\"CDSView\"}},\"id\":\"14322\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13503\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14321\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12680\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14328\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14329\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14138\",\"type\":\"CDSView\"}},\"id\":\"14330\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12664\",\"type\":\"GroupFilter\"},{\"attributes\":{},\"id\":\"14355\",\"type\":\"Selection\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12681\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12678\",\"type\":\"GroupFilter\"},{\"id\":\"12679\",\"type\":\"GroupFilter\"},{\"id\":\"12680\",\"type\":\"GroupFilter\"},{\"id\":\"12681\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12682\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13511\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12683\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13507\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12663\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13599\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"14356\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12684\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12658\",\"type\":\"GroupFilter\"},{\"id\":\"12659\",\"type\":\"GroupFilter\"},{\"id\":\"12660\",\"type\":\"GroupFilter\"},{\"id\":\"12661\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12662\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13512\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12685\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14329\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14320\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13507\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13508\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13280\",\"type\":\"CDSView\"}},\"id\":\"13509\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,true,false,true,true,false,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12153\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13372\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12150\",\"type\":\"GroupFilter\"},{\"id\":\"12151\",\"type\":\"GroupFilter\"},{\"id\":\"12152\",\"type\":\"GroupFilter\"},{\"id\":\"12153\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12154\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13373\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12155\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12156\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,true,false,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,true,false,true,true,false,false,false,true,false,true,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,true,true,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,false,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13374\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12157\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"13396\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12158\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12155\",\"type\":\"GroupFilter\"},{\"id\":\"12156\",\"type\":\"GroupFilter\"},{\"id\":\"12157\",\"type\":\"GroupFilter\"},{\"id\":\"12158\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12159\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"13371\",\"type\":\"GroupFilter\"},{\"id\":\"13372\",\"type\":\"GroupFilter\"},{\"id\":\"13373\",\"type\":\"GroupFilter\"},{\"id\":\"13374\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13375\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12160\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,true,false,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,true,false,true,true,false,false,false,true,false,true,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,true,true,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,false,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13394\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12161\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"13376\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12162\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,false,true,false,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12163\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12160\",\"type\":\"GroupFilter\"},{\"id\":\"12161\",\"type\":\"GroupFilter\"},{\"id\":\"12162\",\"type\":\"GroupFilter\"},{\"id\":\"12163\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12164\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12165\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13377\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13398\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13378\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12166\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13393\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,true,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13379\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12167\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12168\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13392\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13387\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12165\",\"type\":\"GroupFilter\"},{\"id\":\"12166\",\"type\":\"GroupFilter\"},{\"id\":\"12167\",\"type\":\"GroupFilter\"},{\"id\":\"12168\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12169\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,true,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13399\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13376\",\"type\":\"GroupFilter\"},{\"id\":\"13377\",\"type\":\"GroupFilter\"},{\"id\":\"13378\",\"type\":\"GroupFilter\"},{\"id\":\"13379\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13380\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12170\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12171\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"13381\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13386\",\"type\":\"GroupFilter\"},{\"id\":\"13387\",\"type\":\"GroupFilter\"},{\"id\":\"13388\",\"type\":\"GroupFilter\"},{\"id\":\"13389\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13390\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12172\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,true,false,true,true,false,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12173\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12170\",\"type\":\"GroupFilter\"},{\"id\":\"12171\",\"type\":\"GroupFilter\"},{\"id\":\"12172\",\"type\":\"GroupFilter\"},{\"id\":\"12173\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12174\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12175\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13383\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,false,true,false,true,true,true,true,false,true,false,true,true,false,true,false,true,true,false,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13389\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13396\",\"type\":\"GroupFilter\"},{\"id\":\"13397\",\"type\":\"GroupFilter\"},{\"id\":\"13398\",\"type\":\"GroupFilter\"},{\"id\":\"13399\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13400\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12176\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13384\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12177\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"13391\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13382\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12178\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12175\",\"type\":\"GroupFilter\"},{\"id\":\"12176\",\"type\":\"GroupFilter\"},{\"id\":\"12177\",\"type\":\"GroupFilter\"},{\"id\":\"12178\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12179\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13388\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13397\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12181\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"13386\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12182\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13381\",\"type\":\"GroupFilter\"},{\"id\":\"13382\",\"type\":\"GroupFilter\"},{\"id\":\"13383\",\"type\":\"GroupFilter\"},{\"id\":\"13384\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13385\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12181\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12182\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11944\",\"type\":\"CDSView\"}},\"id\":\"12183\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12206\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12185\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13391\",\"type\":\"GroupFilter\"},{\"id\":\"13392\",\"type\":\"GroupFilter\"},{\"id\":\"13393\",\"type\":\"GroupFilter\"},{\"id\":\"13394\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13395\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12186\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13448\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"13431\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13472\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13499\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13442\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13432\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13599\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13600\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13395\",\"type\":\"CDSView\"}},\"id\":\"13601\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"13441\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13471\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13475\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13433\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13443\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13431\",\"type\":\"GroupFilter\"},{\"id\":\"13432\",\"type\":\"GroupFilter\"},{\"id\":\"13433\",\"type\":\"GroupFilter\"},{\"id\":\"13434\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13435\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13471\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13472\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13235\",\"type\":\"CDSView\"}},\"id\":\"13473\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"13436\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13475\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13476\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13240\",\"type\":\"CDSView\"}},\"id\":\"13477\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"13426\",\"type\":\"GroupFilter\"},{\"id\":\"13427\",\"type\":\"GroupFilter\"},{\"id\":\"13428\",\"type\":\"GroupFilter\"},{\"id\":\"13429\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13430\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13444\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13438\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13476\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13446\",\"type\":\"GroupFilter\"},{\"id\":\"13447\",\"type\":\"GroupFilter\"},{\"id\":\"13448\",\"type\":\"GroupFilter\"},{\"id\":\"13449\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13450\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,false,true,false,true,true,true,true,false,true,false,true,true,false,true,false,true,true,false,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13449\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13479\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13480\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,true,false,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,true,false,true,true,false,false,false,true,false,true,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,true,true,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,false,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13434\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13479\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13480\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13245\",\"type\":\"CDSView\"}},\"id\":\"13481\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13437\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"13451\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13495\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13496\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13265\",\"type\":\"CDSView\"}},\"id\":\"13497\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,true,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13439\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13496\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13484\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13436\",\"type\":\"GroupFilter\"},{\"id\":\"13437\",\"type\":\"GroupFilter\"},{\"id\":\"13438\",\"type\":\"GroupFilter\"},{\"id\":\"13439\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13440\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"13446\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13483\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13484\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13250\",\"type\":\"CDSView\"}},\"id\":\"13485\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"13441\",\"type\":\"GroupFilter\"},{\"id\":\"13442\",\"type\":\"GroupFilter\"},{\"id\":\"13443\",\"type\":\"GroupFilter\"},{\"id\":\"13444\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13445\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13483\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13487\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13447\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13452\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13495\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12358\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12357\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12358\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12164\",\"type\":\"CDSView\"}},\"id\":\"12359\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12361\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12362\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12361\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12362\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12169\",\"type\":\"CDSView\"}},\"id\":\"12363\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"12391\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12365\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12366\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12365\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12366\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12174\",\"type\":\"CDSView\"}},\"id\":\"12367\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"12390\",\"type\":\"Selection\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12369\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12370\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12369\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12370\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12179\",\"type\":\"CDSView\"}},\"id\":\"12371\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11644\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11645\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11426\",\"type\":\"CDSView\"}},\"id\":\"11646\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11741\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11624\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11712\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13296\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11625\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11713\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13306\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11624\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11625\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11401\",\"type\":\"CDSView\"}},\"id\":\"11626\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11712\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11713\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11511\",\"type\":\"CDSView\"}},\"id\":\"11714\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13298\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11645\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11740\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11628\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11716\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,false,true,false,true,true,true,true,false,true,false,true,true,false,true,false,true,true,false,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13309\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13297\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11629\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11717\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13312\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11716\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11717\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11516\",\"type\":\"CDSView\"}},\"id\":\"11718\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13307\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11740\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11741\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11546\",\"type\":\"CDSView\"}},\"id\":\"11742\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11648\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11649\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"11770\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,true,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13299\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11648\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11649\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11431\",\"type\":\"CDSView\"}},\"id\":\"11650\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11744\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13296\",\"type\":\"GroupFilter\"},{\"id\":\"13297\",\"type\":\"GroupFilter\"},{\"id\":\"13298\",\"type\":\"GroupFilter\"},{\"id\":\"13299\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13300\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11745\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11732\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11733\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11536\",\"type\":\"CDSView\"}},\"id\":\"11734\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13301\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11744\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11745\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11551\",\"type\":\"CDSView\"}},\"id\":\"11746\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11652\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11653\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"11769\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13302\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11652\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11653\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11436\",\"type\":\"CDSView\"}},\"id\":\"11654\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11748\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11749\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11733\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11748\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11749\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11556\",\"type\":\"CDSView\"}},\"id\":\"11750\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11656\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13308\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11657\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,true,false,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,true,false,true,true,false,false,false,true,false,true,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,true,true,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,false,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13314\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"11768\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13288\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11656\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11657\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11441\",\"type\":\"CDSView\"}},\"id\":\"11658\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11752\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11753\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11732\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11752\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11753\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11561\",\"type\":\"CDSView\"}},\"id\":\"11754\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11660\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13303\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13291\",\"type\":\"GroupFilter\"},{\"id\":\"13292\",\"type\":\"GroupFilter\"},{\"id\":\"13293\",\"type\":\"GroupFilter\"},{\"id\":\"13294\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13295\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11661\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"11767\",\"type\":\"Selection\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11660\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11661\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11446\",\"type\":\"CDSView\"}},\"id\":\"11662\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11756\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11757\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"11772\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,true,false,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,true,false,true,true,false,false,false,true,false,true,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,true,true,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,false,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13294\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11756\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11757\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11566\",\"type\":\"CDSView\"}},\"id\":\"11758\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11664\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13301\",\"type\":\"GroupFilter\"},{\"id\":\"13302\",\"type\":\"GroupFilter\"},{\"id\":\"13303\",\"type\":\"GroupFilter\"},{\"id\":\"13304\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13305\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11665\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13313\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13293\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11664\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11665\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11451\",\"type\":\"CDSView\"}},\"id\":\"11666\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11728\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11729\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11531\",\"type\":\"CDSView\"}},\"id\":\"11730\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13292\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11668\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11669\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13306\",\"type\":\"GroupFilter\"},{\"id\":\"13307\",\"type\":\"GroupFilter\"},{\"id\":\"13308\",\"type\":\"GroupFilter\"},{\"id\":\"13309\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13310\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13291\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11668\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11669\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11456\",\"type\":\"CDSView\"}},\"id\":\"11670\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13311\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11729\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13286\",\"type\":\"GroupFilter\"},{\"id\":\"13287\",\"type\":\"GroupFilter\"},{\"id\":\"13288\",\"type\":\"GroupFilter\"},{\"id\":\"13289\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13290\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11672\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13304\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,false,true,false,true,true,true,true,false,true,false,true,true,false,true,false,true,true,false,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13289\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11673\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11672\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11673\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11461\",\"type\":\"CDSView\"}},\"id\":\"11674\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13287\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11728\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12709\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,true,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12686\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12683\",\"type\":\"GroupFilter\"},{\"id\":\"12684\",\"type\":\"GroupFilter\"},{\"id\":\"12685\",\"type\":\"GroupFilter\"},{\"id\":\"12686\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12687\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12689\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12690\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12708\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12688\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12691\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12703\",\"type\":\"GroupFilter\"},{\"id\":\"12704\",\"type\":\"GroupFilter\"},{\"id\":\"12705\",\"type\":\"GroupFilter\"},{\"id\":\"12706\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12707\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12688\",\"type\":\"GroupFilter\"},{\"id\":\"12689\",\"type\":\"GroupFilter\"},{\"id\":\"12690\",\"type\":\"GroupFilter\"},{\"id\":\"12691\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12692\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,true,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12706\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12693\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12696\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12705\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"red\",\"red\",\"red\",\"red\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\"],\"origin\":[\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\"],\"p_x0\":[6.574464556273277,5.7536777878861365,7.736347845999433,9.763309496699001,2.5972799060231466,9.474961566033091,9.871362871242816,9.833278494248546,9.886452888244584,9.659978816242457,9.720765316628007,9.917050037475647,9.816910255812132,1.651316474408187,9.776817393895318,9.845836462655662,9.898873650588051,9.904330081569782,9.73152110627979,9.949001370643916,9.943908702941538,9.73675639035756,9.515535846321107,9.825245388766497,8.016492727414843,9.741387065780977,9.337914228642113,9.797311138147144,1.1344746876642553,9.908496858829082,9.059711281175883,9.578555231336935,9.603130497268694,9.860124295824477,9.255873975995492,9.85242276096097,9.97761305912243,7.418534824316293,9.573555654550788,9.852654208444719,9.93514470050441,9.519192797858263,9.49149351583819,9.766625205475894,7.53961957904589,9.61868536217969,9.778345392544232,9.735591243931417,9.493507556639841,9.520346098341822,7.068579202572202,9.524262766575717,-0.5659946881901483,6.975901816177355,9.550778961798404,9.938346756147599,7.3769789068517575,9.895065655794141,7.358764932916685,9.618756224977101,9.871046567030117,9.911983688041445,6.88535638580332,9.49755608636551,9.872823275937296,-0.21873770106086,7.229559719542614,9.51619779772168,9.879837456246456,9.908775109969731,0.8800498921991906,9.796889931468758,7.225974752632634,9.66966925868439,9.923189706388072,9.547898595576878,2.9105054359762548,9.816722156831865,9.892626771603346,9.73267438287007,7.065431941731276,9.291177315149419,-3.8507618097339025,-1.9733245831802666,3.995984525628433,7.545691827174991,7.329604579522929,9.922470010649384,7.597358290567826,9.818169403001558,9.770928578887766,9.796782234293236,9.70959382958295,9.811635910692754,9.77532705006847,7.407237213965118,7.551105481010705,9.663089956070397,9.94829512628565,7.26842940641442,5.615675661958155,7.484076014268929,9.104614896355304,1.063892947013688,5.988209772046654,-3.2162313976786594,-9.531116737197745,9.45486037274653,-4.990638170649746,9.641650353996543,9.986121640544297,1.8969836014395032,9.366189494786983,9.841844000897776,7.732471631719321,9.845548800259639,3.405312809441325,7.408577247739348,4.511865410143471,-4.249152820626438,9.533582999697472,9.723713392965486,9.145125495881544,9.555886478083973,9.758091648356665,9.72735420124604,9.460498892657117,9.573827133213676,9.391535072313758,9.995214390136507,9.343456700295452,9.999409905745992,9.806081528284516,9.87925253753674,5.151535475672658,7.522610236284937,-4.8642747685896275,7.411345672949146,-8.298331221205949,7.881492781306324,-3.910056656236698,7.421859047935804,9.954331557663323,7.438403113424876,9.802489868617286,7.610934774934023,9.88003317092,6.708567131908499,9.706713713915413,-9.71267945684989,9.777447515720706,9.699305972421602,-7.685194042283332,9.606368272629563,9.539854098275406,7.199456193905437,9.638268180675581,-6.508045913108347,-6.7785710768717955,2.3574246650039843,7.2495645056534315,7.339917835979527,7.237360934484094,5.456584220316801,-0.1635985689683217,7.241607431261407,7.060364010645152,9.911577840583249,6.899295117388693,9.284461322708005,6.804330849592816,9.275221344899371,9.41369673732407,7.280421493817396,-6.406768406433459,-4.645570819183826,9.134897296150854,7.90398015146646,9.094061744014159,9.163092117221801,9.469236547635354,9.101299965439502,9.154918484240017,9.076976746880195,9.468557212942514,9.290761292575827,9.25063685745737,9.345842403020775,7.346688651964179,9.259002774264435,9.025335381609704,7.2446197840015145,7.421259540911819,7.686906581055521,7.550583388734108,7.459578400176092,7.559184427679931,7.626640727000954,7.51285438396032,7.579880542620273,7.507197281187871,7.508346867166683,7.496072503390469,7.786287484887634,7.580039121720958,7.19816704189439,7.349941203599798,7.154135372144722,7.650390224409744,7.107955248336157,-5.686179864880212,9.151152734053777,7.392253422125975,-2.455159946422798,-4.225592349633896,9.59344481936084,7.597236834814279,3.130079876401613,-6.212333991933057,-4.263525822204759,4.702576896428422,9.220785821648487,9.781260230951414,9.287002027838412,0.6812295761255776,-1.126259210756519,7.480765901617637,9.068066140095638],\"p_x1\":[-9.70170189950312,-4.974922099319709,-3.3984602978786445,-9.285530158448536,-3.4476444643076327,-3.4531946167751917,-3.3359693355103683,-9.341373587839742,-3.3372923349893675,-9.534380309244433,-9.53100816260161,-3.335474501639811,-3.3520424071688026,-4.939258901607799,-3.347558595597717,-3.3300569070845114,-9.623135257915893,-3.3404159762378374,-9.556655035668278,-3.344681727223513,-3.350762472163832,-9.611261615454653,-9.57175242499804,-3.35164650370843,-3.3772712345835965,-9.58433138820181,-3.6207112780521387,-9.551277835723795,-3.476648912209386,-3.3266135637322645,-3.4728912731389174,-9.860186355024757,-3.8235602736044996,-3.3554889293862864,-3.4968138114099574,-3.2096108829903773,-3.352188192022547,-3.3970916657867454,-9.714551364062723,-3.3672940107824845,-3.334622447353416,-3.4551123692974297,-9.82720330604877,-3.4189722958645605,-3.4193221390960566,-9.702329729411739,-3.5527568711940045,-3.480354601141414,-9.85365221141381,-3.1787850544268546,-3.389823568039944,-9.746104873360439,7.145093197178269,-3.399712633894567,-9.672933838169095,-3.3449867263867787,-3.415667713994748,-3.3449789403003702,-3.428239973226691,-9.529420205107785,-3.3195072213688928,-3.335107266009726,-3.4157162683709092,-9.583590339532911,-3.3306469990429903,2.356101067123202,-3.4036871237188473,-9.858488317876812,-3.355622584799934,-3.338951938781838,9.111900581539565,-3.327355618768589,-3.4339968586699454,-9.605842937153568,-3.341782993093326,-3.473601203461129,4.821092497420272,-9.763863992038713,-3.334110826598363,-3.437652297042052,-3.4036091412657488,-3.1714365897798134,-0.24842105118745117,-0.653888323687589,0.7747222496976569,-3.415462512698203,-3.259022339591228,-3.374462664138484,-3.4166457685171867,-3.332425329495373,-3.3591516963868404,-3.4619457049578735,-3.339387719810687,-3.4558218241392087,-3.354904601034119,-3.410481658797975,-3.3946123802129877,-2.474680620019507,-2.7814045241683347,-3.38878814580883,-7.690013606742641,-3.3863726263060396,-2.710718250891315,3.5554895890773235,2.210911541185034,-5.452142618999078,2.8580476239586226,-3.153075506587111,7.514511965742777,2.3346271504369085,-2.8693214570197956,5.241721155903278,-3.3550225554449664,-3.3557254662620224,-3.4012474962145465,-2.3523557598885114,-3.547217980912663,-3.4249746447153298,-4.749109763805621,-0.6988767993399119,-2.4410648228442566,-3.465890413924239,-2.5533164194741422,-3.4544680273609973,-3.016932576618638,-3.4563082534267275,-2.5650744905706047,-3.4630643289169925,-3.191627656069543,-3.460602706003826,-2.2063239882740397,-3.460912426309771,-3.346399598226336,-3.3278844088184485,4.998585811304739,-3.397474357701034,-5.716620684870028,-3.4059673600140776,-6.837757645064166,-3.39304426106664,-4.830225564299733,-3.4088490138426453,-3.344271523570889,-3.411454963296519,-3.3227340160593544,-3.4176740735936697,-5.932057218966262,-8.446664058533555,-3.46766177476328,7.281726511087239,-3.45863505742079,-3.4674241353050386,9.05128784053636,-3.441592908174858,-3.454905453330662,6.03383934539627,-3.4564367986781344,7.831882861679553,2.7595842545229097,4.1371102683186916,-3.3779463233476203,-3.3895389297045053,-3.3926976131908857,2.2820988560774573,-5.750364221254401,-3.3918962671253974,-3.389792643416958,-3.3427838522060958,-3.395734502800961,-3.455357852608472,-7.8433012761215455,-3.467259240764765,-3.450269165499198,-3.0765798065776506,-0.279420009285559,-2.1817089475319413,-3.4528087539563357,-1.1684001978270402,-3.456410417726331,-3.462228541425657,-3.4829961226478137,-3.4688912914680694,-3.449318947404427,-3.4552356146225343,-3.4489218701993343,-3.4665873095976307,-3.468428705380189,-3.4783554401480004,-3.413137976289244,-3.4829546512848886,-3.4612005482436894,-3.4081439796619053,-3.3908971545595437,-3.4119528665366623,-3.394666560316484,-3.416403673432164,-3.4296306476209253,-3.3941892304443666,-3.3968689945343815,-3.39816351956872,-3.40854986858408,-3.4125587492270935,-3.4116065415903414,-3.402330699459366,-3.3960128294827694,-3.41733644274405,-3.3973776261010897,-3.4113041897577396,-3.4059605701622733,-3.3974286460864196,-1.961982430027449,-3.464671464756255,-3.3994934054797543,0.8149792357857457,-2.9853493718907504,-3.4718992182366915,-3.3979962313787437,4.702935708006748,-9.626977649071126,6.498250287559216,4.024518078733623,-3.463652637166299,-7.993438727998791,-3.4581881797452727,7.176228223228335,-4.503104702708971,-3.399552117560428,-7.623713655586519],\"runs\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Incumbent\",\"Final Incumbent\",\"Incumbent\",\"Incumbent\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[228]},\"y\":{\"__ndarray__\":\"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\",\"dtype\":\"float64\",\"shape\":[228]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"13025\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"13026\",\"type\":\"UnionRenderers\"}},\"id\":\"11271\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"filters\":[{\"id\":\"12693\",\"type\":\"GroupFilter\"},{\"id\":\"12694\",\"type\":\"GroupFilter\"},{\"id\":\"12695\",\"type\":\"GroupFilter\"},{\"id\":\"12696\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12697\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12695\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12704\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12694\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12698\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12710\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12703\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12699\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12700\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12698\",\"type\":\"GroupFilter\"},{\"id\":\"12699\",\"type\":\"GroupFilter\"},{\"id\":\"12700\",\"type\":\"GroupFilter\"},{\"id\":\"12701\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12702\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12701\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12313\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12265\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13588\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13571\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13572\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13360\",\"type\":\"CDSView\"}},\"id\":\"13573\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12887\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12788\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13934\",\"type\":\"GroupFilter\"},{\"id\":\"13935\",\"type\":\"GroupFilter\"},{\"id\":\"13936\",\"type\":\"GroupFilter\"},{\"id\":\"13937\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13938\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13551\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13552\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13335\",\"type\":\"CDSView\"}},\"id\":\"13553\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12266\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12265\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12266\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12049\",\"type\":\"CDSView\"}},\"id\":\"12267\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13560\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,false,true,false,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,false,false,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,true,false,true,true,false,true,false,false,true,false,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,false,true,true,false,true,false,false,true,false,true,false,true,true,true,false,true,false,true,false,true,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13942\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12890\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12791\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12814\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12911\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12576\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12269\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12934\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12935\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12727\",\"type\":\"CDSView\"}},\"id\":\"12936\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12790\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,false,true,false,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,false,false,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,true,false,true,true,false,true,false,false,true,false,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,false,true,true,false,true,false,false,true,false,true,false,true,true,true,false,true,false,true,false,true,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13962\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13547\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13548\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13330\",\"type\":\"CDSView\"}},\"id\":\"13549\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12270\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12808\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12269\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12270\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12054\",\"type\":\"CDSView\"}},\"id\":\"12271\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"12808\",\"type\":\"GroupFilter\"},{\"id\":\"12809\",\"type\":\"GroupFilter\"},{\"id\":\"12810\",\"type\":\"GroupFilter\"},{\"id\":\"12811\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12812\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13957\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12886\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12887\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12667\",\"type\":\"CDSView\"}},\"id\":\"12888\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12789\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12309\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12310\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12104\",\"type\":\"CDSView\"}},\"id\":\"12311\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13956\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12273\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13552\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13945\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12891\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"12788\",\"type\":\"GroupFilter\"},{\"id\":\"12789\",\"type\":\"GroupFilter\"},{\"id\":\"12790\",\"type\":\"GroupFilter\"},{\"id\":\"12791\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12792\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13961\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12274\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12930\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13556\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13576\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12273\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12274\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12059\",\"type\":\"CDSView\"}},\"id\":\"12275\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12914\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12915\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12702\",\"type\":\"CDSView\"}},\"id\":\"12916\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"13944\",\"type\":\"GroupFilter\"},{\"id\":\"13945\",\"type\":\"GroupFilter\"},{\"id\":\"13946\",\"type\":\"GroupFilter\"},{\"id\":\"13947\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13948\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12894\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12795\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12310\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12809\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13946\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13934\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12277\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13587\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13949\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12935\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12794\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13951\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12910\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12911\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12697\",\"type\":\"CDSView\"}},\"id\":\"12912\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12278\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13551\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13941\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13944\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12277\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12278\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12064\",\"type\":\"CDSView\"}},\"id\":\"12279\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13559\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13955\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12890\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12891\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12672\",\"type\":\"CDSView\"}},\"id\":\"12892\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"13954\",\"type\":\"GroupFilter\"},{\"id\":\"13955\",\"type\":\"GroupFilter\"},{\"id\":\"13956\",\"type\":\"GroupFilter\"},{\"id\":\"13957\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13958\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12309\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12810\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13959\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12934\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12793\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13964\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12281\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12906\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12907\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12692\",\"type\":\"CDSView\"}},\"id\":\"12908\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12282\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12894\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12895\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12677\",\"type\":\"CDSView\"}},\"id\":\"12896\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13571\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12799\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12281\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12282\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12069\",\"type\":\"CDSView\"}},\"id\":\"12283\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12814\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12815\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12577\",\"type\":\"CDSView\"}},\"id\":\"12816\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12915\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,true,false,false,false,false,true,true,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,false,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13952\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13555\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12811\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12895\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13572\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13937\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12285\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13567\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12798\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13286\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13583\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13584\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13375\",\"type\":\"CDSView\"}},\"id\":\"13585\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12286\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12931\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13939\",\"type\":\"GroupFilter\"},{\"id\":\"13940\",\"type\":\"GroupFilter\"},{\"id\":\"13941\",\"type\":\"GroupFilter\"},{\"id\":\"13942\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13943\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12804\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13949\",\"type\":\"GroupFilter\"},{\"id\":\"13950\",\"type\":\"GroupFilter\"},{\"id\":\"13951\",\"type\":\"GroupFilter\"},{\"id\":\"13952\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13953\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12285\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12286\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12074\",\"type\":\"CDSView\"}},\"id\":\"12287\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13563\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12898\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12899\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12682\",\"type\":\"CDSView\"}},\"id\":\"12900\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"12793\",\"type\":\"GroupFilter\"},{\"id\":\"12794\",\"type\":\"GroupFilter\"},{\"id\":\"12795\",\"type\":\"GroupFilter\"},{\"id\":\"12796\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12797\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13584\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12305\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12306\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12099\",\"type\":\"CDSView\"}},\"id\":\"12307\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13583\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13950\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13555\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13556\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13340\",\"type\":\"CDSView\"}},\"id\":\"13557\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12289\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13960\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12899\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12796\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12290\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12910\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12805\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12801\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13935\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13954\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12289\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12290\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12079\",\"type\":\"CDSView\"}},\"id\":\"12291\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12815\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12914\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12898\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12907\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13940\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12798\",\"type\":\"GroupFilter\"},{\"id\":\"12799\",\"type\":\"GroupFilter\"},{\"id\":\"12800\",\"type\":\"GroupFilter\"},{\"id\":\"12801\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12802\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12314\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12313\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12314\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12109\",\"type\":\"CDSView\"}},\"id\":\"12315\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12902\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12903\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12687\",\"type\":\"CDSView\"}},\"id\":\"12904\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13564\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12903\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,true,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12806\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12573\",\"type\":\"GroupFilter\"},{\"id\":\"12574\",\"type\":\"GroupFilter\"},{\"id\":\"12575\",\"type\":\"GroupFilter\"},{\"id\":\"12576\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12577\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"13281\",\"type\":\"GroupFilter\"},{\"id\":\"13282\",\"type\":\"GroupFilter\"},{\"id\":\"13283\",\"type\":\"GroupFilter\"},{\"id\":\"13284\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13285\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13567\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13568\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13355\",\"type\":\"CDSView\"}},\"id\":\"13569\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12800\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13568\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12317\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12902\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13939\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12318\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13575\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13959\",\"type\":\"GroupFilter\"},{\"id\":\"13960\",\"type\":\"GroupFilter\"},{\"id\":\"13961\",\"type\":\"GroupFilter\"},{\"id\":\"13962\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13963\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12317\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12318\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12114\",\"type\":\"CDSView\"}},\"id\":\"12319\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12930\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12931\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12722\",\"type\":\"CDSView\"}},\"id\":\"12932\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13559\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13560\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13345\",\"type\":\"CDSView\"}},\"id\":\"13561\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"12803\",\"type\":\"GroupFilter\"},{\"id\":\"12804\",\"type\":\"GroupFilter\"},{\"id\":\"12805\",\"type\":\"GroupFilter\"},{\"id\":\"12806\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12807\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13936\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12918\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12574\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13563\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13564\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13350\",\"type\":\"CDSView\"}},\"id\":\"13565\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12906\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12575\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12803\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12321\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,true,false,false,true,true,false,true,false,false,false,false,true,true,false,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,false,true,false,false,false,false,false,true,false,false,true,false,true,false,false,true,true,true,false,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,false,true,false,true,true,true,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,true,true,true,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,true,false,true,false,true,true,false,true,true,true,false,false,false,false,false,false,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,true,true,true,true,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,true,true,true,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,true,true,false,false,true,true,true,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13947\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13531\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13926\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13906\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14110\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12966\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14115\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13532\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13924\",\"type\":\"GroupFilter\"},{\"id\":\"13925\",\"type\":\"GroupFilter\"},{\"id\":\"13926\",\"type\":\"GroupFilter\"},{\"id\":\"13927\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13928\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13904\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12918\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12919\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12707\",\"type\":\"CDSView\"}},\"id\":\"12920\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13536\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13910\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12919\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14099\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14111\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13901\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13924\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12967\",\"type\":\"Scatter\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"14595\",\"type\":\"CheckboxButtonGroup\"},\"glyph0\":{\"id\":\"11570\",\"type\":\"GlyphRenderer\"},\"glyph1\":{\"id\":\"11574\",\"type\":\"GlyphRenderer\"},\"glyph10\":{\"id\":\"11610\",\"type\":\"GlyphRenderer\"},\"glyph100\":{\"id\":\"12832\",\"type\":\"GlyphRenderer\"},\"glyph101\":{\"id\":\"12836\",\"type\":\"GlyphRenderer\"},\"glyph102\":{\"id\":\"12840\",\"type\":\"GlyphRenderer\"},\"glyph103\":{\"id\":\"12844\",\"type\":\"GlyphRenderer\"},\"glyph104\":{\"id\":\"12848\",\"type\":\"GlyphRenderer\"},\"glyph105\":{\"id\":\"12852\",\"type\":\"GlyphRenderer\"},\"glyph106\":{\"id\":\"12856\",\"type\":\"GlyphRenderer\"},\"glyph107\":{\"id\":\"12860\",\"type\":\"GlyphRenderer\"},\"glyph108\":{\"id\":\"12864\",\"type\":\"GlyphRenderer\"},\"glyph109\":{\"id\":\"12868\",\"type\":\"GlyphRenderer\"},\"glyph11\":{\"id\":\"11614\",\"type\":\"GlyphRenderer\"},\"glyph110\":{\"id\":\"12872\",\"type\":\"GlyphRenderer\"},\"glyph111\":{\"id\":\"12876\",\"type\":\"GlyphRenderer\"},\"glyph112\":{\"id\":\"12880\",\"type\":\"GlyphRenderer\"},\"glyph113\":{\"id\":\"12884\",\"type\":\"GlyphRenderer\"},\"glyph114\":{\"id\":\"12888\",\"type\":\"GlyphRenderer\"},\"glyph115\":{\"id\":\"12892\",\"type\":\"GlyphRenderer\"},\"glyph116\":{\"id\":\"12896\",\"type\":\"GlyphRenderer\"},\"glyph117\":{\"id\":\"12900\",\"type\":\"GlyphRenderer\"},\"glyph118\":{\"id\":\"12904\",\"type\":\"GlyphRenderer\"},\"glyph119\":{\"id\":\"12908\",\"type\":\"GlyphRenderer\"},\"glyph12\":{\"id\":\"11618\",\"type\":\"GlyphRenderer\"},\"glyph120\":{\"id\":\"12912\",\"type\":\"GlyphRenderer\"},\"glyph121\":{\"id\":\"12916\",\"type\":\"GlyphRenderer\"},\"glyph122\":{\"id\":\"12920\",\"type\":\"GlyphRenderer\"},\"glyph123\":{\"id\":\"12924\",\"type\":\"GlyphRenderer\"},\"glyph124\":{\"id\":\"12928\",\"type\":\"GlyphRenderer\"},\"glyph125\":{\"id\":\"12932\",\"type\":\"GlyphRenderer\"},\"glyph126\":{\"id\":\"12936\",\"type\":\"GlyphRenderer\"},\"glyph127\":{\"id\":\"12940\",\"type\":\"GlyphRenderer\"},\"glyph128\":{\"id\":\"12944\",\"type\":\"GlyphRenderer\"},\"glyph129\":{\"id\":\"12948\",\"type\":\"GlyphRenderer\"},\"glyph13\":{\"id\":\"11622\",\"type\":\"GlyphRenderer\"},\"glyph130\":{\"id\":\"12952\",\"type\":\"GlyphRenderer\"},\"glyph131\":{\"id\":\"12956\",\"type\":\"GlyphRenderer\"},\"glyph132\":{\"id\":\"12960\",\"type\":\"GlyphRenderer\"},\"glyph133\":{\"id\":\"12964\",\"type\":\"GlyphRenderer\"},\"glyph134\":{\"id\":\"12968\",\"type\":\"GlyphRenderer\"},\"glyph135\":{\"id\":\"12972\",\"type\":\"GlyphRenderer\"},\"glyph136\":{\"id\":\"12976\",\"type\":\"GlyphRenderer\"},\"glyph137\":{\"id\":\"12980\",\"type\":\"GlyphRenderer\"},\"glyph138\":{\"id\":\"12984\",\"type\":\"GlyphRenderer\"},\"glyph139\":{\"id\":\"12988\",\"type\":\"GlyphRenderer\"},\"glyph14\":{\"id\":\"11626\",\"type\":\"GlyphRenderer\"},\"glyph140\":{\"id\":\"12992\",\"type\":\"GlyphRenderer\"},\"glyph141\":{\"id\":\"12996\",\"type\":\"GlyphRenderer\"},\"glyph142\":{\"id\":\"13000\",\"type\":\"GlyphRenderer\"},\"glyph143\":{\"id\":\"13004\",\"type\":\"GlyphRenderer\"},\"glyph144\":{\"id\":\"13469\",\"type\":\"GlyphRenderer\"},\"glyph145\":{\"id\":\"13473\",\"type\":\"GlyphRenderer\"},\"glyph146\":{\"id\":\"13477\",\"type\":\"GlyphRenderer\"},\"glyph147\":{\"id\":\"13481\",\"type\":\"GlyphRenderer\"},\"glyph148\":{\"id\":\"13485\",\"type\":\"GlyphRenderer\"},\"glyph149\":{\"id\":\"13489\",\"type\":\"GlyphRenderer\"},\"glyph15\":{\"id\":\"11630\",\"type\":\"GlyphRenderer\"},\"glyph150\":{\"id\":\"13493\",\"type\":\"GlyphRenderer\"},\"glyph151\":{\"id\":\"13497\",\"type\":\"GlyphRenderer\"},\"glyph152\":{\"id\":\"13501\",\"type\":\"GlyphRenderer\"},\"glyph153\":{\"id\":\"13505\",\"type\":\"GlyphRenderer\"},\"glyph154\":{\"id\":\"13509\",\"type\":\"GlyphRenderer\"},\"glyph155\":{\"id\":\"13513\",\"type\":\"GlyphRenderer\"},\"glyph156\":{\"id\":\"13517\",\"type\":\"GlyphRenderer\"},\"glyph157\":{\"id\":\"13521\",\"type\":\"GlyphRenderer\"},\"glyph158\":{\"id\":\"13525\",\"type\":\"GlyphRenderer\"},\"glyph159\":{\"id\":\"13529\",\"type\":\"GlyphRenderer\"},\"glyph16\":{\"id\":\"11634\",\"type\":\"GlyphRenderer\"},\"glyph160\":{\"id\":\"13533\",\"type\":\"GlyphRenderer\"},\"glyph161\":{\"id\":\"13537\",\"type\":\"GlyphRenderer\"},\"glyph162\":{\"id\":\"13541\",\"type\":\"GlyphRenderer\"},\"glyph163\":{\"id\":\"13545\",\"type\":\"GlyphRenderer\"},\"glyph164\":{\"id\":\"13549\",\"type\":\"GlyphRenderer\"},\"glyph165\":{\"id\":\"13553\",\"type\":\"GlyphRenderer\"},\"glyph166\":{\"id\":\"13557\",\"type\":\"GlyphRenderer\"},\"glyph167\":{\"id\":\"13561\",\"type\":\"GlyphRenderer\"},\"glyph168\":{\"id\":\"13565\",\"type\":\"GlyphRenderer\"},\"glyph169\":{\"id\":\"13569\",\"type\":\"GlyphRenderer\"},\"glyph17\":{\"id\":\"11638\",\"type\":\"GlyphRenderer\"},\"glyph170\":{\"id\":\"13573\",\"type\":\"GlyphRenderer\"},\"glyph171\":{\"id\":\"13577\",\"type\":\"GlyphRenderer\"},\"glyph172\":{\"id\":\"13581\",\"type\":\"GlyphRenderer\"},\"glyph173\":{\"id\":\"13585\",\"type\":\"GlyphRenderer\"},\"glyph174\":{\"id\":\"13589\",\"type\":\"GlyphRenderer\"},\"glyph175\":{\"id\":\"13593\",\"type\":\"GlyphRenderer\"},\"glyph176\":{\"id\":\"13597\",\"type\":\"GlyphRenderer\"},\"glyph177\":{\"id\":\"13601\",\"type\":\"GlyphRenderer\"},\"glyph178\":{\"id\":\"13605\",\"type\":\"GlyphRenderer\"},\"glyph179\":{\"id\":\"13609\",\"type\":\"GlyphRenderer\"},\"glyph18\":{\"id\":\"11642\",\"type\":\"GlyphRenderer\"},\"glyph180\":{\"id\":\"13613\",\"type\":\"GlyphRenderer\"},\"glyph181\":{\"id\":\"13617\",\"type\":\"GlyphRenderer\"},\"glyph182\":{\"id\":\"13621\",\"type\":\"GlyphRenderer\"},\"glyph183\":{\"id\":\"13625\",\"type\":\"GlyphRenderer\"},\"glyph184\":{\"id\":\"13629\",\"type\":\"GlyphRenderer\"},\"glyph185\":{\"id\":\"13633\",\"type\":\"GlyphRenderer\"},\"glyph186\":{\"id\":\"13637\",\"type\":\"GlyphRenderer\"},\"glyph187\":{\"id\":\"13641\",\"type\":\"GlyphRenderer\"},\"glyph188\":{\"id\":\"13645\",\"type\":\"GlyphRenderer\"},\"glyph189\":{\"id\":\"13649\",\"type\":\"GlyphRenderer\"},\"glyph19\":{\"id\":\"11646\",\"type\":\"GlyphRenderer\"},\"glyph190\":{\"id\":\"13653\",\"type\":\"GlyphRenderer\"},\"glyph191\":{\"id\":\"13657\",\"type\":\"GlyphRenderer\"},\"glyph192\":{\"id\":\"14142\",\"type\":\"GlyphRenderer\"},\"glyph193\":{\"id\":\"14146\",\"type\":\"GlyphRenderer\"},\"glyph194\":{\"id\":\"14150\",\"type\":\"GlyphRenderer\"},\"glyph195\":{\"id\":\"14154\",\"type\":\"GlyphRenderer\"},\"glyph196\":{\"id\":\"14158\",\"type\":\"GlyphRenderer\"},\"glyph197\":{\"id\":\"14162\",\"type\":\"GlyphRenderer\"},\"glyph198\":{\"id\":\"14166\",\"type\":\"GlyphRenderer\"},\"glyph199\":{\"id\":\"14170\",\"type\":\"GlyphRenderer\"},\"glyph2\":{\"id\":\"11578\",\"type\":\"GlyphRenderer\"},\"glyph20\":{\"id\":\"11650\",\"type\":\"GlyphRenderer\"},\"glyph200\":{\"id\":\"14174\",\"type\":\"GlyphRenderer\"},\"glyph201\":{\"id\":\"14178\",\"type\":\"GlyphRenderer\"},\"glyph202\":{\"id\":\"14182\",\"type\":\"GlyphRenderer\"},\"glyph203\":{\"id\":\"14186\",\"type\":\"GlyphRenderer\"},\"glyph204\":{\"id\":\"14190\",\"type\":\"GlyphRenderer\"},\"glyph205\":{\"id\":\"14194\",\"type\":\"GlyphRenderer\"},\"glyph206\":{\"id\":\"14198\",\"type\":\"GlyphRenderer\"},\"glyph207\":{\"id\":\"14202\",\"type\":\"GlyphRenderer\"},\"glyph208\":{\"id\":\"14206\",\"type\":\"GlyphRenderer\"},\"glyph209\":{\"id\":\"14210\",\"type\":\"GlyphRenderer\"},\"glyph21\":{\"id\":\"11654\",\"type\":\"GlyphRenderer\"},\"glyph210\":{\"id\":\"14214\",\"type\":\"GlyphRenderer\"},\"glyph211\":{\"id\":\"14218\",\"type\":\"GlyphRenderer\"},\"glyph212\":{\"id\":\"14222\",\"type\":\"GlyphRenderer\"},\"glyph213\":{\"id\":\"14226\",\"type\":\"GlyphRenderer\"},\"glyph214\":{\"id\":\"14230\",\"type\":\"GlyphRenderer\"},\"glyph215\":{\"id\":\"14234\",\"type\":\"GlyphRenderer\"},\"glyph216\":{\"id\":\"14238\",\"type\":\"GlyphRenderer\"},\"glyph217\":{\"id\":\"14242\",\"type\":\"GlyphRenderer\"},\"glyph218\":{\"id\":\"14246\",\"type\":\"GlyphRenderer\"},\"glyph219\":{\"id\":\"14250\",\"type\":\"GlyphRenderer\"},\"glyph22\":{\"id\":\"11658\",\"type\":\"GlyphRenderer\"},\"glyph220\":{\"id\":\"14254\",\"type\":\"GlyphRenderer\"},\"glyph221\":{\"id\":\"14258\",\"type\":\"GlyphRenderer\"},\"glyph222\":{\"id\":\"14262\",\"type\":\"GlyphRenderer\"},\"glyph223\":{\"id\":\"14266\",\"type\":\"GlyphRenderer\"},\"glyph224\":{\"id\":\"14270\",\"type\":\"GlyphRenderer\"},\"glyph225\":{\"id\":\"14274\",\"type\":\"GlyphRenderer\"},\"glyph226\":{\"id\":\"14278\",\"type\":\"GlyphRenderer\"},\"glyph227\":{\"id\":\"14282\",\"type\":\"GlyphRenderer\"},\"glyph228\":{\"id\":\"14286\",\"type\":\"GlyphRenderer\"},\"glyph229\":{\"id\":\"14290\",\"type\":\"GlyphRenderer\"},\"glyph23\":{\"id\":\"11662\",\"type\":\"GlyphRenderer\"},\"glyph230\":{\"id\":\"14294\",\"type\":\"GlyphRenderer\"},\"glyph231\":{\"id\":\"14298\",\"type\":\"GlyphRenderer\"},\"glyph232\":{\"id\":\"14302\",\"type\":\"GlyphRenderer\"},\"glyph233\":{\"id\":\"14306\",\"type\":\"GlyphRenderer\"},\"glyph234\":{\"id\":\"14310\",\"type\":\"GlyphRenderer\"},\"glyph235\":{\"id\":\"14314\",\"type\":\"GlyphRenderer\"},\"glyph236\":{\"id\":\"14318\",\"type\":\"GlyphRenderer\"},\"glyph237\":{\"id\":\"14322\",\"type\":\"GlyphRenderer\"},\"glyph238\":{\"id\":\"14326\",\"type\":\"GlyphRenderer\"},\"glyph239\":{\"id\":\"14330\",\"type\":\"GlyphRenderer\"},\"glyph24\":{\"id\":\"11666\",\"type\":\"GlyphRenderer\"},\"glyph25\":{\"id\":\"11670\",\"type\":\"GlyphRenderer\"},\"glyph26\":{\"id\":\"11674\",\"type\":\"GlyphRenderer\"},\"glyph27\":{\"id\":\"11678\",\"type\":\"GlyphRenderer\"},\"glyph28\":{\"id\":\"11682\",\"type\":\"GlyphRenderer\"},\"glyph29\":{\"id\":\"11686\",\"type\":\"GlyphRenderer\"},\"glyph3\":{\"id\":\"11582\",\"type\":\"GlyphRenderer\"},\"glyph30\":{\"id\":\"11690\",\"type\":\"GlyphRenderer\"},\"glyph31\":{\"id\":\"11694\",\"type\":\"GlyphRenderer\"},\"glyph32\":{\"id\":\"11698\",\"type\":\"GlyphRenderer\"},\"glyph33\":{\"id\":\"11702\",\"type\":\"GlyphRenderer\"},\"glyph34\":{\"id\":\"11706\",\"type\":\"GlyphRenderer\"},\"glyph35\":{\"id\":\"11710\",\"type\":\"GlyphRenderer\"},\"glyph36\":{\"id\":\"11714\",\"type\":\"GlyphRenderer\"},\"glyph37\":{\"id\":\"11718\",\"type\":\"GlyphRenderer\"},\"glyph38\":{\"id\":\"11722\",\"type\":\"GlyphRenderer\"},\"glyph39\":{\"id\":\"11726\",\"type\":\"GlyphRenderer\"},\"glyph4\":{\"id\":\"11586\",\"type\":\"GlyphRenderer\"},\"glyph40\":{\"id\":\"11730\",\"type\":\"GlyphRenderer\"},\"glyph41\":{\"id\":\"11734\",\"type\":\"GlyphRenderer\"},\"glyph42\":{\"id\":\"11738\",\"type\":\"GlyphRenderer\"},\"glyph43\":{\"id\":\"11742\",\"type\":\"GlyphRenderer\"},\"glyph44\":{\"id\":\"11746\",\"type\":\"GlyphRenderer\"},\"glyph45\":{\"id\":\"11750\",\"type\":\"GlyphRenderer\"},\"glyph46\":{\"id\":\"11754\",\"type\":\"GlyphRenderer\"},\"glyph47\":{\"id\":\"11758\",\"type\":\"GlyphRenderer\"},\"glyph48\":{\"id\":\"12183\",\"type\":\"GlyphRenderer\"},\"glyph49\":{\"id\":\"12187\",\"type\":\"GlyphRenderer\"},\"glyph5\":{\"id\":\"11590\",\"type\":\"GlyphRenderer\"},\"glyph50\":{\"id\":\"12191\",\"type\":\"GlyphRenderer\"},\"glyph51\":{\"id\":\"12195\",\"type\":\"GlyphRenderer\"},\"glyph52\":{\"id\":\"12199\",\"type\":\"GlyphRenderer\"},\"glyph53\":{\"id\":\"12203\",\"type\":\"GlyphRenderer\"},\"glyph54\":{\"id\":\"12207\",\"type\":\"GlyphRenderer\"},\"glyph55\":{\"id\":\"12211\",\"type\":\"GlyphRenderer\"},\"glyph56\":{\"id\":\"12215\",\"type\":\"GlyphRenderer\"},\"glyph57\":{\"id\":\"12219\",\"type\":\"GlyphRenderer\"},\"glyph58\":{\"id\":\"12223\",\"type\":\"GlyphRenderer\"},\"glyph59\":{\"id\":\"12227\",\"type\":\"GlyphRenderer\"},\"glyph6\":{\"id\":\"11594\",\"type\":\"GlyphRenderer\"},\"glyph60\":{\"id\":\"12231\",\"type\":\"GlyphRenderer\"},\"glyph61\":{\"id\":\"12235\",\"type\":\"GlyphRenderer\"},\"glyph62\":{\"id\":\"12239\",\"type\":\"GlyphRenderer\"},\"glyph63\":{\"id\":\"12243\",\"type\":\"GlyphRenderer\"},\"glyph64\":{\"id\":\"12247\",\"type\":\"GlyphRenderer\"},\"glyph65\":{\"id\":\"12251\",\"type\":\"GlyphRenderer\"},\"glyph66\":{\"id\":\"12255\",\"type\":\"GlyphRenderer\"},\"glyph67\":{\"id\":\"12259\",\"type\":\"GlyphRenderer\"},\"glyph68\":{\"id\":\"12263\",\"type\":\"GlyphRenderer\"},\"glyph69\":{\"id\":\"12267\",\"type\":\"GlyphRenderer\"},\"glyph7\":{\"id\":\"11598\",\"type\":\"GlyphRenderer\"},\"glyph70\":{\"id\":\"12271\",\"type\":\"GlyphRenderer\"},\"glyph71\":{\"id\":\"12275\",\"type\":\"GlyphRenderer\"},\"glyph72\":{\"id\":\"12279\",\"type\":\"GlyphRenderer\"},\"glyph73\":{\"id\":\"12283\",\"type\":\"GlyphRenderer\"},\"glyph74\":{\"id\":\"12287\",\"type\":\"GlyphRenderer\"},\"glyph75\":{\"id\":\"12291\",\"type\":\"GlyphRenderer\"},\"glyph76\":{\"id\":\"12295\",\"type\":\"GlyphRenderer\"},\"glyph77\":{\"id\":\"12299\",\"type\":\"GlyphRenderer\"},\"glyph78\":{\"id\":\"12303\",\"type\":\"GlyphRenderer\"},\"glyph79\":{\"id\":\"12307\",\"type\":\"GlyphRenderer\"},\"glyph8\":{\"id\":\"11602\",\"type\":\"GlyphRenderer\"},\"glyph80\":{\"id\":\"12311\",\"type\":\"GlyphRenderer\"},\"glyph81\":{\"id\":\"12315\",\"type\":\"GlyphRenderer\"},\"glyph82\":{\"id\":\"12319\",\"type\":\"GlyphRenderer\"},\"glyph83\":{\"id\":\"12323\",\"type\":\"GlyphRenderer\"},\"glyph84\":{\"id\":\"12327\",\"type\":\"GlyphRenderer\"},\"glyph85\":{\"id\":\"12331\",\"type\":\"GlyphRenderer\"},\"glyph86\":{\"id\":\"12335\",\"type\":\"GlyphRenderer\"},\"glyph87\":{\"id\":\"12339\",\"type\":\"GlyphRenderer\"},\"glyph88\":{\"id\":\"12343\",\"type\":\"GlyphRenderer\"},\"glyph89\":{\"id\":\"12347\",\"type\":\"GlyphRenderer\"},\"glyph9\":{\"id\":\"11606\",\"type\":\"GlyphRenderer\"},\"glyph90\":{\"id\":\"12351\",\"type\":\"GlyphRenderer\"},\"glyph91\":{\"id\":\"12355\",\"type\":\"GlyphRenderer\"},\"glyph92\":{\"id\":\"12359\",\"type\":\"GlyphRenderer\"},\"glyph93\":{\"id\":\"12363\",\"type\":\"GlyphRenderer\"},\"glyph94\":{\"id\":\"12367\",\"type\":\"GlyphRenderer\"},\"glyph95\":{\"id\":\"12371\",\"type\":\"GlyphRenderer\"},\"glyph96\":{\"id\":\"12816\",\"type\":\"GlyphRenderer\"},\"glyph97\":{\"id\":\"12820\",\"type\":\"GlyphRenderer\"},\"glyph98\":{\"id\":\"12824\",\"type\":\"GlyphRenderer\"},\"glyph99\":{\"id\":\"12828\",\"type\":\"GlyphRenderer\"},\"time_slider\":{\"id\":\"14594\",\"type\":\"Slider\"}},\"code\":\"var glyphs = [glyph0, glyph1, glyph2, glyph3, glyph4, glyph5, glyph6, glyph7, glyph8, glyph9, glyph10, glyph11, glyph12, glyph13, glyph14, glyph15, glyph16, glyph17, glyph18, glyph19, glyph20, glyph21, glyph22, glyph23, glyph24, glyph25, glyph26, glyph27, glyph28, glyph29, glyph30, glyph31, glyph32, glyph33, glyph34, glyph35, glyph36, glyph37, glyph38, glyph39, glyph40, glyph41, glyph42, glyph43, glyph44, glyph45, glyph46, glyph47, glyph48, glyph49, glyph50, glyph51, glyph52, glyph53, glyph54, glyph55, glyph56, glyph57, glyph58, glyph59, glyph60, glyph61, glyph62, glyph63, glyph64, glyph65, glyph66, glyph67, glyph68, glyph69, glyph70, glyph71, glyph72, glyph73, glyph74, glyph75, glyph76, glyph77, glyph78, glyph79, glyph80, glyph81, glyph82, glyph83, glyph84, glyph85, glyph86, glyph87, glyph88, glyph89, glyph90, glyph91, glyph92, glyph93, glyph94, glyph95, glyph96, glyph97, glyph98, glyph99, glyph100, glyph101, glyph102, glyph103, glyph104, glyph105, glyph106, glyph107, glyph108, glyph109, glyph110, glyph111, glyph112, glyph113, glyph114, glyph115, glyph116, glyph117, glyph118, glyph119, glyph120, glyph121, glyph122, glyph123, glyph124, glyph125, glyph126, glyph127, glyph128, glyph129, glyph130, glyph131, glyph132, glyph133, glyph134, glyph135, glyph136, glyph137, glyph138, glyph139, glyph140, glyph141, glyph142, glyph143, glyph144, glyph145, glyph146, glyph147, glyph148, glyph149, glyph150, glyph151, glyph152, glyph153, glyph154, glyph155, glyph156, glyph157, glyph158, glyph159, glyph160, glyph161, glyph162, glyph163, glyph164, glyph165, glyph166, glyph167, glyph168, glyph169, glyph170, glyph171, glyph172, glyph173, glyph174, glyph175, glyph176, glyph177, glyph178, glyph179, glyph180, glyph181, glyph182, glyph183, glyph184, glyph185, glyph186, glyph187, glyph188, glyph189, glyph190, glyph191, glyph192, glyph193, glyph194, glyph195, glyph196, glyph197, glyph198, glyph199, glyph200, glyph201, glyph202, glyph203, glyph204, glyph205, glyph206, glyph207, glyph208, glyph209, glyph210, glyph211, glyph212, glyph213, glyph214, glyph215, glyph216, glyph217, glyph218, glyph219, glyph220, glyph221, glyph222, glyph223, glyph224, glyph225, glyph226, glyph227, glyph228, glyph229, glyph230, glyph231, glyph232, glyph233, glyph234, glyph235, glyph236, glyph237, glyph238, glyph239];var overtime = [[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],[48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143],[144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191],[192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239]];var runs = [[0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236],[1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,85,89,93,97,101,105,109,113,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237],[2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,86,90,94,98,102,106,110,114,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238],[3,7,11,15,19,23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83,87,91,95,99,103,107,111,115,119,123,127,131,135,139,143,147,151,155,159,163,167,171,175,179,183,187,191,195,199,203,207,211,215,219,223,227,231,235,239]];\\n glyphs.forEach(function(g) {\\n g.visible = false;\\n })\\n // union function\\n function union_arrays(x, y) {\\n var obj = {};\\n for (var i = x.length-1; i >= 0; -- i)\\n obj[x[i]] = x[i];\\n for (var i = y.length-1; i >= 0; -- i)\\n obj[y[i]] = y[i];\\n var res = []\\n for (var k in obj) {\\n if (obj.hasOwnProperty(k)) // <-- optional\\n res.push(obj[k]);\\n }\\n return res;\\n }\\n console.log(\\\"Timeslider: \\\" + time_slider.value);\\n console.log(\\\"Checkbox: \\\" + checkbox.active);var slider_labels = ['41.46', '42.74', '76.94', '141.07', '212.23'];console.log(\\\"Detected slider_labels: \\\" + slider_labels);time_slider.title = \\\"Until wallclocktime \\\" + slider_labels[time_slider.value - 1] + \\\". Step no.\\\"; \\n var activate = [];\\n // if we want multiple checkboxes at the same time, we need to combine the arrays\\n checkbox.active.forEach(function(c) {\\n activate = union_arrays(activate, runs[c]);\\n })\\n // now the intersection of timeslider-activated and checkbox-activated\\n activate = activate.filter(value => -1 !== overtime[time_slider.value - 1].indexOf(value));\\n activate.forEach(function(idx) {\\n glyphs[idx].visible = true;\\n })\\n \"},\"id\":\"14596\",\"type\":\"CustomJS\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13911\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13591\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13592\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13385\",\"type\":\"CDSView\"}},\"id\":\"13593\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14114\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13904\",\"type\":\"GroupFilter\"},{\"id\":\"13905\",\"type\":\"GroupFilter\"},{\"id\":\"13906\",\"type\":\"GroupFilter\"},{\"id\":\"13907\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13908\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12946\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12947\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12742\",\"type\":\"CDSView\"}},\"id\":\"12948\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"13929\",\"type\":\"GroupFilter\"},{\"id\":\"13930\",\"type\":\"GroupFilter\"},{\"id\":\"13931\",\"type\":\"GroupFilter\"},{\"id\":\"13932\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13933\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"14104\",\"type\":\"GroupFilter\"},{\"id\":\"14105\",\"type\":\"GroupFilter\"},{\"id\":\"14106\",\"type\":\"GroupFilter\"},{\"id\":\"14107\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14108\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13539\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13915\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,false,true,false,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,false,false,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,true,false,true,true,false,true,false,false,true,false,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,false,true,true,false,true,false,false,true,false,true,false,true,true,true,false,true,false,true,false,true,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"14102\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14109\",\"type\":\"GroupFilter\"},{\"id\":\"14110\",\"type\":\"GroupFilter\"},{\"id\":\"14111\",\"type\":\"GroupFilter\"},{\"id\":\"14112\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14113\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12922\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12923\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12712\",\"type\":\"CDSView\"}},\"id\":\"12924\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13535\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13547\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12966\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12967\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12767\",\"type\":\"CDSView\"}},\"id\":\"12968\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12923\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"14120\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12962\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13917\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13591\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13905\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14104\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12922\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13921\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12926\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12927\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12717\",\"type\":\"CDSView\"}},\"id\":\"12928\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13531\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13532\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13310\",\"type\":\"CDSView\"}},\"id\":\"13533\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,true,false,false,true,true,false,true,false,false,false,false,true,true,false,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,false,true,false,false,false,false,false,true,false,false,true,false,true,false,false,true,true,true,false,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,false,true,false,true,true,true,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,true,true,true,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,true,false,true,false,true,true,false,true,true,true,false,false,false,false,false,false,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,true,true,true,true,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,true,true,true,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,true,true,false,false,true,true,true,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13927\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,true,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14117\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12963\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13929\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12927\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13592\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13919\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14106\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13540\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14116\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13920\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,true,false,false,false,false,true,true,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,false,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14112\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12926\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14105\",\"type\":\"GroupFilter\"},{\"attributes\":{\"callback\":null,\"end\":5,\"js_property_callbacks\":{\"change:value\":[{\"id\":\"14596\",\"type\":\"CustomJS\"}]},\"start\":1,\"title\":\"Until wallclocktime 212.23. Step no. \",\"value\":5},\"id\":\"14594\",\"type\":\"Slider\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13535\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13536\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13315\",\"type\":\"CDSView\"}},\"id\":\"13537\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12962\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12963\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12762\",\"type\":\"CDSView\"}},\"id\":\"12964\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13930\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12950\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,false,true,false,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,false,false,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,true,false,true,true,false,true,false,false,true,false,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,false,true,true,false,true,false,false,true,false,true,false,true,true,true,false,true,false,true,false,true,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13922\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"14100\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,true,false,false,false,false,true,true,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,false,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13912\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,true,false,false,true,true,false,true,false,false,false,false,true,true,false,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,false,true,false,false,false,false,false,true,false,false,true,false,true,false,false,true,true,true,false,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,false,true,false,true,true,true,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,true,true,true,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,true,false,true,false,true,true,false,true,true,true,false,false,false,false,false,false,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,true,true,true,true,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,true,true,true,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,true,true,false,false,true,true,true,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"14107\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14099\",\"type\":\"GroupFilter\"},{\"id\":\"14100\",\"type\":\"GroupFilter\"},{\"id\":\"14101\",\"type\":\"GroupFilter\"},{\"id\":\"14102\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14103\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"13909\",\"type\":\"GroupFilter\"},{\"id\":\"13910\",\"type\":\"GroupFilter\"},{\"id\":\"13911\",\"type\":\"GroupFilter\"},{\"id\":\"13912\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13913\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,false,true,false,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,false,false,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,true,false,true,true,false,true,false,false,true,false,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,false,true,true,false,true,false,false,true,false,true,false,true,true,true,false,true,false,true,false,true,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"14122\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12970\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14109\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12958\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13914\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12950\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12951\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12747\",\"type\":\"CDSView\"}},\"id\":\"12952\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"14119\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13544\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,false,true,false,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,false,false,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,true,false,true,true,false,true,false,false,true,false,false,false,false,false,true,false,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,false,true,true,false,true,false,false,true,false,true,false,true,true,true,false,true,false,true,false,true,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,true,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,true,false,true,true,false,true,false,true,false,true,false,true,false,true,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13902\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13931\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13539\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13540\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13320\",\"type\":\"CDSView\"}},\"id\":\"13541\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12951\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13914\",\"type\":\"GroupFilter\"},{\"id\":\"13915\",\"type\":\"GroupFilter\"},{\"id\":\"13916\",\"type\":\"GroupFilter\"},{\"id\":\"13917\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13918\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12959\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,false,true,true,false,true,true,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,true,false,false,false,false,true,true,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,true,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,false,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13932\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12954\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12955\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12752\",\"type\":\"CDSView\"}},\"id\":\"12956\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,true,false,false,true,true,false,true,false,false,false,false,true,true,false,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,false,true,false,false,false,false,false,true,false,false,true,false,true,false,false,true,true,true,false,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,false,true,false,true,true,true,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,true,true,true,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,true,false,true,false,true,true,false,true,true,true,false,false,false,false,false,false,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,true,true,true,true,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,true,true,true,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,true,true,false,false,true,true,true,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13907\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14101\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13548\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13587\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13588\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13380\",\"type\":\"CDSView\"}},\"id\":\"13589\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12955\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13916\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13543\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12958\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12959\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12757\",\"type\":\"CDSView\"}},\"id\":\"12960\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"13919\",\"type\":\"GroupFilter\"},{\"id\":\"13920\",\"type\":\"GroupFilter\"},{\"id\":\"13921\",\"type\":\"GroupFilter\"},{\"id\":\"13922\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13923\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12954\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"14121\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13899\",\"type\":\"GroupFilter\"},{\"id\":\"13900\",\"type\":\"GroupFilter\"},{\"id\":\"13901\",\"type\":\"GroupFilter\"},{\"id\":\"13902\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13903\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"14119\",\"type\":\"GroupFilter\"},{\"id\":\"14120\",\"type\":\"GroupFilter\"},{\"id\":\"14121\",\"type\":\"GroupFilter\"},{\"id\":\"14122\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14123\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"13909\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13543\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13544\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13325\",\"type\":\"CDSView\"}},\"id\":\"13545\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13925\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"14114\",\"type\":\"GroupFilter\"},{\"id\":\"14115\",\"type\":\"GroupFilter\"},{\"id\":\"14116\",\"type\":\"GroupFilter\"},{\"id\":\"14117\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"14118\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12022\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,false,true,false,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12023\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12027\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12026\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12025\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12020\",\"type\":\"GroupFilter\"},{\"id\":\"12021\",\"type\":\"GroupFilter\"},{\"id\":\"12022\",\"type\":\"GroupFilter\"},{\"id\":\"12023\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12024\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12025\",\"type\":\"GroupFilter\"},{\"id\":\"12026\",\"type\":\"GroupFilter\"},{\"id\":\"12027\",\"type\":\"GroupFilter\"},{\"id\":\"12028\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12029\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12028\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12030\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,true,false,true,true,false,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12033\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12032\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12031\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12030\",\"type\":\"GroupFilter\"},{\"id\":\"12031\",\"type\":\"GroupFilter\"},{\"id\":\"12032\",\"type\":\"GroupFilter\"},{\"id\":\"12033\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12034\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12035\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12038\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12037\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12036\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12040\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12035\",\"type\":\"GroupFilter\"},{\"id\":\"12036\",\"type\":\"GroupFilter\"},{\"id\":\"12037\",\"type\":\"GroupFilter\"},{\"id\":\"12038\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12039\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12041\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12040\",\"type\":\"GroupFilter\"},{\"id\":\"12041\",\"type\":\"GroupFilter\"},{\"id\":\"12042\",\"type\":\"GroupFilter\"},{\"id\":\"12043\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12044\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,false,true,false,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12043\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12042\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12047\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12046\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12045\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"12050\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12045\",\"type\":\"GroupFilter\"},{\"id\":\"12046\",\"type\":\"GroupFilter\"},{\"id\":\"12047\",\"type\":\"GroupFilter\"},{\"id\":\"12048\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12049\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12048\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12050\",\"type\":\"GroupFilter\"},{\"id\":\"12051\",\"type\":\"GroupFilter\"},{\"id\":\"12052\",\"type\":\"GroupFilter\"},{\"id\":\"12053\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12054\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,true,false,true,true,false,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12053\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12052\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12051\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13511\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13512\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13285\",\"type\":\"CDSView\"}},\"id\":\"13513\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12088\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13515\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13516\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13290\",\"type\":\"CDSView\"}},\"id\":\"13517\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"12085\",\"type\":\"GroupFilter\"},{\"id\":\"12086\",\"type\":\"GroupFilter\"},{\"id\":\"12087\",\"type\":\"GroupFilter\"},{\"id\":\"12088\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12089\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13515\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12090\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12091\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13595\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13596\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13390\",\"type\":\"CDSView\"}},\"id\":\"13597\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12092\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,true,false,true,true,false,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12093\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12090\",\"type\":\"GroupFilter\"},{\"id\":\"12091\",\"type\":\"GroupFilter\"},{\"id\":\"12092\",\"type\":\"GroupFilter\"},{\"id\":\"12093\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12094\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13516\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12095\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"12096\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12097\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12098\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13520\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"12095\",\"type\":\"GroupFilter\"},{\"id\":\"12096\",\"type\":\"GroupFilter\"},{\"id\":\"12097\",\"type\":\"GroupFilter\"},{\"id\":\"12098\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12099\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13523\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13524\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13300\",\"type\":\"CDSView\"}},\"id\":\"13525\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12100\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12101\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12102\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13524\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,false,true,false,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12103\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12100\",\"type\":\"GroupFilter\"},{\"id\":\"12101\",\"type\":\"GroupFilter\"},{\"id\":\"12102\",\"type\":\"GroupFilter\"},{\"id\":\"12103\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12104\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13523\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12105\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13519\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12106\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13596\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12107\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12108\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13595\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"12105\",\"type\":\"GroupFilter\"},{\"id\":\"12106\",\"type\":\"GroupFilter\"},{\"id\":\"12107\",\"type\":\"GroupFilter\"},{\"id\":\"12108\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12109\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13519\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13520\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13295\",\"type\":\"CDSView\"}},\"id\":\"13521\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12110\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13527\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12111\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12112\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,true,false,true,true,false,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12113\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13527\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13528\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13305\",\"type\":\"CDSView\"}},\"id\":\"13529\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"12110\",\"type\":\"GroupFilter\"},{\"id\":\"12111\",\"type\":\"GroupFilter\"},{\"id\":\"12112\",\"type\":\"GroupFilter\"},{\"id\":\"12113\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12114\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12115\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12116\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13528\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12117\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12118\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"12115\",\"type\":\"GroupFilter\"},{\"id\":\"12116\",\"type\":\"GroupFilter\"},{\"id\":\"12117\",\"type\":\"GroupFilter\"},{\"id\":\"12118\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"12119\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13900\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12120\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13575\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13576\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13365\",\"type\":\"CDSView\"}},\"id\":\"13577\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14185\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13580\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14192\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14193\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13968\",\"type\":\"CDSView\"}},\"id\":\"14194\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13579\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14184\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14264\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14177\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14180\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14176\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14160\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14161\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13928\",\"type\":\"CDSView\"}},\"id\":\"14162\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14164\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14165\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13933\",\"type\":\"CDSView\"}},\"id\":\"14166\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14172\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14173\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13943\",\"type\":\"CDSView\"}},\"id\":\"14174\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13604\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14164\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14269\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13603\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14165\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14193\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14189\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14181\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14184\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14185\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13958\",\"type\":\"CDSView\"}},\"id\":\"14186\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14188\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14189\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13963\",\"type\":\"CDSView\"}},\"id\":\"14190\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13579\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13580\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13370\",\"type\":\"CDSView\"}},\"id\":\"13581\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14176\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14177\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13948\",\"type\":\"CDSView\"}},\"id\":\"14178\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13607\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13608\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13405\",\"type\":\"CDSView\"}},\"id\":\"13609\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14196\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14197\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13973\",\"type\":\"CDSView\"}},\"id\":\"14198\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14265\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14197\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13607\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14192\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13608\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14160\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14188\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13603\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13604\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13400\",\"type\":\"CDSView\"}},\"id\":\"13605\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14268\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14264\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14265\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14058\",\"type\":\"CDSView\"}},\"id\":\"14266\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"data\":{\"color\":[\"red\",\"red\",\"red\",\"red\",\"red\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"red\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\",\"white\"],\"origin\":[\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\",\"Acquisition Function\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Random\",\"Acquisition Function\"],\"p_x0\":[6.574464556273277,5.7536777878861365,7.736347845999433,9.763309496699001,2.5972799060231466,9.474961566033091,9.871362871242816,9.833278494248546,9.886452888244584,9.659978816242457,9.720765316628007,9.917050037475647,9.816910255812132,1.651316474408187,9.776817393895318,9.845836462655662,9.898873650588051,9.904330081569782,9.73152110627979,9.949001370643916,9.943908702941538,9.73675639035756,9.515535846321107,9.825245388766497,8.016492727414843,9.741387065780977,9.337914228642113,9.797311138147144,1.1344746876642553,9.908496858829082,9.059711281175883,9.578555231336935,9.603130497268694,9.860124295824477,9.255873975995492,9.85242276096097,9.97761305912243,7.418534824316293,9.573555654550788,9.852654208444719,9.93514470050441,9.49149351583819,9.766625205475894,9.61868536217969,9.778345392544232,9.493507556639841,9.520346098341822,9.524262766575717,-0.5659946881901483,9.550778961798404,9.938346756147599,9.895065655794141,9.618756224977101,9.871046567030117,9.911983688041445,9.49755608636551,9.872823275937296,-0.21873770106086,9.51619779772168,9.879837456246456,9.908775109969731,9.796889931468758,9.66966925868439,9.923189706388072,9.816722156831865,9.892626771603346,9.291177315149419,-3.8507618097339025,3.995984525628433,7.329604579522929,9.922470010649384,9.818169403001558,9.770928578887766,9.70959382958295,9.77532705006847,9.663089956070397,9.94829512628565,5.615675661958155,9.104614896355304,1.063892947013688,5.988209772046654,9.45486037274653,-4.990638170649746,9.986121640544297,1.8969836014395032,9.366189494786983,9.841844000897776,9.845548800259639,3.405312809441325,4.511865410143471,9.533582999697472,9.145125495881544,9.758091648356665,9.460498892657117,9.391535072313758,9.343456700295452,9.806081528284516,9.87925253753674,5.151535475672658,-4.8642747685896275,-8.298331221205949,-3.910056656236698,9.954331557663323,9.802489868617286,9.88003317092,6.708567131908499,-9.71267945684989,-7.685194042283332,7.199456193905437,-6.508045913108347,-6.7785710768717955,2.3574246650039843,-0.1635985689683217,9.911577840583249],\"p_x1\":[-9.70170189950312,-4.974922099319709,-3.3984602978786445,-9.285530158448536,-3.4476444643076327,-3.4531946167751917,-3.3359693355103683,-9.341373587839742,-3.3372923349893675,-9.534380309244433,-9.53100816260161,-3.335474501639811,-3.3520424071688026,-4.939258901607799,-3.347558595597717,-3.3300569070845114,-9.623135257915893,-3.3404159762378374,-9.556655035668278,-3.344681727223513,-3.350762472163832,-9.611261615454653,-9.57175242499804,-3.35164650370843,-3.3772712345835965,-9.58433138820181,-3.6207112780521387,-9.551277835723795,-3.476648912209386,-3.3266135637322645,-3.4728912731389174,-9.860186355024757,-3.8235602736044996,-3.3554889293862864,-3.4968138114099574,-3.2096108829903773,-3.352188192022547,-3.3970916657867454,-9.714551364062723,-3.3672940107824845,-3.334622447353416,-9.82720330604877,-3.4189722958645605,-9.702329729411739,-3.5527568711940045,-9.85365221141381,-3.1787850544268546,-9.746104873360439,7.145093197178269,-9.672933838169095,-3.3449867263867787,-3.3449789403003702,-9.529420205107785,-3.3195072213688928,-3.335107266009726,-9.583590339532911,-3.3306469990429903,2.356101067123202,-9.858488317876812,-3.355622584799934,-3.338951938781838,-3.327355618768589,-9.605842937153568,-3.341782993093326,-9.763863992038713,-3.334110826598363,-3.1714365897798134,-0.24842105118745117,0.7747222496976569,-3.259022339591228,-3.374462664138484,-3.332425329495373,-3.3591516963868404,-3.339387719810687,-3.354904601034119,-2.474680620019507,-2.7814045241683347,-7.690013606742641,-2.710718250891315,3.5554895890773235,2.210911541185034,-3.153075506587111,7.514511965742777,-2.8693214570197956,5.241721155903278,-3.3550225554449664,-3.3557254662620224,-2.3523557598885114,-3.547217980912663,-4.749109763805621,-2.4410648228442566,-2.5533164194741422,-3.016932576618638,-2.5650744905706047,-3.191627656069543,-2.2063239882740397,-3.346399598226336,-3.3278844088184485,4.998585811304739,-5.716620684870028,-6.837757645064166,-4.830225564299733,-3.344271523570889,-3.3227340160593544,-5.932057218966262,-8.446664058533555,7.281726511087239,9.05128784053636,6.03383934539627,7.831882861679553,2.7595842545229097,4.1371102683186916,-5.750364221254401,-3.3427838522060958],\"runs\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"size\":[12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0],\"type\":[\"Incumbent\",\"Incumbent\",\"Final Incumbent\",\"Incumbent\",\"Incumbent\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Incumbent\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\",\"Candidate\"],\"x\":{\"__ndarray__\":\"5kusIYIL2T/fjbNJcBm8P49OkQLlu6M/6coyB5Z92T+pb9EkBNquv24IZtM9xbQ/0zYouNectD/waKmzZLLZP3zZNd3qp7Q/YWgvK2I32j9l+nLO8jvaP6Z0v4DQq7Q/4DKB4TG/tD9Au79qaKGmP1OOZA6fnrQ/jrPEU4OBtD+O1FyOhLnaP25glnjNuLQ/kRpbgE1S2j92aj3MW9S0P7YmK+uX6bQ/dB/Farl/2j8hPemT7EbaP4sXJav3wLQ/gSlxeNs7pj+TlXmW1WraP1AYhI+fmrc/VexKWDZb2j/PohJ1yRCyv02uZUk7i7Q/GSsC9Gm2sj/DqxPKGjLbP3lvHPdKD7w/AuSPTdzXtD9OZDu4ulO0P8bH9ZI+BLM/+M3lDaz3tD9435nR1xegP6ay1siov9o/vmszvub7tD/qXzWtQK60P7Znc6Z7FNs/6G86G75wtT+YhNhXYbraP6bUZIuSz7c/+jgHsHAp2z8hn6zEoaywPzODGHrq1No/haZ7E+bh6L938jwhEpzaPzBidfSD0rQ/ht/PwaLEtD+E6YL6ey/aPwDAL7sCY7Q/eOK6DgSptD/ox3hOo07aP0S5pL3ni7Q/oMkSkPIG37938N9HIS7bPz1WKQAw37Q/lXTi9eO0tD9nH64rKme0PxCXNwuYcdo/XcYbKbzDtD9AEZvLVwfbPzvZQkiTn7Q/r+MA+8zRrT+RJBcfCuvTv3ifRSO6NNS/odI0WJe0kj8Ab3UyhDW1PwslVGY3gbQ/BOLkxN28tD+g9dAc20q0PwSMUF1Cs7Q/PG/6JLpxoD9R4kt2ZKOrP+Tp2k7sZr6/vOseCGZnlj/ycdWoj23hv+HsMRDY2dS/0d+BHqGFrz8HCFppV3Xqvwdhw20X7a0/ChrYdW4Q5L8lI+fqeIWyPyPIqEHu0rQ/KoWKbx5Cnj9Hoc0U4Eymvx76ZuCgNrM/3wGDi6oAmj/NFYdRUfeMP0ONevhxS7A/DVYfepTenT8D1rezXe6vP9Xcx21BuGY/LzNZEMqotD+8floy/YS0P5rMog75RuC/uNW+q1E5qj8mR1IbLrq/Py3vKXWfmFa/b/dhbGvUtD9FO7p9pVm0P4QleOLi5c0/6FwrSbBB1D8Yil9Ixm/sv6gg/q5nI+6/x4RGwyj63b/8n54pZfPqv/gmoUUSRuG/UCWz2h+44b8qT+ENuje5P0aoAl/xwrQ/\",\"dtype\":\"float64\",\"shape\":[114]},\"y\":{\"__ndarray__\":\"KWivigy6jD9qAczTa9W0P40bieUqdLK/wxVWeMphzr/qMYonFEnGP0AmBHa8dMO/wGuvQXuHxr/7hDb8lDzPv1eJK35Hnsa/Mq8zuN3jzb9fMfHatn3Ov5J1gBXw1ca/cjgOeawKxr9bcYy/gobTP5m5M66xz8W/HVy2lhdnxr/68hAH6QzQv1DPcBKltsa/d61Ptfykzr8ImstO0vrGv6JEtezz5ca/yF3pAirLzr9BNcwsHnvMv/3q1G+0Gca/fY7UPHYctr/4UGYOa8jOv5kRle4sncK/aVfQltw5z79AVOU/lRrQP2oFc2bO2Ma/+U6WUWv/wL/jPDXhtsHNv0SS/N2Yt8S/YKw7OlJOxr/o6/WgtyrCv45w3E+YW8e/bDtvaiUdx7/eDRqXZFqtv0SKk9cDWs2/6qHSGx0qxr9nTeQ4jfbGv8G7SKESr8y/HZJXLHVBxb/kSAUo7cvNv8Wc01o3hsW/5D2mws7EzL8tCBZXy5XFv2EnOJvq4sy/Sjlwplq92D/x6Yz26wbNv7QkUc/458a/rbskSPedxr+lrHOf9HPNv1a18gKHp8a/VBMWrgLOxr+ejiza3VHMv4ItrDIflMa/WsaWVdxx1z9Gpby3SArNv8q6sVOhb8a/Pp7m9SHBxr8kvNa3VxjGv5cbrDPgIs6/7Gj0gAvUxr9LZpAKmN3Pv7Yl7AXvrsa/fpHq4ApIxL/yFfwD/6XiP3wt2+/wArk/k5AoU+dwrb+Ld4dgTZHGvz44fM7iMsa/I+bjJKuvxb+qa77VgnLFvx0oqUwvv8W/OWhJRQL0yr+9ReAJY9rKv5OJvKlsv9K/f3Sfh24qxr8V0hFDdH/RP2KVKlPzKZ2/RDtJkdNmxb9rbIciX/fmP1b+CMpjisq/VZyamK0tyj+t6wWD00jDv9WP8uhuLsa/ytZnc6K8zL9+nW7H0PHBP6Df8NH26cI/btMZepBYyr/D39kUbj/Hv/cQ8Qk7Jci/nu5d7oU3yb+WX85Af7jEv85WnMFVQsq/m3O4RkMDxr+8u5sYcaTGv/a0CM5q+42/vFaWy3SL5T8xxcZzj5XsP55iD6VFvOI/dPMgIbkEx7/gF4NhzyrGv+/TYhRa78i/uqu4XEWGmD+tNTtoVSTvPyGwBIbM2+w/6Z2cb6Egw79Cu7oeb6rqP6alHbidC+k/C7cFPUK+xj8lo4lkMpDbP084wkZvvsa/\",\"dtype\":\"float64\",\"shape\":[114]},\"zorder\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]},\"selected\":{\"id\":\"12390\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"12391\",\"type\":\"UnionRenderers\"}},\"id\":\"11270\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14180\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14181\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13953\",\"type\":\"CDSView\"}},\"id\":\"14182\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14161\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14173\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14196\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13418\",\"type\":\"GroupFilter\"},{\"attributes\":{\"text\":\"Data used to estimate contour-plot\"},\"id\":\"14604\",\"type\":\"Div\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13422\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13411\",\"type\":\"GroupFilter\"},{\"id\":\"13412\",\"type\":\"GroupFilter\"},{\"id\":\"13413\",\"type\":\"GroupFilter\"},{\"id\":\"13414\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13415\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13428\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13421\",\"type\":\"GroupFilter\"},{\"id\":\"13422\",\"type\":\"GroupFilter\"},{\"id\":\"13423\",\"type\":\"GroupFilter\"},{\"id\":\"13424\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13425\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13402\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13401\",\"type\":\"GroupFilter\"},{\"id\":\"13402\",\"type\":\"GroupFilter\"},{\"id\":\"13403\",\"type\":\"GroupFilter\"},{\"id\":\"13404\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13405\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13413\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13423\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13407\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13408\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"13406\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13427\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"13421\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13406\",\"type\":\"GroupFilter\"},{\"id\":\"13407\",\"type\":\"GroupFilter\"},{\"id\":\"13408\",\"type\":\"GroupFilter\"},{\"id\":\"13409\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13410\",\"type\":\"CDSView\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,false,true,false,true,true,true,true,false,true,false,true,true,false,true,false,true,true,false,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13409\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13424\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13416\",\"type\":\"GroupFilter\"},{\"id\":\"13417\",\"type\":\"GroupFilter\"},{\"id\":\"13418\",\"type\":\"GroupFilter\"},{\"id\":\"13419\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13420\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"13411\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,true,false,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,true,false,true,true,false,false,false,true,false,true,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,true,true,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,false,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13414\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13412\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13404\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,false,true,false,true,true,true,true,false,true,false,true,true,false,true,false,true,true,false,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13429\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13403\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,true,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13419\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"13416\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"13426\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"13401\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13417\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11945\",\"type\":\"GroupFilter\"},{\"id\":\"11946\",\"type\":\"GroupFilter\"},{\"id\":\"11947\",\"type\":\"GroupFilter\"},{\"id\":\"11948\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"11949\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11955\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,false,false,false,false,false,true,false,true,true,false,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11953\",\"type\":\"BooleanFilter\"},{\"attributes\":{},\"id\":\"11762\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"11764\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"11765\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"11776\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11947\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11942\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11948\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11946\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11951\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,false,true,false,false,true,true,false,true,true,false,true,true,false,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11943\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11950\",\"type\":\"GroupFilter\"},{\"id\":\"11951\",\"type\":\"GroupFilter\"},{\"id\":\"11952\",\"type\":\"GroupFilter\"},{\"id\":\"11953\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"11954\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11957\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11950\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11952\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11940\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11945\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11941\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11940\",\"type\":\"GroupFilter\"},{\"id\":\"11941\",\"type\":\"GroupFilter\"},{\"id\":\"11942\",\"type\":\"GroupFilter\"},{\"id\":\"11943\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"}},\"id\":\"11944\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11956\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12185\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12186\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11949\",\"type\":\"CDSView\"}},\"id\":\"12187\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11488\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12210\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"12733\",\"type\":\"GroupFilter\"},{\"id\":\"12734\",\"type\":\"GroupFilter\"},{\"id\":\"12735\",\"type\":\"GroupFilter\"},{\"id\":\"12736\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12737\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"13336\",\"type\":\"GroupFilter\"},{\"id\":\"13337\",\"type\":\"GroupFilter\"},{\"id\":\"13338\",\"type\":\"GroupFilter\"},{\"id\":\"13339\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13340\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11489\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13317\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12189\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13338\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11490\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13318\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12190\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12736\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11487\",\"type\":\"GroupFilter\"},{\"id\":\"11488\",\"type\":\"GroupFilter\"},{\"id\":\"11489\",\"type\":\"GroupFilter\"},{\"id\":\"11490\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11491\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12753\",\"type\":\"GroupFilter\"},{\"id\":\"12754\",\"type\":\"GroupFilter\"},{\"id\":\"12755\",\"type\":\"GroupFilter\"},{\"id\":\"12756\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12757\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12189\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12190\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11954\",\"type\":\"CDSView\"}},\"id\":\"12191\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"11492\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13316\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12209\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12735\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12193\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11493\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13311\",\"type\":\"GroupFilter\"},{\"id\":\"13312\",\"type\":\"GroupFilter\"},{\"id\":\"13313\",\"type\":\"GroupFilter\"},{\"id\":\"13314\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13315\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12194\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11494\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12739\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12758\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,true,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13319\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12193\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12194\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11959\",\"type\":\"CDSView\"}},\"id\":\"12195\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,true,false,true,true,false,false,true,false,true,true,true,true,false,true,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11495\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,true,false,false,true,true,false,true,false,true,true,false,true,true,false,true,true,true,true,true,false,false,false,true,false,false,true,false,false,false,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,true,false,true,false,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13339\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13316\",\"type\":\"GroupFilter\"},{\"id\":\"13317\",\"type\":\"GroupFilter\"},{\"id\":\"13318\",\"type\":\"GroupFilter\"},{\"id\":\"13319\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13320\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"11492\",\"type\":\"GroupFilter\"},{\"id\":\"11493\",\"type\":\"GroupFilter\"},{\"id\":\"11494\",\"type\":\"GroupFilter\"},{\"id\":\"11495\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11496\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12306\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12197\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"11497\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12738\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12198\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11498\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12197\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12198\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11964\",\"type\":\"CDSView\"}},\"id\":\"12199\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"filters\":[{\"id\":\"12738\",\"type\":\"GroupFilter\"},{\"id\":\"12739\",\"type\":\"GroupFilter\"},{\"id\":\"12740\",\"type\":\"GroupFilter\"},{\"id\":\"12741\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12742\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11499\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12205\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12206\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11974\",\"type\":\"CDSView\"}},\"id\":\"12207\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13342\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11500\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12759\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12201\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12741\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,false,false,false,false,false,false,true,false,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,true,false,true,true,false,false,false,true,false,true,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,true,true,true,true,true,true,false,true,true,false,true,false,true,false,false,true,true,true,false,true,false,false,true,false,true,true,false,true,true,false,true,false,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,false,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13334\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11497\",\"type\":\"GroupFilter\"},{\"id\":\"11498\",\"type\":\"GroupFilter\"},{\"id\":\"11499\",\"type\":\"GroupFilter\"},{\"id\":\"11500\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11501\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13321\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12202\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"11502\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12755\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12201\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12202\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11969\",\"type\":\"CDSView\"}},\"id\":\"12203\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12740\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13323\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12842\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13326\",\"type\":\"GroupFilter\"},{\"id\":\"13327\",\"type\":\"GroupFilter\"},{\"id\":\"13328\",\"type\":\"GroupFilter\"},{\"id\":\"13329\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13330\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11503\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"12573\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12744\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"13322\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12209\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12210\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11979\",\"type\":\"CDSView\"}},\"id\":\"12211\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11504\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11505\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12745\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12305\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,false,false,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"12756\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,true,false,false,true,false,false,true,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13324\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11502\",\"type\":\"GroupFilter\"},{\"id\":\"11503\",\"type\":\"GroupFilter\"},{\"id\":\"11504\",\"type\":\"GroupFilter\"},{\"id\":\"11505\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11506\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12213\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12214\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"11507\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12213\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12214\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11984\",\"type\":\"CDSView\"}},\"id\":\"12215\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13343\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11508\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12743\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11509\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"12753\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12217\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11510\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13326\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12218\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"11507\",\"type\":\"GroupFilter\"},{\"id\":\"11508\",\"type\":\"GroupFilter\"},{\"id\":\"11509\",\"type\":\"GroupFilter\"},{\"id\":\"11510\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11511\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12217\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12218\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11989\",\"type\":\"CDSView\"}},\"id\":\"12219\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Final Incumbent\"},\"id\":\"12748\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13341\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"11512\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13321\",\"type\":\"GroupFilter\"},{\"id\":\"13322\",\"type\":\"GroupFilter\"},{\"id\":\"13323\",\"type\":\"GroupFilter\"},{\"id\":\"13324\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13325\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13333\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12301\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12302\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"12094\",\"type\":\"CDSView\"}},\"id\":\"12303\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,false,true,false,true,false,false,false,true,true,false,false,true,false,false,true,true,false,true,true,true,true,true,true,true,true,true,false,true,false,false,true,false,false,false,false,true,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,false,true,false,false,false,true,true,true,false,true,true,false,true,false,true,false,false,true,false,false,false,false,false,false,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,true,false,true,true,false,true,false,true,true,true,true,false,true,false,true,true,false,true,false,true,true,false,true,true,true,true,false,true,false,false,true,false,true,true,false,false,true,false,true,false,true,true,false,false,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,true,true,true,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"13329\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12221\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"12743\",\"type\":\"GroupFilter\"},{\"id\":\"12744\",\"type\":\"GroupFilter\"},{\"id\":\"12745\",\"type\":\"GroupFilter\"},{\"id\":\"12746\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12747\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11513\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13327\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11514\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12222\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13336\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"12754\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,true,false,true,true,false,false,true,false,true,true,true,true,false,true,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11515\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12221\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12222\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11994\",\"type\":\"CDSView\"}},\"id\":\"12223\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,true,false,true,false,true,true,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,true,false,false,false,true,true,false,false,true,false,false,true,false,false,true,false,true,true,false,true,true,true,true,false,false,true,true,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,false,true,false,false,false,false,false,true,false,false,true,false,false,true,false,true,false,true,true,false,false,true,false,true,false,false,false,true,true,false,false,true,false,false,false,false,true,false,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12746\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13328\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11512\",\"type\":\"GroupFilter\"},{\"id\":\"11513\",\"type\":\"GroupFilter\"},{\"id\":\"11514\",\"type\":\"GroupFilter\"},{\"id\":\"11515\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11516\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"12748\",\"type\":\"GroupFilter\"},{\"id\":\"12749\",\"type\":\"GroupFilter\"},{\"id\":\"12750\",\"type\":\"GroupFilter\"},{\"id\":\"12751\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11271\",\"type\":\"ColumnDataSource\"}},\"id\":\"12752\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12302\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13331\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Default\"},\"id\":\"11517\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12225\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12226\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,true,false,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,false,true,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"12751\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13332\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11518\",\"type\":\"GroupFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"13331\",\"type\":\"GroupFilter\"},{\"id\":\"13332\",\"type\":\"GroupFilter\"},{\"id\":\"13333\",\"type\":\"GroupFilter\"},{\"id\":\"13334\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"}},\"id\":\"13335\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"12749\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11270\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"12225\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"12226\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11999\",\"type\":\"CDSView\"}},\"id\":\"12227\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"13337\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11519\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"12301\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"12750\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11357\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11358\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11359\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11360\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11357\",\"type\":\"GroupFilter\"},{\"id\":\"11358\",\"type\":\"GroupFilter\"},{\"id\":\"11359\",\"type\":\"GroupFilter\"},{\"id\":\"11360\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11361\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11362\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Random\"},\"id\":\"11363\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11364\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11365\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11362\",\"type\":\"GroupFilter\"},{\"id\":\"11363\",\"type\":\"GroupFilter\"},{\"id\":\"11364\",\"type\":\"GroupFilter\"},{\"id\":\"11365\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11366\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11367\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11368\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11369\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,false,false,true,false,false,false,false,false,true,true,true,true,false,false,true,false,true,false,true,false,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true]},\"id\":\"11370\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11367\",\"type\":\"GroupFilter\"},{\"id\":\"11368\",\"type\":\"GroupFilter\"},{\"id\":\"11369\",\"type\":\"GroupFilter\"},{\"id\":\"11370\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11371\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11372\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11373\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11374\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,true,false,true,true,false,false,true,false,true,true,true,true,false,true,true,false,true,false,true,false,true,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,true,false,true,true,true,true,true,false,false,false,false,true,true,false,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11375\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11372\",\"type\":\"GroupFilter\"},{\"id\":\"11373\",\"type\":\"GroupFilter\"},{\"id\":\"11374\",\"type\":\"GroupFilter\"},{\"id\":\"11375\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11376\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11377\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11378\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11379\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,true,true,false,true,true,true,false,true,false,false,true,true,false,true,false,false,true,false,false,true,false,false,true,false,false,true,false,true,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11380\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11377\",\"type\":\"GroupFilter\"},{\"id\":\"11378\",\"type\":\"GroupFilter\"},{\"id\":\"11379\",\"type\":\"GroupFilter\"},{\"id\":\"11380\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11381\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Candidate\"},\"id\":\"11382\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Acquisition Function\"},\"id\":\"11383\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"11384\",\"type\":\"GroupFilter\"},{\"attributes\":{\"booleans\":[false,false,true,false,false,true,true,false,true,false,false,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"11385\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"filters\":[{\"id\":\"11382\",\"type\":\"GroupFilter\"},{\"id\":\"11383\",\"type\":\"GroupFilter\"},{\"id\":\"11384\",\"type\":\"GroupFilter\"},{\"id\":\"11385\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"}},\"id\":\"11386\",\"type\":\"CDSView\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"11387\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11628\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11629\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11406\",\"type\":\"CDSView\"}},\"id\":\"11630\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"background_fill_color\":{\"value\":null},\"below\":[{\"id\":\"11283\",\"type\":\"LinearAxis\"}],\"border_fill_color\":{\"value\":null},\"center\":[{\"id\":\"11287\",\"type\":\"Grid\"},{\"id\":\"11292\",\"type\":\"Grid\"}],\"left\":[{\"id\":\"11288\",\"type\":\"LinearAxis\"}],\"plot_height\":500,\"renderers\":[{\"id\":\"11307\",\"type\":\"GlyphRenderer\"},{\"id\":\"11312\",\"type\":\"GlyphRenderer\"},{\"id\":\"11317\",\"type\":\"GlyphRenderer\"},{\"id\":\"11322\",\"type\":\"GlyphRenderer\"},{\"id\":\"11570\",\"type\":\"GlyphRenderer\"},{\"id\":\"11574\",\"type\":\"GlyphRenderer\"},{\"id\":\"11578\",\"type\":\"GlyphRenderer\"},{\"id\":\"11582\",\"type\":\"GlyphRenderer\"},{\"id\":\"11586\",\"type\":\"GlyphRenderer\"},{\"id\":\"11590\",\"type\":\"GlyphRenderer\"},{\"id\":\"11594\",\"type\":\"GlyphRenderer\"},{\"id\":\"11598\",\"type\":\"GlyphRenderer\"},{\"id\":\"11602\",\"type\":\"GlyphRenderer\"},{\"id\":\"11606\",\"type\":\"GlyphRenderer\"},{\"id\":\"11610\",\"type\":\"GlyphRenderer\"},{\"id\":\"11614\",\"type\":\"GlyphRenderer\"},{\"id\":\"11618\",\"type\":\"GlyphRenderer\"},{\"id\":\"11622\",\"type\":\"GlyphRenderer\"},{\"id\":\"11626\",\"type\":\"GlyphRenderer\"},{\"id\":\"11630\",\"type\":\"GlyphRenderer\"},{\"id\":\"11634\",\"type\":\"GlyphRenderer\"},{\"id\":\"11638\",\"type\":\"GlyphRenderer\"},{\"id\":\"11642\",\"type\":\"GlyphRenderer\"},{\"id\":\"11646\",\"type\":\"GlyphRenderer\"},{\"id\":\"11650\",\"type\":\"GlyphRenderer\"},{\"id\":\"11654\",\"type\":\"GlyphRenderer\"},{\"id\":\"11658\",\"type\":\"GlyphRenderer\"},{\"id\":\"11662\",\"type\":\"GlyphRenderer\"},{\"id\":\"11666\",\"type\":\"GlyphRenderer\"},{\"id\":\"11670\",\"type\":\"GlyphRenderer\"},{\"id\":\"11674\",\"type\":\"GlyphRenderer\"},{\"id\":\"11678\",\"type\":\"GlyphRenderer\"},{\"id\":\"11682\",\"type\":\"GlyphRenderer\"},{\"id\":\"11686\",\"type\":\"GlyphRenderer\"},{\"id\":\"11690\",\"type\":\"GlyphRenderer\"},{\"id\":\"11694\",\"type\":\"GlyphRenderer\"},{\"id\":\"11698\",\"type\":\"GlyphRenderer\"},{\"id\":\"11702\",\"type\":\"GlyphRenderer\"},{\"id\":\"11706\",\"type\":\"GlyphRenderer\"},{\"id\":\"11710\",\"type\":\"GlyphRenderer\"},{\"id\":\"11714\",\"type\":\"GlyphRenderer\"},{\"id\":\"11718\",\"type\":\"GlyphRenderer\"},{\"id\":\"11722\",\"type\":\"GlyphRenderer\"},{\"id\":\"11726\",\"type\":\"GlyphRenderer\"},{\"id\":\"11730\",\"type\":\"GlyphRenderer\"},{\"id\":\"11734\",\"type\":\"GlyphRenderer\"},{\"id\":\"11738\",\"type\":\"GlyphRenderer\"},{\"id\":\"11742\",\"type\":\"GlyphRenderer\"},{\"id\":\"11746\",\"type\":\"GlyphRenderer\"},{\"id\":\"11750\",\"type\":\"GlyphRenderer\"},{\"id\":\"11754\",\"type\":\"GlyphRenderer\"},{\"id\":\"11758\",\"type\":\"GlyphRenderer\"},{\"id\":\"12183\",\"type\":\"GlyphRenderer\"},{\"id\":\"12187\",\"type\":\"GlyphRenderer\"},{\"id\":\"12191\",\"type\":\"GlyphRenderer\"},{\"id\":\"12195\",\"type\":\"GlyphRenderer\"},{\"id\":\"12199\",\"type\":\"GlyphRenderer\"},{\"id\":\"12203\",\"type\":\"GlyphRenderer\"},{\"id\":\"12207\",\"type\":\"GlyphRenderer\"},{\"id\":\"12211\",\"type\":\"GlyphRenderer\"},{\"id\":\"12215\",\"type\":\"GlyphRenderer\"},{\"id\":\"12219\",\"type\":\"GlyphRenderer\"},{\"id\":\"12223\",\"type\":\"GlyphRenderer\"},{\"id\":\"12227\",\"type\":\"GlyphRenderer\"},{\"id\":\"12231\",\"type\":\"GlyphRenderer\"},{\"id\":\"12235\",\"type\":\"GlyphRenderer\"},{\"id\":\"12239\",\"type\":\"GlyphRenderer\"},{\"id\":\"12243\",\"type\":\"GlyphRenderer\"},{\"id\":\"12247\",\"type\":\"GlyphRenderer\"},{\"id\":\"12251\",\"type\":\"GlyphRenderer\"},{\"id\":\"12255\",\"type\":\"GlyphRenderer\"},{\"id\":\"12259\",\"type\":\"GlyphRenderer\"},{\"id\":\"12263\",\"type\":\"GlyphRenderer\"},{\"id\":\"12267\",\"type\":\"GlyphRenderer\"},{\"id\":\"12271\",\"type\":\"GlyphRenderer\"},{\"id\":\"12275\",\"type\":\"GlyphRenderer\"},{\"id\":\"12279\",\"type\":\"GlyphRenderer\"},{\"id\":\"12283\",\"type\":\"GlyphRenderer\"},{\"id\":\"12287\",\"type\":\"GlyphRenderer\"},{\"id\":\"12291\",\"type\":\"GlyphRenderer\"},{\"id\":\"12295\",\"type\":\"GlyphRenderer\"},{\"id\":\"12299\",\"type\":\"GlyphRenderer\"},{\"id\":\"12303\",\"type\":\"GlyphRenderer\"},{\"id\":\"12307\",\"type\":\"GlyphRenderer\"},{\"id\":\"12311\",\"type\":\"GlyphRenderer\"},{\"id\":\"12315\",\"type\":\"GlyphRenderer\"},{\"id\":\"12319\",\"type\":\"GlyphRenderer\"},{\"id\":\"12323\",\"type\":\"GlyphRenderer\"},{\"id\":\"12327\",\"type\":\"GlyphRenderer\"},{\"id\":\"12331\",\"type\":\"GlyphRenderer\"},{\"id\":\"12335\",\"type\":\"GlyphRenderer\"},{\"id\":\"12339\",\"type\":\"GlyphRenderer\"},{\"id\":\"12343\",\"type\":\"GlyphRenderer\"},{\"id\":\"12347\",\"type\":\"GlyphRenderer\"},{\"id\":\"12351\",\"type\":\"GlyphRenderer\"},{\"id\":\"12355\",\"type\":\"GlyphRenderer\"},{\"id\":\"12359\",\"type\":\"GlyphRenderer\"},{\"id\":\"12363\",\"type\":\"GlyphRenderer\"},{\"id\":\"12367\",\"type\":\"GlyphRenderer\"},{\"id\":\"12371\",\"type\":\"GlyphRenderer\"},{\"id\":\"12816\",\"type\":\"GlyphRenderer\"},{\"id\":\"12820\",\"type\":\"GlyphRenderer\"},{\"id\":\"12824\",\"type\":\"GlyphRenderer\"},{\"id\":\"12828\",\"type\":\"GlyphRenderer\"},{\"id\":\"12832\",\"type\":\"GlyphRenderer\"},{\"id\":\"12836\",\"type\":\"GlyphRenderer\"},{\"id\":\"12840\",\"type\":\"GlyphRenderer\"},{\"id\":\"12844\",\"type\":\"GlyphRenderer\"},{\"id\":\"12848\",\"type\":\"GlyphRenderer\"},{\"id\":\"12852\",\"type\":\"GlyphRenderer\"},{\"id\":\"12856\",\"type\":\"GlyphRenderer\"},{\"id\":\"12860\",\"type\":\"GlyphRenderer\"},{\"id\":\"12864\",\"type\":\"GlyphRenderer\"},{\"id\":\"12868\",\"type\":\"GlyphRenderer\"},{\"id\":\"12872\",\"type\":\"GlyphRenderer\"},{\"id\":\"12876\",\"type\":\"GlyphRenderer\"},{\"id\":\"12880\",\"type\":\"GlyphRenderer\"},{\"id\":\"12884\",\"type\":\"GlyphRenderer\"},{\"id\":\"12888\",\"type\":\"GlyphRenderer\"},{\"id\":\"12892\",\"type\":\"GlyphRenderer\"},{\"id\":\"12896\",\"type\":\"GlyphRenderer\"},{\"id\":\"12900\",\"type\":\"GlyphRenderer\"},{\"id\":\"12904\",\"type\":\"GlyphRenderer\"},{\"id\":\"12908\",\"type\":\"GlyphRenderer\"},{\"id\":\"12912\",\"type\":\"GlyphRenderer\"},{\"id\":\"12916\",\"type\":\"GlyphRenderer\"},{\"id\":\"12920\",\"type\":\"GlyphRenderer\"},{\"id\":\"12924\",\"type\":\"GlyphRenderer\"},{\"id\":\"12928\",\"type\":\"GlyphRenderer\"},{\"id\":\"12932\",\"type\":\"GlyphRenderer\"},{\"id\":\"12936\",\"type\":\"GlyphRenderer\"},{\"id\":\"12940\",\"type\":\"GlyphRenderer\"},{\"id\":\"12944\",\"type\":\"GlyphRenderer\"},{\"id\":\"12948\",\"type\":\"GlyphRenderer\"},{\"id\":\"12952\",\"type\":\"GlyphRenderer\"},{\"id\":\"12956\",\"type\":\"GlyphRenderer\"},{\"id\":\"12960\",\"type\":\"GlyphRenderer\"},{\"id\":\"12964\",\"type\":\"GlyphRenderer\"},{\"id\":\"12968\",\"type\":\"GlyphRenderer\"},{\"id\":\"12972\",\"type\":\"GlyphRenderer\"},{\"id\":\"12976\",\"type\":\"GlyphRenderer\"},{\"id\":\"12980\",\"type\":\"GlyphRenderer\"},{\"id\":\"12984\",\"type\":\"GlyphRenderer\"},{\"id\":\"12988\",\"type\":\"GlyphRenderer\"},{\"id\":\"12992\",\"type\":\"GlyphRenderer\"},{\"id\":\"12996\",\"type\":\"GlyphRenderer\"},{\"id\":\"13000\",\"type\":\"GlyphRenderer\"},{\"id\":\"13004\",\"type\":\"GlyphRenderer\"},{\"id\":\"13469\",\"type\":\"GlyphRenderer\"},{\"id\":\"13473\",\"type\":\"GlyphRenderer\"},{\"id\":\"13477\",\"type\":\"GlyphRenderer\"},{\"id\":\"13481\",\"type\":\"GlyphRenderer\"},{\"id\":\"13485\",\"type\":\"GlyphRenderer\"},{\"id\":\"13489\",\"type\":\"GlyphRenderer\"},{\"id\":\"13493\",\"type\":\"GlyphRenderer\"},{\"id\":\"13497\",\"type\":\"GlyphRenderer\"},{\"id\":\"13501\",\"type\":\"GlyphRenderer\"},{\"id\":\"13505\",\"type\":\"GlyphRenderer\"},{\"id\":\"13509\",\"type\":\"GlyphRenderer\"},{\"id\":\"13513\",\"type\":\"GlyphRenderer\"},{\"id\":\"13517\",\"type\":\"GlyphRenderer\"},{\"id\":\"13521\",\"type\":\"GlyphRenderer\"},{\"id\":\"13525\",\"type\":\"GlyphRenderer\"},{\"id\":\"13529\",\"type\":\"GlyphRenderer\"},{\"id\":\"13533\",\"type\":\"GlyphRenderer\"},{\"id\":\"13537\",\"type\":\"GlyphRenderer\"},{\"id\":\"13541\",\"type\":\"GlyphRenderer\"},{\"id\":\"13545\",\"type\":\"GlyphRenderer\"},{\"id\":\"13549\",\"type\":\"GlyphRenderer\"},{\"id\":\"13553\",\"type\":\"GlyphRenderer\"},{\"id\":\"13557\",\"type\":\"GlyphRenderer\"},{\"id\":\"13561\",\"type\":\"GlyphRenderer\"},{\"id\":\"13565\",\"type\":\"GlyphRenderer\"},{\"id\":\"13569\",\"type\":\"GlyphRenderer\"},{\"id\":\"13573\",\"type\":\"GlyphRenderer\"},{\"id\":\"13577\",\"type\":\"GlyphRenderer\"},{\"id\":\"13581\",\"type\":\"GlyphRenderer\"},{\"id\":\"13585\",\"type\":\"GlyphRenderer\"},{\"id\":\"13589\",\"type\":\"GlyphRenderer\"},{\"id\":\"13593\",\"type\":\"GlyphRenderer\"},{\"id\":\"13597\",\"type\":\"GlyphRenderer\"},{\"id\":\"13601\",\"type\":\"GlyphRenderer\"},{\"id\":\"13605\",\"type\":\"GlyphRenderer\"},{\"id\":\"13609\",\"type\":\"GlyphRenderer\"},{\"id\":\"13613\",\"type\":\"GlyphRenderer\"},{\"id\":\"13617\",\"type\":\"GlyphRenderer\"},{\"id\":\"13621\",\"type\":\"GlyphRenderer\"},{\"id\":\"13625\",\"type\":\"GlyphRenderer\"},{\"id\":\"13629\",\"type\":\"GlyphRenderer\"},{\"id\":\"13633\",\"type\":\"GlyphRenderer\"},{\"id\":\"13637\",\"type\":\"GlyphRenderer\"},{\"id\":\"13641\",\"type\":\"GlyphRenderer\"},{\"id\":\"13645\",\"type\":\"GlyphRenderer\"},{\"id\":\"13649\",\"type\":\"GlyphRenderer\"},{\"id\":\"13653\",\"type\":\"GlyphRenderer\"},{\"id\":\"13657\",\"type\":\"GlyphRenderer\"},{\"id\":\"14142\",\"type\":\"GlyphRenderer\"},{\"id\":\"14146\",\"type\":\"GlyphRenderer\"},{\"id\":\"14150\",\"type\":\"GlyphRenderer\"},{\"id\":\"14154\",\"type\":\"GlyphRenderer\"},{\"id\":\"14158\",\"type\":\"GlyphRenderer\"},{\"id\":\"14162\",\"type\":\"GlyphRenderer\"},{\"id\":\"14166\",\"type\":\"GlyphRenderer\"},{\"id\":\"14170\",\"type\":\"GlyphRenderer\"},{\"id\":\"14174\",\"type\":\"GlyphRenderer\"},{\"id\":\"14178\",\"type\":\"GlyphRenderer\"},{\"id\":\"14182\",\"type\":\"GlyphRenderer\"},{\"id\":\"14186\",\"type\":\"GlyphRenderer\"},{\"id\":\"14190\",\"type\":\"GlyphRenderer\"},{\"id\":\"14194\",\"type\":\"GlyphRenderer\"},{\"id\":\"14198\",\"type\":\"GlyphRenderer\"},{\"id\":\"14202\",\"type\":\"GlyphRenderer\"},{\"id\":\"14206\",\"type\":\"GlyphRenderer\"},{\"id\":\"14210\",\"type\":\"GlyphRenderer\"},{\"id\":\"14214\",\"type\":\"GlyphRenderer\"},{\"id\":\"14218\",\"type\":\"GlyphRenderer\"},{\"id\":\"14222\",\"type\":\"GlyphRenderer\"},{\"id\":\"14226\",\"type\":\"GlyphRenderer\"},{\"id\":\"14230\",\"type\":\"GlyphRenderer\"},{\"id\":\"14234\",\"type\":\"GlyphRenderer\"},{\"id\":\"14238\",\"type\":\"GlyphRenderer\"},{\"id\":\"14242\",\"type\":\"GlyphRenderer\"},{\"id\":\"14246\",\"type\":\"GlyphRenderer\"},{\"id\":\"14250\",\"type\":\"GlyphRenderer\"},{\"id\":\"14254\",\"type\":\"GlyphRenderer\"},{\"id\":\"14258\",\"type\":\"GlyphRenderer\"},{\"id\":\"14262\",\"type\":\"GlyphRenderer\"},{\"id\":\"14266\",\"type\":\"GlyphRenderer\"},{\"id\":\"14270\",\"type\":\"GlyphRenderer\"},{\"id\":\"14274\",\"type\":\"GlyphRenderer\"},{\"id\":\"14278\",\"type\":\"GlyphRenderer\"},{\"id\":\"14282\",\"type\":\"GlyphRenderer\"},{\"id\":\"14286\",\"type\":\"GlyphRenderer\"},{\"id\":\"14290\",\"type\":\"GlyphRenderer\"},{\"id\":\"14294\",\"type\":\"GlyphRenderer\"},{\"id\":\"14298\",\"type\":\"GlyphRenderer\"},{\"id\":\"14302\",\"type\":\"GlyphRenderer\"},{\"id\":\"14306\",\"type\":\"GlyphRenderer\"},{\"id\":\"14310\",\"type\":\"GlyphRenderer\"},{\"id\":\"14314\",\"type\":\"GlyphRenderer\"},{\"id\":\"14318\",\"type\":\"GlyphRenderer\"},{\"id\":\"14322\",\"type\":\"GlyphRenderer\"},{\"id\":\"14326\",\"type\":\"GlyphRenderer\"},{\"id\":\"14330\",\"type\":\"GlyphRenderer\"}],\"right\":[{\"id\":\"11325\",\"type\":\"ColorBar\"}],\"title\":{\"id\":\"11302\",\"type\":\"Title\"},\"toolbar\":{\"id\":\"11297\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"11275\",\"type\":\"Range1d\"},\"x_scale\":{\"id\":\"11279\",\"type\":\"LinearScale\"},\"y_range\":{\"id\":\"11277\",\"type\":\"Range1d\"},\"y_scale\":{\"id\":\"11281\",\"type\":\"LinearScale\"}},\"id\":\"11274\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"11388\",\"type\":\"GroupFilter\"},{\"attributes\":{\"text\":\"\",\"text_font_size\":{\"value\":\"15pt\"}},\"id\":\"11302\",\"type\":\"Title\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13611\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13612\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13410\",\"type\":\"CDSView\"}},\"id\":\"13613\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11588\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11676\",\"type\":\"Scatter\"},{\"attributes\":{\"booleans\":[true,true,true,true,true,true,true,true,true,false,true,true,true,true,true,false,false,false,false,true,false,false,true,true,false,false,false,false,false,true,false,false,true,true,false,true,true,false,false,true,true,true,false,true,true,false,true,true,false,true,true,false,false,true,false,false,false,false,false,false,true,false,false,false,true,false,false,false,true,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,true,true,true,false,true,true,true,true,true,true,true,true,true,true,true,true,false,true,false,true,false,false,false,false,true,false,false,true,false,false,true,false,true,false,false,false,false,false,true,false,true,false,true,true,false,true,false,true,false,true,false,false,true,false,false,false,false,true,false,false,true,true,false,false,true,true,false,false,true,false,false,true,true,false,false,true,true,false,true,false,false,false,false,true,true,false,true,true,false,true,true,false,true,true,true,false,true,true,true,false,true,true,false,false,true,true,false,false,false,false,false,false,false,true,false,false,true,false,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,true,true,true,true,true,true,true,false,true,true,true,false,true,true,false,true,false,true,true,false,true,true,true,true,true,false,true,false,false,false,false,false,true,false,false,true,false,true,false,false,true,true,true,false,true,true,false,false,true,false,true,false,true,false,true,true,false,true,true,false,true,false,true,false,true,true,true,false,true,false,true,false,true,false,false,true,false,true,false,true,false,true,false,false,true,false,false,true,false,false,false,false,false,false,false,true,true,true,true,true,true,true,false,true,false,true,true,true,false,true,true,true,false,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,true,true,true,true,false,true,false,false,false,true,false,true,false,true,true,false,true,true,true,false,false,false,false,false,false,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,true,false,true,true,true,true,true,true,false,true,false,true,false,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,false,true,false,false,true,false,true,false,true,false,true,true,true,true,true,false,true,false,false,true,false,true,false,true,false,true,false,true,false,true,false,false,true,false,true,false,false,false,true,true,false,true,false,true,true,true,false,false,true,true,true,true,false,true,false,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false,false]},\"id\":\"13967\",\"type\":\"BooleanFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11589\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11677\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13615\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14241\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11588\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11589\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11356\",\"type\":\"CDSView\"}},\"id\":\"11590\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11676\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11677\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11466\",\"type\":\"CDSView\"}},\"id\":\"11678\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11636\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11637\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11416\",\"type\":\"CDSView\"}},\"id\":\"11638\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"11773\",\"type\":\"Selection\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11592\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11680\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11593\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11681\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14240\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14241\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14028\",\"type\":\"CDSView\"}},\"id\":\"14242\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13612\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11592\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11593\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11361\",\"type\":\"CDSView\"}},\"id\":\"11594\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11680\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11681\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11471\",\"type\":\"CDSView\"}},\"id\":\"11682\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14273\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14236\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14237\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14023\",\"type\":\"CDSView\"}},\"id\":\"14238\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11724\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11725\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11526\",\"type\":\"CDSView\"}},\"id\":\"11726\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11637\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13616\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11596\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11684\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13971\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13615\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13616\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13415\",\"type\":\"CDSView\"}},\"id\":\"13617\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11597\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11685\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14236\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11596\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11597\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11366\",\"type\":\"CDSView\"}},\"id\":\"11598\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11684\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11685\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11476\",\"type\":\"CDSView\"}},\"id\":\"11686\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11736\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11737\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11541\",\"type\":\"CDSView\"}},\"id\":\"11738\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11636\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11725\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13620\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14277\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11600\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11688\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13635\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13628\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14252\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11601\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11689\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11600\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11601\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11371\",\"type\":\"CDSView\"}},\"id\":\"11602\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11688\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11689\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11481\",\"type\":\"CDSView\"}},\"id\":\"11690\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14272\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14272\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14273\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14068\",\"type\":\"CDSView\"}},\"id\":\"14274\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"zorder\",\"group\":\"0\"},\"id\":\"13966\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14244\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14245\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14033\",\"type\":\"CDSView\"}},\"id\":\"14246\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11724\",\"type\":\"Scatter\"},{\"attributes\":{\"filters\":[{\"id\":\"13964\",\"type\":\"GroupFilter\"},{\"id\":\"13965\",\"type\":\"GroupFilter\"},{\"id\":\"13966\",\"type\":\"GroupFilter\"},{\"id\":\"13967\",\"type\":\"BooleanFilter\"}],\"source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"}},\"id\":\"13968\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14237\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11604\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11692\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14284\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11605\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14248\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14249\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14038\",\"type\":\"CDSView\"}},\"id\":\"14250\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11693\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14245\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11604\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11605\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11376\",\"type\":\"CDSView\"}},\"id\":\"11606\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11692\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11693\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11486\",\"type\":\"CDSView\"}},\"id\":\"11694\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13636\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13619\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11632\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11633\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11411\",\"type\":\"CDSView\"}},\"id\":\"11634\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13623\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"11774\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11608\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11696\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14244\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13965\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11609\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11697\",\"type\":\"Scatter\"},{\"attributes\":{\"column_name\":\"origin\",\"group\":\"Unknown\"},\"id\":\"13970\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11608\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11609\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11381\",\"type\":\"CDSView\"}},\"id\":\"11610\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11696\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11697\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11491\",\"type\":\"CDSView\"}},\"id\":\"11698\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14248\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14276\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14277\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14073\",\"type\":\"CDSView\"}},\"id\":\"14278\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11720\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11721\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11521\",\"type\":\"CDSView\"}},\"id\":\"11722\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13623\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13624\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13425\",\"type\":\"CDSView\"}},\"id\":\"13625\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11633\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11612\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11700\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13632\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"circle_x\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11613\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11701\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13631\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14280\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14281\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14078\",\"type\":\"CDSView\"}},\"id\":\"14282\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11612\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11613\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11386\",\"type\":\"CDSView\"}},\"id\":\"11614\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11700\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11701\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11496\",\"type\":\"CDSView\"}},\"id\":\"11702\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13635\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13636\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13440\",\"type\":\"CDSView\"}},\"id\":\"13637\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"type\",\"group\":\"Incumbent\"},\"id\":\"13969\",\"type\":\"GroupFilter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14253\",\"type\":\"Scatter\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"11766\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13631\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13632\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13435\",\"type\":\"CDSView\"}},\"id\":\"13633\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11632\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11721\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11616\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11704\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11617\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11705\",\"type\":\"Scatter\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13619\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13620\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13420\",\"type\":\"CDSView\"}},\"id\":\"13621\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11616\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11617\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11391\",\"type\":\"CDSView\"}},\"id\":\"11618\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11704\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11705\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11501\",\"type\":\"CDSView\"}},\"id\":\"11706\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13624\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14240\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14249\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11720\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14276\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11620\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11708\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"13627\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14281\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"square\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11621\",\"type\":\"Scatter\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"11709\",\"type\":\"Scatter\"},{\"attributes\":{},\"id\":\"11775\",\"type\":\"Selection\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11620\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11621\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11396\",\"type\":\"CDSView\"}},\"id\":\"11622\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11269\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"11708\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"11709\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"11506\",\"type\":\"CDSView\"}},\"id\":\"11710\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11273\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"14252\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"14253\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"14043\",\"type\":\"CDSView\"}},\"id\":\"14254\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data_source\":{\"id\":\"11272\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"13627\",\"type\":\"Scatter\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"13628\",\"type\":\"Scatter\"},\"selection_glyph\":null,\"view\":{\"id\":\"13430\",\"type\":\"CDSView\"}},\"id\":\"13629\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_color\":{\"field\":\"color\"},\"marker\":{\"value\":\"inverted_triangle\"},\"size\":{\"field\":\"size\",\"units\":\"screen\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"14280\",\"type\":\"Scatter\"}],\"root_ids\":[\"14615\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"4feb7cc8-6485-44b1-b3ae-5602ead37507\",\"roots\":{\"14615\":\"4e61ce0d-bb9e-4e9c-9fa5-cbbf61791e0a\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "14615" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.configurator_footprint(use_timeslider=True, num_quantiles=5);" ] }, { "cell_type": "code", - "execution_count": 27, + "execution_count": null, "metadata": { "scrolled": false }, - "outputs": [ - { - "data": { - "text/html": [ - "\n", - "
\n", - " \n", - " Loading BokehJS ...\n", - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " var JS_MIME_TYPE = 'application/javascript';\n", - " var HTML_MIME_TYPE = 'text/html';\n", - " var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " var CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " var cell = handle.cell;\n", - "\n", - " var id = cell.output_area._bokeh_element_id;\n", - " var server_id = cell.output_area._bokeh_server_id;\n", - " // Clean up Bokeh references\n", - " if (id != null && id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " var id = msg.content.text.trim();\n", - " if (id in Bokeh.index) {\n", - " Bokeh.index[id].model.document.clear();\n", - " delete Bokeh.index[id];\n", - " }\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - "\n", - " \n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " var el = document.getElementById(\"15090\");\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS is loading...\";\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " if (el != null) {\n", - " el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };var element = document.getElementById(\"15090\");\n", - " if (element == null) {\n", - " console.error(\"Bokeh: ERROR: autoload.js configured with elementid '15090' but no matching script tag was found. \")\n", - " return false;\n", - " }\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n", - " var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " },\n", - " function(Bokeh) {} // ensure no trailing comma for IE\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((root.Bokeh !== undefined) || (force === true)) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }if (force === true) {\n", - " display_loaded();\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " var cell = $(document.getElementById(\"15090\")).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"15090\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };var element = document.getElementById(\"15090\");\n if (element == null) {\n console.error(\"Bokeh: ERROR: autoload.js configured with elementid '15090' but no matching script tag was found. \")\n return false;\n }\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.js\", \"https://cdn.pydata.org/bokeh/release/bokeh-gl-1.1.0.min.js\"];\n var css_urls = [\"https://cdn.pydata.org/bokeh/release/bokeh-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-widgets-1.1.0.min.css\", \"https://cdn.pydata.org/bokeh/release/bokeh-tables-1.1.0.min.css\"];\n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n \n function(Bokeh) {\n \n },\n function(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n \n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"15090\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "(function(root) {\n", - " function embed_document(root) {\n", - " \n", - " var docs_json = {\"d597344f-b899-4d73-9a8d-bdc26a1da961\":{\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"15093\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"id\":\"15221\",\"type\":\"Column\"}]},\"id\":\"15222\",\"type\":\"Row\"},{\"attributes\":{},\"id\":\"15101\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"15233\",\"type\":\"Selection\"},{\"attributes\":{\"label\":{\"value\":\"budget 1\"},\"renderers\":[{\"id\":\"15195\",\"type\":\"GlyphRenderer\"},{\"id\":\"15199\",\"type\":\"GlyphRenderer\"}]},\"id\":\"15216\",\"type\":\"LegendItem\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15186\",\"type\":\"Patch\"},{\"attributes\":{\"children\":[{\"id\":\"15206\",\"type\":\"Button\"}],\"width\":50},\"id\":\"15218\",\"type\":\"WidgetBox\"},{\"attributes\":{\"label\":{\"value\":\"budget 0.1111111111111111\"},\"renderers\":[{\"id\":\"15173\",\"type\":\"GlyphRenderer\"},{\"id\":\"15177\",\"type\":\"GlyphRenderer\"}]},\"id\":\"15214\",\"type\":\"LegendItem\"},{\"attributes\":{\"children\":[{\"id\":\"15217\",\"type\":\"WidgetBox\"},{\"id\":\"15220\",\"type\":\"Row\"}]},\"id\":\"15221\",\"type\":\"Column\"},{\"attributes\":{\"line_color\":\"#1b9e77\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15127\",\"type\":\"Line\"},{\"attributes\":{\"dimension\":1,\"ticker\":{\"id\":\"15109\",\"type\":\"BasicTicker\"}},\"id\":\"15112\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"15241\",\"type\":\"Selection\"},{\"attributes\":{\"ticker\":{\"id\":\"15104\",\"type\":\"LogTicker\"}},\"id\":\"15107\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":{\"id\":\"15205\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"All\"},\"id\":\"15206\",\"type\":\"Button\"},{\"attributes\":{},\"id\":\"15234\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_inspect\":\"auto\",\"active_multi\":null,\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"15113\",\"type\":\"SaveTool\"},{\"id\":\"15114\",\"type\":\"PanTool\"},{\"id\":\"15115\",\"type\":\"BoxZoomTool\"},{\"id\":\"15116\",\"type\":\"WheelZoomTool\"},{\"id\":\"15117\",\"type\":\"ResetTool\"},{\"id\":\"15201\",\"type\":\"HoverTool\"}]},\"id\":\"15118\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"15231\",\"type\":\"Selection\"},{\"attributes\":{\"label\":{\"value\":\"budget 0.3333333333333333\"},\"renderers\":[{\"id\":\"15184\",\"type\":\"GlyphRenderer\"},{\"id\":\"15188\",\"type\":\"GlyphRenderer\"}]},\"id\":\"15215\",\"type\":\"LegendItem\"},{\"attributes\":{},\"id\":\"15116\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"15232\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"overlay\":{\"id\":\"15228\",\"type\":\"BoxAnnotation\"}},\"id\":\"15115\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"15228\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"children\":[{\"id\":\"15204\",\"type\":\"CheckboxButtonGroup\"}],\"width\":100},\"id\":\"15217\",\"type\":\"WidgetBox\"},{\"attributes\":{\"line_color\":\"#d95f02\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15193\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"15237\",\"type\":\"Selection\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 1\"},\"id\":\"15190\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"15174\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15175\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15176\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"15178\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"15177\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"15204\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"15129\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"15133\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"15184\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"15188\",\"type\":\"GlyphRenderer\"},\"glyph_renderer12\":{\"id\":\"15195\",\"type\":\"GlyphRenderer\"},\"glyph_renderer13\":{\"id\":\"15199\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"15140\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"15144\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"15151\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"15155\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"15162\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"15166\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"15173\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"15177\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = []; checkbox.active = labels;len_labels = 7;glyph_renderers = [[glyph_renderer0,glyph_renderer1],[glyph_renderer2,glyph_renderer3],[glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7],[glyph_renderer8,glyph_renderer9],[glyph_renderer10,glyph_renderer11],[glyph_renderer12,glyph_renderer13]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"15207\",\"type\":\"CustomJS\"},{\"attributes\":{\"axis_label\":\"estimated cost\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"15227\",\"type\":\"BasicTickFormatter\"},\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"15109\",\"type\":\"BasicTicker\"}},\"id\":\"15108\",\"type\":\"LinearAxis\"},{\"attributes\":{\"data_source\":{\"id\":\"15130\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15131\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15132\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"15134\",\"type\":\"CDSView\"}},\"id\":\"15133\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"label\":{\"value\":\"budget 0.037037037037037035\"},\"renderers\":[{\"id\":\"15162\",\"type\":\"GlyphRenderer\"},{\"id\":\"15166\",\"type\":\"GlyphRenderer\"}]},\"id\":\"15213\",\"type\":\"LegendItem\"},{\"attributes\":{\"callback\":null,\"renderers\":[{\"id\":\"15129\",\"type\":\"GlyphRenderer\"},{\"id\":\"15133\",\"type\":\"GlyphRenderer\"},{\"id\":\"15140\",\"type\":\"GlyphRenderer\"},{\"id\":\"15144\",\"type\":\"GlyphRenderer\"},{\"id\":\"15151\",\"type\":\"GlyphRenderer\"},{\"id\":\"15155\",\"type\":\"GlyphRenderer\"},{\"id\":\"15162\",\"type\":\"GlyphRenderer\"},{\"id\":\"15166\",\"type\":\"GlyphRenderer\"},{\"id\":\"15173\",\"type\":\"GlyphRenderer\"},{\"id\":\"15177\",\"type\":\"GlyphRenderer\"},{\"id\":\"15184\",\"type\":\"GlyphRenderer\"},{\"id\":\"15188\",\"type\":\"GlyphRenderer\"},{\"id\":\"15195\",\"type\":\"GlyphRenderer\"},{\"id\":\"15199\",\"type\":\"GlyphRenderer\"}],\"tooltips\":[[\"estimated performance\",\"@mean\"],[\"at-time\",\"@time\"]]},\"id\":\"15201\",\"type\":\"HoverTool\"},{\"attributes\":{\"source\":{\"id\":\"15174\",\"type\":\"ColumnDataSource\"}},\"id\":\"15178\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"15113\",\"type\":\"SaveTool\"},{\"attributes\":{\"children\":[{\"id\":\"15218\",\"type\":\"WidgetBox\"},{\"id\":\"15219\",\"type\":\"WidgetBox\"}]},\"id\":\"15220\",\"type\":\"Row\"},{\"attributes\":{\"axis_label\":\"time (sec)\",\"axis_label_text_font_size\":{\"value\":\"15pt\"},\"formatter\":{\"id\":\"15225\",\"type\":\"LogTickFormatter\"},\"major_label_orientation\":0.75,\"major_label_text_font_size\":{\"value\":\"12pt\"},\"ticker\":{\"id\":\"15104\",\"type\":\"LogTicker\"}},\"id\":\"15103\",\"type\":\"LogAxis\"},{\"attributes\":{\"callback\":null},\"id\":\"15097\",\"type\":\"DataRange1d\"},{\"attributes\":{\"ticker\":null},\"id\":\"15225\",\"type\":\"LogTickFormatter\"},{\"attributes\":{\"filters\":[{\"id\":\"15179\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"}},\"id\":\"15180\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15124\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"}},\"id\":\"15125\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15131\",\"type\":\"Patch\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAEDPKPUAAAAAQM8o9QA==\",\"dtype\":\"float64\",\"shape\":[2]},\"y\":{\"__ndarray__\":\"i8h4WlXQjj+LyHhaVdCOPw==\",\"dtype\":\"float64\",\"shape\":[2]}},\"selected\":{\"id\":\"15243\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15244\",\"type\":\"UnionRenderers\"}},\"id\":\"15196\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"label\":{\"value\":\"budget 0.00411522633744856\"},\"renderers\":[{\"id\":\"15140\",\"type\":\"GlyphRenderer\"},{\"id\":\"15144\",\"type\":\"GlyphRenderer\"}]},\"id\":\"15211\",\"type\":\"LegendItem\"},{\"attributes\":{\"data_source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15127\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15128\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"15125\",\"type\":\"CDSView\"}},\"id\":\"15129\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_color\":\"#66a61e\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15171\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"15239\",\"type\":\"Selection\"},{\"attributes\":{\"filters\":[{\"id\":\"15190\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"}},\"id\":\"15191\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15182\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15183\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"15180\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"15184\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"15117\",\"type\":\"ResetTool\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15194\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"15109\",\"type\":\"BasicTicker\"},{\"attributes\":{\"args\":{\"checkbox\":{\"id\":\"15204\",\"type\":\"CheckboxButtonGroup\"},\"glyph_renderer0\":{\"id\":\"15129\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"15133\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"15184\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"15188\",\"type\":\"GlyphRenderer\"},\"glyph_renderer12\":{\"id\":\"15195\",\"type\":\"GlyphRenderer\"},\"glyph_renderer13\":{\"id\":\"15199\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"15140\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"15144\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"15151\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"15155\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"15162\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"15166\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"15173\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"15177\",\"type\":\"GlyphRenderer\"}},\"code\":\"var labels = [0, 1, 2, 3, 4, 5, 6]; checkbox.active = labels;len_labels = 7;glyph_renderers = [[glyph_renderer0,glyph_renderer1],[glyph_renderer2,glyph_renderer3],[glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7],[glyph_renderer8,glyph_renderer9],[glyph_renderer10,glyph_renderer11],[glyph_renderer12,glyph_renderer13]];\\n for (i = 0; i < len_labels; i++) {\\n if (checkbox.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"15205\",\"type\":\"CustomJS\"},{\"attributes\":{\"click_policy\":\"hide\",\"items\":[{\"id\":\"15210\",\"type\":\"LegendItem\"},{\"id\":\"15211\",\"type\":\"LegendItem\"},{\"id\":\"15212\",\"type\":\"LegendItem\"},{\"id\":\"15213\",\"type\":\"LegendItem\"},{\"id\":\"15214\",\"type\":\"LegendItem\"},{\"id\":\"15215\",\"type\":\"LegendItem\"},{\"id\":\"15216\",\"type\":\"LegendItem\"}],\"label_text_font_size\":{\"value\":\"8pt\"},\"location\":\"bottom_left\"},\"id\":\"15209\",\"type\":\"Legend\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15197\",\"type\":\"Patch\"},{\"attributes\":{},\"id\":\"15240\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"15099\",\"type\":\"LogScale\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAAFhNoT8AAAAATD3MPwAAAABMPcw/AAAAAE0Q2z8AAAAATRDbPwAAAIBtg+M/AAAAgG2D4z8AAAAAZ0PnPwAAAABnQ+c/AAAAKBwDIUAAAAAoHAMhQAAAAJyGPjFAAAAAnIY+MUAAAAAU9vI2QAAAABT28jZAAAAAQOf+NkAAAABA5/42QAAAAPAhDTdAAAAA8CENN0AAAAAsNus5QAAAACw26zlAAAAAIFRiOkAAAAAgVGI6QAAAACD0pztAAAAAIPSnO0AAAADwGsE7QAAAAPAawTtAAAAAWBE8PEAAAABYETw8QAAAANihWjxAAAAA2KFaPEAAAAB05ro8QAAAAHTmujxAAAAA6HEmPUAAAADocSY9QAAAANDcPT1AAAAA0Nw9PUAAAACofHk9QAAAAKh8eT1AAAAA7PGkPUAAAADs8aQ9QAAAAOiqsT1AAAAA6KqxPUAAAABgDr49QAAAAGAOvj1AAAAAEDPKPUAAAAAQM8o9QAAAABAzyj1AAAAAEDPKPUAAAABgDr49QAAAAGAOvj1AAAAA6KqxPUAAAADoqrE9QAAAAOzxpD1AAAAA7PGkPUAAAACofHk9QAAAAKh8eT1AAAAA0Nw9PUAAAADQ3D09QAAAAOhxJj1AAAAA6HEmPUAAAAB05ro8QAAAAHTmujxAAAAA2KFaPEAAAADYoVo8QAAAAFgRPDxAAAAAWBE8PEAAAADwGsE7QAAAAPAawTtAAAAAIPSnO0AAAAAg9Kc7QAAAACBUYjpAAAAAIFRiOkAAAAAsNus5QAAAACw26zlAAAAA8CENN0AAAADwIQ03QAAAAEDn/jZAAAAAQOf+NkAAAAAU9vI2QAAAABT28jZAAAAAnIY+MUAAAACchj4xQAAAACgcAyFAAAAAKBwDIUAAAAAAZ0PnPwAAAABnQ+c/AAAAgG2D4z8AAACAbYPjPwAAAABNENs/AAAAAE0Q2z8AAAAATD3MPwAAAABMPcw/AAAAAFhNoT8=\",\"dtype\":\"float64\",\"shape\":[94]},\"y\":{\"__ndarray__\":\"K/aX3ZOH7D8r9pfdk4fsPz2InSl0Xuw/PYidKXRe7D8zychZ2NPcPzPJyFnY09w/tnU3T3XIxT+2dTdPdcjFP5sui4nNx8U/my6Lic3HxT9jf9k9eVjEP2N/2T15WMQ/h3KiXYWUwz+HcqJdhZTDPzC2EOSghL0/MLYQ5KCEvT+A4CpPIOy8P4DgKk8g7Lw/pIY2ABsQtT+khjYAGxC1PzpUjPM3obI/OlSM8zehsj9+WkV/aOaxP35aRX9o5rE/lvHvMy4cuD+W8e8zLhy4P5AdG4F4XbE/kB0bgXhdsT9eArfu5qmuP14Ct+7mqa4/KsknURwtrD8qySdRHC2sP8ixLm6jAaw/yLEubqMBrD/s+gW7YduyP+z6Bbth27I/a30HgKzkoj9rfQeArOSiPz6tQ0jwmZ8/Pq1DSPCZnz9m44i1+BSgP2bjiLX4FKA/xmA3bFuUmT/GYDdsW5SZP37Xs/r9dZk/ftez+v11mT+LyHhaVdCOP4vIeFpV0I4/ftez+v11mT9+17P6/XWZP8ZgN2xblJk/xmA3bFuUmT9m44i1+BSgP2bjiLX4FKA/Pq1DSPCZnz8+rUNI8JmfP2t9B4Cs5KI/a30HgKzkoj/s+gW7YduyP+z6Bbth27I/yLEubqMBrD/IsS5uowGsPyrJJ1EcLaw/KsknURwtrD9eArfu5qmuP14Ct+7mqa4/kB0bgXhdsT+QHRuBeF2xP5bx7zMuHLg/lvHvMy4cuD9+WkV/aOaxP35aRX9o5rE/OlSM8zehsj86VIzzN6GyP6SGNgAbELU/pIY2ABsQtT+A4CpPIOy8P4DgKk8g7Lw/MLYQ5KCEvT8wthDkoIS9P4dyol2FlMM/h3KiXYWUwz9jf9k9eVjEP2N/2T15WMQ/my6Lic3HxT+bLouJzcfFP7Z1N091yMU/tnU3T3XIxT8zychZ2NPcPzPJyFnY09w/PYidKXRe7D89iJ0pdF7sPyv2l92Th+w/K/aX3ZOH7D8=\",\"dtype\":\"float64\",\"shape\":[94]}},\"selected\":{\"id\":\"15231\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15232\",\"type\":\"UnionRenderers\"}},\"id\":\"15130\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"source\":{\"id\":\"15196\",\"type\":\"ColumnDataSource\"}},\"id\":\"15200\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"15238\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"data_source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15193\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15194\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"15191\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"15195\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"15114\",\"type\":\"PanTool\"},{\"attributes\":{\"data_source\":{\"id\":\"15196\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15197\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15198\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"15200\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"15199\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"all budgets\"},\"id\":\"15124\",\"type\":\"GroupFilter\"},{\"attributes\":{\"label\":{\"value\":\"budget 0.012345679012345678\"},\"renderers\":[{\"id\":\"15151\",\"type\":\"GlyphRenderer\"},{\"id\":\"15155\",\"type\":\"GlyphRenderer\"}]},\"id\":\"15212\",\"type\":\"LegendItem\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAA7PGkPUAAAADoqrE9QAAAAOiqsT1AAAAAYA6+PUAAAABgDr49QAAAACbPs0JAAAAAJs+zQkAAAICXv4VqQAAAgJe/hWpAAACAl7+FakAAAICXv4VqQAAAACbPs0JAAAAAJs+zQkAAAABgDr49QAAAAGAOvj1AAAAA6KqxPUAAAADoqrE9QAAAAOzxpD1A\",\"dtype\":\"float64\",\"shape\":[18]},\"y\":{\"__ndarray__\":\"ZuOItfgUoD9m44i1+BSgP8ZgN2xblJk/xmA3bFuUmT9+17P6/XWZP37Xs/r9dZk/2EmQJBsimT/YSZAkGyKZP9hJkCQbIpk/2EmQJBsimT/YSZAkGyKZP9hJkCQbIpk/ftez+v11mT9+17P6/XWZP8ZgN2xblJk/xmA3bFuUmT9m44i1+BSgP2bjiLX4FKA/\",\"dtype\":\"float64\",\"shape\":[18]}},\"selected\":{\"id\":\"15241\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15242\",\"type\":\"UnionRenderers\"}},\"id\":\"15185\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"num_minor_ticks\":10},\"id\":\"15104\",\"type\":\"LogTicker\"},{\"attributes\":{},\"id\":\"15236\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"args\":{\"glyph_renderer0\":{\"id\":\"15129\",\"type\":\"GlyphRenderer\"},\"glyph_renderer1\":{\"id\":\"15133\",\"type\":\"GlyphRenderer\"},\"glyph_renderer10\":{\"id\":\"15184\",\"type\":\"GlyphRenderer\"},\"glyph_renderer11\":{\"id\":\"15188\",\"type\":\"GlyphRenderer\"},\"glyph_renderer12\":{\"id\":\"15195\",\"type\":\"GlyphRenderer\"},\"glyph_renderer13\":{\"id\":\"15199\",\"type\":\"GlyphRenderer\"},\"glyph_renderer2\":{\"id\":\"15140\",\"type\":\"GlyphRenderer\"},\"glyph_renderer3\":{\"id\":\"15144\",\"type\":\"GlyphRenderer\"},\"glyph_renderer4\":{\"id\":\"15151\",\"type\":\"GlyphRenderer\"},\"glyph_renderer5\":{\"id\":\"15155\",\"type\":\"GlyphRenderer\"},\"glyph_renderer6\":{\"id\":\"15162\",\"type\":\"GlyphRenderer\"},\"glyph_renderer7\":{\"id\":\"15166\",\"type\":\"GlyphRenderer\"},\"glyph_renderer8\":{\"id\":\"15173\",\"type\":\"GlyphRenderer\"},\"glyph_renderer9\":{\"id\":\"15177\",\"type\":\"GlyphRenderer\"}},\"code\":\"len_labels = 7;glyph_renderers = [[glyph_renderer0,glyph_renderer1],[glyph_renderer2,glyph_renderer3],[glyph_renderer4,glyph_renderer5],[glyph_renderer6,glyph_renderer7],[glyph_renderer8,glyph_renderer9],[glyph_renderer10,glyph_renderer11],[glyph_renderer12,glyph_renderer13]];\\n for (i = 0; i < len_labels; i++) {\\n if (cb_obj.active.includes(i)) {\\n // console.log('Setting to true: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = true;\\n // console.log('Setting to true: ' + i + ' : ' + j)\\n }\\n } else {\\n // console.log('Setting to false: ' + i + '(' + glyph_renderers[i].length + ')')\\n for (j = 0; j < glyph_renderers[i].length; j++) {\\n glyph_renderers[i][j].visible = false;\\n // console.log('Setting to false: ' + i + ' : ' + j)\\n }\\n }\\n }\\n \"},\"id\":\"15203\",\"type\":\"CustomJS\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15183\",\"type\":\"Line\"},{\"attributes\":{\"active\":[0],\"callback\":{\"id\":\"15203\",\"type\":\"CustomJS\"},\"labels\":[\"all budgets\",\"budget 0.00411522633744856\",\"budget 0.012345679012345678\",\"budget 0.037037037037037035\",\"budget 0.1111111111111111\",\"budget 0.3333333333333333\",\"budget 1\"]},\"id\":\"15204\",\"type\":\"CheckboxButtonGroup\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15198\",\"type\":\"Patch\"},{\"attributes\":{\"callback\":{\"id\":\"15207\",\"type\":\"CustomJS\"},\"icon\":null,\"label\":\"None\"},\"id\":\"15208\",\"type\":\"Button\"},{\"attributes\":{\"line_color\":\"#1b9e77\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15182\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"15227\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"15230\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"label\":{\"value\":\"all budgets\"},\"renderers\":[{\"id\":\"15129\",\"type\":\"GlyphRenderer\"},{\"id\":\"15133\",\"type\":\"GlyphRenderer\"}]},\"id\":\"15210\",\"type\":\"LegendItem\"},{\"attributes\":{},\"id\":\"15235\",\"type\":\"Selection\"},{\"attributes\":{},\"id\":\"15229\",\"type\":\"Selection\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15128\",\"type\":\"Line\"},{\"attributes\":{\"children\":[{\"id\":\"15208\",\"type\":\"Button\"}],\"width\":50},\"id\":\"15219\",\"type\":\"WidgetBox\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 0.3333333333333333\"},\"id\":\"15179\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"15185\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15186\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15187\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"15189\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"15188\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15165\",\"type\":\"Patch\"},{\"attributes\":{\"filters\":[{\"id\":\"15157\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"}},\"id\":\"15158\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"15163\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15164\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15165\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"15167\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"15166\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15161\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"15244\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15176\",\"type\":\"Patch\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAA6HEmPUAAAADQ3D09QAAAANDcPT1AAAAAqHx5PUAAAACofHk9QAAAgKpFgGpAAACAqkWAakAAAICqRYBqQAAAgKpFgGpAAAAAqHx5PUAAAACofHk9QAAAANDcPT1AAAAA0Nw9PUAAAADocSY9QA==\",\"dtype\":\"float64\",\"shape\":[14]},\"y\":{\"__ndarray__\":\"7PoFu2Hbsj/s+gW7YduyP2t9B4Cs5KI/a30HgKzkoj8+rUNI8JmfPz6tQ0jwmZ8/Pq1DSPCZnz8+rUNI8JmfPz6tQ0jwmZ8/Pq1DSPCZnz9rfQeArOSiP2t9B4Cs5KI/7PoFu2Hbsj/s+gW7YduyPw==\",\"dtype\":\"float64\",\"shape\":[14]}},\"selected\":{\"id\":\"15239\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15240\",\"type\":\"UnionRenderers\"}},\"id\":\"15174\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15132\",\"type\":\"Patch\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 0.1111111111111111\"},\"id\":\"15168\",\"type\":\"GroupFilter\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 0.00411522633744856\"},\"id\":\"15135\",\"type\":\"GroupFilter\"},{\"attributes\":{\"source\":{\"id\":\"15185\",\"type\":\"ColumnDataSource\"}},\"id\":\"15189\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15171\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15172\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"15169\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"15173\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15175\",\"type\":\"Patch\"},{\"attributes\":{\"source\":{\"id\":\"15130\",\"type\":\"ColumnDataSource\"}},\"id\":\"15134\",\"type\":\"CDSView\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAIPSnO0AAAADwGsE7QAAAAPAawTtAAAAAWBE8PEAAAABYETw8QAAAANihWjxAAAAA2KFaPEAAAAB05ro8QAAAAHTmujxAAAAAUDn9QUAAAABQOf1BQAAAANb5AEJAAAAA1vkAQkAAAIAOQG5qQAAAgA5AbmpAAACADkBuakAAAIAOQG5qQAAAANb5AEJAAAAA1vkAQkAAAABQOf1BQAAAAFA5/UFAAAAAdOa6PEAAAAB05ro8QAAAANihWjxAAAAA2KFaPEAAAABYETw8QAAAAFgRPDxAAAAA8BrBO0AAAADwGsE7QAAAACD0pztA\",\"dtype\":\"float64\",\"shape\":[30]},\"y\":{\"__ndarray__\":\"lvHvMy4cuD+W8e8zLhy4P5AdG4F4XbE/kB0bgXhdsT9eArfu5qmuP14Ct+7mqa4/KsknURwtrD8qySdRHC2sP8ixLm6jAaw/yLEubqMBrD8Gste7P96rPway17s/3qs/jQeUTbnCqz+NB5RNucKrP40HlE25wqs/jQeUTbnCqz+NB5RNucKrP40HlE25wqs/BrLXuz/eqz8Gste7P96rP8ixLm6jAaw/yLEubqMBrD8qySdRHC2sPyrJJ1EcLaw/XgK37uaprj9eArfu5qmuP5AdG4F4XbE/kB0bgXhdsT+W8e8zLhy4P5bx7zMuHLg/\",\"dtype\":\"float64\",\"shape\":[30]}},\"selected\":{\"id\":\"15237\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15238\",\"type\":\"UnionRenderers\"}},\"id\":\"15163\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"source\":{\"id\":\"15163\",\"type\":\"ColumnDataSource\"}},\"id\":\"15167\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"15141\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15142\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15143\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"15145\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"15144\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15172\",\"type\":\"Line\"},{\"attributes\":{\"filters\":[{\"id\":\"15135\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"}},\"id\":\"15136\",\"type\":\"CDSView\"},{\"attributes\":{\"data_source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15149\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15150\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"15147\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"15151\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15142\",\"type\":\"Patch\"},{\"attributes\":{\"callback\":null,\"end\":212.17963767051697,\"start\":0.03379321098327637},\"id\":\"15092\",\"type\":\"Range1d\"},{\"attributes\":{\"source\":{\"id\":\"15152\",\"type\":\"ColumnDataSource\"}},\"id\":\"15156\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15187\",\"type\":\"Patch\"},{\"attributes\":{},\"id\":\"15243\",\"type\":\"Selection\"},{\"attributes\":{\"filters\":[{\"id\":\"15146\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"}},\"id\":\"15147\",\"type\":\"CDSView\"},{\"attributes\":{\"filters\":[{\"id\":\"15168\",\"type\":\"GroupFilter\"}],\"source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"}},\"id\":\"15169\",\"type\":\"CDSView\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15150\",\"type\":\"Line\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAAFhNoT8AAAAATD3MPwAAAABMPcw/AAAAAE0Q2z8AAAAATRDbPwAAAIBtg+M/AAAAgG2D4z8AAAAAZ0PnPwAAAABnQ+c/AAAAKBwDIUAAAAAoHAMhQAAAAJyGPjFAAAAAnIY+MUAAAACAl2ZFQAAAAICXZkVAAAAAYPhaRkAAAABg+FpGQAAAAH/lwWhAAAAAf+XBaEAAAAB/5cFoQAAAAH/lwWhAAAAAYPhaRkAAAABg+FpGQAAAAICXZkVAAAAAgJdmRUAAAACchj4xQAAAAJyGPjFAAAAAKBwDIUAAAAAoHAMhQAAAAABnQ+c/AAAAAGdD5z8AAACAbYPjPwAAAIBtg+M/AAAAAE0Q2z8AAAAATRDbPwAAAABMPcw/AAAAAEw9zD8AAAAAWE2hPw==\",\"dtype\":\"float64\",\"shape\":[38]},\"y\":{\"__ndarray__\":\"K/aX3ZOH7D8r9pfdk4fsPz2InSl0Xuw/PYidKXRe7D8zychZ2NPcPzPJyFnY09w/tnU3T3XIxT+2dTdPdcjFP5sui4nNx8U/my6Lic3HxT9jf9k9eVjEP2N/2T15WMQ/h3KiXYWUwz+HcqJdhZTDPyqC/61kx8I/KoL/rWTHwj8o7Q2+MJnCPyjtDb4wmcI/KO0NvjCZwj8o7Q2+MJnCPyjtDb4wmcI/KO0NvjCZwj8qgv+tZMfCPyqC/61kx8I/h3KiXYWUwz+HcqJdhZTDP2N/2T15WMQ/Y3/ZPXlYxD+bLouJzcfFP5sui4nNx8U/tnU3T3XIxT+2dTdPdcjFPzPJyFnY09w/M8nIWdjT3D89iJ0pdF7sPz2InSl0Xuw/K/aX3ZOH7D8r9pfdk4fsPw==\",\"dtype\":\"float64\",\"shape\":[38]}},\"selected\":{\"id\":\"15233\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15234\",\"type\":\"UnionRenderers\"}},\"id\":\"15141\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15143\",\"type\":\"Patch\"},{\"attributes\":{\"data_source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15160\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15161\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"15158\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"15162\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"callback\":null,\"data\":{\"lower\":[0.89155,0.89155,0.8865300000000002,0.8865300000000002,0.45043000000000005,0.45043000000000005,0.17017999999999994,0.17017999999999994,0.17015999999999995,0.17015999999999995,0.15895,0.15895,0.15297000000000002,0.15297000000000002,0.11530499999999999,0.11530499999999999,0.11297800000000002,0.11297800000000002,0.08227699999999999,0.08227699999999999,0.07277250000000005,0.07277250000000005,0.06992200000000001,0.06992200000000001,0.09418000000000001,0.09418000000000001,0.06783249999999996,0.06783249999999996,0.059889999999999985,0.059889999999999985,0.05503166666666666,0.05503166666666666,0.054700000000000026,0.054700000000000026,0.07366,0.07366,0.036900892857142896,0.036900892857142896,0.03086066666666664,0.03086066666666664,0.03140999999999998,0.03140999999999998,0.024980000000000023,0.024980000000000023,0.02486416666666668,0.02486416666666668,0.015045801948051959,0.89155,0.89155,0.8865300000000002,0.8865300000000002,0.45043000000000005,0.45043000000000005,0.17017999999999994,0.17017999999999994,0.17015999999999995,0.17015999999999995,0.15895,0.15895,0.15297000000000002,0.15297000000000002,0.14670999999999995,0.14670999999999995,0.14529999999999998,0.14529999999999998,0.14529999999999998,0.11530499999999999,0.11530499999999999,0.11297800000000002,0.11297800000000002,0.08227699999999999,0.08227699999999999,0.07277250000000005,0.07277250000000005,0.06992200000000001,0.06992200000000001,0.06992200000000001,0.09418000000000001,0.09418000000000001,0.06783249999999996,0.06783249999999996,0.059889999999999985,0.059889999999999985,0.05503166666666666,0.05503166666666666,0.054700000000000026,0.054700000000000026,0.05443000000000002,0.05443000000000002,0.054220000000000025,0.054220000000000025,0.054220000000000025,0.07366,0.07366,0.036900892857142896,0.036900892857142896,0.03086066666666664,0.03086066666666664,0.03086066666666664,0.03140999999999998,0.03140999999999998,0.024980000000000023,0.024980000000000023,0.02486416666666668,0.02486416666666668,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.015045801948051959],\"mean\":[0.89155,0.89155,0.8865300000000002,0.8865300000000002,0.45043000000000005,0.45043000000000005,0.17017999999999994,0.17017999999999994,0.17015999999999995,0.17015999999999995,0.15895,0.15895,0.15297000000000002,0.15297000000000002,0.11530499999999999,0.11530499999999999,0.11297800000000002,0.11297800000000002,0.08227699999999999,0.08227699999999999,0.07277250000000005,0.07277250000000005,0.06992200000000001,0.06992200000000001,0.09418000000000001,0.09418000000000001,0.06783249999999996,0.06783249999999996,0.059889999999999985,0.059889999999999985,0.05503166666666666,0.05503166666666666,0.054700000000000026,0.054700000000000026,0.07366,0.07366,0.036900892857142896,0.036900892857142896,0.03086066666666664,0.03086066666666664,0.03140999999999998,0.03140999999999998,0.024980000000000023,0.024980000000000023,0.02486416666666668,0.02486416666666668,0.015045801948051959,0.89155,0.89155,0.8865300000000002,0.8865300000000002,0.45043000000000005,0.45043000000000005,0.17017999999999994,0.17017999999999994,0.17015999999999995,0.17015999999999995,0.15895,0.15895,0.15297000000000002,0.15297000000000002,0.14670999999999995,0.14670999999999995,0.14529999999999998,0.14529999999999998,0.14529999999999998,0.11530499999999999,0.11530499999999999,0.11297800000000002,0.11297800000000002,0.08227699999999999,0.08227699999999999,0.07277250000000005,0.07277250000000005,0.06992200000000001,0.06992200000000001,0.06992200000000001,0.09418000000000001,0.09418000000000001,0.06783249999999996,0.06783249999999996,0.059889999999999985,0.059889999999999985,0.05503166666666666,0.05503166666666666,0.054700000000000026,0.054700000000000026,0.05443000000000002,0.05443000000000002,0.054220000000000025,0.054220000000000025,0.054220000000000025,0.07366,0.07366,0.036900892857142896,0.036900892857142896,0.03086066666666664,0.03086066666666664,0.03086066666666664,0.03140999999999998,0.03140999999999998,0.024980000000000023,0.024980000000000023,0.02486416666666668,0.02486416666666668,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.015045801948051959],\"name\":[\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"all budgets\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.00411522633744856\",\"budget 0.012345679012345678\",\"budget 0.012345679012345678\",\"budget 0.012345679012345678\",\"budget 0.012345679012345678\",\"budget 0.012345679012345678\",\"budget 0.012345679012345678\",\"budget 0.012345679012345678\",\"budget 0.012345679012345678\",\"budget 0.012345679012345678\",\"budget 0.012345679012345678\",\"budget 0.012345679012345678\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.037037037037037035\",\"budget 0.1111111111111111\",\"budget 0.1111111111111111\",\"budget 0.1111111111111111\",\"budget 0.1111111111111111\",\"budget 0.1111111111111111\",\"budget 0.1111111111111111\",\"budget 0.1111111111111111\",\"budget 0.3333333333333333\",\"budget 0.3333333333333333\",\"budget 0.3333333333333333\",\"budget 0.3333333333333333\",\"budget 0.3333333333333333\",\"budget 0.3333333333333333\",\"budget 0.3333333333333333\",\"budget 0.3333333333333333\",\"budget 0.3333333333333333\",\"budget 1\"],\"time\":[0.03379321098327637,0.22062063217163086,0.22062063217163086,0.4228699207305908,0.4228699207305908,0.6097934246063232,0.6097934246063232,0.7269778251647949,0.7269778251647949,8.50607419013977,8.50607419013977,17.24424147605896,17.24424147605896,22.94906735420227,22.94906735420227,22.995716094970703,22.995716094970703,23.05129909515381,23.05129909515381,25.918795347213745,25.918795347213745,26.384096145629883,26.384096145629883,27.656068801879883,27.656068801879883,27.75431728363037,27.75431728363037,28.234639644622803,28.234639644622803,28.354032039642334,28.354032039642334,28.73007893562317,28.73007893562317,29.15017557144165,29.15017557144165,29.241650581359863,29.241650581359863,29.474558353424072,29.474558353424072,29.64431643486023,29.64431643486023,29.694014072418213,29.694014072418213,29.742406845092773,29.742406845092773,29.789841651916504,29.789841651916504,0.03379321098327637,0.22062063217163086,0.22062063217163086,0.4228699207305908,0.4228699207305908,0.6097934246063232,0.6097934246063232,0.7269778251647949,0.7269778251647949,8.50607419013977,8.50607419013977,17.24424147605896,17.24424147605896,42.80149841308594,42.80149841308594,44.7107048034668,44.7107048034668,198.0592646598816,198.0592646598816,22.94906735420227,22.995716094970703,22.995716094970703,23.05129909515381,23.05129909515381,25.918795347213745,25.918795347213745,26.384096145629883,26.384096145629883,209.9490077495575,209.9490077495575,27.656068801879883,27.75431728363037,27.75431728363037,28.234639644622803,28.234639644622803,28.354032039642334,28.354032039642334,28.73007893562317,28.73007893562317,35.97831153869629,35.97831153869629,36.00762438774109,36.00762438774109,211.4453194141388,211.4453194141388,29.15017557144165,29.241650581359863,29.241650581359863,29.474558353424072,29.474558353424072,212.00850415229797,212.00850415229797,29.64431643486023,29.694014072418213,29.694014072418213,29.742406845092773,29.742406845092773,37.40475916862488,37.40475916862488,212.17963767051697,212.17963767051697,29.789841651916504],\"upper\":[0.89155,0.89155,0.8865300000000002,0.8865300000000002,0.45043000000000005,0.45043000000000005,0.17017999999999994,0.17017999999999994,0.17015999999999995,0.17015999999999995,0.15895,0.15895,0.15297000000000002,0.15297000000000002,0.11530499999999999,0.11530499999999999,0.11297800000000002,0.11297800000000002,0.08227699999999999,0.08227699999999999,0.07277250000000005,0.07277250000000005,0.06992200000000001,0.06992200000000001,0.09418000000000001,0.09418000000000001,0.06783249999999996,0.06783249999999996,0.059889999999999985,0.059889999999999985,0.05503166666666666,0.05503166666666666,0.054700000000000026,0.054700000000000026,0.07366,0.07366,0.036900892857142896,0.036900892857142896,0.03086066666666664,0.03086066666666664,0.03140999999999998,0.03140999999999998,0.024980000000000023,0.024980000000000023,0.02486416666666668,0.02486416666666668,0.015045801948051959,0.89155,0.89155,0.8865300000000002,0.8865300000000002,0.45043000000000005,0.45043000000000005,0.17017999999999994,0.17017999999999994,0.17015999999999995,0.17015999999999995,0.15895,0.15895,0.15297000000000002,0.15297000000000002,0.14670999999999995,0.14670999999999995,0.14529999999999998,0.14529999999999998,0.14529999999999998,0.11530499999999999,0.11530499999999999,0.11297800000000002,0.11297800000000002,0.08227699999999999,0.08227699999999999,0.07277250000000005,0.07277250000000005,0.06992200000000001,0.06992200000000001,0.06992200000000001,0.09418000000000001,0.09418000000000001,0.06783249999999996,0.06783249999999996,0.059889999999999985,0.059889999999999985,0.05503166666666666,0.05503166666666666,0.054700000000000026,0.054700000000000026,0.05443000000000002,0.05443000000000002,0.054220000000000025,0.054220000000000025,0.054220000000000025,0.07366,0.07366,0.036900892857142896,0.036900892857142896,0.03086066666666664,0.03086066666666664,0.03086066666666664,0.03140999999999998,0.03140999999999998,0.024980000000000023,0.024980000000000023,0.02486416666666668,0.02486416666666668,0.024544166666666672,0.024544166666666672,0.024544166666666672,0.015045801948051959],\"x0\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"],\"x1\":[\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\",\"inactive\"]},\"selected\":{\"id\":\"15229\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15230\",\"type\":\"UnionRenderers\"}},\"id\":\"15091\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"source\":{\"id\":\"15141\",\"type\":\"ColumnDataSource\"}},\"id\":\"15145\",\"type\":\"CDSView\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15164\",\"type\":\"Patch\"},{\"attributes\":{\"line_color\":\"#e7298a\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15160\",\"type\":\"Line\"},{\"attributes\":{\"fill_alpha\":0.2,\"fill_color\":\"#7570B3\",\"line_color\":\"#7570B3\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15153\",\"type\":\"Patch\"},{\"attributes\":{\"line_color\":\"#d95f02\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15138\",\"type\":\"Line\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 0.037037037037037035\"},\"id\":\"15157\",\"type\":\"GroupFilter\"},{\"attributes\":{\"text\":\"Cost over time\",\"text_font_size\":{\"value\":\"15pt\"}},\"id\":\"15094\",\"type\":\"Title\"},{\"attributes\":{\"callback\":null,\"data\":{\"x\":{\"__ndarray__\":\"AAAAFPbyNkAAAABA5/42QAAAAEDn/jZAAAAA8CENN0AAAADwIQ03QAAAACw26zlAAAAALDbrOUAAAAAgVGI6QAAAACBUYjpAAACARV4+akAAAIBFXj5qQAAAgEVePmpAAACARV4+akAAAAAgVGI6QAAAACBUYjpAAAAALDbrOUAAAAAsNus5QAAAAPAhDTdAAAAA8CENN0AAAABA5/42QAAAAEDn/jZAAAAAFPbyNkA=\",\"dtype\":\"float64\",\"shape\":[22]},\"y\":{\"__ndarray__\":\"MLYQ5KCEvT8wthDkoIS9P4DgKk8g7Lw/gOAqTyDsvD+khjYAGxC1P6SGNgAbELU/OlSM8zehsj86VIzzN6GyP35aRX9o5rE/flpFf2jmsT9+WkV/aOaxP35aRX9o5rE/flpFf2jmsT9+WkV/aOaxPzpUjPM3obI/OlSM8zehsj+khjYAGxC1P6SGNgAbELU/gOAqTyDsvD+A4CpPIOy8PzC2EOSghL0/MLYQ5KCEvT8=\",\"dtype\":\"float64\",\"shape\":[22]}},\"selected\":{\"id\":\"15235\",\"type\":\"Selection\"},\"selection_policy\":{\"id\":\"15236\",\"type\":\"UnionRenderers\"}},\"id\":\"15152\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"fill_alpha\":0.1,\"fill_color\":\"#1f77b4\",\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"15154\",\"type\":\"Patch\"},{\"attributes\":{\"column_name\":\"name\",\"group\":\"budget 0.012345679012345678\"},\"id\":\"15146\",\"type\":\"GroupFilter\"},{\"attributes\":{\"data_source\":{\"id\":\"15091\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15138\",\"type\":\"Line\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15139\",\"type\":\"Line\"},\"selection_glyph\":null,\"view\":{\"id\":\"15136\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"15140\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15139\",\"type\":\"Line\"},{\"attributes\":{\"data_source\":{\"id\":\"15152\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"15153\",\"type\":\"Patch\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"15154\",\"type\":\"Patch\"},\"selection_glyph\":null,\"view\":{\"id\":\"15156\",\"type\":\"CDSView\"},\"visible\":false},\"id\":\"15155\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"15242\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"line_color\":\"#7570b3\",\"x\":{\"field\":\"time\"},\"y\":{\"field\":\"mean\"}},\"id\":\"15149\",\"type\":\"Line\"},{\"attributes\":{\"background_fill_color\":{\"value\":null},\"below\":[{\"id\":\"15103\",\"type\":\"LogAxis\"}],\"border_fill_color\":{\"value\":null},\"center\":[{\"id\":\"15107\",\"type\":\"Grid\"},{\"id\":\"15112\",\"type\":\"Grid\"}],\"left\":[{\"id\":\"15108\",\"type\":\"LinearAxis\"}],\"plot_height\":500,\"plot_width\":700,\"renderers\":[{\"id\":\"15129\",\"type\":\"GlyphRenderer\"},{\"id\":\"15133\",\"type\":\"GlyphRenderer\"},{\"id\":\"15140\",\"type\":\"GlyphRenderer\"},{\"id\":\"15144\",\"type\":\"GlyphRenderer\"},{\"id\":\"15151\",\"type\":\"GlyphRenderer\"},{\"id\":\"15155\",\"type\":\"GlyphRenderer\"},{\"id\":\"15162\",\"type\":\"GlyphRenderer\"},{\"id\":\"15166\",\"type\":\"GlyphRenderer\"},{\"id\":\"15173\",\"type\":\"GlyphRenderer\"},{\"id\":\"15177\",\"type\":\"GlyphRenderer\"},{\"id\":\"15184\",\"type\":\"GlyphRenderer\"},{\"id\":\"15188\",\"type\":\"GlyphRenderer\"},{\"id\":\"15195\",\"type\":\"GlyphRenderer\"},{\"id\":\"15199\",\"type\":\"GlyphRenderer\"}],\"right\":[{\"id\":\"15209\",\"type\":\"Legend\"}],\"title\":{\"id\":\"15094\",\"type\":\"Title\"},\"toolbar\":{\"id\":\"15118\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"15092\",\"type\":\"Range1d\"},\"x_scale\":{\"id\":\"15099\",\"type\":\"LogScale\"},\"y_range\":{\"id\":\"15097\",\"type\":\"DataRange1d\"},\"y_scale\":{\"id\":\"15101\",\"type\":\"LinearScale\"}},\"id\":\"15093\",\"subtype\":\"Figure\",\"type\":\"Plot\"}],\"root_ids\":[\"15222\"]},\"title\":\"Bokeh Application\",\"version\":\"1.1.0\"}};\n", - " var render_items = [{\"docid\":\"d597344f-b899-4d73-9a8d-bdc26a1da961\",\"roots\":{\"15222\":\"f4bddd0e-e574-441b-8f65-6a36dba038c3\"}}];\n", - " root.Bokeh.embed.embed_items_notebook(docs_json, render_items);\n", - "\n", - " }\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " } else {\n", - " var attempts = 0;\n", - " var timer = setInterval(function(root) {\n", - " if (root.Bokeh !== undefined) {\n", - " embed_document(root);\n", - " clearInterval(timer);\n", - " }\n", - " attempts++;\n", - " if (attempts > 100) {\n", - " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", - " clearInterval(timer);\n", - " }\n", - " }, 10, root)\n", - " }\n", - "})(window);" - ], - "application/vnd.bokehjs_exec.v0+json": "" - }, - "metadata": { - "application/vnd.bokehjs_exec.v0+json": { - "id": "15222" - } - }, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "cave.cost_over_time();" ] diff --git a/requirements.txt b/requirements.txt index df73166..e7aca04 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ numpy -hpbandster -cave jupyter +cave +hpbandster