{ "cells": [ { "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "# Path following vs Trajectory Tracking MPC\n", "\n", "## Introduction\n", "\n", "In this example we will see how to define trajectory tracking and path following control problems using Neo.\n", "\n", "For this example we consider a point mass. The goal is to follow this shape by using a path-following approach.\n", "\n", "![Lissajous curve](../images/path_infty.png)\n", "\n", "the equation that describe it are $x(\\theta) = sin(\\theta)$ and $y(\\theta) = sin(2 \\theta)$.\n", "\n", "First import the necessary packages" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "# Add NMPC to path. NOT NECESSARY if it was installed via pip.\n", "import sys\n", "sys.path.append('../../../')\n", "\n", "# Import NMPC and Model classes\n", "from hilo_mpc import NMPC, Model\n", "import casadi as ca" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Build the model " ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "# Define the model\n", "model = Model(plot_backend='bokeh')\n", "\n", "# Constants\n", "M = 5.\n", "\n", "# States and algebraic variables\n", "xx = model.set_dynamical_states(['x', 'vx', 'y', 'vy'])\n", "model.set_measurements(['y_x', 'y_vx', 'y_y', 'y_vy'])\n", "model.set_measurement_equations([xx[0], xx[1], xx[2], xx[3]])\n", "x = xx[0]\n", "vx = xx[1]\n", "y = xx[2]\n", "vy = xx[3]\n", "\n", "# Inputs\n", "F = model.set_inputs(['Fx', 'Fy'])\n", "Fx = F[0]\n", "Fy = F[1]\n", "\n", "# ODEs\n", "dd1 = vx\n", "dd2 = Fx / M\n", "dd3 = vy\n", "dd4 = Fy / M\n", "\n", "model.set_dynamical_equations([dd1, dd2, dd3, dd4])\n", "\n", "# Initial conditions\n", "x0 = [0, 0, 0, 0]\n", "u0 = [0., 0.]\n", "\n", "# time interval\n", "dt = 0.1\n", "model.setup(dt=dt)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Path-following problem\n", "Once the model is setup, we can pass it to the path-following MPC. Defining a path-following problem can be done in 3 steps:\n", "\n", "1. Run `create_path_variable()` to generate the path variable\n", "2. Define the path function using the path variable\n", "3. Pass the path function function to the `ref` argument of stage and terminal cost and put `path_following=True`\n", "\n", "*NOTE*: you can create only as many path variables and you can have as many different path functions as you want." ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "# Define path following MPC\n", "nmpc = NMPC(model)\n", "theta = nmpc.create_path_variable(u_pf_lb=1e-6)\n", "nmpc.quad_stage_cost.add_states(names=['x', 'y'], weights=[10, 10],\n", " ref=ca.vertcat(ca.sin(theta), ca.sin(2 * theta)), path_following=True)\n", "nmpc.quad_terminal_cost.add_states(names=['x', 'y'], weights=[10, 10],\n", " ref=ca.vertcat(ca.sin(theta), ca.sin(2 * theta)), path_following=True)\n", "nmpc.horizon = 10\n", "nmpc.set_initial_guess(x_guess=x0, u_guess=u0)\n", "nmpc.setup(options={'print_level': 0})" ] }, { "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "Then run the control loop" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "******************************************************************************\n", "This program contains Ipopt, a library for large-scale nonlinear optimization.\n", " Ipopt is released as open source code under the Eclipse Public License (EPL).\n", " For more information visit http://projects.coin-or.org/Ipopt\n", "******************************************************************************\n", "\n" ] } ], "source": [ "# Prepare and run closed loop\n", "n_steps = 200\n", "model.set_initial_conditions(x0=x0)\n", "sol = model.solution\n", "xt = x0.copy()\n", "for step in range(n_steps):\n", " u = nmpc.optimize(xt)\n", " model.simulate(u=u)\n", " xt = sol['x:f']" ] }, { "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "The results look like" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "pycharm": { "name": "#%%\n" } }, "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\") || (!Object.prototype.hasOwnProperty.call(output.data, 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", " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\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(\"1002\");\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(url) {\n", " console.error(\"failed to load \" + url);\n", " }\n", "\n", " for (let i = 0; i < css_urls.length; i++) {\n", " const url = css_urls[i];\n", " const element = document.createElement(\"link\");\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\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", " const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.1.min.js\": \"YF85VygJKMVnHE+lLv2AM93Vbstr0yo2TbIu5v8se5Rq3UQAUmcuh4aaJwNlpKwa\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.1.min.js\": \"KKuas3gevv3PvrlkyCMzffFeaMq5we/a2QsP5AUoS3mJ0jmaCL7jirFJN3GoE/lM\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.1.min.js\": \"MK/uFc3YT18pkvvXRl66tTHjP0/dxoSH2e/eiNMFIguKlun2+WVqaPTWmUy/zvh4\"};\n", "\n", " for (let i = 0; i < js_urls.length; i++) {\n", " const url = js_urls[i];\n", " const element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\n", " element.async = false;\n", " element.src = url;\n", " if (url in hashes) {\n", " element.crossOrigin = \"anonymous\";\n", " element.integrity = \"sha384-\" + hashes[url];\n", " }\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\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", " \n", " var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.1.min.js\"];\n", " var css_urls = [];\n", " \n", "\n", " var inline_js = [\n", " function(Bokeh) {\n", " Bokeh.set_log_level(\"info\");\n", " },\n", " function(Bokeh) {\n", " \n", " \n", " }\n", " ];\n", "\n", " function run_inline_js() {\n", " \n", " if (root.Bokeh !== undefined || force === true) {\n", " \n", " for (var i = 0; i < inline_js.length; i++) {\n", " inline_js[i].call(root, root.Bokeh);\n", " }\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(\"1002\")).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(\"1002\");\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(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\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 const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.1.min.js\": \"YF85VygJKMVnHE+lLv2AM93Vbstr0yo2TbIu5v8se5Rq3UQAUmcuh4aaJwNlpKwa\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.1.min.js\": \"KKuas3gevv3PvrlkyCMzffFeaMq5we/a2QsP5AUoS3mJ0jmaCL7jirFJN3GoE/lM\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.1.min.js\": \"MK/uFc3YT18pkvvXRl66tTHjP0/dxoSH2e/eiNMFIguKlun2+WVqaPTWmUy/zvh4\"};\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n if (url in hashes) {\n element.crossOrigin = \"anonymous\";\n element.integrity = \"sha384-\" + hashes[url];\n }\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\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 \n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.1.min.js\"];\n var css_urls = [];\n \n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n function(Bokeh) {\n \n \n }\n ];\n\n function run_inline_js() {\n \n if (root.Bokeh !== undefined || force === true) {\n \n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\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(\"1002\")).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 = {\"780cd0b6-b65f-4ba5-aa81-3571e437d9c6\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"1014\"}],\"center\":[{\"id\":\"1017\"},{\"id\":\"1021\"}],\"left\":[{\"id\":\"1018\"}],\"renderers\":[{\"id\":\"1039\"},{\"id\":\"1044\"}],\"title\":{\"id\":\"1004\"},\"toolbar\":{\"id\":\"1029\"},\"x_range\":{\"id\":\"1006\"},\"x_scale\":{\"id\":\"1010\"},\"y_range\":{\"id\":\"1008\"},\"y_scale\":{\"id\":\"1012\"}},\"id\":\"1003\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"1050\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"axis\":{\"id\":\"1018\"},\"dimension\":1,\"ticker\":null},\"id\":\"1021\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1006\",\"type\":\"DataRange1d\"},{\"attributes\":{\"line_color\":\"red\",\"line_dash\":[6],\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1042\",\"type\":\"Line\"},{\"attributes\":{\"axis\":{\"id\":\"1014\"},\"ticker\":null},\"id\":\"1017\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1012\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"1052\",\"type\":\"AllLabels\"},{\"attributes\":{},\"id\":\"1026\",\"type\":\"ResetTool\"},{\"attributes\":{\"axis_label\":\"x [m]\",\"formatter\":{\"id\":\"1047\"},\"major_label_policy\":{\"id\":\"1049\"},\"ticker\":{\"id\":\"1015\"}},\"id\":\"1014\",\"type\":\"LinearAxis\"},{\"attributes\":{\"axis_label\":\"y [m]\",\"formatter\":{\"id\":\"1050\"},\"major_label_policy\":{\"id\":\"1052\"},\"ticker\":{\"id\":\"1019\"}},\"id\":\"1018\",\"type\":\"LinearAxis\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1038\",\"type\":\"Line\"},{\"attributes\":{\"source\":{\"id\":\"1036\"}},\"id\":\"1040\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"1008\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1025\",\"type\":\"SaveTool\"},{\"attributes\":{\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1037\",\"type\":\"Line\"},{\"attributes\":{\"data_source\":{\"id\":\"1036\"},\"glyph\":{\"id\":\"1037\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"1038\"},\"view\":{\"id\":\"1040\"}},\"id\":\"1039\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1022\",\"type\":\"PanTool\"},{\"attributes\":{},\"id\":\"1023\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"overlay\":{\"id\":\"1028\"}},\"id\":\"1024\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"1019\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"1056\",\"type\":\"Selection\"},{\"attributes\":{\"data_source\":{\"id\":\"1041\"},\"glyph\":{\"id\":\"1042\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"1043\"},\"view\":{\"id\":\"1045\"}},\"id\":\"1044\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data\":{\"x\":[0.0,0.009999833334166664,0.01999866669333308,0.02999550020249566,0.03998933418663416,0.04997916927067833,0.059964006479444595,0.06994284733753277,0.0799146939691727,0.08987854919801104,0.09983341664682815,0.10977830083717481,0.11971220728891936,0.12963414261969486,0.1395431146442365,0.14943813247359922,0.15931820661424598,0.16918234906699603,0.17902957342582418,0.18885889497650057,0.19866933079506122,0.20845989984609956,0.21822962308086932,0.2279775235351884,0.23770262642713458,0.24740395925452294,0.2570805518921551,0.26673143668883115,0.27635564856411376,0.28595222510483553,0.29552020666133955,0.3050586364434435,0.31456656061611776,0.32404302839486837,0.3334870921408144,0.34289780745545134,0.35227423327508994,0.361615431964962,0.3709204694129827,0.3801884151231614,0.3894183423086505,0.3986093279844229,0.40776045305957015,0.41687080242921076,0.4259394650659996,0.43496553411123023,0.4439481069655198,0.4528862853790683,0.46177917554148284,0.470625888171158,0.479425538604203,0.4881772468829075,0.49688013784373675,0.5055333412048469,0.5141359916531131,0.5226872289306592,0.5311861979208834,0.5396320487339692,0.5480239367918736,0.5563610229127838,0.5646424733950354,0.5728674601004813,0.5810351605373051,0.5891447579422695,0.5971954413623921,0.6051864057360395,0.6131168519734338,0.6209859870365597,0.6287930240184686,0.6365371822219679,0.644217687237691,0.6518337710215366,0.6593846719714731,0.6668696350036979,0.674287911628145,0.6816387600233341,0.6889214451105513,0.6961352386273567,0.7032794192004103,0.7103532724176078,0.7173560908995228,0.7242871743701426,0.7311458297268958,0.7379313711099627,0.7446431199708593,0.7512804051402927,0.757842562895277,0.7643289370255051,0.7707388788989693,0.7770717475268238,0.7833269096274834,0.7895037396899505,0.795601620036366,0.8016199408837772,0.8075581004051142,0.8134155047893737,0.8191915683009983,0.8248857133384501,0.8304973704919705,0.8360259786005205,0.8414709848078965,0.8468318446180152,0.852108021949363,0.8572989891886034,0.8624042272433384,0.867423225594017,0.8723554823449863,0.8772005042746817,0.8819578068849475,0.8866269144494873,0.8912073600614354,0.8956986856800476,0.9001004421765051,0.9044121893788258,0.9086334961158832,0.912763940260521,0.9168031087717669,0.9207505977361357,0.9246060124080203,0.9283689672491666,0.9320390859672263,0.935616001553386,0.9390993563190676,0.9424888019316975,0.945783999449539,0.9489846193555862,0.9520903415905158,0.9551008555846923,0.9580158602892249,0.9608350642060727,0.963558185417193,0.966184951612734,0.9687151001182652,0.9711483779210446,0.9734845416953194,0.9757233578266591,0.9778646024353163,0.9799080613986142,0.9818535303723597,0.9837008148112766,0.9854497299884601,0.9871001010138504,0.9886517628517197,0.9901045603371778,0.9914583481916864,0.9927129910375885,0.9938683634116449,0.9949243497775809,0.99588084453764,0.9967377520431434,0.9974949866040544,0.9981524724975481,0.998710143975583,0.999167945271476,0.9995258306054791,0.999783764189357,0.9999417202299663,0.9999996829318346,0.9999576464987401,0.9998156151342908,0.9995736030415051,0.9992316344213905,0.998789743470524,0.9982479743776325,0.9976063813191737,0.9968650284539189,0.9960239899165367,0.9950833498101802,0.994043202198076,0.9929036510941185,0.9916648104524686,0.990326804156158,0.9888897660047015,0.9873538397007164,0.9857191788355535,0.9839859468739369,0.9821543171376185,0.9802244727880455,0.9781966068080447,0.9760709219825242,0.9738476308781951,0.9715269558223153,0.9691091288804563,0.9665943918332975,0.9639829961524481,0.9612752029752999,0.9584712830789142,0.955571516852944,0.9525761942715953,0.9494856148646305,0.9463000876874145,0.9430199312900106,0.9396454736853249,0.9361770523163061,0.9326150140222005,0.9289597150038693,0.9252115207881683,0.9213708061913954,0.9174379552818098,0.9134133613412252,0.9092974268256817,0.905090563325201,0.9007931915226273,0.89640574115156,0.8919286509533796,0.8873623686333755,0.8827073508159741,0.8779640629990781,0.8731329795075164,0.8682145834456126,0.8632093666488737,0.8581178296348089,0.8529404815528762,0.8476778401335698,0.8423304316366457,0.8368987907984977,0.8313834607786831,0.8257849931056082,0.8201039476213741,0.814340892425796,0.8084964038195901,0.8025710662467472,0.7965654722360865,0.7904802223420048,0.7843159250844198,0.7780731968879212,0.7717526620201259,0.7653549525292535,0.758880708180922,0.7523305763941708,0.7457052121767203,0.7390052780594708,0.7322314440302514,0.7253843874668195,0.7184647930691263,0.7114733527908443,0.7044107657701761,0.6972777382599378,0.6900749835569364,0.6828032219306397,0.675463180551151,0.6680555934164909,0.6605812012792007,0.6530407515722648,0.6454349983343708,0.6377647021345036,0.6300306299958922,0.6222335553193046,0.6143742578057118,0.6064535233783147,0.5984721441039564,0.590430918113913,0.5823306495240819,0.5741721483545726,0.5659562304487028,0.557683717391417,0.5493554364271266,0.5409722203769886,0.5325349075556212,0.5240443416872761,0.5155013718214642,0.5069068522480534,0.49826164241183857,0.4895666068265995,0.48082261498864826,0.47203054128988264,0.4631912649303452,0.45430566983030646,0.44537464454187115,0.4363990821601263,0.4273798802338298,0.418317940675659,0.4092141696720173,0.4000694775924195,0.3908847788984522,0.3816609920523317,0.3723990394250557,0.3630998472041683,0.3537643453011431,0.34439346725839,0.3349881501559051,0.32554933451756,0.3160779642170538,0.30657498638352293,0.2970413513068324,0.2874780123425444,0.2778859258165868,0.2682660509296179,0.25861934966111083,0.24894678667315256,0.23924932921398243,0.2295279470212642,0.21978361222511694,0.21001729925089915,0.20022998472177053,0.19042264736102704,0.18059626789423291,0.17075182895114532,0.16089031496745576,0.15101271208634384,0.1411200080598672,0.13121319215018423,0.12129325503062975,0.11136118868665001,0.10141798631660186,0.0914646422324372,0.08150215176026912,0.0715315111408437,0.06155371742991315,0.05156976839853464,0.04158066243329049,0.031587398436453896,0.02159097572609596,0.011592393936158275,0.0015926529164868282,-0.008407247367148618,-0.01840630693305381,-0.02840352588360379,-0.03839790450523538,-0.04838844336841415,-0.058374143427580086,-0.06835400612104778,-0.0783270334708653,-0.0882922281826076,-0.09824859374510868,-0.10819513453010837,-0.11813085589181738,-0.12805476426637968,-0.13796586727122684,-0.14786317380431852,-0.1577456941432482,-0.16761244004421832,-0.17746242484086014,-0.18729466354290317,-0.19710817293466984,-0.20690197167339974,-0.21667508038737962,-0.22642652177388314,-0.236155320696897,-0.24586050428463702,-0.2555411020268312,-0.26519614587177337,-0.274824670323124,-0.28442571253646254,-0.2939983124155676,-0.30354151270842933,-0.3130543591029702,-0.322535900322479,-0.3319851882207341,-0.34140127787682095,-0.35078322768961984,-0.36013009947196817,-0.3694409585444771,-0.3787148738289976,-0.3879509179417303,-0.3971481672859598,-0.4063057021444168,-0.4154226067712459,-0.4244979694835826,-0.43353088275271773,-0.44252044329485246,-0.45146575216142315,-0.4603659148289983,-0.46922004128872713,-0.47802724613534286,-0.48678664865569937,-0.4954973729168449,-0.5041585478536115,-0.5127693073557238,-0.5213287903544065,-0.5298361409084934,-0.5382905082900176,-0.5466910470692872,-0.5550369171994238,-0.56332728410037,-0.5715613187423437,-0.5797381977287428,-0.5878571033784827,-0.5959172238077639,-0.6039177530112606,-0.6118578909427189,-0.6197368435949633,-0.6275538230792933,-0.6353080477042756,-0.6429987420539088,-0.6506251370651673,-0.6581864701049049,-0.6656819850461192,-0.6731109323435617,-0.680472569108694,-0.6877661591839738,-0.694990973216472,-0.7021462887308054,-0.7092313902013861,-0.7162455691239705,-0.7231881240865121,-0.7300583608392995,-0.7368555923643832,-0.7435791389442746,-0.7502283282299189,-0.7568024953079282,-0.7633009827670734,-0.7697231407640238,-0.7760683270883323,-0.7823359072266528,-0.788525254426195,-0.7946357497573968,-0.8006667821758177,-0.8066177485832405,-0.8124880538879843,-0.8182771110644103,-0.8239843412116258,-0.8296091736113709,-0.8351510457850935,-0.8406094035501945,-0.8459837010754465,-0.8512734009355745,-0.8564779741650012,-0.8615969003107405,-0.8666296674844443,-0.8715757724135882,-0.8764347204918014,-0.8812060258283253,-0.8858892112966027,-0.8904838085819885,-0.8949893582285835,-0.8994054096851777,-0.9037315213503053,-0.9079672606164054,-0.9121122039130803,-0.9161659367494549,-0.9201280537556237,-0.9239981587231879,-0.9277758646448755,-0.9314607937532425,-0.9350525775584491,-0.9385508568851079,-0.941955281908201,-0.9452655121880633,-0.9484812167044256,-0.9516020738895161,-0.9546277716602164,-0.9575580074492711,-0.9603924882355434,-0.9631309305733167,-0.9657730606206388,-0.9683186141667072,-0.9707673366582883,-0.9731189832251739,-0.9753733187046665,-0.977530117665097,-0.9795891644283669,-0.9815502530915153,-0.9834131875473108,-0.9851777815038595,-0.9868438585032365,-0.9884112519391305,-0.9898798050735039,-0.991249371052267,-0.9925198129199632,-0.9936910036334644,-0.9947628260746756,-0.9957351730622453,-0.9966079473622855,-0.9973810616980933,-0.9980544387588794,-0.9986280112074989,-0.9991017216871848,-0.999475522827284,-0.999749377247994,-0.9999232575641008,-0.999997146387718,-0.9999710363300245,-0.9998449300020044,-0.9996188400141854,-0.999292788975378,-0.9988668094904142,-0.9983409441568876,-0.9977152455608933,-0.9969897762717695,-0.9961646088358407,-0.9952398257691627,-0.9942155195492713,-0.9930917926059354,-0.9918687573109126,-0.9905465359667133,-0.9891252607943698,-0.9876050739202153,-0.9859861273616704,-0.9842685830120416,-0.9824526126243325,-0.9805383977940689,-0.9785261299411385,-0.9764160102906497,-0.9742082498528091,-0.9719030694018208,-0.9695006994538088,-0.967001380243766,-0.9644053617015305,-0.9617129034267934,-0.9589242746631385,-0.9560397542711181,-0.9530596307003677,-0.9499842019607608,-0.9468137755926089,-0.9435486686359066,-0.9401892075986287,-0.9367357284240789,-0.9331885764572976,-0.9295481064105251,-0.9258146823277325,-0.9219886775482163,-0.918070474669267,-0.914060465507907,-0.9099590510617106,-0.9057666414687044,-0.9014836559663548,-0.8971105228496424,-0.8926476794282346,-0.8880955719827542,-0.8834546557201531,-0.8787253947281899,-0.8739082619290224,-0.8690037390319161,-0.8640123164850744,-0.858934493426592,-0.8537707776345433,-0.8485216854762045,-0.8431877418564167,-0.8377694801650978,-0.8322674422239013,-0.8266821782320363,-0.821014246711247,-0.8152642144499634,-0.8094326564466194,-0.8035201558521559,-0.7975273039117043,-0.791454699905466,-0.7853029510887806,-0.7790726726314031,-0.7727644875559871,-0.7663790266757843,-0.759916928531561,-0.7533788393277465,-0.7467654128678123,-0.7400773104888944,-0.7333152009956565,-0.726479760593413,-0.7195716728205075,-0.7125916284799615,-0.7055403255703919,-0.6984184692162135,-0.6912267715971271,-0.6839659518769006,-0.6766367361314568,-0.669239857276262,-0.6617760549930376,-0.6542460756557914,-0.6466506722561834,-0.6389906043282237,-0.6312666378723216,-0.6234795452786853,-0.6156301052500863,-0.6077191027239858,-0.5997473287940438,-0.5917155806310094,-0.5836246614030073,-0.5754753801952172,-0.5672685519289686,-0.5590049972802488,-0.5506855425976376,-0.5423110198196698,-0.5338822663916443,-0.5254001251818792,-0.5168654443974288,-0.5082790774992583,-0.49964188311690244,-0.49095472496260173,-0.48221847174493154,-0.47343399708193507,-0.46460217941375737,-0.4557239019148055,-0.44680005240543,-0.4378315232631469,-0.4288192113333959,-0.41976401783985967,-0.41066684829434086,-0.4015286124062146,-0.39235022399145386,-0.38313260088125134,-0.373876664830236,-0.3645833414243013,-0.35525355998804264,-0.34588825349182883,-0.3364883584585042,-0.32705481486974064,-0.31758856607203484,-0.3080905586823781,-0.2985617424935936,-0.2890030703793611,-0.27941549819892586,-0.26979998470151617,-0.2601574914304689,-0.2504889826270749,-0.2407954251341592,-0.23107778829939224,-0.22133704387835954,-0.21157416593738504,-0.2017901307561289,-0.19198591672995502,-0.18216250427209588,-0.17232087571561025,-0.1624620152151542,-0.15258690864856114,-0.14269654351825858,-0.13279190885251674,-0.12287399510655005,-0.11294379406346737,-0.10300229873509785,-0.0930505032626889,-0.0830894028174964,-0.07311999350126308,-0.06314327224661277,-0.053160236717356125,-0.04317188520872868,-0.03317921654755682,-0.02318322999237945,-0.01318492513352214,-0.0031853017931379904,0.006814640074770176,0.016813900484349713,0.026811479517892353,0.03680637742582692,0.04679759472668989,0.05678413230707805,0.06676499152155546,0.07673917429251892,0.08670568321000133,0.09666352163141724,0.10661169378122266,0.11654920485049364,0.1264750610964027,0.13638826994159764,0.14628784007345494,0.1561727815432119,0.1660421058649572,0.175894826114484,0.18572995702797787,0.19554651510054424,0.2053435186845546,0.21511998808781552,0.2248749456715337,0.23460741594807993,0.24431642567853773,0.2540010039700231,0.2636601823727784,0.27329299497701237,0.28289847850949296,0.2924756724298697,0.30202361902673236,0.31154136351337786,0.32102795412328977,0.3304824422053109,0.3399038823185127,0.34929133232673487,0.35864385349280037,0.36796051057238466,0.3772403719075444,0.38648250951987934,0.3956859992033308,0.4048499206165983,0.413973357375178,0.42305539714299684,0.43209513172364716,0.44109165715120235,0.4500440737806176,0.4589514863776903,0.4678130042085835,0.4766277411288995,0.48539481567229026,0.49411335113860816,0.502782475681572,0.5114013223959524,0.5199690294042587,0.5284847399429308,0.536947602448011,0.545356770640302,0.5537114036099907,0.562010665900743,0.570253727593246,0.5784397643882001,0.5865679576887464,0.5946374946823286,0.6026475684219723,0.6105973779069791,0.618486128163024,0.6263130303216559,0.6340773016991814,0.6417781658749337,0.6494148527689112,0.6569865987187891,0.664492646556282,0.6719322456828615,0.6793046521448148,0.6866091287076385,0.6938449449297637,0.7010113772355981,0.7081077089878838,0.7151332305593578,0.7220872394037184,0.7289690401258759,0.7357779445514936,0.7425132717958017,0.7491743483316894,0.7557605080570537,0.7622710923614112,0.7687054501917558,0.775062938117667,0.78134292039565,0.7875447690327109,0.7936678638491531,0.7997115925405982,0.8056753507392133,0.8115585420741488,0.8173605782311729,0.8230808790115055,0.8287188723898353,0.834273994571523,0.8397456900489799,0.8451334116572173,0.8504366206285644,0.8556547866465435,0.8607873878989017,0.8658339111297899,0.8707938516910911,0.8756667135928823,0.8804520095530344,0.8851492610459383,0.8897579983503596,0.8942777605964084,0.8987080958116269,0.9030485609661848,0.907298722017184,0.9114581539520613,0.9155264408310896,0.9195031758289707,0.9233879612755189,0.927180408695427,0.9308801388471136,0.934486781760646,0.9379999767747389,0.9414193725728183,0.9447446272181538,0.9479754081880525,0.951111392407109,0.9541522662795148,0.957097725720417,0.9599474761863261,0.9627012327045701,0.9653587199017918,0.9679196720314863,0.970383833000575,0.9727509563950137,0.9750208055044363,0.9771931533458229,0.9792677826862,0.9812444860643621,0.9831230658116188,0.9849033340715608,0.9865851128188459,0.9881682338770004,0.989652538935238,0.9910378795642898,0.9923241172312475,0.9935111233134158,0.9945987791111761,0.9955869758598548,0.9964756147406005,0.9972646068902659,0.9979538734102932,0.998543345374605,0.9990329638364959,0.9994226798345279,0.999712454397426,0.9999022585479752,0.9999920733059188,0.9999818896898556,0.999871708718139,0.9996615414087742,0.999351408778317,0.998941341839772,0.9984313815994914,0.9978215790530743,0.997111995180267,0.9963027009388656,0.9953937772576199,0.9943853150281404,0.9932774150958098,0.992070188249698,0.9907637552114835,0.9893582466233818,0.9878538030350801,0.9862505748896837,0.9845487225086711,0.9827484160758622,0.9808498356203995,0.9788531709987474,0.9767586218757036,0.974566397704435,0.972276717705532,0.9698898108450863,0.9674059158117949,0.9648252809930913,0.9621481644503063,0.9593748338928642,0.9565055666515091,0.9535406496505743,0.9504803793792889,0.94732506186213,0.9440750126282197,0.9407305566797731,0.9372920284595976,0.9337597718176507,0.9301341399766526,0.9264154954967662,0.9226042102393402,0.9187006653297247,0.9147052511191576,0.9106183671457304,0.9064404220944348,0.9021718337562933,0.8978130289865844,0.893364443662152,0.888826522637821,0.8841997197019127,0.8794844975308649,0.8746813276429652,0.8697906903511999,0.8648130747152218,0.8597489784924482,0.8545989080882805,0.8493633785054673,0.8440429132926041,0.8386380444917783,0.833149312585366,0.827577266441984,0.8219224632616022,0.8161854685198283,0.8103668559113548,0.8044672072925937,0.7984871126234903,0.7924271699085284,0.7862879851369292,0.7800701722220543,0.7737743529400134,0.7674011568674872,0.7609512213187744,0.7544251912820534,0.7478237193548898,0.7411474656789752,0.7343970978741133,0.7275732909714597,0.7206767273460181,0.7137080966484024,0.706668095735878,0.699557428602668,0.6923768063095604,0.6851269469128006,0.6778085753922867,0.6704224235790722,0.6629692300821833,0.6554497402147573,0.6478647059195175,0.6402148856935712,0.6325010445125663,0.6247239537541924,0.6168843911210448,0.6089831405628535,0.6010209921980904,0.5929987422349565,0.5849171928917617,0.5767771523167085,0.5685794345070696,0.5603248592277947,0.5520142519295329,0.5436484436660883,0.5352282710113162,0.5267545759754648,0.5182282059209752,0.5096500134777504,0.5010208564578846,0.49234159776988917,0.4836131053324,0.47483625198738716,0.4660119154128711,0.4571409780351558,0.4482243269405849,0.4392628537868406,0.4302574547137687,0.42120903025377215,0.4121184852417566,0.40298672872464775,0.39381467387048763,0.38460323787711825,0.37535334188046277,0.366065910862411,0.3567418735583286,0.34738216236417424,0.3379877132432676,0.32855946563269217,0.3190983623493521,0.3096053494956915,0.300081376365085,0.2905273953469072,0.2809443618313018,0.27133323411363275,0.2616949732986626,0.252030543204441,0.24234091026592378,0.23262704343833002,0.22288991410024764,0.2131304959564945,0.20334976494075557,0.19354869911798017,0.183728278586583,0.17388948538043356,0.1640333033706535,0.15416071816723032,0.14427271702045727,0.13437028872220905,0.1244544235070617,0.11452611295327708,0.10458634988363526,0.09463612826616005,0.08467644311472142,0.07470829038953478,0.06473266689756589,0.054750570192850956,0.04476299847674028,0.03477095049808608,0.024775425453357765,0.014777422886730236,0.0047779425901285115,-0.005222015496750621,-0.015221451386431743,-0.02521936514365872,-0.03521475698538918,-0.045206627380764856,-0.05519397715107451,-0.0651758075696639,-0.0751511204618093,-0.08511891830453426,-0.09507820432636095,-0.10502798260698659,-0.11496725817687455,-0.12489503711675232,-0.1348103266569955,-0.14471213527691454,-0.15459947280389894,-0.16447135051243542,-0.17432678122297965,-0.1841647794006734,-0.19398436125389723,-0.20378454483265052,-0.2135643501267387,-0.2233227991637839,-0.2330589161070144,-0.24277172735284935,-0.2524602616282581,-0.2621235500878869,-0.27176062641094245,-0.28137052689782505,-0.2909522905664908,-0.30050495924855936,-0.310027577685123,-0.31951919362227366,-0.32897885790632714,-0.33840562457873813,-0.347798550970695,-0.35715669779738596,-0.3664791292519284,-0.3757649130989423,-0.38501312076778266,-0.39422282744538945,-0.4033931121687696,-0.4125230579170927,-0.42161175170339216,-0.43065828466586326,-0.43966175215875003,-0.44862125384280294,-0.45753589377532133,-0.4664047804997409,-0.4752270271347798,-0.4840017514631264,-0.49272807601966023,-0.5014051281791974,-0.5100320402437544,-0.5186079495293108,-0.527131998452086,-0.5356033346142913],\"y\":[0.0,0.01999866669333308,0.03998933418663416,0.059964006479444595,0.0799146939691727,0.09983341664682815,0.11971220728891936,0.1395431146442365,0.15931820661424598,0.17902957342582418,0.19866933079506122,0.21822962308086932,0.23770262642713458,0.2570805518921551,0.27635564856411376,0.29552020666133955,0.31456656061611776,0.3334870921408144,0.35227423327508994,0.3709204694129827,0.3894183423086505,0.40776045305957015,0.4259394650659996,0.4439481069655198,0.46177917554148284,0.479425538604203,0.49688013784373675,0.5141359916531131,0.5311861979208834,0.5480239367918736,0.5646424733950354,0.5810351605373051,0.5971954413623921,0.6131168519734338,0.6287930240184686,0.644217687237691,0.6593846719714731,0.674287911628145,0.6889214451105513,0.7032794192004103,0.7173560908995228,0.7311458297268958,0.7446431199708593,0.757842562895277,0.7707388788989693,0.7833269096274834,0.795601620036366,0.8075581004051142,0.8191915683009983,0.8304973704919705,0.8414709848078965,0.852108021949363,0.8624042272433384,0.8723554823449863,0.8819578068849475,0.8912073600614354,0.9001004421765051,0.9086334961158832,0.9168031087717669,0.9246060124080203,0.9320390859672263,0.9390993563190676,0.945783999449539,0.9520903415905158,0.9580158602892249,0.963558185417193,0.9687151001182652,0.9734845416953194,0.9778646024353163,0.9818535303723597,0.9854497299884601,0.9886517628517197,0.9914583481916864,0.9938683634116449,0.99588084453764,0.9974949866040544,0.998710143975583,0.9995258306054791,0.9999417202299663,0.9999576464987401,0.9995736030415051,0.998789743470524,0.9976063813191737,0.9960239899165367,0.994043202198076,0.9916648104524686,0.9888897660047015,0.9857191788355535,0.9821543171376185,0.9781966068080447,0.9738476308781951,0.9691091288804563,0.9639829961524481,0.9584712830789142,0.9525761942715953,0.9463000876874145,0.9396454736853249,0.9326150140222005,0.9252115207881683,0.9174379552818098,0.9092974268256817,0.9007931915226273,0.8919286509533796,0.8827073508159741,0.8731329795075164,0.8632093666488737,0.8529404815528762,0.8423304316366457,0.8313834607786831,0.8201039476213741,0.8084964038195901,0.7965654722360865,0.7843159250844198,0.7717526620201259,0.758880708180922,0.7457052121767203,0.7322314440302514,0.7184647930691263,0.7044107657701761,0.6900749835569364,0.675463180551151,0.6605812012792007,0.6454349983343708,0.6300306299958922,0.6143742578057118,0.5984721441039564,0.5823306495240819,0.5659562304487028,0.5493554364271266,0.5325349075556212,0.5155013718214642,0.49826164241183857,0.48082261498864826,0.4631912649303452,0.44537464454187115,0.4273798802338298,0.4092141696720173,0.3908847788984522,0.3723990394250557,0.3537643453011431,0.3349881501559051,0.3160779642170538,0.2970413513068324,0.2778859258165868,0.25861934966111083,0.23924932921398243,0.21978361222511694,0.20022998472177053,0.18059626789423291,0.16089031496745576,0.1411200080598672,0.12129325503062975,0.10141798631660186,0.08150215176026912,0.06155371742991315,0.04158066243329049,0.02159097572609596,0.0015926529164868282,-0.01840630693305381,-0.03839790450523538,-0.058374143427580086,-0.0783270334708653,-0.09824859374510868,-0.11813085589181738,-0.13796586727122684,-0.1577456941432482,-0.17746242484086014,-0.19710817293466984,-0.21667508038737962,-0.236155320696897,-0.2555411020268312,-0.274824670323124,-0.2939983124155676,-0.3130543591029702,-0.3319851882207341,-0.35078322768961984,-0.3694409585444771,-0.3879509179417303,-0.4063057021444168,-0.4244979694835826,-0.44252044329485246,-0.4603659148289983,-0.47802724613534286,-0.4954973729168449,-0.5127693073557238,-0.5298361409084934,-0.5466910470692872,-0.56332728410037,-0.5797381977287428,-0.5959172238077639,-0.6118578909427189,-0.6275538230792933,-0.6429987420539088,-0.6581864701049049,-0.6731109323435617,-0.6877661591839738,-0.7021462887308054,-0.7162455691239705,-0.7300583608392995,-0.7435791389442746,-0.7568024953079282,-0.7697231407640238,-0.7823359072266528,-0.7946357497573968,-0.8066177485832405,-0.8182771110644103,-0.8296091736113709,-0.8406094035501945,-0.8512734009355745,-0.8615969003107405,-0.8715757724135882,-0.8812060258283253,-0.8904838085819885,-0.8994054096851777,-0.9079672606164054,-0.9161659367494549,-0.9239981587231879,-0.9314607937532425,-0.9385508568851079,-0.9452655121880633,-0.9516020738895161,-0.9575580074492711,-0.9631309305733167,-0.9683186141667072,-0.9731189832251739,-0.977530117665097,-0.9815502530915153,-0.9851777815038595,-0.9884112519391305,-0.991249371052267,-0.9936910036334644,-0.9957351730622453,-0.9973810616980933,-0.9986280112074989,-0.999475522827284,-0.9999232575641008,-0.9999710363300245,-0.9996188400141854,-0.9988668094904142,-0.9977152455608933,-0.9961646088358407,-0.9942155195492713,-0.9918687573109126,-0.9891252607943698,-0.9859861273616704,-0.9824526126243325,-0.9785261299411385,-0.9742082498528091,-0.9695006994538088,-0.9644053617015305,-0.9589242746631385,-0.9530596307003677,-0.9468137755926089,-0.9401892075986287,-0.9331885764572976,-0.9258146823277325,-0.918070474669267,-0.9099590510617106,-0.9014836559663548,-0.8926476794282346,-0.8834546557201531,-0.8739082619290224,-0.8640123164850744,-0.8537707776345433,-0.8431877418564167,-0.8322674422239013,-0.821014246711247,-0.8094326564466194,-0.7975273039117043,-0.7853029510887806,-0.7727644875559871,-0.759916928531561,-0.7467654128678123,-0.7333152009956565,-0.7195716728205075,-0.7055403255703919,-0.6912267715971271,-0.6766367361314568,-0.6617760549930376,-0.6466506722561834,-0.6312666378723216,-0.6156301052500863,-0.5997473287940438,-0.5836246614030073,-0.5672685519289686,-0.5506855425976376,-0.5338822663916443,-0.5168654443974288,-0.49964188311690244,-0.48221847174493154,-0.46460217941375737,-0.44680005240543,-0.4288192113333959,-0.41066684829434086,-0.39235022399145386,-0.373876664830236,-0.35525355998804264,-0.3364883584585042,-0.31758856607203484,-0.2985617424935936,-0.27941549819892586,-0.2601574914304689,-0.2407954251341592,-0.22133704387835954,-0.2017901307561289,-0.18216250427209588,-0.1624620152151542,-0.14269654351825858,-0.12287399510655005,-0.10300229873509785,-0.0830894028174964,-0.06314327224661277,-0.04317188520872868,-0.02318322999237945,-0.0031853017931379904,0.016813900484349713,0.03680637742582692,0.05678413230707805,0.07673917429251892,0.09666352163141724,0.11654920485049364,0.13638826994159764,0.1561727815432119,0.175894826114484,0.19554651510054424,0.21511998808781552,0.23460741594807993,0.2540010039700231,0.27329299497701237,0.2924756724298697,0.31154136351337786,0.3304824422053109,0.34929133232673487,0.36796051057238466,0.38648250951987934,0.4048499206165983,0.42305539714299684,0.44109165715120235,0.4589514863776903,0.4766277411288995,0.49411335113860816,0.5114013223959524,0.5284847399429308,0.545356770640302,0.562010665900743,0.5784397643882001,0.5946374946823286,0.6105973779069791,0.6263130303216559,0.6417781658749337,0.6569865987187891,0.6719322456828615,0.6866091287076385,0.7010113772355981,0.7151332305593578,0.7289690401258759,0.7425132717958017,0.7557605080570537,0.7687054501917558,0.78134292039565,0.7936678638491531,0.8056753507392133,0.8173605782311729,0.8287188723898353,0.8397456900489799,0.8504366206285644,0.8607873878989017,0.8707938516910911,0.8804520095530344,0.8897579983503596,0.8987080958116269,0.907298722017184,0.9155264408310896,0.9233879612755189,0.9308801388471136,0.9379999767747389,0.9447446272181538,0.951111392407109,0.957097725720417,0.9627012327045701,0.9679196720314863,0.9727509563950137,0.9771931533458229,0.9812444860643621,0.9849033340715608,0.9881682338770004,0.9910378795642898,0.9935111233134158,0.9955869758598548,0.9972646068902659,0.998543345374605,0.9994226798345279,0.9999022585479752,0.9999818896898556,0.9996615414087742,0.998941341839772,0.9978215790530743,0.9963027009388656,0.9943853150281404,0.992070188249698,0.9893582466233818,0.9862505748896837,0.9827484160758622,0.9788531709987474,0.974566397704435,0.9698898108450863,0.9648252809930913,0.9593748338928642,0.9535406496505743,0.94732506186213,0.9407305566797731,0.9337597718176507,0.9264154954967662,0.9187006653297247,0.9106183671457304,0.9021718337562933,0.893364443662152,0.8841997197019127,0.8746813276429652,0.8648130747152218,0.8545989080882805,0.8440429132926041,0.833149312585366,0.8219224632616022,0.8103668559113548,0.7984871126234903,0.7862879851369292,0.7737743529400134,0.7609512213187744,0.7478237193548898,0.7343970978741133,0.7206767273460181,0.706668095735878,0.6923768063095604,0.6778085753922867,0.6629692300821833,0.6478647059195175,0.6325010445125663,0.6168843911210448,0.6010209921980904,0.5849171928917617,0.5685794345070696,0.5520142519295329,0.5352282710113162,0.5182282059209752,0.5010208564578846,0.4836131053324,0.4660119154128711,0.4482243269405849,0.4302574547137687,0.4121184852417566,0.39381467387048763,0.37535334188046277,0.3567418735583286,0.3379877132432676,0.3190983623493521,0.300081376365085,0.2809443618313018,0.2616949732986626,0.24234091026592378,0.22288991410024764,0.20334976494075557,0.183728278586583,0.1640333033706535,0.14427271702045727,0.1244544235070617,0.10458634988363526,0.08467644311472142,0.06473266689756589,0.04476299847674028,0.024775425453357765,0.0047779425901285115,-0.015221451386431743,-0.03521475698538918,-0.05519397715107451,-0.0751511204618093,-0.09507820432636095,-0.11496725817687455,-0.1348103266569955,-0.15459947280389894,-0.17432678122297965,-0.19398436125389723,-0.2135643501267387,-0.2330589161070144,-0.2524602616282581,-0.27176062641094245,-0.2909522905664908,-0.310027577685123,-0.32897885790632714,-0.347798550970695,-0.3664791292519284,-0.38501312076778266,-0.4033931121687696,-0.42161175170339216,-0.43966175215875003,-0.45753589377532133,-0.4752270271347798,-0.49272807601966023,-0.5100320402437544,-0.527131998452086,-0.5440211108893698,-0.5606926221358159,-0.5771398638092097,-0.5933562572321768,-0.6093353160635608,-0.6250706488928821,-0.6405559617968104,-0.6557850608566536,-0.6707518546358369,-0.6854503566164047,-0.6998746875935423,-0.7140190780271818,-0.7278778703497366,-0.7414455212290604,-0.754716603785701,-0.7676858097635825,-0.7803479516532316,-0.79269796476672,-0.8047309092634671,-0.8164419721261122,-0.8278264690856537,-0.8388798464951,-0.8495976831508637,-0.8599756920611861,-0.8700097221608728,-0.87969575997167,-0.8890299312075992,-0.8980085023246196,-0.9066278820139979,-0.9148846226387806,-0.9227754216128067,-0.9302971227216958,-0.9374467173852933,-0.9442213458610589,-0.9506182983879301,-0.9566350162701879,-0.9622690929009016,-0.9675182747245379,-0.9723804621383559,-0.9768537103322188,-0.9809362300664916,-0.9846263883877127,-0.9879227092817555,-0.9908238742642129,-0.9933287229077736,-0.9954362533063774,-0.997145622475965,-0.99845614669166,-0.9993673017612495,-0.9998787232348542,-0.9999902065507035,-0.9997017071169574,-0.999013340329543,-0.997925381525997,-0.9964382658753349,-0.9945525882039892,-0.9922691027578863,-0.9895887229007582,-0.9865125207488105,-0.9830417267418882,-0.9791777291513174,-0.9749220735246146,-0.9702764620672901,-0.9652427529619856,-0.9598229596252282,-0.954019249902089,-0.9478339451990765,-0.9412695195556018,-0.9343285986543979,-0.92701395877128,-0.9193285256646757,-0.9112753734053557,-0.9028577231468499,-0.8940789418370271,-0.8849425408713638,-0.8754521746884285,-0.865611639308158,-0.8554248708134987,-0.8448959437760262,-0.8340290696261731,-0.8228285949687089,-0.8112989998441588,-0.7994448959368459,-0.7872710247302823,-0.7747822556106337,-0.7619835839190333,-0.7488801289535096,-0.7354771319213411,-0.721779953842635,-0.7077940734059962,-0.6935250847771224,-0.6789786953612167,-0.6641607235200951,-0.6490770962449238,-0.6337338467854989,-0.6181371122370333,-0.6022931310853911,-0.5862082407117828,-0.5698888748578939,-0.5533415610524803,-0.5365729180004349,-0.5195896529353996,-0.5023985589369597,-0.48500651221350166,-0.467420469351827,-0.44964746453460147,-0.43169460672678167,-0.4135690768321209,-0.39527812482090974,-0.376829066830075,-0.3582292822368287,-0.3394862107070128,-0.3206073492193382,-0.3016002490666836,-0.2824725128356853,-0.26323179136580094,-0.24388578068908245,-0.22444221895185537,-0.20490888331957058,-0.18529358686603822,-0.1656041754483094,-0.1458485245684275,-0.1260345362233393,-0.10617013574419806,-0.08626326862634386,-0.06632189735120068,-0.04635399820139722,-0.02636755807035826,-0.006370571267652135,0.013628963678619457,0.033623047221136695,0.053603681993066796,0.07356287600690767,0.09349264585116929,0.11338501988364243,0.13323204141994222,0.15302577191607933,0.17275829414376465,0.1924217153572057,0.21200817045009251,0.23150982510153895,0.25091887890969955,0.2702275685118367,0.28942817068955534,0.3085130054579907,0.32747443913769303,0.34630488740800797,0.3649968183406966,0.38354275541260996,0.40193528049619187,0.4201670368266409,0.4382307319445118,0.4561191406126034,0.4738251077059589,0.4913415510738144,0.5086614643723737,0.5257779198672465,0.5426840712044526,0.5593731561488667,0.5758384992890305,0.592073514707223,0.6080717086137423,0.6238266819443293,0.6393321329197169,0.6545818595662513,0.6695697621966024,0.6842898458495511,0.6987362226879031,0.7129031143535387,0.7267848542786822,0.7403758899524486,0.7536707851417809,0.7666642220658663,0.7793510035231799,0.7917260549702911,0.803784426551621,0.8155212950793129,0.8269319659624454,0.8380118750848066,0.8487565906304755,0.8591618148564958,0.8692233858119117,0.8789372790024943,0.8882996090004825,0.8973066309987074,0.9059547423084618,0.914240483800529,0.9221605412887859,0.9297117468558371,0.9368910801201374,0.9436956694441048,0.9501227930827351,0.9561698802722673,0.9618345122584524,0.9671144232640236,0.9720075013949759,0.9765117894852975,0.9806254858798086,0.9843469451548001,0.9876746787761803,0.9906073556948704,0.9931438028792043,0.9952830057841274,0.9970241087570002,0.9983664153798475,0.9993093887479176,0.9998526516844363,0.999995986891472,0.999739337036853,0.9990828047770997,0.9980266527163617,0.9965713033013819,0.9947173386525218,0.9924655003309216,0.989816689041886,0.9867719642746133,0.9833325438784152,0.9794998035755914,0.9752752764111607,0.9706606521396621,0.9656577765492774,0.9602686507235385,0.9544954302409214,0.9483404243126435,0.9418060948590115,0.934895055524683,0.927610070633246,0.9199540540815249,0.9119300681740611,0.9035413223982337,0.8947911721405042,0.8856831173443083,0.8762208011101247,0.866408008238286,0.8562486637151049,0.8457468311429343,0.8349067111147797,0.8237326395341211,0.8122290858806044,0.8004006514223121,0.7882520673753163,0.7757881930112588,0.7630140137137015,0.7499346389840432,0.7365553003977854,0.722881349511976,0.7089182557246514,0.6946716040871542,0.6801470930701855,0.665350532284497,0.6502878401571168,0.6349650415640629,0.6193882654204708,0.6035637422291094,0.5874978015882668,0.5711968696599886,0.5546674665997031,0.5379162039482439,0.5209497819873273,0.5037749870595203,0.48639868885379967,0.4688278376577654,0.45106946157762406,0.433130663727031,0.41501861938594564,0.39674057313061206,0.37830383593583167,0.3597157822506608,0.3409838470487362,0.32211552285438105,0.30311835674570226,0.2839999473358494,0.2647679417336776,0.24543003248500284,0.22599395449569257,0.2064674819377966,0.18685842513998854,0.16717462746353695,0.1474239621650635,0.1276143292473524,0.10775365229944406,0.08784987532731216,0.06791095957636362,0.04794488034705369,0.02795962380486148,0.007963183785937343,-0.012036441400328576,-0.03203125217051633,-0.05201325086691355,-0.07197444495646477,-0.09190685022768164,-0.111802493984214,-0.13165341823383273,-0.15145168287151342,-0.1711893688553761,-0.19085858137418937,-0.21045145300520013,-0.22996014686099078,-0.24937685972413315,-0.2686938251683646,-0.2879033166650653,-0.30699765067375967,-0.325969189715432,-0.344810345427416,-0.3635135815986391,-0.3820714171840091,-0.4004764292967199,-0.4187212561773265,-0.4367986001383378,-0.4547012304831975,-0.47242198639846616,-0.48995377981805127,-0.5072895982583391,-0.5244225076230978,-0.541345654977011,-0.5580522712867794,-0.5745356741286307,-0.5907892703612041,-0.6068065587627183,-0.6225811326313736,-0.6381066823479474,-0.6533769978995605,-0.6683859713635882,-0.6831275993507646,-0.6975959854064472,-0.711785342369123,-0.725689994685196,-0.7393043806791324,-0.7526230547780575,-0.7656406896899116,-0.7783520785342984,-0.7907521369251587,-0.8028359050044701,-0.8145985494261156,-0.8260353652891601,-0.8371417780197468,-0.8479133452008673,-0.8583457583492679,-0.8684348446387881,-0.8781765685694277,-0.8875670335815046,-0.896602483614218,-0.9052793046080263,-0.9135940259502211,-0.9215433218631272,-0.9291240127343684,-0.9363330663886722,-0.9431675993006936,-0.9496248777483951,-0.9557023189064934,-0.9613974918795568,-0.9667081186743308,-0.9716320751109048,-0.976167391672356,-0.98031225429253,-0.9840650050816434,-0.9874241429894153,-0.990388324405471,-0.9929563636967662,-0.9951272336818244,-0.9969000660415961,-0.9982741516667748,-0.9992489409414314,-0.999824043962853,-0.999999230697499,-0.9997744310730111,-0.9991497350062422,-0.9981253923672896,-0.9967018128795512,-0.9948795659558413,-0.9926593804706332,-0.9900421444685181,-0.9870289048090022,-0.9836208667477725,-0.9798193934546138,-0.9756260054681576,-0.9710423800876874,-0.9660703507022413,-0.9607119060572806,-0.9549691894592184,-0.948844497918124,-0.9423402812289547,-0.9354591409916635,-0.9282038295705979,-0.9205772489935901,-0.9125824497911845,-0.9042226297764662,-0.8955011327659783,-0.8864214472422384,-0.8769872049583981,-0.8672021794855813,-0.857070284703512,-0.8465955732350126,-0.8357822348250097,-0.8246345946646914,-0.8131571116614885,-0.8013543766555692,-0.7892311105835722,-0.7767921625902832,-0.7640425080890486,-0.7509872467716762,-0.7376316005686248,-0.7239809115603028,-0.7100406398403069,-0.6958163613314571,-0.6813137655554999,-0.6665386533573856,-0.6514969345849919,-0.6361946257252742,-0.6206378474977482,-0.6048328224062841,-0.5887858722501876,-0.5725034155955647,-0.5559919652079778,-0.5392581254474379,-0.5223085896267315,-0.5051501373341961,-0.4877896317219724,-0.470234016760835,-0.4524903144626965,-0.43456562207189675,-0.416467109226396,-0.39820201509002867,-0.3797776454569147,-0.36120136982925244,-0.34248061846961253,-0.3236228794289322,-0.3046356955513944,-0.2855266614573912,-0.2663034205057765,-0.2469736617366209,-0.22754511679571235,-0.20802555684197996,-0.1884227894391479,-0.16874465543281056,-0.1489990258141988,-0.1291937985718886,-0.10933689553271062,-0.08943625919312187,-0.06949984954232695,-0.04953564087836742,-0.029551618618522943,-0.009555776105247387,0.010443888591061618,0.03043937587118419,0.05042268780681122,0.07038583133961261,0.09032082147833985,0.11021968449273732,0.1300744611029139,0.14987720966295234,0.16962000933746174,0.18929496326980613,0.2088942017407418,0.22840988531620005,0.24783420798295983,0.267159400270935,0.2863777323608796,0.30548151717619876,0.32446311345768003,0.3433149288198954,0.36202942278805417,0.3805991098140923,0.3990165622707952,0.4172744134227364,0.4353653603728932,0.45328216698369495,0.4710176667713848,0.48856476577251795,0.5059164453814522,0.5230657651576964,0.5400058656019978,0.5567299709000376,0.5732313916326848,0.5895035274516621,0.605539869719601,0.6213340041134094,0.6368796131899154,0.6521704789127603,0.6672004851395306,0.6819636200681356,0.6964539786414377,0.7106657649092124,0.7245932943464407,0.7382309961270456,0.7515734153521483,0.7646152152319554,0.7773511792204034,0.7897762131017096,0.8018853470279821,0.8136737375071054,0.8251366693400644,0.8362695575069629,0.8470679490009708,0.857527524609467,0.8676441006416673,0.8774136306020465,0.8868322068088755,0.8958960619572528,0.9046015706259687]},\"selected\":{\"id\":\"1056\"},\"selection_policy\":{\"id\":\"1055\"}},\"id\":\"1041\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1010\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"1027\",\"type\":\"HelpTool\"},{\"attributes\":{\"text\":\"Path following problem\"},\"id\":\"1004\",\"type\":\"Title\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"red\",\"line_dash\":[6],\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1043\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"1047\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1053\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"1054\",\"type\":\"Selection\"},{\"attributes\":{\"source\":{\"id\":\"1041\"}},\"id\":\"1045\",\"type\":\"CDSView\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"1028\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"1049\",\"type\":\"AllLabels\"},{\"attributes\":{\"data\":{\"x\":{\"__ndarray__\":\"AAAAAAAAAACtpICwPp9EPzABWwfQzmU/ECCON/SJdz99CEN8/baDPyHvO5Lmmo0/fy+5DWKSlD9kMTDJfA6bP+5GmX/wFaE/mTwFXOnspD//ixSOtgWpPzzgw2PlSK0/tP0LPCbZsD9KN2MWJiizP5DZm4uxj7U/WaESaikHuD8WCMh2iIa6PzB5U3D/E70/sNyTOiWvvz/evKNUjSvBPzSK5b62iMI/Y6v9tKbuwz8YTTHjNVrFPzWdX4YUy8Y/OCzYdcdDyD/xO8tWAsTJP/82plF4S8s/Cv6KbujZzD8M2lt3C2/OP2FZXSFTBdA/AqHM3ETW0D+7q02RQKrRP1EcqK4tgdI/fr6KrPRa0z9D0v5XfzfUP2iG1k64FtU/pVEbbWX31T9zbdcXgNnWPyZkXDsfvtc/fYemSjWl2D9BJXmlt47ZPziyvWpZedo/Gwna7c1j2z/2d4zvCU7cP3CATmVhOd0/NNsWssMl3j/KD4IXPRPfP4YyAG7lAOA/K8r1b7944D+ISxKA6fHgP2P16wRqbOE/+heRbETo4T+pigKQf2XiP2Ugxcwh5OI/Pr5HRjNk4z9ieFw9veXjPyxacp3GaOQ/lNwkOFLt5D/yLum1W3PlP+zHDtWV+eU/sRrwS+J/5j9dBnrMVAfnP9ZSg8tljuc/Uf6RQnQT6D/rjEHyPpboP4hMVBBpF+k/rop+D0qX6T+5bI4XLRXqP9ggph9qkOo/ZLUo2WsI6z85IrSZsnzrP4yDooB+7Os/qJUkSzxX7D+8nIFBxbzsPzSaMTUiHe0/EmBa1il47T/6SlTarM3tP6p68OOnHe4/m3GArtZn7j8Mxc4oCKzuP03TJGAp6u4/4pp36TYi7z8FKRDvKVTvP6mQYnbof+8/Bi63L1ul7z86RTyrbsTvP+Ji26kR3e8/nkfw3jTv7z9ciJPcyvrvP7PPPejH/+8/U1T7MSL+7z98DktA0PXvP0WOvC3M5u8/v0GJqg/R7z9fqdn+m7TvPwPhZuxwke8/AsY7/Ydn7z9uX41R3jbvP0PzPWRy/+4/u0MqG0PB7j+NC239T3zuP46xmeeYMO4/HMnQNB3e7T/R6ND/9YTtP9XKrLUlJe0/mT/PsrK+7D/LHVjRmVHsP6yb5Reu3es/KwIo4Npi6z9KBPpPCeHqP6UY32IYWOo/QleRnN/H6T8g8d7RozDpP+gSxt5Ekug/gDsNpRns5z8/Ni7W7z3nPzFijtzDh+Y/OkpKGU7K5T9eU/0Y1AXlP1c84M4QOuQ/BhrRcWBn4z8Gz4q0JI7iPxXCJpG2ruE/zLuCx7/J4D89BCV2Sb/fP1JvySvx4N0/KDOo9Sb52z+TQ0RM6QjaP0rMMvjfENg/dRUy5FsR1j9LqqI8AwvUP6m7mC54/tE/T8+iD73Yzz+nMTLyH6vLP4db4E1edcc/eXvuQVE4wz98HPzefOq9PzHWpdfDWrU/WOUHzWaJqT9hPxiCequQP00GxOiyw5G/FxsZLF0Yqr8gEkyWbaS1v3VwvMkzN76/W1VJDQhhw78R3UACTKHHv7W8lcIy28u/Dn0HPOIG0L++PTM+7BvSv9Nokn8JLNS/TP/pbao21r9Tln1VRjvYv4RqgiJVOdq/tUwVM1Aw3L+mJD33uB/ev4Ti1WiLA+C/fxFE4/vy4L/IT3a/+N3hv0sM6+RQxOK/1uCZP9el478CSPOwYoLkvwTFmhpnWeW/8HsJkbIq5r+9BxxZD/bmv/XJ7QY5u+e/w9PkqCl66L8Ho+d/AzLpvzNRBbxC4um/5B844c2K6r8/0IJIKivrvzIMXPXmwuu//3LexahR7L95yBS/Hdfsv5P9R08DU+2/EuW9NB/F7b+f+efCMi3uvxdBih8Wi+6/+zmd7LDe7r/EQDeq2ifvv5wp7B57Zu+/aGM0UoKa77+txvCR3MPvv+z89oR74u+/4i34UVT2779SG7kJYP/vv5hJEeGd/e+/1VUkfQ/x77/yAKjut9nvvy7dsRift++/+jM1TdCK77+QZsU+WVPvv5dBHONQEe+/ggafNczE7r80uI7s223uv/UVlduiDO6/jUc02D2h7b9TBnU+vSvtv+eEMmo6rOy/ompZP88i7L/43D7vko/rv/3ELVy/8uq/\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[201]},\"y\":{\"__ndarray__\":\"AAAAAAAAAABp/0viPp9UP9TVznfLznU/HrneBtuJhz/97XKVwbaTP09NbSccmp0/oSVlCVKRpD/oSvnLEQyrP6IGbOOAE7E/WyciiW/otD8Fzxj8Dv64P1qwmpyfPL0/u8Of68vPwD/Pn8sMZhrDP3fAV4kUfMU/CjSRbgHsxz+7sIk++mHKP/y4HFHR48w/ES9R2cZwzz+mW1N50gPRP5uL86+1VtI/cvEkwWaw0z/CgzWUmw3VP945beDPbdY/2kKg6yPT1z8uelWB/DzZP9Lex2S/qto/h+yGg9Qb3D/7FR6Dm4/dP9prW9F5Bd8/jEVilm0+4D8HkYZskPrgP1ofBiTVtuE/uqmjmuly4j+3UgMNei7jP3exDHEw6eM/KJDqccah5D8bm3yj9lflP0FZw+VeDOY/F+Yjp6C+5j/qVOpSXm7nP6sNAIJNGug/NYPDnjXB6D9Te+tB2GLpP08zHH7X/+k/s3pFbdmX6j/Toy5LgyrrP/hWQHF+t+s/ZnxZSGU+7D9aPUeTmL/sP/9UbN2AOu0/QPMnTX6u7T8FLNQV4hruPzXO/hjtfu4/D4mcV83Z7j8GqiMHmyrvP7a64JdScO8/o8dJZdGp7z8qO0g80tXvP57UKoa88u8/hOGfh2//7z9Ko/MCvfrvP7xZc6Yt4+8/3K3BNCK47z+1lgW8H3nvP/UaX9gCJe8/UHoiFHK67j/sTQCVsTjuP3n9y9lnn+0/ZDgWIG/u7D/RUR723CXsP7zscIukRus/ku/EnPlR6j+9Lod0jUjpP0RaQayLKug//1Cez7j45j+g4io5/rPlP2vcLxDNXOQ/0YVFHaH04j8xZ92zDX3hPzi+x+t87t8/QsxRMvzH3D+dwvFhJYjZP2WYYBOVMdY/aZuC6xzH0j/6eLOqBJfOP3hMPks7g8c/Q2yi4a5YwD9wPPSpkjqyP6EC4CKWcI0/nup/JQnQpb8stRLsgXu5v8GR3xQUAMS/s7yt9Ns0y7/PFPfIUyrRvyKuVkW6rNS/+P+nsFMf2L+HM6RsMn/bv/u3BnRyyd6/umw/lpr94L//HPOB1Ijiv1Dgt8sEBeS/qD3LctRw5b/3ETRBl8rmv0So+iMZEei/HYbhoS1D6b+S27Unul/qvwV25LwQZuu/D2frnhZV7L+pfXYstivtv8awhF/a6O2/qpiA3WmL7r9Gr6he5xHvv4NpcD9Ze++/YuK+DwLH77+Clv9bi/Pvv16eJrer/++/bUMCPlrq77+bQkXq8bLvvxaQVU3oWO+/NHeQEuzb7r+eERgTEjzuvxd5w+Goee2/zKkjGZqV7L8Ob4wZ2ZDrv89APtozbOq/UxfNDeAo6b8DUrlCg8jnvwNaL7qxTOa/LVzMSuK25L86po6h4wjjv6zt+d+jROG/S81vwljY3r+W6kcEpQPbv74f+VmiD9e/dCKcUYQA07+Yoqwk/bXNv5XBTRuxR8W/fHr5ADyBub9DiHvs36qgv7uXneADw6E/kLM1SqwPuj9c98+AlZDFPz9HkSMeAc4/H6AfcdUn0z/RjC+eTjnXP3YRxOZCMNs/S0tYBUoI3z9//MccdV7hP1+YyVXPJOM/OmWQJCHV5D+KlIbYcW3mP5ZStH/f6+c/+dCflKBO6T8ayFLtCZTqPztknqeMuus/4KKFKLbA7D+HlMpEL6XtP+aNDU26Zu4/JKEK2S8E7z9HEi+qenzvP33RZjl1zu8/VdvGWk/57z+fWCAEXPzvP2f/yDfv1u8/VfYXv3iI7z/Uv1pZ1RDvPwyMMHNHcO4/ZSVGm/ym7T8Lq+QMp7XsP/fgnVhmnes/u7Ks75Zf6j99bLg03/3oP8V5xjwYeuc/ft8ltU7W5T/PcG8m+BTkP797zFB/OOI/UFrLEDxD4D+l+eDKHXDcP1s5mWeHM9g/CZzROB7W0z/skmIYr7vOP4iQhqGNocU/I/1gqGPUuD8PTexjvhCZP+IXNTwepqi/Hp1xA2LYvr/GWTpWPJrIv4UHNn+j09C/zhB9DYRD1b9vmELOzZbZv2vmqk5dx92/tRhC69Tn4L9Jt+PVV9Xiv8n+Z79tqeS//VJD46ph5r/UvXqx9/vnvwj7sbUqdum/vP8ltUDO6r/HVoH3XALsvw8kmq2OEO2/\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[201]}},\"selected\":{\"id\":\"1054\"},\"selection_policy\":{\"id\":\"1053\"}},\"id\":\"1036\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1015\",\"type\":\"BasicTicker\"},{\"attributes\":{\"active_multi\":null,\"tools\":[{\"id\":\"1022\"},{\"id\":\"1023\"},{\"id\":\"1024\"},{\"id\":\"1025\"},{\"id\":\"1026\"},{\"id\":\"1027\"}]},\"id\":\"1029\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"1055\",\"type\":\"UnionRenderers\"}],\"root_ids\":[\"1003\"]},\"title\":\"Bokeh Application\",\"version\":\"2.3.1\"}};\n", " var render_items = [{\"docid\":\"780cd0b6-b65f-4ba5-aa81-3571e437d9c6\",\"root_ids\":[\"1003\"],\"roots\":{\"1003\":\"e42613b7-6a19-409c-8a4d-940f61b3d525\"}}];\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", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "1003" } }, "output_type": "display_data" } ], "source": [ "from bokeh.io import output_notebook, show\n", "from bokeh.plotting import figure, gridplot\n", "import numpy as np\n", "\n", "# define path function for plotting\n", "def path(theta):\n", " return np.sin(theta), np.sin(2 * theta)\n", "x_path = []\n", "y_path = []\n", "for t in range(1000):\n", " x_p, y_p = path(t / 100)\n", " x_path.append(x_p)\n", " y_path.append(y_p)\n", "\n", "# Plot using bokeh\n", "output_notebook()\n", "p_pf = figure(title='Path following problem')\n", "p_pf.line(x=np.array(model.solution['x']).squeeze(), y=np.array(model.solution['y']).squeeze())\n", "p_pf.line(x=x_path, y=y_path, line_color='red', line_dash='dashed')\n", "# p = format_figure(p)\n", "p_pf.yaxis.axis_label = \"y [m]\"\n", "p_pf.xaxis.axis_label = \"x [m]\"\n", "show(p_pf)\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Trajectory tracking problem\n", "Trajectory tracking problems are formulated similarly to path following problem. For the case where the function of the\n", "trajectory is available, do as follows:\n", "\n", "1. Run `create_time_variable()` to generate the time variable\n", "2. Define the time-varying function using the time variable\n", "3. Pass the time function function to the `ref` argument of stage and terminal cost and put `trajectory_tracking=True`\n", "\n", "*NOTE*: if the function of the reference is not available, you can pass directly the data points when solving the MPC.\n", "see [the documentation](../modules/controllers.rst#trajectory-tracking-problem) for more info." ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "# Define trajectory tracking MPC\n", "nmpc = NMPC(model)\n", "time = nmpc.get_time_variable()\n", "nmpc.quad_stage_cost.add_states(names=['x', 'y'], weights=[10, 10],\n", " ref=ca.vertcat(ca.sin(time), ca.sin(2 * time)), trajectory_tracking=True)\n", "nmpc.quad_terminal_cost.add_states(names=['x', 'y'], weights=[10, 10],\n", " ref=ca.vertcat(ca.sin(time), ca.sin(2 * time)), trajectory_tracking=True)\n", "nmpc.horizon = 10\n", "nmpc.set_initial_guess(x_guess=x0, u_guess=u0)\n", "nmpc.setup(options={'print_level': 0})" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The rest is the same" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "# Prepare and run closed loop\n", "n_steps = 100\n", "# the solution stored in the model must be reset (initial conditions are kept by default)\n", "model.reset_solution()\n", "sol = model.solution\n", "xt = x0.copy()\n", "for step in range(n_steps):\n", " u = nmpc.optimize(xt)\n", " model.simulate(u=u)\n", " xt = sol['x:f']" ] }, { "cell_type": "code", "execution_count": 8, "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\") || (!Object.prototype.hasOwnProperty.call(output.data, 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", " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\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(\"1118\");\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(url) {\n", " console.error(\"failed to load \" + url);\n", " }\n", "\n", " for (let i = 0; i < css_urls.length; i++) {\n", " const url = css_urls[i];\n", " const element = document.createElement(\"link\");\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\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", " const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.1.min.js\": \"YF85VygJKMVnHE+lLv2AM93Vbstr0yo2TbIu5v8se5Rq3UQAUmcuh4aaJwNlpKwa\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.1.min.js\": \"KKuas3gevv3PvrlkyCMzffFeaMq5we/a2QsP5AUoS3mJ0jmaCL7jirFJN3GoE/lM\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.1.min.js\": \"MK/uFc3YT18pkvvXRl66tTHjP0/dxoSH2e/eiNMFIguKlun2+WVqaPTWmUy/zvh4\"};\n", "\n", " for (let i = 0; i < js_urls.length; i++) {\n", " const url = js_urls[i];\n", " const element = document.createElement('script');\n", " element.onload = on_load;\n", " element.onerror = on_error.bind(null, url);\n", " element.async = false;\n", " element.src = url;\n", " if (url in hashes) {\n", " element.crossOrigin = \"anonymous\";\n", " element.integrity = \"sha384-\" + hashes[url];\n", " }\n", " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", " document.head.appendChild(element);\n", " }\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", " \n", " var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.1.min.js\"];\n", " var css_urls = [];\n", " \n", "\n", " var inline_js = [\n", " function(Bokeh) {\n", " Bokeh.set_log_level(\"info\");\n", " },\n", " function(Bokeh) {\n", " \n", " \n", " }\n", " ];\n", "\n", " function run_inline_js() {\n", " \n", " if (root.Bokeh !== undefined || force === true) {\n", " \n", " for (var i = 0; i < inline_js.length; i++) {\n", " inline_js[i].call(root, root.Bokeh);\n", " }\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(\"1118\")).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(\"1118\");\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(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\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 const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.1.min.js\": \"YF85VygJKMVnHE+lLv2AM93Vbstr0yo2TbIu5v8se5Rq3UQAUmcuh4aaJwNlpKwa\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.1.min.js\": \"KKuas3gevv3PvrlkyCMzffFeaMq5we/a2QsP5AUoS3mJ0jmaCL7jirFJN3GoE/lM\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.1.min.js\": \"MK/uFc3YT18pkvvXRl66tTHjP0/dxoSH2e/eiNMFIguKlun2+WVqaPTWmUy/zvh4\"};\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n if (url in hashes) {\n element.crossOrigin = \"anonymous\";\n element.integrity = \"sha384-\" + hashes[url];\n }\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\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 \n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.3.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.3.1.min.js\"];\n var css_urls = [];\n \n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n function(Bokeh) {\n \n \n }\n ];\n\n function run_inline_js() {\n \n if (root.Bokeh !== undefined || force === true) {\n \n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\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(\"1118\")).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 = {\"6272467d-507c-487a-a918-afe4b783d7c7\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"1130\"}],\"center\":[{\"id\":\"1133\"},{\"id\":\"1137\"}],\"left\":[{\"id\":\"1134\"}],\"renderers\":[{\"id\":\"1155\"},{\"id\":\"1160\"}],\"title\":{\"id\":\"1120\"},\"toolbar\":{\"id\":\"1145\"},\"x_range\":{\"id\":\"1122\"},\"x_scale\":{\"id\":\"1126\"},\"y_range\":{\"id\":\"1124\"},\"y_scale\":{\"id\":\"1128\"}},\"id\":\"1119\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"1126\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"1135\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"1141\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"1138\",\"type\":\"PanTool\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"1144\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"axis_label\":\"x [m]\",\"formatter\":{\"id\":\"1175\"},\"major_label_policy\":{\"id\":\"1177\"},\"ticker\":{\"id\":\"1131\"}},\"id\":\"1130\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"1143\",\"type\":\"HelpTool\"},{\"attributes\":{\"data\":{\"x\":[0.0,0.009999833334166664,0.01999866669333308,0.02999550020249566,0.03998933418663416,0.04997916927067833,0.059964006479444595,0.06994284733753277,0.0799146939691727,0.08987854919801104,0.09983341664682815,0.10977830083717481,0.11971220728891936,0.12963414261969486,0.1395431146442365,0.14943813247359922,0.15931820661424598,0.16918234906699603,0.17902957342582418,0.18885889497650057,0.19866933079506122,0.20845989984609956,0.21822962308086932,0.2279775235351884,0.23770262642713458,0.24740395925452294,0.2570805518921551,0.26673143668883115,0.27635564856411376,0.28595222510483553,0.29552020666133955,0.3050586364434435,0.31456656061611776,0.32404302839486837,0.3334870921408144,0.34289780745545134,0.35227423327508994,0.361615431964962,0.3709204694129827,0.3801884151231614,0.3894183423086505,0.3986093279844229,0.40776045305957015,0.41687080242921076,0.4259394650659996,0.43496553411123023,0.4439481069655198,0.4528862853790683,0.46177917554148284,0.470625888171158,0.479425538604203,0.4881772468829075,0.49688013784373675,0.5055333412048469,0.5141359916531131,0.5226872289306592,0.5311861979208834,0.5396320487339692,0.5480239367918736,0.5563610229127838,0.5646424733950354,0.5728674601004813,0.5810351605373051,0.5891447579422695,0.5971954413623921,0.6051864057360395,0.6131168519734338,0.6209859870365597,0.6287930240184686,0.6365371822219679,0.644217687237691,0.6518337710215366,0.6593846719714731,0.6668696350036979,0.674287911628145,0.6816387600233341,0.6889214451105513,0.6961352386273567,0.7032794192004103,0.7103532724176078,0.7173560908995228,0.7242871743701426,0.7311458297268958,0.7379313711099627,0.7446431199708593,0.7512804051402927,0.757842562895277,0.7643289370255051,0.7707388788989693,0.7770717475268238,0.7833269096274834,0.7895037396899505,0.795601620036366,0.8016199408837772,0.8075581004051142,0.8134155047893737,0.8191915683009983,0.8248857133384501,0.8304973704919705,0.8360259786005205,0.8414709848078965,0.8468318446180152,0.852108021949363,0.8572989891886034,0.8624042272433384,0.867423225594017,0.8723554823449863,0.8772005042746817,0.8819578068849475,0.8866269144494873,0.8912073600614354,0.8956986856800476,0.9001004421765051,0.9044121893788258,0.9086334961158832,0.912763940260521,0.9168031087717669,0.9207505977361357,0.9246060124080203,0.9283689672491666,0.9320390859672263,0.935616001553386,0.9390993563190676,0.9424888019316975,0.945783999449539,0.9489846193555862,0.9520903415905158,0.9551008555846923,0.9580158602892249,0.9608350642060727,0.963558185417193,0.966184951612734,0.9687151001182652,0.9711483779210446,0.9734845416953194,0.9757233578266591,0.9778646024353163,0.9799080613986142,0.9818535303723597,0.9837008148112766,0.9854497299884601,0.9871001010138504,0.9886517628517197,0.9901045603371778,0.9914583481916864,0.9927129910375885,0.9938683634116449,0.9949243497775809,0.99588084453764,0.9967377520431434,0.9974949866040544,0.9981524724975481,0.998710143975583,0.999167945271476,0.9995258306054791,0.999783764189357,0.9999417202299663,0.9999996829318346,0.9999576464987401,0.9998156151342908,0.9995736030415051,0.9992316344213905,0.998789743470524,0.9982479743776325,0.9976063813191737,0.9968650284539189,0.9960239899165367,0.9950833498101802,0.994043202198076,0.9929036510941185,0.9916648104524686,0.990326804156158,0.9888897660047015,0.9873538397007164,0.9857191788355535,0.9839859468739369,0.9821543171376185,0.9802244727880455,0.9781966068080447,0.9760709219825242,0.9738476308781951,0.9715269558223153,0.9691091288804563,0.9665943918332975,0.9639829961524481,0.9612752029752999,0.9584712830789142,0.955571516852944,0.9525761942715953,0.9494856148646305,0.9463000876874145,0.9430199312900106,0.9396454736853249,0.9361770523163061,0.9326150140222005,0.9289597150038693,0.9252115207881683,0.9213708061913954,0.9174379552818098,0.9134133613412252,0.9092974268256817,0.905090563325201,0.9007931915226273,0.89640574115156,0.8919286509533796,0.8873623686333755,0.8827073508159741,0.8779640629990781,0.8731329795075164,0.8682145834456126,0.8632093666488737,0.8581178296348089,0.8529404815528762,0.8476778401335698,0.8423304316366457,0.8368987907984977,0.8313834607786831,0.8257849931056082,0.8201039476213741,0.814340892425796,0.8084964038195901,0.8025710662467472,0.7965654722360865,0.7904802223420048,0.7843159250844198,0.7780731968879212,0.7717526620201259,0.7653549525292535,0.758880708180922,0.7523305763941708,0.7457052121767203,0.7390052780594708,0.7322314440302514,0.7253843874668195,0.7184647930691263,0.7114733527908443,0.7044107657701761,0.6972777382599378,0.6900749835569364,0.6828032219306397,0.675463180551151,0.6680555934164909,0.6605812012792007,0.6530407515722648,0.6454349983343708,0.6377647021345036,0.6300306299958922,0.6222335553193046,0.6143742578057118,0.6064535233783147,0.5984721441039564,0.590430918113913,0.5823306495240819,0.5741721483545726,0.5659562304487028,0.557683717391417,0.5493554364271266,0.5409722203769886,0.5325349075556212,0.5240443416872761,0.5155013718214642,0.5069068522480534,0.49826164241183857,0.4895666068265995,0.48082261498864826,0.47203054128988264,0.4631912649303452,0.45430566983030646,0.44537464454187115,0.4363990821601263,0.4273798802338298,0.418317940675659,0.4092141696720173,0.4000694775924195,0.3908847788984522,0.3816609920523317,0.3723990394250557,0.3630998472041683,0.3537643453011431,0.34439346725839,0.3349881501559051,0.32554933451756,0.3160779642170538,0.30657498638352293,0.2970413513068324,0.2874780123425444,0.2778859258165868,0.2682660509296179,0.25861934966111083,0.24894678667315256,0.23924932921398243,0.2295279470212642,0.21978361222511694,0.21001729925089915,0.20022998472177053,0.19042264736102704,0.18059626789423291,0.17075182895114532,0.16089031496745576,0.15101271208634384,0.1411200080598672,0.13121319215018423,0.12129325503062975,0.11136118868665001,0.10141798631660186,0.0914646422324372,0.08150215176026912,0.0715315111408437,0.06155371742991315,0.05156976839853464,0.04158066243329049,0.031587398436453896,0.02159097572609596,0.011592393936158275,0.0015926529164868282,-0.008407247367148618,-0.01840630693305381,-0.02840352588360379,-0.03839790450523538,-0.04838844336841415,-0.058374143427580086,-0.06835400612104778,-0.0783270334708653,-0.0882922281826076,-0.09824859374510868,-0.10819513453010837,-0.11813085589181738,-0.12805476426637968,-0.13796586727122684,-0.14786317380431852,-0.1577456941432482,-0.16761244004421832,-0.17746242484086014,-0.18729466354290317,-0.19710817293466984,-0.20690197167339974,-0.21667508038737962,-0.22642652177388314,-0.236155320696897,-0.24586050428463702,-0.2555411020268312,-0.26519614587177337,-0.274824670323124,-0.28442571253646254,-0.2939983124155676,-0.30354151270842933,-0.3130543591029702,-0.322535900322479,-0.3319851882207341,-0.34140127787682095,-0.35078322768961984,-0.36013009947196817,-0.3694409585444771,-0.3787148738289976,-0.3879509179417303,-0.3971481672859598,-0.4063057021444168,-0.4154226067712459,-0.4244979694835826,-0.43353088275271773,-0.44252044329485246,-0.45146575216142315,-0.4603659148289983,-0.46922004128872713,-0.47802724613534286,-0.48678664865569937,-0.4954973729168449,-0.5041585478536115,-0.5127693073557238,-0.5213287903544065,-0.5298361409084934,-0.5382905082900176,-0.5466910470692872,-0.5550369171994238,-0.56332728410037,-0.5715613187423437,-0.5797381977287428,-0.5878571033784827,-0.5959172238077639,-0.6039177530112606,-0.6118578909427189,-0.6197368435949633,-0.6275538230792933,-0.6353080477042756,-0.6429987420539088,-0.6506251370651673,-0.6581864701049049,-0.6656819850461192,-0.6731109323435617,-0.680472569108694,-0.6877661591839738,-0.694990973216472,-0.7021462887308054,-0.7092313902013861,-0.7162455691239705,-0.7231881240865121,-0.7300583608392995,-0.7368555923643832,-0.7435791389442746,-0.7502283282299189,-0.7568024953079282,-0.7633009827670734,-0.7697231407640238,-0.7760683270883323,-0.7823359072266528,-0.788525254426195,-0.7946357497573968,-0.8006667821758177,-0.8066177485832405,-0.8124880538879843,-0.8182771110644103,-0.8239843412116258,-0.8296091736113709,-0.8351510457850935,-0.8406094035501945,-0.8459837010754465,-0.8512734009355745,-0.8564779741650012,-0.8615969003107405,-0.8666296674844443,-0.8715757724135882,-0.8764347204918014,-0.8812060258283253,-0.8858892112966027,-0.8904838085819885,-0.8949893582285835,-0.8994054096851777,-0.9037315213503053,-0.9079672606164054,-0.9121122039130803,-0.9161659367494549,-0.9201280537556237,-0.9239981587231879,-0.9277758646448755,-0.9314607937532425,-0.9350525775584491,-0.9385508568851079,-0.941955281908201,-0.9452655121880633,-0.9484812167044256,-0.9516020738895161,-0.9546277716602164,-0.9575580074492711,-0.9603924882355434,-0.9631309305733167,-0.9657730606206388,-0.9683186141667072,-0.9707673366582883,-0.9731189832251739,-0.9753733187046665,-0.977530117665097,-0.9795891644283669,-0.9815502530915153,-0.9834131875473108,-0.9851777815038595,-0.9868438585032365,-0.9884112519391305,-0.9898798050735039,-0.991249371052267,-0.9925198129199632,-0.9936910036334644,-0.9947628260746756,-0.9957351730622453,-0.9966079473622855,-0.9973810616980933,-0.9980544387588794,-0.9986280112074989,-0.9991017216871848,-0.999475522827284,-0.999749377247994,-0.9999232575641008,-0.999997146387718,-0.9999710363300245,-0.9998449300020044,-0.9996188400141854,-0.999292788975378,-0.9988668094904142,-0.9983409441568876,-0.9977152455608933,-0.9969897762717695,-0.9961646088358407,-0.9952398257691627,-0.9942155195492713,-0.9930917926059354,-0.9918687573109126,-0.9905465359667133,-0.9891252607943698,-0.9876050739202153,-0.9859861273616704,-0.9842685830120416,-0.9824526126243325,-0.9805383977940689,-0.9785261299411385,-0.9764160102906497,-0.9742082498528091,-0.9719030694018208,-0.9695006994538088,-0.967001380243766,-0.9644053617015305,-0.9617129034267934,-0.9589242746631385,-0.9560397542711181,-0.9530596307003677,-0.9499842019607608,-0.9468137755926089,-0.9435486686359066,-0.9401892075986287,-0.9367357284240789,-0.9331885764572976,-0.9295481064105251,-0.9258146823277325,-0.9219886775482163,-0.918070474669267,-0.914060465507907,-0.9099590510617106,-0.9057666414687044,-0.9014836559663548,-0.8971105228496424,-0.8926476794282346,-0.8880955719827542,-0.8834546557201531,-0.8787253947281899,-0.8739082619290224,-0.8690037390319161,-0.8640123164850744,-0.858934493426592,-0.8537707776345433,-0.8485216854762045,-0.8431877418564167,-0.8377694801650978,-0.8322674422239013,-0.8266821782320363,-0.821014246711247,-0.8152642144499634,-0.8094326564466194,-0.8035201558521559,-0.7975273039117043,-0.791454699905466,-0.7853029510887806,-0.7790726726314031,-0.7727644875559871,-0.7663790266757843,-0.759916928531561,-0.7533788393277465,-0.7467654128678123,-0.7400773104888944,-0.7333152009956565,-0.726479760593413,-0.7195716728205075,-0.7125916284799615,-0.7055403255703919,-0.6984184692162135,-0.6912267715971271,-0.6839659518769006,-0.6766367361314568,-0.669239857276262,-0.6617760549930376,-0.6542460756557914,-0.6466506722561834,-0.6389906043282237,-0.6312666378723216,-0.6234795452786853,-0.6156301052500863,-0.6077191027239858,-0.5997473287940438,-0.5917155806310094,-0.5836246614030073,-0.5754753801952172,-0.5672685519289686,-0.5590049972802488,-0.5506855425976376,-0.5423110198196698,-0.5338822663916443,-0.5254001251818792,-0.5168654443974288,-0.5082790774992583,-0.49964188311690244,-0.49095472496260173,-0.48221847174493154,-0.47343399708193507,-0.46460217941375737,-0.4557239019148055,-0.44680005240543,-0.4378315232631469,-0.4288192113333959,-0.41976401783985967,-0.41066684829434086,-0.4015286124062146,-0.39235022399145386,-0.38313260088125134,-0.373876664830236,-0.3645833414243013,-0.35525355998804264,-0.34588825349182883,-0.3364883584585042,-0.32705481486974064,-0.31758856607203484,-0.3080905586823781,-0.2985617424935936,-0.2890030703793611,-0.27941549819892586,-0.26979998470151617,-0.2601574914304689,-0.2504889826270749,-0.2407954251341592,-0.23107778829939224,-0.22133704387835954,-0.21157416593738504,-0.2017901307561289,-0.19198591672995502,-0.18216250427209588,-0.17232087571561025,-0.1624620152151542,-0.15258690864856114,-0.14269654351825858,-0.13279190885251674,-0.12287399510655005,-0.11294379406346737,-0.10300229873509785,-0.0930505032626889,-0.0830894028174964,-0.07311999350126308,-0.06314327224661277,-0.053160236717356125,-0.04317188520872868,-0.03317921654755682,-0.02318322999237945,-0.01318492513352214,-0.0031853017931379904,0.006814640074770176,0.016813900484349713,0.026811479517892353,0.03680637742582692,0.04679759472668989,0.05678413230707805,0.06676499152155546,0.07673917429251892,0.08670568321000133,0.09666352163141724,0.10661169378122266,0.11654920485049364,0.1264750610964027,0.13638826994159764,0.14628784007345494,0.1561727815432119,0.1660421058649572,0.175894826114484,0.18572995702797787,0.19554651510054424,0.2053435186845546,0.21511998808781552,0.2248749456715337,0.23460741594807993,0.24431642567853773,0.2540010039700231,0.2636601823727784,0.27329299497701237,0.28289847850949296,0.2924756724298697,0.30202361902673236,0.31154136351337786,0.32102795412328977,0.3304824422053109,0.3399038823185127,0.34929133232673487,0.35864385349280037,0.36796051057238466,0.3772403719075444,0.38648250951987934,0.3956859992033308,0.4048499206165983,0.413973357375178,0.42305539714299684,0.43209513172364716,0.44109165715120235,0.4500440737806176,0.4589514863776903,0.4678130042085835,0.4766277411288995,0.48539481567229026,0.49411335113860816,0.502782475681572,0.5114013223959524,0.5199690294042587,0.5284847399429308,0.536947602448011,0.545356770640302,0.5537114036099907,0.562010665900743,0.570253727593246,0.5784397643882001,0.5865679576887464,0.5946374946823286,0.6026475684219723,0.6105973779069791,0.618486128163024,0.6263130303216559,0.6340773016991814,0.6417781658749337,0.6494148527689112,0.6569865987187891,0.664492646556282,0.6719322456828615,0.6793046521448148,0.6866091287076385,0.6938449449297637,0.7010113772355981,0.7081077089878838,0.7151332305593578,0.7220872394037184,0.7289690401258759,0.7357779445514936,0.7425132717958017,0.7491743483316894,0.7557605080570537,0.7622710923614112,0.7687054501917558,0.775062938117667,0.78134292039565,0.7875447690327109,0.7936678638491531,0.7997115925405982,0.8056753507392133,0.8115585420741488,0.8173605782311729,0.8230808790115055,0.8287188723898353,0.834273994571523,0.8397456900489799,0.8451334116572173,0.8504366206285644,0.8556547866465435,0.8607873878989017,0.8658339111297899,0.8707938516910911,0.8756667135928823,0.8804520095530344,0.8851492610459383,0.8897579983503596,0.8942777605964084,0.8987080958116269,0.9030485609661848,0.907298722017184,0.9114581539520613,0.9155264408310896,0.9195031758289707,0.9233879612755189,0.927180408695427,0.9308801388471136,0.934486781760646,0.9379999767747389,0.9414193725728183,0.9447446272181538,0.9479754081880525,0.951111392407109,0.9541522662795148,0.957097725720417,0.9599474761863261,0.9627012327045701,0.9653587199017918,0.9679196720314863,0.970383833000575,0.9727509563950137,0.9750208055044363,0.9771931533458229,0.9792677826862,0.9812444860643621,0.9831230658116188,0.9849033340715608,0.9865851128188459,0.9881682338770004,0.989652538935238,0.9910378795642898,0.9923241172312475,0.9935111233134158,0.9945987791111761,0.9955869758598548,0.9964756147406005,0.9972646068902659,0.9979538734102932,0.998543345374605,0.9990329638364959,0.9994226798345279,0.999712454397426,0.9999022585479752,0.9999920733059188,0.9999818896898556,0.999871708718139,0.9996615414087742,0.999351408778317,0.998941341839772,0.9984313815994914,0.9978215790530743,0.997111995180267,0.9963027009388656,0.9953937772576199,0.9943853150281404,0.9932774150958098,0.992070188249698,0.9907637552114835,0.9893582466233818,0.9878538030350801,0.9862505748896837,0.9845487225086711,0.9827484160758622,0.9808498356203995,0.9788531709987474,0.9767586218757036,0.974566397704435,0.972276717705532,0.9698898108450863,0.9674059158117949,0.9648252809930913,0.9621481644503063,0.9593748338928642,0.9565055666515091,0.9535406496505743,0.9504803793792889,0.94732506186213,0.9440750126282197,0.9407305566797731,0.9372920284595976,0.9337597718176507,0.9301341399766526,0.9264154954967662,0.9226042102393402,0.9187006653297247,0.9147052511191576,0.9106183671457304,0.9064404220944348,0.9021718337562933,0.8978130289865844,0.893364443662152,0.888826522637821,0.8841997197019127,0.8794844975308649,0.8746813276429652,0.8697906903511999,0.8648130747152218,0.8597489784924482,0.8545989080882805,0.8493633785054673,0.8440429132926041,0.8386380444917783,0.833149312585366,0.827577266441984,0.8219224632616022,0.8161854685198283,0.8103668559113548,0.8044672072925937,0.7984871126234903,0.7924271699085284,0.7862879851369292,0.7800701722220543,0.7737743529400134,0.7674011568674872,0.7609512213187744,0.7544251912820534,0.7478237193548898,0.7411474656789752,0.7343970978741133,0.7275732909714597,0.7206767273460181,0.7137080966484024,0.706668095735878,0.699557428602668,0.6923768063095604,0.6851269469128006,0.6778085753922867,0.6704224235790722,0.6629692300821833,0.6554497402147573,0.6478647059195175,0.6402148856935712,0.6325010445125663,0.6247239537541924,0.6168843911210448,0.6089831405628535,0.6010209921980904,0.5929987422349565,0.5849171928917617,0.5767771523167085,0.5685794345070696,0.5603248592277947,0.5520142519295329,0.5436484436660883,0.5352282710113162,0.5267545759754648,0.5182282059209752,0.5096500134777504,0.5010208564578846,0.49234159776988917,0.4836131053324,0.47483625198738716,0.4660119154128711,0.4571409780351558,0.4482243269405849,0.4392628537868406,0.4302574547137687,0.42120903025377215,0.4121184852417566,0.40298672872464775,0.39381467387048763,0.38460323787711825,0.37535334188046277,0.366065910862411,0.3567418735583286,0.34738216236417424,0.3379877132432676,0.32855946563269217,0.3190983623493521,0.3096053494956915,0.300081376365085,0.2905273953469072,0.2809443618313018,0.27133323411363275,0.2616949732986626,0.252030543204441,0.24234091026592378,0.23262704343833002,0.22288991410024764,0.2131304959564945,0.20334976494075557,0.19354869911798017,0.183728278586583,0.17388948538043356,0.1640333033706535,0.15416071816723032,0.14427271702045727,0.13437028872220905,0.1244544235070617,0.11452611295327708,0.10458634988363526,0.09463612826616005,0.08467644311472142,0.07470829038953478,0.06473266689756589,0.054750570192850956,0.04476299847674028,0.03477095049808608,0.024775425453357765,0.014777422886730236,0.0047779425901285115,-0.005222015496750621,-0.015221451386431743,-0.02521936514365872,-0.03521475698538918,-0.045206627380764856,-0.05519397715107451,-0.0651758075696639,-0.0751511204618093,-0.08511891830453426,-0.09507820432636095,-0.10502798260698659,-0.11496725817687455,-0.12489503711675232,-0.1348103266569955,-0.14471213527691454,-0.15459947280389894,-0.16447135051243542,-0.17432678122297965,-0.1841647794006734,-0.19398436125389723,-0.20378454483265052,-0.2135643501267387,-0.2233227991637839,-0.2330589161070144,-0.24277172735284935,-0.2524602616282581,-0.2621235500878869,-0.27176062641094245,-0.28137052689782505,-0.2909522905664908,-0.30050495924855936,-0.310027577685123,-0.31951919362227366,-0.32897885790632714,-0.33840562457873813,-0.347798550970695,-0.35715669779738596,-0.3664791292519284,-0.3757649130989423,-0.38501312076778266,-0.39422282744538945,-0.4033931121687696,-0.4125230579170927,-0.42161175170339216,-0.43065828466586326,-0.43966175215875003,-0.44862125384280294,-0.45753589377532133,-0.4664047804997409,-0.4752270271347798,-0.4840017514631264,-0.49272807601966023,-0.5014051281791974,-0.5100320402437544,-0.5186079495293108,-0.527131998452086,-0.5356033346142913],\"y\":[0.0,0.01999866669333308,0.03998933418663416,0.059964006479444595,0.0799146939691727,0.09983341664682815,0.11971220728891936,0.1395431146442365,0.15931820661424598,0.17902957342582418,0.19866933079506122,0.21822962308086932,0.23770262642713458,0.2570805518921551,0.27635564856411376,0.29552020666133955,0.31456656061611776,0.3334870921408144,0.35227423327508994,0.3709204694129827,0.3894183423086505,0.40776045305957015,0.4259394650659996,0.4439481069655198,0.46177917554148284,0.479425538604203,0.49688013784373675,0.5141359916531131,0.5311861979208834,0.5480239367918736,0.5646424733950354,0.5810351605373051,0.5971954413623921,0.6131168519734338,0.6287930240184686,0.644217687237691,0.6593846719714731,0.674287911628145,0.6889214451105513,0.7032794192004103,0.7173560908995228,0.7311458297268958,0.7446431199708593,0.757842562895277,0.7707388788989693,0.7833269096274834,0.795601620036366,0.8075581004051142,0.8191915683009983,0.8304973704919705,0.8414709848078965,0.852108021949363,0.8624042272433384,0.8723554823449863,0.8819578068849475,0.8912073600614354,0.9001004421765051,0.9086334961158832,0.9168031087717669,0.9246060124080203,0.9320390859672263,0.9390993563190676,0.945783999449539,0.9520903415905158,0.9580158602892249,0.963558185417193,0.9687151001182652,0.9734845416953194,0.9778646024353163,0.9818535303723597,0.9854497299884601,0.9886517628517197,0.9914583481916864,0.9938683634116449,0.99588084453764,0.9974949866040544,0.998710143975583,0.9995258306054791,0.9999417202299663,0.9999576464987401,0.9995736030415051,0.998789743470524,0.9976063813191737,0.9960239899165367,0.994043202198076,0.9916648104524686,0.9888897660047015,0.9857191788355535,0.9821543171376185,0.9781966068080447,0.9738476308781951,0.9691091288804563,0.9639829961524481,0.9584712830789142,0.9525761942715953,0.9463000876874145,0.9396454736853249,0.9326150140222005,0.9252115207881683,0.9174379552818098,0.9092974268256817,0.9007931915226273,0.8919286509533796,0.8827073508159741,0.8731329795075164,0.8632093666488737,0.8529404815528762,0.8423304316366457,0.8313834607786831,0.8201039476213741,0.8084964038195901,0.7965654722360865,0.7843159250844198,0.7717526620201259,0.758880708180922,0.7457052121767203,0.7322314440302514,0.7184647930691263,0.7044107657701761,0.6900749835569364,0.675463180551151,0.6605812012792007,0.6454349983343708,0.6300306299958922,0.6143742578057118,0.5984721441039564,0.5823306495240819,0.5659562304487028,0.5493554364271266,0.5325349075556212,0.5155013718214642,0.49826164241183857,0.48082261498864826,0.4631912649303452,0.44537464454187115,0.4273798802338298,0.4092141696720173,0.3908847788984522,0.3723990394250557,0.3537643453011431,0.3349881501559051,0.3160779642170538,0.2970413513068324,0.2778859258165868,0.25861934966111083,0.23924932921398243,0.21978361222511694,0.20022998472177053,0.18059626789423291,0.16089031496745576,0.1411200080598672,0.12129325503062975,0.10141798631660186,0.08150215176026912,0.06155371742991315,0.04158066243329049,0.02159097572609596,0.0015926529164868282,-0.01840630693305381,-0.03839790450523538,-0.058374143427580086,-0.0783270334708653,-0.09824859374510868,-0.11813085589181738,-0.13796586727122684,-0.1577456941432482,-0.17746242484086014,-0.19710817293466984,-0.21667508038737962,-0.236155320696897,-0.2555411020268312,-0.274824670323124,-0.2939983124155676,-0.3130543591029702,-0.3319851882207341,-0.35078322768961984,-0.3694409585444771,-0.3879509179417303,-0.4063057021444168,-0.4244979694835826,-0.44252044329485246,-0.4603659148289983,-0.47802724613534286,-0.4954973729168449,-0.5127693073557238,-0.5298361409084934,-0.5466910470692872,-0.56332728410037,-0.5797381977287428,-0.5959172238077639,-0.6118578909427189,-0.6275538230792933,-0.6429987420539088,-0.6581864701049049,-0.6731109323435617,-0.6877661591839738,-0.7021462887308054,-0.7162455691239705,-0.7300583608392995,-0.7435791389442746,-0.7568024953079282,-0.7697231407640238,-0.7823359072266528,-0.7946357497573968,-0.8066177485832405,-0.8182771110644103,-0.8296091736113709,-0.8406094035501945,-0.8512734009355745,-0.8615969003107405,-0.8715757724135882,-0.8812060258283253,-0.8904838085819885,-0.8994054096851777,-0.9079672606164054,-0.9161659367494549,-0.9239981587231879,-0.9314607937532425,-0.9385508568851079,-0.9452655121880633,-0.9516020738895161,-0.9575580074492711,-0.9631309305733167,-0.9683186141667072,-0.9731189832251739,-0.977530117665097,-0.9815502530915153,-0.9851777815038595,-0.9884112519391305,-0.991249371052267,-0.9936910036334644,-0.9957351730622453,-0.9973810616980933,-0.9986280112074989,-0.999475522827284,-0.9999232575641008,-0.9999710363300245,-0.9996188400141854,-0.9988668094904142,-0.9977152455608933,-0.9961646088358407,-0.9942155195492713,-0.9918687573109126,-0.9891252607943698,-0.9859861273616704,-0.9824526126243325,-0.9785261299411385,-0.9742082498528091,-0.9695006994538088,-0.9644053617015305,-0.9589242746631385,-0.9530596307003677,-0.9468137755926089,-0.9401892075986287,-0.9331885764572976,-0.9258146823277325,-0.918070474669267,-0.9099590510617106,-0.9014836559663548,-0.8926476794282346,-0.8834546557201531,-0.8739082619290224,-0.8640123164850744,-0.8537707776345433,-0.8431877418564167,-0.8322674422239013,-0.821014246711247,-0.8094326564466194,-0.7975273039117043,-0.7853029510887806,-0.7727644875559871,-0.759916928531561,-0.7467654128678123,-0.7333152009956565,-0.7195716728205075,-0.7055403255703919,-0.6912267715971271,-0.6766367361314568,-0.6617760549930376,-0.6466506722561834,-0.6312666378723216,-0.6156301052500863,-0.5997473287940438,-0.5836246614030073,-0.5672685519289686,-0.5506855425976376,-0.5338822663916443,-0.5168654443974288,-0.49964188311690244,-0.48221847174493154,-0.46460217941375737,-0.44680005240543,-0.4288192113333959,-0.41066684829434086,-0.39235022399145386,-0.373876664830236,-0.35525355998804264,-0.3364883584585042,-0.31758856607203484,-0.2985617424935936,-0.27941549819892586,-0.2601574914304689,-0.2407954251341592,-0.22133704387835954,-0.2017901307561289,-0.18216250427209588,-0.1624620152151542,-0.14269654351825858,-0.12287399510655005,-0.10300229873509785,-0.0830894028174964,-0.06314327224661277,-0.04317188520872868,-0.02318322999237945,-0.0031853017931379904,0.016813900484349713,0.03680637742582692,0.05678413230707805,0.07673917429251892,0.09666352163141724,0.11654920485049364,0.13638826994159764,0.1561727815432119,0.175894826114484,0.19554651510054424,0.21511998808781552,0.23460741594807993,0.2540010039700231,0.27329299497701237,0.2924756724298697,0.31154136351337786,0.3304824422053109,0.34929133232673487,0.36796051057238466,0.38648250951987934,0.4048499206165983,0.42305539714299684,0.44109165715120235,0.4589514863776903,0.4766277411288995,0.49411335113860816,0.5114013223959524,0.5284847399429308,0.545356770640302,0.562010665900743,0.5784397643882001,0.5946374946823286,0.6105973779069791,0.6263130303216559,0.6417781658749337,0.6569865987187891,0.6719322456828615,0.6866091287076385,0.7010113772355981,0.7151332305593578,0.7289690401258759,0.7425132717958017,0.7557605080570537,0.7687054501917558,0.78134292039565,0.7936678638491531,0.8056753507392133,0.8173605782311729,0.8287188723898353,0.8397456900489799,0.8504366206285644,0.8607873878989017,0.8707938516910911,0.8804520095530344,0.8897579983503596,0.8987080958116269,0.907298722017184,0.9155264408310896,0.9233879612755189,0.9308801388471136,0.9379999767747389,0.9447446272181538,0.951111392407109,0.957097725720417,0.9627012327045701,0.9679196720314863,0.9727509563950137,0.9771931533458229,0.9812444860643621,0.9849033340715608,0.9881682338770004,0.9910378795642898,0.9935111233134158,0.9955869758598548,0.9972646068902659,0.998543345374605,0.9994226798345279,0.9999022585479752,0.9999818896898556,0.9996615414087742,0.998941341839772,0.9978215790530743,0.9963027009388656,0.9943853150281404,0.992070188249698,0.9893582466233818,0.9862505748896837,0.9827484160758622,0.9788531709987474,0.974566397704435,0.9698898108450863,0.9648252809930913,0.9593748338928642,0.9535406496505743,0.94732506186213,0.9407305566797731,0.9337597718176507,0.9264154954967662,0.9187006653297247,0.9106183671457304,0.9021718337562933,0.893364443662152,0.8841997197019127,0.8746813276429652,0.8648130747152218,0.8545989080882805,0.8440429132926041,0.833149312585366,0.8219224632616022,0.8103668559113548,0.7984871126234903,0.7862879851369292,0.7737743529400134,0.7609512213187744,0.7478237193548898,0.7343970978741133,0.7206767273460181,0.706668095735878,0.6923768063095604,0.6778085753922867,0.6629692300821833,0.6478647059195175,0.6325010445125663,0.6168843911210448,0.6010209921980904,0.5849171928917617,0.5685794345070696,0.5520142519295329,0.5352282710113162,0.5182282059209752,0.5010208564578846,0.4836131053324,0.4660119154128711,0.4482243269405849,0.4302574547137687,0.4121184852417566,0.39381467387048763,0.37535334188046277,0.3567418735583286,0.3379877132432676,0.3190983623493521,0.300081376365085,0.2809443618313018,0.2616949732986626,0.24234091026592378,0.22288991410024764,0.20334976494075557,0.183728278586583,0.1640333033706535,0.14427271702045727,0.1244544235070617,0.10458634988363526,0.08467644311472142,0.06473266689756589,0.04476299847674028,0.024775425453357765,0.0047779425901285115,-0.015221451386431743,-0.03521475698538918,-0.05519397715107451,-0.0751511204618093,-0.09507820432636095,-0.11496725817687455,-0.1348103266569955,-0.15459947280389894,-0.17432678122297965,-0.19398436125389723,-0.2135643501267387,-0.2330589161070144,-0.2524602616282581,-0.27176062641094245,-0.2909522905664908,-0.310027577685123,-0.32897885790632714,-0.347798550970695,-0.3664791292519284,-0.38501312076778266,-0.4033931121687696,-0.42161175170339216,-0.43966175215875003,-0.45753589377532133,-0.4752270271347798,-0.49272807601966023,-0.5100320402437544,-0.527131998452086,-0.5440211108893698,-0.5606926221358159,-0.5771398638092097,-0.5933562572321768,-0.6093353160635608,-0.6250706488928821,-0.6405559617968104,-0.6557850608566536,-0.6707518546358369,-0.6854503566164047,-0.6998746875935423,-0.7140190780271818,-0.7278778703497366,-0.7414455212290604,-0.754716603785701,-0.7676858097635825,-0.7803479516532316,-0.79269796476672,-0.8047309092634671,-0.8164419721261122,-0.8278264690856537,-0.8388798464951,-0.8495976831508637,-0.8599756920611861,-0.8700097221608728,-0.87969575997167,-0.8890299312075992,-0.8980085023246196,-0.9066278820139979,-0.9148846226387806,-0.9227754216128067,-0.9302971227216958,-0.9374467173852933,-0.9442213458610589,-0.9506182983879301,-0.9566350162701879,-0.9622690929009016,-0.9675182747245379,-0.9723804621383559,-0.9768537103322188,-0.9809362300664916,-0.9846263883877127,-0.9879227092817555,-0.9908238742642129,-0.9933287229077736,-0.9954362533063774,-0.997145622475965,-0.99845614669166,-0.9993673017612495,-0.9998787232348542,-0.9999902065507035,-0.9997017071169574,-0.999013340329543,-0.997925381525997,-0.9964382658753349,-0.9945525882039892,-0.9922691027578863,-0.9895887229007582,-0.9865125207488105,-0.9830417267418882,-0.9791777291513174,-0.9749220735246146,-0.9702764620672901,-0.9652427529619856,-0.9598229596252282,-0.954019249902089,-0.9478339451990765,-0.9412695195556018,-0.9343285986543979,-0.92701395877128,-0.9193285256646757,-0.9112753734053557,-0.9028577231468499,-0.8940789418370271,-0.8849425408713638,-0.8754521746884285,-0.865611639308158,-0.8554248708134987,-0.8448959437760262,-0.8340290696261731,-0.8228285949687089,-0.8112989998441588,-0.7994448959368459,-0.7872710247302823,-0.7747822556106337,-0.7619835839190333,-0.7488801289535096,-0.7354771319213411,-0.721779953842635,-0.7077940734059962,-0.6935250847771224,-0.6789786953612167,-0.6641607235200951,-0.6490770962449238,-0.6337338467854989,-0.6181371122370333,-0.6022931310853911,-0.5862082407117828,-0.5698888748578939,-0.5533415610524803,-0.5365729180004349,-0.5195896529353996,-0.5023985589369597,-0.48500651221350166,-0.467420469351827,-0.44964746453460147,-0.43169460672678167,-0.4135690768321209,-0.39527812482090974,-0.376829066830075,-0.3582292822368287,-0.3394862107070128,-0.3206073492193382,-0.3016002490666836,-0.2824725128356853,-0.26323179136580094,-0.24388578068908245,-0.22444221895185537,-0.20490888331957058,-0.18529358686603822,-0.1656041754483094,-0.1458485245684275,-0.1260345362233393,-0.10617013574419806,-0.08626326862634386,-0.06632189735120068,-0.04635399820139722,-0.02636755807035826,-0.006370571267652135,0.013628963678619457,0.033623047221136695,0.053603681993066796,0.07356287600690767,0.09349264585116929,0.11338501988364243,0.13323204141994222,0.15302577191607933,0.17275829414376465,0.1924217153572057,0.21200817045009251,0.23150982510153895,0.25091887890969955,0.2702275685118367,0.28942817068955534,0.3085130054579907,0.32747443913769303,0.34630488740800797,0.3649968183406966,0.38354275541260996,0.40193528049619187,0.4201670368266409,0.4382307319445118,0.4561191406126034,0.4738251077059589,0.4913415510738144,0.5086614643723737,0.5257779198672465,0.5426840712044526,0.5593731561488667,0.5758384992890305,0.592073514707223,0.6080717086137423,0.6238266819443293,0.6393321329197169,0.6545818595662513,0.6695697621966024,0.6842898458495511,0.6987362226879031,0.7129031143535387,0.7267848542786822,0.7403758899524486,0.7536707851417809,0.7666642220658663,0.7793510035231799,0.7917260549702911,0.803784426551621,0.8155212950793129,0.8269319659624454,0.8380118750848066,0.8487565906304755,0.8591618148564958,0.8692233858119117,0.8789372790024943,0.8882996090004825,0.8973066309987074,0.9059547423084618,0.914240483800529,0.9221605412887859,0.9297117468558371,0.9368910801201374,0.9436956694441048,0.9501227930827351,0.9561698802722673,0.9618345122584524,0.9671144232640236,0.9720075013949759,0.9765117894852975,0.9806254858798086,0.9843469451548001,0.9876746787761803,0.9906073556948704,0.9931438028792043,0.9952830057841274,0.9970241087570002,0.9983664153798475,0.9993093887479176,0.9998526516844363,0.999995986891472,0.999739337036853,0.9990828047770997,0.9980266527163617,0.9965713033013819,0.9947173386525218,0.9924655003309216,0.989816689041886,0.9867719642746133,0.9833325438784152,0.9794998035755914,0.9752752764111607,0.9706606521396621,0.9656577765492774,0.9602686507235385,0.9544954302409214,0.9483404243126435,0.9418060948590115,0.934895055524683,0.927610070633246,0.9199540540815249,0.9119300681740611,0.9035413223982337,0.8947911721405042,0.8856831173443083,0.8762208011101247,0.866408008238286,0.8562486637151049,0.8457468311429343,0.8349067111147797,0.8237326395341211,0.8122290858806044,0.8004006514223121,0.7882520673753163,0.7757881930112588,0.7630140137137015,0.7499346389840432,0.7365553003977854,0.722881349511976,0.7089182557246514,0.6946716040871542,0.6801470930701855,0.665350532284497,0.6502878401571168,0.6349650415640629,0.6193882654204708,0.6035637422291094,0.5874978015882668,0.5711968696599886,0.5546674665997031,0.5379162039482439,0.5209497819873273,0.5037749870595203,0.48639868885379967,0.4688278376577654,0.45106946157762406,0.433130663727031,0.41501861938594564,0.39674057313061206,0.37830383593583167,0.3597157822506608,0.3409838470487362,0.32211552285438105,0.30311835674570226,0.2839999473358494,0.2647679417336776,0.24543003248500284,0.22599395449569257,0.2064674819377966,0.18685842513998854,0.16717462746353695,0.1474239621650635,0.1276143292473524,0.10775365229944406,0.08784987532731216,0.06791095957636362,0.04794488034705369,0.02795962380486148,0.007963183785937343,-0.012036441400328576,-0.03203125217051633,-0.05201325086691355,-0.07197444495646477,-0.09190685022768164,-0.111802493984214,-0.13165341823383273,-0.15145168287151342,-0.1711893688553761,-0.19085858137418937,-0.21045145300520013,-0.22996014686099078,-0.24937685972413315,-0.2686938251683646,-0.2879033166650653,-0.30699765067375967,-0.325969189715432,-0.344810345427416,-0.3635135815986391,-0.3820714171840091,-0.4004764292967199,-0.4187212561773265,-0.4367986001383378,-0.4547012304831975,-0.47242198639846616,-0.48995377981805127,-0.5072895982583391,-0.5244225076230978,-0.541345654977011,-0.5580522712867794,-0.5745356741286307,-0.5907892703612041,-0.6068065587627183,-0.6225811326313736,-0.6381066823479474,-0.6533769978995605,-0.6683859713635882,-0.6831275993507646,-0.6975959854064472,-0.711785342369123,-0.725689994685196,-0.7393043806791324,-0.7526230547780575,-0.7656406896899116,-0.7783520785342984,-0.7907521369251587,-0.8028359050044701,-0.8145985494261156,-0.8260353652891601,-0.8371417780197468,-0.8479133452008673,-0.8583457583492679,-0.8684348446387881,-0.8781765685694277,-0.8875670335815046,-0.896602483614218,-0.9052793046080263,-0.9135940259502211,-0.9215433218631272,-0.9291240127343684,-0.9363330663886722,-0.9431675993006936,-0.9496248777483951,-0.9557023189064934,-0.9613974918795568,-0.9667081186743308,-0.9716320751109048,-0.976167391672356,-0.98031225429253,-0.9840650050816434,-0.9874241429894153,-0.990388324405471,-0.9929563636967662,-0.9951272336818244,-0.9969000660415961,-0.9982741516667748,-0.9992489409414314,-0.999824043962853,-0.999999230697499,-0.9997744310730111,-0.9991497350062422,-0.9981253923672896,-0.9967018128795512,-0.9948795659558413,-0.9926593804706332,-0.9900421444685181,-0.9870289048090022,-0.9836208667477725,-0.9798193934546138,-0.9756260054681576,-0.9710423800876874,-0.9660703507022413,-0.9607119060572806,-0.9549691894592184,-0.948844497918124,-0.9423402812289547,-0.9354591409916635,-0.9282038295705979,-0.9205772489935901,-0.9125824497911845,-0.9042226297764662,-0.8955011327659783,-0.8864214472422384,-0.8769872049583981,-0.8672021794855813,-0.857070284703512,-0.8465955732350126,-0.8357822348250097,-0.8246345946646914,-0.8131571116614885,-0.8013543766555692,-0.7892311105835722,-0.7767921625902832,-0.7640425080890486,-0.7509872467716762,-0.7376316005686248,-0.7239809115603028,-0.7100406398403069,-0.6958163613314571,-0.6813137655554999,-0.6665386533573856,-0.6514969345849919,-0.6361946257252742,-0.6206378474977482,-0.6048328224062841,-0.5887858722501876,-0.5725034155955647,-0.5559919652079778,-0.5392581254474379,-0.5223085896267315,-0.5051501373341961,-0.4877896317219724,-0.470234016760835,-0.4524903144626965,-0.43456562207189675,-0.416467109226396,-0.39820201509002867,-0.3797776454569147,-0.36120136982925244,-0.34248061846961253,-0.3236228794289322,-0.3046356955513944,-0.2855266614573912,-0.2663034205057765,-0.2469736617366209,-0.22754511679571235,-0.20802555684197996,-0.1884227894391479,-0.16874465543281056,-0.1489990258141988,-0.1291937985718886,-0.10933689553271062,-0.08943625919312187,-0.06949984954232695,-0.04953564087836742,-0.029551618618522943,-0.009555776105247387,0.010443888591061618,0.03043937587118419,0.05042268780681122,0.07038583133961261,0.09032082147833985,0.11021968449273732,0.1300744611029139,0.14987720966295234,0.16962000933746174,0.18929496326980613,0.2088942017407418,0.22840988531620005,0.24783420798295983,0.267159400270935,0.2863777323608796,0.30548151717619876,0.32446311345768003,0.3433149288198954,0.36202942278805417,0.3805991098140923,0.3990165622707952,0.4172744134227364,0.4353653603728932,0.45328216698369495,0.4710176667713848,0.48856476577251795,0.5059164453814522,0.5230657651576964,0.5400058656019978,0.5567299709000376,0.5732313916326848,0.5895035274516621,0.605539869719601,0.6213340041134094,0.6368796131899154,0.6521704789127603,0.6672004851395306,0.6819636200681356,0.6964539786414377,0.7106657649092124,0.7245932943464407,0.7382309961270456,0.7515734153521483,0.7646152152319554,0.7773511792204034,0.7897762131017096,0.8018853470279821,0.8136737375071054,0.8251366693400644,0.8362695575069629,0.8470679490009708,0.857527524609467,0.8676441006416673,0.8774136306020465,0.8868322068088755,0.8958960619572528,0.9046015706259687]},\"selected\":{\"id\":\"1184\"},\"selection_policy\":{\"id\":\"1183\"}},\"id\":\"1157\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1139\",\"type\":\"WheelZoomTool\"},{\"attributes\":{},\"id\":\"1142\",\"type\":\"ResetTool\"},{\"attributes\":{\"axis\":{\"id\":\"1130\"},\"ticker\":null},\"id\":\"1133\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1180\",\"type\":\"AllLabels\"},{\"attributes\":{\"text\":\"Trajectory tracking problem\"},\"id\":\"1120\",\"type\":\"Title\"},{\"attributes\":{\"data_source\":{\"id\":\"1152\"},\"glyph\":{\"id\":\"1153\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"1154\"},\"view\":{\"id\":\"1156\"}},\"id\":\"1155\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data\":{\"x\":{\"__ndarray__\":\"AAAAAAAAAABFiSfQrt2uPyKz+T7NPcU/lPmjvEK50D/rFJNc893WP1A4T0ufsdw/4hnbg8si4T8pG/JH3L7jP6WVFZZRKeY/TkKFG7Ra6D+91g/Q9U3qPyiyP4Xc/es/dap70zFm7T/JbFmvUIPuP/C2YKpkUu8/T27B6FnR7z9YmKIQ7P7vPwe9ofip2u8/u5LhBetk7z9vVM/u3Z7uP/upYwF/iu0/j2c36I8q7D/UfS9SlYLqPz8cN4DLlug/qWBAdxxs5j/itHRKEwjkPzHZPKbMcOE/dmItgtNZ3T+3WJG4+obXP2wkucbzd9E/ZMEdgXx4xj/5BNiYLo+zP7gWFcuNEpi/EpkOphCJv79mJz0Ial7Mv1XT5rvdV9S/yMmoaX1M2r8jcdVF2P3fv/WggEuvruK/KkIx+qgu5b8UhuU1dHjnv31fS5w2hum/NnFFWq9S679xPLCbRNnsv19ipk8PFu6/vqW3IuUF77+cu6uSYKbvvzlYNO/m9e+/e62NWqnz77/tZSbbuZ/vv4/3SKbj+u6/U3zzgcwG7r/+DeUl6cXsv6UFViBsO+u/+iv9bkdr6b863GLeHVrnv9GJMyI5DeW/NFskdnuK4r/WPVncobDfv4xF9ME9+9m/GWJmq2QD1L/6RQ0/tbDLv9DhnV+aJ76/+sfSLqKCkr+vlOrqHvK0Pz2vx82pJ8c/7Gtg9ITN0T8/EcJnq9nXPwZ+imTQqN0/5qt8+QuW4T+buVEdtCrkP0wrFr3Gi+Y/T7R9Qy6z6D/290VUZ5vqPy/XY9eRP+w/crOcJXub7T+MKgQGqavuPyxSWGNjbe8/n33pjbre7z9lh4HGi/7vPxRdk4SKzO8/FAJ0XjBJ7z8EqfDPznXuPw9fY4SEVO0/qCXBEDTo6z//LdnhgTTqP+dtminIPeg/tR9A6gwJ5j+U/XeZ9JvjPyi5xumz/OA/2jrrpP9j3D/92nDk+IXWPz89Go1VbtA//t0a8FVZxD/APpP1z4euP5rLPJXPo6S/5i/y6Kjmwb9HZn4dlHbOvzXvfs1JXNW/kl9aYqZG27857o0in3Xgvw==\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[101]},\"y\":{\"__ndarray__\":\"AAAAAAAAAAAqY/Vnq8e+P54G24Yu89Q/Srmc5+Ah4D98D1gOkVrlP7FlJA7Qouk/+WZA/xrv7D9MsdhG7g/vP95QFWSI9e8/GSLApjCU7z/QOU+O4/DtPxEYhZreG+s/h+RpvT0y5z95GOPo2FviP3MxMI4xlNk/fw/4+kDXyj8Od9rhG0OHP142AJe0/ce/Vy5x1WA92L/KPiHqQcLhv5gYtqCUsOa/EtF3hFW36r/6kFO+bK3tv+l3BlOhdO+/6SRZds36779EYACrmTrvv8BoB4OqO+2/LUqsY2IS6r9QuGUsBd/lv8xgAlFwzOC/ApSGktMc1r+URzbRMH7Dv98fXyXbEKg/pe6BwTZJzz8G7qnRdKfbPxzvJgcJSOM/c93e4o735z9OCn/IebLrP8+dAOe3Uu4/53o/Zny97z+74PXlUOTvP5GDixqpxe4/MqN8mPJs7D8dE6UyIPLoP+qqaI+1eOQ/9TuLaLlc3j+e8Wb1J5LSPxHC/iE4KLg/WIwQn7Xuur++uad2szzTvx5fPfpj+d6/nXpxh/q85L8Z2XBLnCnpv/NV73Vvley/h4TMjond7r/2NGU9oervvwcv5DH8se+/H+Ilhtw17r/YWpe9aYXrv+j5GxYWvOe/6OEMbYYA478MRSOxDwbbv34bOcyK7s2/5BZE3ut9or/Fidwrwd7EP3IDWXQAxNY/KMggAiQY4T8tBaoC0R/mP7RIj7uxReo/3DuLjHBf7T/tFf+laE3vP/b0wpbo++8/LEeZTv1j7z/o3w5DsIvtP3GnVIzZheo/lqDhTlNx5j9I8wRBwHfhP5PDfUPOl9c/i9nmNaSexj8VSUbKc8mWv2ypV4/vM8y/hoUFQG032r/2TWQ9qaTiv3PKzoNWb+e/DiVnENdK67+gO4qJzA/uv8KZjlvzoe+/YcfgM0Px778wVAKfkvruv9NwuE63x+y/GY0/uiFv6b/iTfYa+BLlvwGY1ctzv9+/maFbT/MU1L+7n8bp+nW+v07CM8u4nrQ/drbTaj640T9JWwZE9pPdPyBzyrXnIOQ/xe33LGaq6D9e5CRxKDjsPw==\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[101]}},\"selected\":{\"id\":\"1182\"},\"selection_policy\":{\"id\":\"1181\"}},\"id\":\"1152\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1175\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1131\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"1177\",\"type\":\"AllLabels\"},{\"attributes\":{\"data_source\":{\"id\":\"1157\"},\"glyph\":{\"id\":\"1158\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"1159\"},\"view\":{\"id\":\"1161\"}},\"id\":\"1160\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1183\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"1184\",\"type\":\"Selection\"},{\"attributes\":{\"overlay\":{\"id\":\"1144\"}},\"id\":\"1140\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1153\",\"type\":\"Line\"},{\"attributes\":{\"source\":{\"id\":\"1157\"}},\"id\":\"1161\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"1182\",\"type\":\"Selection\"},{\"attributes\":{\"active_multi\":null,\"tools\":[{\"id\":\"1138\"},{\"id\":\"1139\"},{\"id\":\"1140\"},{\"id\":\"1141\"},{\"id\":\"1142\"},{\"id\":\"1143\"}]},\"id\":\"1145\",\"type\":\"Toolbar\"},{\"attributes\":{\"line_color\":\"red\",\"line_dash\":[6],\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1158\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"1124\",\"type\":\"DataRange1d\"},{\"attributes\":{},\"id\":\"1178\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1122\",\"type\":\"DataRange1d\"},{\"attributes\":{\"source\":{\"id\":\"1152\"}},\"id\":\"1156\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"1128\",\"type\":\"LinearScale\"},{\"attributes\":{\"axis_label\":\"y [m]\",\"formatter\":{\"id\":\"1178\"},\"major_label_policy\":{\"id\":\"1180\"},\"ticker\":{\"id\":\"1135\"}},\"id\":\"1134\",\"type\":\"LinearAxis\"},{\"attributes\":{\"axis\":{\"id\":\"1134\"},\"dimension\":1,\"ticker\":null},\"id\":\"1137\",\"type\":\"Grid\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1154\",\"type\":\"Line\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"red\",\"line_dash\":[6],\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1159\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"1181\",\"type\":\"UnionRenderers\"}],\"root_ids\":[\"1119\"]},\"title\":\"Bokeh Application\",\"version\":\"2.3.1\"}};\n", " var render_items = [{\"docid\":\"6272467d-507c-487a-a918-afe4b783d7c7\",\"root_ids\":[\"1119\"],\"roots\":{\"1119\":\"37a6fdd6-16b8-4d46-baf6-2429e4c5da35\"}}];\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", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "1119" } }, "output_type": "display_data" } ], "source": [ "x_path = []\n", "y_path = []\n", "for t in range(1000):\n", " x_p, y_p = path(t / 100)\n", " x_path.append(x_p)\n", " y_path.append(y_p)\n", "\n", "# plot using bokeh\n", "output_notebook()\n", "p_tt = figure(title='Trajectory tracking problem')\n", "p_tt.line(x=np.array(model.solution['x']).squeeze(), y=np.array(model.solution['y']).squeeze())\n", "p_tt.line(x=x_path, y=y_path, line_color='red', line_dash='dashed')\n", "# p = format_figure(p)\n", "p_tt.yaxis.axis_label = \"y [m]\"\n", "p_tt.xaxis.axis_label = \"x [m]\"\n", "show(p_tt)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Comparison" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "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 = {\"d52a5a2f-3f37-4c51-bba1-e7f9fc80aede\":{\"defs\":[],\"roots\":{\"references\":[{\"attributes\":{\"children\":[{\"id\":\"1374\"},{\"id\":\"1372\"}]},\"id\":\"1375\",\"type\":\"Column\"},{\"attributes\":{},\"id\":\"1135\",\"type\":\"BasicTicker\"},{\"attributes\":{\"axis\":{\"id\":\"1018\"},\"dimension\":1,\"ticker\":null},\"id\":\"1021\",\"type\":\"Grid\"},{\"attributes\":{\"line_color\":\"red\",\"line_dash\":[6],\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1042\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"1138\",\"type\":\"PanTool\"},{\"attributes\":{},\"id\":\"1052\",\"type\":\"AllLabels\"},{\"attributes\":{\"axis\":{\"id\":\"1130\"},\"ticker\":null},\"id\":\"1133\",\"type\":\"Grid\"},{\"attributes\":{\"data_source\":{\"id\":\"1152\"},\"glyph\":{\"id\":\"1153\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"1154\"},\"view\":{\"id\":\"1156\"}},\"id\":\"1155\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"source\":{\"id\":\"1036\"}},\"id\":\"1040\",\"type\":\"CDSView\"},{\"attributes\":{},\"id\":\"1025\",\"type\":\"SaveTool\"},{\"attributes\":{},\"id\":\"1131\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"1177\",\"type\":\"AllLabels\"},{\"attributes\":{\"data_source\":{\"id\":\"1157\"},\"glyph\":{\"id\":\"1158\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"1159\"},\"view\":{\"id\":\"1161\"}},\"id\":\"1160\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1022\",\"type\":\"PanTool\"},{\"attributes\":{\"data_source\":{\"id\":\"1036\"},\"glyph\":{\"id\":\"1037\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"1038\"},\"view\":{\"id\":\"1040\"}},\"id\":\"1039\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"1184\",\"type\":\"Selection\"},{\"attributes\":{\"source\":{\"id\":\"1157\"}},\"id\":\"1161\",\"type\":\"CDSView\"},{\"attributes\":{\"active_multi\":null,\"tools\":[{\"id\":\"1138\"},{\"id\":\"1139\"},{\"id\":\"1140\"},{\"id\":\"1141\"},{\"id\":\"1142\"},{\"id\":\"1143\"}]},\"id\":\"1145\",\"type\":\"Toolbar\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"red\",\"line_dash\":[6],\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1043\",\"type\":\"Line\"},{\"attributes\":{\"line_color\":\"red\",\"line_dash\":[6],\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1158\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"1178\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1049\",\"type\":\"AllLabels\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1154\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"1181\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"1050\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"axis_label\":\"x [m]\",\"formatter\":{\"id\":\"1175\"},\"major_label_policy\":{\"id\":\"1177\"},\"ticker\":{\"id\":\"1131\"}},\"id\":\"1130\",\"type\":\"LinearAxis\"},{\"attributes\":{\"axis\":{\"id\":\"1014\"},\"ticker\":null},\"id\":\"1017\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"1180\",\"type\":\"AllLabels\"},{\"attributes\":{\"data\":{\"x\":{\"__ndarray__\":\"AAAAAAAAAABFiSfQrt2uPyKz+T7NPcU/lPmjvEK50D/rFJNc893WP1A4T0ufsdw/4hnbg8si4T8pG/JH3L7jP6WVFZZRKeY/TkKFG7Ra6D+91g/Q9U3qPyiyP4Xc/es/dap70zFm7T/JbFmvUIPuP/C2YKpkUu8/T27B6FnR7z9YmKIQ7P7vPwe9ofip2u8/u5LhBetk7z9vVM/u3Z7uP/upYwF/iu0/j2c36I8q7D/UfS9SlYLqPz8cN4DLlug/qWBAdxxs5j/itHRKEwjkPzHZPKbMcOE/dmItgtNZ3T+3WJG4+obXP2wkucbzd9E/ZMEdgXx4xj/5BNiYLo+zP7gWFcuNEpi/EpkOphCJv79mJz0Ial7Mv1XT5rvdV9S/yMmoaX1M2r8jcdVF2P3fv/WggEuvruK/KkIx+qgu5b8UhuU1dHjnv31fS5w2hum/NnFFWq9S679xPLCbRNnsv19ipk8PFu6/vqW3IuUF77+cu6uSYKbvvzlYNO/m9e+/e62NWqnz77/tZSbbuZ/vv4/3SKbj+u6/U3zzgcwG7r/+DeUl6cXsv6UFViBsO+u/+iv9bkdr6b863GLeHVrnv9GJMyI5DeW/NFskdnuK4r/WPVncobDfv4xF9ME9+9m/GWJmq2QD1L/6RQ0/tbDLv9DhnV+aJ76/+sfSLqKCkr+vlOrqHvK0Pz2vx82pJ8c/7Gtg9ITN0T8/EcJnq9nXPwZ+imTQqN0/5qt8+QuW4T+buVEdtCrkP0wrFr3Gi+Y/T7R9Qy6z6D/290VUZ5vqPy/XY9eRP+w/crOcJXub7T+MKgQGqavuPyxSWGNjbe8/n33pjbre7z9lh4HGi/7vPxRdk4SKzO8/FAJ0XjBJ7z8EqfDPznXuPw9fY4SEVO0/qCXBEDTo6z//LdnhgTTqP+dtminIPeg/tR9A6gwJ5j+U/XeZ9JvjPyi5xumz/OA/2jrrpP9j3D/92nDk+IXWPz89Go1VbtA//t0a8FVZxD/APpP1z4euP5rLPJXPo6S/5i/y6Kjmwb9HZn4dlHbOvzXvfs1JXNW/kl9aYqZG27857o0in3Xgvw==\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[101]},\"y\":{\"__ndarray__\":\"AAAAAAAAAAAqY/Vnq8e+P54G24Yu89Q/Srmc5+Ah4D98D1gOkVrlP7FlJA7Qouk/+WZA/xrv7D9MsdhG7g/vP95QFWSI9e8/GSLApjCU7z/QOU+O4/DtPxEYhZreG+s/h+RpvT0y5z95GOPo2FviP3MxMI4xlNk/fw/4+kDXyj8Od9rhG0OHP142AJe0/ce/Vy5x1WA92L/KPiHqQcLhv5gYtqCUsOa/EtF3hFW36r/6kFO+bK3tv+l3BlOhdO+/6SRZds36779EYACrmTrvv8BoB4OqO+2/LUqsY2IS6r9QuGUsBd/lv8xgAlFwzOC/ApSGktMc1r+URzbRMH7Dv98fXyXbEKg/pe6BwTZJzz8G7qnRdKfbPxzvJgcJSOM/c93e4o735z9OCn/IebLrP8+dAOe3Uu4/53o/Zny97z+74PXlUOTvP5GDixqpxe4/MqN8mPJs7D8dE6UyIPLoP+qqaI+1eOQ/9TuLaLlc3j+e8Wb1J5LSPxHC/iE4KLg/WIwQn7Xuur++uad2szzTvx5fPfpj+d6/nXpxh/q85L8Z2XBLnCnpv/NV73Vvley/h4TMjond7r/2NGU9oervvwcv5DH8se+/H+Ilhtw17r/YWpe9aYXrv+j5GxYWvOe/6OEMbYYA478MRSOxDwbbv34bOcyK7s2/5BZE3ut9or/Fidwrwd7EP3IDWXQAxNY/KMggAiQY4T8tBaoC0R/mP7RIj7uxReo/3DuLjHBf7T/tFf+laE3vP/b0wpbo++8/LEeZTv1j7z/o3w5DsIvtP3GnVIzZheo/lqDhTlNx5j9I8wRBwHfhP5PDfUPOl9c/i9nmNaSexj8VSUbKc8mWv2ypV4/vM8y/hoUFQG032r/2TWQ9qaTiv3PKzoNWb+e/DiVnENdK67+gO4qJzA/uv8KZjlvzoe+/YcfgM0Px778wVAKfkvruv9NwuE63x+y/GY0/uiFv6b/iTfYa+BLlvwGY1ctzv9+/maFbT/MU1L+7n8bp+nW+v07CM8u4nrQ/drbTaj640T9JWwZE9pPdPyBzyrXnIOQ/xe33LGaq6D9e5CRxKDjsPw==\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[101]}},\"selected\":{\"id\":\"1182\"},\"selection_policy\":{\"id\":\"1181\"}},\"id\":\"1152\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1175\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1183\",\"type\":\"UnionRenderers\"},{\"attributes\":{\"start\":0.5},\"id\":\"1271\",\"type\":\"Range1d\"},{\"attributes\":{\"data_source\":{\"id\":\"1041\"},\"glyph\":{\"id\":\"1042\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"1043\"},\"view\":{\"id\":\"1045\"}},\"id\":\"1044\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1153\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"1027\",\"type\":\"HelpTool\"},{\"attributes\":{},\"id\":\"1182\",\"type\":\"Selection\"},{\"attributes\":{\"below\":[{\"id\":\"1014\"}],\"center\":[{\"id\":\"1017\"},{\"id\":\"1021\"}],\"left\":[{\"id\":\"1018\"}],\"renderers\":[{\"id\":\"1039\"},{\"id\":\"1044\"}],\"title\":{\"id\":\"1004\"},\"toolbar\":{\"id\":\"1029\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"1246\"},\"x_scale\":{\"id\":\"1010\"},\"y_range\":{\"id\":\"1271\"},\"y_scale\":{\"id\":\"1012\"}},\"id\":\"1003\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"source\":{\"id\":\"1041\"}},\"id\":\"1045\",\"type\":\"CDSView\"},{\"attributes\":{\"data\":{\"x\":{\"__ndarray__\":\"AAAAAAAAAACtpICwPp9EPzABWwfQzmU/ECCON/SJdz99CEN8/baDPyHvO5Lmmo0/fy+5DWKSlD9kMTDJfA6bP+5GmX/wFaE/mTwFXOnspD//ixSOtgWpPzzgw2PlSK0/tP0LPCbZsD9KN2MWJiizP5DZm4uxj7U/WaESaikHuD8WCMh2iIa6PzB5U3D/E70/sNyTOiWvvz/evKNUjSvBPzSK5b62iMI/Y6v9tKbuwz8YTTHjNVrFPzWdX4YUy8Y/OCzYdcdDyD/xO8tWAsTJP/82plF4S8s/Cv6KbujZzD8M2lt3C2/OP2FZXSFTBdA/AqHM3ETW0D+7q02RQKrRP1EcqK4tgdI/fr6KrPRa0z9D0v5XfzfUP2iG1k64FtU/pVEbbWX31T9zbdcXgNnWPyZkXDsfvtc/fYemSjWl2D9BJXmlt47ZPziyvWpZedo/Gwna7c1j2z/2d4zvCU7cP3CATmVhOd0/NNsWssMl3j/KD4IXPRPfP4YyAG7lAOA/K8r1b7944D+ISxKA6fHgP2P16wRqbOE/+heRbETo4T+pigKQf2XiP2Ugxcwh5OI/Pr5HRjNk4z9ieFw9veXjPyxacp3GaOQ/lNwkOFLt5D/yLum1W3PlP+zHDtWV+eU/sRrwS+J/5j9dBnrMVAfnP9ZSg8tljuc/Uf6RQnQT6D/rjEHyPpboP4hMVBBpF+k/rop+D0qX6T+5bI4XLRXqP9ggph9qkOo/ZLUo2WsI6z85IrSZsnzrP4yDooB+7Os/qJUkSzxX7D+8nIFBxbzsPzSaMTUiHe0/EmBa1il47T/6SlTarM3tP6p68OOnHe4/m3GArtZn7j8Mxc4oCKzuP03TJGAp6u4/4pp36TYi7z8FKRDvKVTvP6mQYnbof+8/Bi63L1ul7z86RTyrbsTvP+Ji26kR3e8/nkfw3jTv7z9ciJPcyvrvP7PPPejH/+8/U1T7MSL+7z98DktA0PXvP0WOvC3M5u8/v0GJqg/R7z9fqdn+m7TvPwPhZuxwke8/AsY7/Ydn7z9uX41R3jbvP0PzPWRy/+4/u0MqG0PB7j+NC239T3zuP46xmeeYMO4/HMnQNB3e7T/R6ND/9YTtP9XKrLUlJe0/mT/PsrK+7D/LHVjRmVHsP6yb5Reu3es/KwIo4Npi6z9KBPpPCeHqP6UY32IYWOo/QleRnN/H6T8g8d7RozDpP+gSxt5Ekug/gDsNpRns5z8/Ni7W7z3nPzFijtzDh+Y/OkpKGU7K5T9eU/0Y1AXlP1c84M4QOuQ/BhrRcWBn4z8Gz4q0JI7iPxXCJpG2ruE/zLuCx7/J4D89BCV2Sb/fP1JvySvx4N0/KDOo9Sb52z+TQ0RM6QjaP0rMMvjfENg/dRUy5FsR1j9LqqI8AwvUP6m7mC54/tE/T8+iD73Yzz+nMTLyH6vLP4db4E1edcc/eXvuQVE4wz98HPzefOq9PzHWpdfDWrU/WOUHzWaJqT9hPxiCequQP00GxOiyw5G/FxsZLF0Yqr8gEkyWbaS1v3VwvMkzN76/W1VJDQhhw78R3UACTKHHv7W8lcIy28u/Dn0HPOIG0L++PTM+7BvSv9Nokn8JLNS/TP/pbao21r9Tln1VRjvYv4RqgiJVOdq/tUwVM1Aw3L+mJD33uB/ev4Ti1WiLA+C/fxFE4/vy4L/IT3a/+N3hv0sM6+RQxOK/1uCZP9el478CSPOwYoLkvwTFmhpnWeW/8HsJkbIq5r+9BxxZD/bmv/XJ7QY5u+e/w9PkqCl66L8Ho+d/AzLpvzNRBbxC4um/5B844c2K6r8/0IJIKivrvzIMXPXmwuu//3LexahR7L95yBS/Hdfsv5P9R08DU+2/EuW9NB/F7b+f+efCMi3uvxdBih8Wi+6/+zmd7LDe7r/EQDeq2ifvv5wp7B57Zu+/aGM0UoKa77+txvCR3MPvv+z89oR74u+/4i34UVT2779SG7kJYP/vv5hJEeGd/e+/1VUkfQ/x77/yAKjut9nvvy7dsRift++/+jM1TdCK77+QZsU+WVPvv5dBHONQEe+/ggafNczE7r80uI7s223uv/UVlduiDO6/jUc02D2h7b9TBnU+vSvtv+eEMmo6rOy/ompZP88i7L/43D7vko/rv/3ELVy/8uq/\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[201]},\"y\":{\"__ndarray__\":\"AAAAAAAAAABp/0viPp9UP9TVznfLznU/HrneBtuJhz/97XKVwbaTP09NbSccmp0/oSVlCVKRpD/oSvnLEQyrP6IGbOOAE7E/WyciiW/otD8Fzxj8Dv64P1qwmpyfPL0/u8Of68vPwD/Pn8sMZhrDP3fAV4kUfMU/CjSRbgHsxz+7sIk++mHKP/y4HFHR48w/ES9R2cZwzz+mW1N50gPRP5uL86+1VtI/cvEkwWaw0z/CgzWUmw3VP945beDPbdY/2kKg6yPT1z8uelWB/DzZP9Lex2S/qto/h+yGg9Qb3D/7FR6Dm4/dP9prW9F5Bd8/jEVilm0+4D8HkYZskPrgP1ofBiTVtuE/uqmjmuly4j+3UgMNei7jP3exDHEw6eM/KJDqccah5D8bm3yj9lflP0FZw+VeDOY/F+Yjp6C+5j/qVOpSXm7nP6sNAIJNGug/NYPDnjXB6D9Te+tB2GLpP08zHH7X/+k/s3pFbdmX6j/Toy5LgyrrP/hWQHF+t+s/ZnxZSGU+7D9aPUeTmL/sP/9UbN2AOu0/QPMnTX6u7T8FLNQV4hruPzXO/hjtfu4/D4mcV83Z7j8GqiMHmyrvP7a64JdScO8/o8dJZdGp7z8qO0g80tXvP57UKoa88u8/hOGfh2//7z9Ko/MCvfrvP7xZc6Yt4+8/3K3BNCK47z+1lgW8H3nvP/UaX9gCJe8/UHoiFHK67j/sTQCVsTjuP3n9y9lnn+0/ZDgWIG/u7D/RUR723CXsP7zscIukRus/ku/EnPlR6j+9Lod0jUjpP0RaQayLKug//1Cez7j45j+g4io5/rPlP2vcLxDNXOQ/0YVFHaH04j8xZ92zDX3hPzi+x+t87t8/QsxRMvzH3D+dwvFhJYjZP2WYYBOVMdY/aZuC6xzH0j/6eLOqBJfOP3hMPks7g8c/Q2yi4a5YwD9wPPSpkjqyP6EC4CKWcI0/nup/JQnQpb8stRLsgXu5v8GR3xQUAMS/s7yt9Ns0y7/PFPfIUyrRvyKuVkW6rNS/+P+nsFMf2L+HM6RsMn/bv/u3BnRyyd6/umw/lpr94L//HPOB1Ijiv1Dgt8sEBeS/qD3LctRw5b/3ETRBl8rmv0So+iMZEei/HYbhoS1D6b+S27Unul/qvwV25LwQZuu/D2frnhZV7L+pfXYstivtv8awhF/a6O2/qpiA3WmL7r9Gr6he5xHvv4NpcD9Ze++/YuK+DwLH77+Clv9bi/Pvv16eJrer/++/bUMCPlrq77+bQkXq8bLvvxaQVU3oWO+/NHeQEuzb7r+eERgTEjzuvxd5w+Goee2/zKkjGZqV7L8Ob4wZ2ZDrv89APtozbOq/UxfNDeAo6b8DUrlCg8jnvwNaL7qxTOa/LVzMSuK25L86po6h4wjjv6zt+d+jROG/S81vwljY3r+W6kcEpQPbv74f+VmiD9e/dCKcUYQA07+Yoqwk/bXNv5XBTRuxR8W/fHr5ADyBub9DiHvs36qgv7uXneADw6E/kLM1SqwPuj9c98+AlZDFPz9HkSMeAc4/H6AfcdUn0z/RjC+eTjnXP3YRxOZCMNs/S0tYBUoI3z9//MccdV7hP1+YyVXPJOM/OmWQJCHV5D+KlIbYcW3mP5ZStH/f6+c/+dCflKBO6T8ayFLtCZTqPztknqeMuus/4KKFKLbA7D+HlMpEL6XtP+aNDU26Zu4/JKEK2S8E7z9HEi+qenzvP33RZjl1zu8/VdvGWk/57z+fWCAEXPzvP2f/yDfv1u8/VfYXv3iI7z/Uv1pZ1RDvPwyMMHNHcO4/ZSVGm/ym7T8Lq+QMp7XsP/fgnVhmnes/u7Ks75Zf6j99bLg03/3oP8V5xjwYeuc/ft8ltU7W5T/PcG8m+BTkP797zFB/OOI/UFrLEDxD4D+l+eDKHXDcP1s5mWeHM9g/CZzROB7W0z/skmIYr7vOP4iQhqGNocU/I/1gqGPUuD8PTexjvhCZP+IXNTwepqi/Hp1xA2LYvr/GWTpWPJrIv4UHNn+j09C/zhB9DYRD1b9vmELOzZbZv2vmqk5dx92/tRhC69Tn4L9Jt+PVV9Xiv8n+Z79tqeS//VJD46ph5r/UvXqx9/vnvwj7sbUqdum/vP8ltUDO6r/HVoH3XALsvw8kmq2OEO2/\",\"dtype\":\"float64\",\"order\":\"little\",\"shape\":[201]}},\"selected\":{\"id\":\"1054\"},\"selection_policy\":{\"id\":\"1053\"}},\"id\":\"1036\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1128\",\"type\":\"LinearScale\"},{\"attributes\":{\"axis_label\":\"y [m]\",\"formatter\":{\"id\":\"1178\"},\"major_label_policy\":{\"id\":\"1180\"},\"ticker\":{\"id\":\"1135\"}},\"id\":\"1134\",\"type\":\"LinearAxis\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"red\",\"line_dash\":[6],\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1159\",\"type\":\"Line\"},{\"attributes\":{\"toolbars\":[{\"id\":\"1029\"},{\"id\":\"1145\"}],\"tools\":[{\"id\":\"1022\"},{\"id\":\"1023\"},{\"id\":\"1024\"},{\"id\":\"1025\"},{\"id\":\"1026\"},{\"id\":\"1027\"},{\"id\":\"1138\"},{\"id\":\"1139\"},{\"id\":\"1140\"},{\"id\":\"1141\"},{\"id\":\"1142\"},{\"id\":\"1143\"}]},\"id\":\"1373\",\"type\":\"ProxyToolbar\"},{\"attributes\":{},\"id\":\"1141\",\"type\":\"SaveTool\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"1144\",\"type\":\"BoxAnnotation\"},{\"attributes\":{},\"id\":\"1143\",\"type\":\"HelpTool\"},{\"attributes\":{},\"id\":\"1139\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"data\":{\"x\":[0.0,0.009999833334166664,0.01999866669333308,0.02999550020249566,0.03998933418663416,0.04997916927067833,0.059964006479444595,0.06994284733753277,0.0799146939691727,0.08987854919801104,0.09983341664682815,0.10977830083717481,0.11971220728891936,0.12963414261969486,0.1395431146442365,0.14943813247359922,0.15931820661424598,0.16918234906699603,0.17902957342582418,0.18885889497650057,0.19866933079506122,0.20845989984609956,0.21822962308086932,0.2279775235351884,0.23770262642713458,0.24740395925452294,0.2570805518921551,0.26673143668883115,0.27635564856411376,0.28595222510483553,0.29552020666133955,0.3050586364434435,0.31456656061611776,0.32404302839486837,0.3334870921408144,0.34289780745545134,0.35227423327508994,0.361615431964962,0.3709204694129827,0.3801884151231614,0.3894183423086505,0.3986093279844229,0.40776045305957015,0.41687080242921076,0.4259394650659996,0.43496553411123023,0.4439481069655198,0.4528862853790683,0.46177917554148284,0.470625888171158,0.479425538604203,0.4881772468829075,0.49688013784373675,0.5055333412048469,0.5141359916531131,0.5226872289306592,0.5311861979208834,0.5396320487339692,0.5480239367918736,0.5563610229127838,0.5646424733950354,0.5728674601004813,0.5810351605373051,0.5891447579422695,0.5971954413623921,0.6051864057360395,0.6131168519734338,0.6209859870365597,0.6287930240184686,0.6365371822219679,0.644217687237691,0.6518337710215366,0.6593846719714731,0.6668696350036979,0.674287911628145,0.6816387600233341,0.6889214451105513,0.6961352386273567,0.7032794192004103,0.7103532724176078,0.7173560908995228,0.7242871743701426,0.7311458297268958,0.7379313711099627,0.7446431199708593,0.7512804051402927,0.757842562895277,0.7643289370255051,0.7707388788989693,0.7770717475268238,0.7833269096274834,0.7895037396899505,0.795601620036366,0.8016199408837772,0.8075581004051142,0.8134155047893737,0.8191915683009983,0.8248857133384501,0.8304973704919705,0.8360259786005205,0.8414709848078965,0.8468318446180152,0.852108021949363,0.8572989891886034,0.8624042272433384,0.867423225594017,0.8723554823449863,0.8772005042746817,0.8819578068849475,0.8866269144494873,0.8912073600614354,0.8956986856800476,0.9001004421765051,0.9044121893788258,0.9086334961158832,0.912763940260521,0.9168031087717669,0.9207505977361357,0.9246060124080203,0.9283689672491666,0.9320390859672263,0.935616001553386,0.9390993563190676,0.9424888019316975,0.945783999449539,0.9489846193555862,0.9520903415905158,0.9551008555846923,0.9580158602892249,0.9608350642060727,0.963558185417193,0.966184951612734,0.9687151001182652,0.9711483779210446,0.9734845416953194,0.9757233578266591,0.9778646024353163,0.9799080613986142,0.9818535303723597,0.9837008148112766,0.9854497299884601,0.9871001010138504,0.9886517628517197,0.9901045603371778,0.9914583481916864,0.9927129910375885,0.9938683634116449,0.9949243497775809,0.99588084453764,0.9967377520431434,0.9974949866040544,0.9981524724975481,0.998710143975583,0.999167945271476,0.9995258306054791,0.999783764189357,0.9999417202299663,0.9999996829318346,0.9999576464987401,0.9998156151342908,0.9995736030415051,0.9992316344213905,0.998789743470524,0.9982479743776325,0.9976063813191737,0.9968650284539189,0.9960239899165367,0.9950833498101802,0.994043202198076,0.9929036510941185,0.9916648104524686,0.990326804156158,0.9888897660047015,0.9873538397007164,0.9857191788355535,0.9839859468739369,0.9821543171376185,0.9802244727880455,0.9781966068080447,0.9760709219825242,0.9738476308781951,0.9715269558223153,0.9691091288804563,0.9665943918332975,0.9639829961524481,0.9612752029752999,0.9584712830789142,0.955571516852944,0.9525761942715953,0.9494856148646305,0.9463000876874145,0.9430199312900106,0.9396454736853249,0.9361770523163061,0.9326150140222005,0.9289597150038693,0.9252115207881683,0.9213708061913954,0.9174379552818098,0.9134133613412252,0.9092974268256817,0.905090563325201,0.9007931915226273,0.89640574115156,0.8919286509533796,0.8873623686333755,0.8827073508159741,0.8779640629990781,0.8731329795075164,0.8682145834456126,0.8632093666488737,0.8581178296348089,0.8529404815528762,0.8476778401335698,0.8423304316366457,0.8368987907984977,0.8313834607786831,0.8257849931056082,0.8201039476213741,0.814340892425796,0.8084964038195901,0.8025710662467472,0.7965654722360865,0.7904802223420048,0.7843159250844198,0.7780731968879212,0.7717526620201259,0.7653549525292535,0.758880708180922,0.7523305763941708,0.7457052121767203,0.7390052780594708,0.7322314440302514,0.7253843874668195,0.7184647930691263,0.7114733527908443,0.7044107657701761,0.6972777382599378,0.6900749835569364,0.6828032219306397,0.675463180551151,0.6680555934164909,0.6605812012792007,0.6530407515722648,0.6454349983343708,0.6377647021345036,0.6300306299958922,0.6222335553193046,0.6143742578057118,0.6064535233783147,0.5984721441039564,0.590430918113913,0.5823306495240819,0.5741721483545726,0.5659562304487028,0.557683717391417,0.5493554364271266,0.5409722203769886,0.5325349075556212,0.5240443416872761,0.5155013718214642,0.5069068522480534,0.49826164241183857,0.4895666068265995,0.48082261498864826,0.47203054128988264,0.4631912649303452,0.45430566983030646,0.44537464454187115,0.4363990821601263,0.4273798802338298,0.418317940675659,0.4092141696720173,0.4000694775924195,0.3908847788984522,0.3816609920523317,0.3723990394250557,0.3630998472041683,0.3537643453011431,0.34439346725839,0.3349881501559051,0.32554933451756,0.3160779642170538,0.30657498638352293,0.2970413513068324,0.2874780123425444,0.2778859258165868,0.2682660509296179,0.25861934966111083,0.24894678667315256,0.23924932921398243,0.2295279470212642,0.21978361222511694,0.21001729925089915,0.20022998472177053,0.19042264736102704,0.18059626789423291,0.17075182895114532,0.16089031496745576,0.15101271208634384,0.1411200080598672,0.13121319215018423,0.12129325503062975,0.11136118868665001,0.10141798631660186,0.0914646422324372,0.08150215176026912,0.0715315111408437,0.06155371742991315,0.05156976839853464,0.04158066243329049,0.031587398436453896,0.02159097572609596,0.011592393936158275,0.0015926529164868282,-0.008407247367148618,-0.01840630693305381,-0.02840352588360379,-0.03839790450523538,-0.04838844336841415,-0.058374143427580086,-0.06835400612104778,-0.0783270334708653,-0.0882922281826076,-0.09824859374510868,-0.10819513453010837,-0.11813085589181738,-0.12805476426637968,-0.13796586727122684,-0.14786317380431852,-0.1577456941432482,-0.16761244004421832,-0.17746242484086014,-0.18729466354290317,-0.19710817293466984,-0.20690197167339974,-0.21667508038737962,-0.22642652177388314,-0.236155320696897,-0.24586050428463702,-0.2555411020268312,-0.26519614587177337,-0.274824670323124,-0.28442571253646254,-0.2939983124155676,-0.30354151270842933,-0.3130543591029702,-0.322535900322479,-0.3319851882207341,-0.34140127787682095,-0.35078322768961984,-0.36013009947196817,-0.3694409585444771,-0.3787148738289976,-0.3879509179417303,-0.3971481672859598,-0.4063057021444168,-0.4154226067712459,-0.4244979694835826,-0.43353088275271773,-0.44252044329485246,-0.45146575216142315,-0.4603659148289983,-0.46922004128872713,-0.47802724613534286,-0.48678664865569937,-0.4954973729168449,-0.5041585478536115,-0.5127693073557238,-0.5213287903544065,-0.5298361409084934,-0.5382905082900176,-0.5466910470692872,-0.5550369171994238,-0.56332728410037,-0.5715613187423437,-0.5797381977287428,-0.5878571033784827,-0.5959172238077639,-0.6039177530112606,-0.6118578909427189,-0.6197368435949633,-0.6275538230792933,-0.6353080477042756,-0.6429987420539088,-0.6506251370651673,-0.6581864701049049,-0.6656819850461192,-0.6731109323435617,-0.680472569108694,-0.6877661591839738,-0.694990973216472,-0.7021462887308054,-0.7092313902013861,-0.7162455691239705,-0.7231881240865121,-0.7300583608392995,-0.7368555923643832,-0.7435791389442746,-0.7502283282299189,-0.7568024953079282,-0.7633009827670734,-0.7697231407640238,-0.7760683270883323,-0.7823359072266528,-0.788525254426195,-0.7946357497573968,-0.8006667821758177,-0.8066177485832405,-0.8124880538879843,-0.8182771110644103,-0.8239843412116258,-0.8296091736113709,-0.8351510457850935,-0.8406094035501945,-0.8459837010754465,-0.8512734009355745,-0.8564779741650012,-0.8615969003107405,-0.8666296674844443,-0.8715757724135882,-0.8764347204918014,-0.8812060258283253,-0.8858892112966027,-0.8904838085819885,-0.8949893582285835,-0.8994054096851777,-0.9037315213503053,-0.9079672606164054,-0.9121122039130803,-0.9161659367494549,-0.9201280537556237,-0.9239981587231879,-0.9277758646448755,-0.9314607937532425,-0.9350525775584491,-0.9385508568851079,-0.941955281908201,-0.9452655121880633,-0.9484812167044256,-0.9516020738895161,-0.9546277716602164,-0.9575580074492711,-0.9603924882355434,-0.9631309305733167,-0.9657730606206388,-0.9683186141667072,-0.9707673366582883,-0.9731189832251739,-0.9753733187046665,-0.977530117665097,-0.9795891644283669,-0.9815502530915153,-0.9834131875473108,-0.9851777815038595,-0.9868438585032365,-0.9884112519391305,-0.9898798050735039,-0.991249371052267,-0.9925198129199632,-0.9936910036334644,-0.9947628260746756,-0.9957351730622453,-0.9966079473622855,-0.9973810616980933,-0.9980544387588794,-0.9986280112074989,-0.9991017216871848,-0.999475522827284,-0.999749377247994,-0.9999232575641008,-0.999997146387718,-0.9999710363300245,-0.9998449300020044,-0.9996188400141854,-0.999292788975378,-0.9988668094904142,-0.9983409441568876,-0.9977152455608933,-0.9969897762717695,-0.9961646088358407,-0.9952398257691627,-0.9942155195492713,-0.9930917926059354,-0.9918687573109126,-0.9905465359667133,-0.9891252607943698,-0.9876050739202153,-0.9859861273616704,-0.9842685830120416,-0.9824526126243325,-0.9805383977940689,-0.9785261299411385,-0.9764160102906497,-0.9742082498528091,-0.9719030694018208,-0.9695006994538088,-0.967001380243766,-0.9644053617015305,-0.9617129034267934,-0.9589242746631385,-0.9560397542711181,-0.9530596307003677,-0.9499842019607608,-0.9468137755926089,-0.9435486686359066,-0.9401892075986287,-0.9367357284240789,-0.9331885764572976,-0.9295481064105251,-0.9258146823277325,-0.9219886775482163,-0.918070474669267,-0.914060465507907,-0.9099590510617106,-0.9057666414687044,-0.9014836559663548,-0.8971105228496424,-0.8926476794282346,-0.8880955719827542,-0.8834546557201531,-0.8787253947281899,-0.8739082619290224,-0.8690037390319161,-0.8640123164850744,-0.858934493426592,-0.8537707776345433,-0.8485216854762045,-0.8431877418564167,-0.8377694801650978,-0.8322674422239013,-0.8266821782320363,-0.821014246711247,-0.8152642144499634,-0.8094326564466194,-0.8035201558521559,-0.7975273039117043,-0.791454699905466,-0.7853029510887806,-0.7790726726314031,-0.7727644875559871,-0.7663790266757843,-0.759916928531561,-0.7533788393277465,-0.7467654128678123,-0.7400773104888944,-0.7333152009956565,-0.726479760593413,-0.7195716728205075,-0.7125916284799615,-0.7055403255703919,-0.6984184692162135,-0.6912267715971271,-0.6839659518769006,-0.6766367361314568,-0.669239857276262,-0.6617760549930376,-0.6542460756557914,-0.6466506722561834,-0.6389906043282237,-0.6312666378723216,-0.6234795452786853,-0.6156301052500863,-0.6077191027239858,-0.5997473287940438,-0.5917155806310094,-0.5836246614030073,-0.5754753801952172,-0.5672685519289686,-0.5590049972802488,-0.5506855425976376,-0.5423110198196698,-0.5338822663916443,-0.5254001251818792,-0.5168654443974288,-0.5082790774992583,-0.49964188311690244,-0.49095472496260173,-0.48221847174493154,-0.47343399708193507,-0.46460217941375737,-0.4557239019148055,-0.44680005240543,-0.4378315232631469,-0.4288192113333959,-0.41976401783985967,-0.41066684829434086,-0.4015286124062146,-0.39235022399145386,-0.38313260088125134,-0.373876664830236,-0.3645833414243013,-0.35525355998804264,-0.34588825349182883,-0.3364883584585042,-0.32705481486974064,-0.31758856607203484,-0.3080905586823781,-0.2985617424935936,-0.2890030703793611,-0.27941549819892586,-0.26979998470151617,-0.2601574914304689,-0.2504889826270749,-0.2407954251341592,-0.23107778829939224,-0.22133704387835954,-0.21157416593738504,-0.2017901307561289,-0.19198591672995502,-0.18216250427209588,-0.17232087571561025,-0.1624620152151542,-0.15258690864856114,-0.14269654351825858,-0.13279190885251674,-0.12287399510655005,-0.11294379406346737,-0.10300229873509785,-0.0930505032626889,-0.0830894028174964,-0.07311999350126308,-0.06314327224661277,-0.053160236717356125,-0.04317188520872868,-0.03317921654755682,-0.02318322999237945,-0.01318492513352214,-0.0031853017931379904,0.006814640074770176,0.016813900484349713,0.026811479517892353,0.03680637742582692,0.04679759472668989,0.05678413230707805,0.06676499152155546,0.07673917429251892,0.08670568321000133,0.09666352163141724,0.10661169378122266,0.11654920485049364,0.1264750610964027,0.13638826994159764,0.14628784007345494,0.1561727815432119,0.1660421058649572,0.175894826114484,0.18572995702797787,0.19554651510054424,0.2053435186845546,0.21511998808781552,0.2248749456715337,0.23460741594807993,0.24431642567853773,0.2540010039700231,0.2636601823727784,0.27329299497701237,0.28289847850949296,0.2924756724298697,0.30202361902673236,0.31154136351337786,0.32102795412328977,0.3304824422053109,0.3399038823185127,0.34929133232673487,0.35864385349280037,0.36796051057238466,0.3772403719075444,0.38648250951987934,0.3956859992033308,0.4048499206165983,0.413973357375178,0.42305539714299684,0.43209513172364716,0.44109165715120235,0.4500440737806176,0.4589514863776903,0.4678130042085835,0.4766277411288995,0.48539481567229026,0.49411335113860816,0.502782475681572,0.5114013223959524,0.5199690294042587,0.5284847399429308,0.536947602448011,0.545356770640302,0.5537114036099907,0.562010665900743,0.570253727593246,0.5784397643882001,0.5865679576887464,0.5946374946823286,0.6026475684219723,0.6105973779069791,0.618486128163024,0.6263130303216559,0.6340773016991814,0.6417781658749337,0.6494148527689112,0.6569865987187891,0.664492646556282,0.6719322456828615,0.6793046521448148,0.6866091287076385,0.6938449449297637,0.7010113772355981,0.7081077089878838,0.7151332305593578,0.7220872394037184,0.7289690401258759,0.7357779445514936,0.7425132717958017,0.7491743483316894,0.7557605080570537,0.7622710923614112,0.7687054501917558,0.775062938117667,0.78134292039565,0.7875447690327109,0.7936678638491531,0.7997115925405982,0.8056753507392133,0.8115585420741488,0.8173605782311729,0.8230808790115055,0.8287188723898353,0.834273994571523,0.8397456900489799,0.8451334116572173,0.8504366206285644,0.8556547866465435,0.8607873878989017,0.8658339111297899,0.8707938516910911,0.8756667135928823,0.8804520095530344,0.8851492610459383,0.8897579983503596,0.8942777605964084,0.8987080958116269,0.9030485609661848,0.907298722017184,0.9114581539520613,0.9155264408310896,0.9195031758289707,0.9233879612755189,0.927180408695427,0.9308801388471136,0.934486781760646,0.9379999767747389,0.9414193725728183,0.9447446272181538,0.9479754081880525,0.951111392407109,0.9541522662795148,0.957097725720417,0.9599474761863261,0.9627012327045701,0.9653587199017918,0.9679196720314863,0.970383833000575,0.9727509563950137,0.9750208055044363,0.9771931533458229,0.9792677826862,0.9812444860643621,0.9831230658116188,0.9849033340715608,0.9865851128188459,0.9881682338770004,0.989652538935238,0.9910378795642898,0.9923241172312475,0.9935111233134158,0.9945987791111761,0.9955869758598548,0.9964756147406005,0.9972646068902659,0.9979538734102932,0.998543345374605,0.9990329638364959,0.9994226798345279,0.999712454397426,0.9999022585479752,0.9999920733059188,0.9999818896898556,0.999871708718139,0.9996615414087742,0.999351408778317,0.998941341839772,0.9984313815994914,0.9978215790530743,0.997111995180267,0.9963027009388656,0.9953937772576199,0.9943853150281404,0.9932774150958098,0.992070188249698,0.9907637552114835,0.9893582466233818,0.9878538030350801,0.9862505748896837,0.9845487225086711,0.9827484160758622,0.9808498356203995,0.9788531709987474,0.9767586218757036,0.974566397704435,0.972276717705532,0.9698898108450863,0.9674059158117949,0.9648252809930913,0.9621481644503063,0.9593748338928642,0.9565055666515091,0.9535406496505743,0.9504803793792889,0.94732506186213,0.9440750126282197,0.9407305566797731,0.9372920284595976,0.9337597718176507,0.9301341399766526,0.9264154954967662,0.9226042102393402,0.9187006653297247,0.9147052511191576,0.9106183671457304,0.9064404220944348,0.9021718337562933,0.8978130289865844,0.893364443662152,0.888826522637821,0.8841997197019127,0.8794844975308649,0.8746813276429652,0.8697906903511999,0.8648130747152218,0.8597489784924482,0.8545989080882805,0.8493633785054673,0.8440429132926041,0.8386380444917783,0.833149312585366,0.827577266441984,0.8219224632616022,0.8161854685198283,0.8103668559113548,0.8044672072925937,0.7984871126234903,0.7924271699085284,0.7862879851369292,0.7800701722220543,0.7737743529400134,0.7674011568674872,0.7609512213187744,0.7544251912820534,0.7478237193548898,0.7411474656789752,0.7343970978741133,0.7275732909714597,0.7206767273460181,0.7137080966484024,0.706668095735878,0.699557428602668,0.6923768063095604,0.6851269469128006,0.6778085753922867,0.6704224235790722,0.6629692300821833,0.6554497402147573,0.6478647059195175,0.6402148856935712,0.6325010445125663,0.6247239537541924,0.6168843911210448,0.6089831405628535,0.6010209921980904,0.5929987422349565,0.5849171928917617,0.5767771523167085,0.5685794345070696,0.5603248592277947,0.5520142519295329,0.5436484436660883,0.5352282710113162,0.5267545759754648,0.5182282059209752,0.5096500134777504,0.5010208564578846,0.49234159776988917,0.4836131053324,0.47483625198738716,0.4660119154128711,0.4571409780351558,0.4482243269405849,0.4392628537868406,0.4302574547137687,0.42120903025377215,0.4121184852417566,0.40298672872464775,0.39381467387048763,0.38460323787711825,0.37535334188046277,0.366065910862411,0.3567418735583286,0.34738216236417424,0.3379877132432676,0.32855946563269217,0.3190983623493521,0.3096053494956915,0.300081376365085,0.2905273953469072,0.2809443618313018,0.27133323411363275,0.2616949732986626,0.252030543204441,0.24234091026592378,0.23262704343833002,0.22288991410024764,0.2131304959564945,0.20334976494075557,0.19354869911798017,0.183728278586583,0.17388948538043356,0.1640333033706535,0.15416071816723032,0.14427271702045727,0.13437028872220905,0.1244544235070617,0.11452611295327708,0.10458634988363526,0.09463612826616005,0.08467644311472142,0.07470829038953478,0.06473266689756589,0.054750570192850956,0.04476299847674028,0.03477095049808608,0.024775425453357765,0.014777422886730236,0.0047779425901285115,-0.005222015496750621,-0.015221451386431743,-0.02521936514365872,-0.03521475698538918,-0.045206627380764856,-0.05519397715107451,-0.0651758075696639,-0.0751511204618093,-0.08511891830453426,-0.09507820432636095,-0.10502798260698659,-0.11496725817687455,-0.12489503711675232,-0.1348103266569955,-0.14471213527691454,-0.15459947280389894,-0.16447135051243542,-0.17432678122297965,-0.1841647794006734,-0.19398436125389723,-0.20378454483265052,-0.2135643501267387,-0.2233227991637839,-0.2330589161070144,-0.24277172735284935,-0.2524602616282581,-0.2621235500878869,-0.27176062641094245,-0.28137052689782505,-0.2909522905664908,-0.30050495924855936,-0.310027577685123,-0.31951919362227366,-0.32897885790632714,-0.33840562457873813,-0.347798550970695,-0.35715669779738596,-0.3664791292519284,-0.3757649130989423,-0.38501312076778266,-0.39422282744538945,-0.4033931121687696,-0.4125230579170927,-0.42161175170339216,-0.43065828466586326,-0.43966175215875003,-0.44862125384280294,-0.45753589377532133,-0.4664047804997409,-0.4752270271347798,-0.4840017514631264,-0.49272807601966023,-0.5014051281791974,-0.5100320402437544,-0.5186079495293108,-0.527131998452086,-0.5356033346142913],\"y\":[0.0,0.01999866669333308,0.03998933418663416,0.059964006479444595,0.0799146939691727,0.09983341664682815,0.11971220728891936,0.1395431146442365,0.15931820661424598,0.17902957342582418,0.19866933079506122,0.21822962308086932,0.23770262642713458,0.2570805518921551,0.27635564856411376,0.29552020666133955,0.31456656061611776,0.3334870921408144,0.35227423327508994,0.3709204694129827,0.3894183423086505,0.40776045305957015,0.4259394650659996,0.4439481069655198,0.46177917554148284,0.479425538604203,0.49688013784373675,0.5141359916531131,0.5311861979208834,0.5480239367918736,0.5646424733950354,0.5810351605373051,0.5971954413623921,0.6131168519734338,0.6287930240184686,0.644217687237691,0.6593846719714731,0.674287911628145,0.6889214451105513,0.7032794192004103,0.7173560908995228,0.7311458297268958,0.7446431199708593,0.757842562895277,0.7707388788989693,0.7833269096274834,0.795601620036366,0.8075581004051142,0.8191915683009983,0.8304973704919705,0.8414709848078965,0.852108021949363,0.8624042272433384,0.8723554823449863,0.8819578068849475,0.8912073600614354,0.9001004421765051,0.9086334961158832,0.9168031087717669,0.9246060124080203,0.9320390859672263,0.9390993563190676,0.945783999449539,0.9520903415905158,0.9580158602892249,0.963558185417193,0.9687151001182652,0.9734845416953194,0.9778646024353163,0.9818535303723597,0.9854497299884601,0.9886517628517197,0.9914583481916864,0.9938683634116449,0.99588084453764,0.9974949866040544,0.998710143975583,0.9995258306054791,0.9999417202299663,0.9999576464987401,0.9995736030415051,0.998789743470524,0.9976063813191737,0.9960239899165367,0.994043202198076,0.9916648104524686,0.9888897660047015,0.9857191788355535,0.9821543171376185,0.9781966068080447,0.9738476308781951,0.9691091288804563,0.9639829961524481,0.9584712830789142,0.9525761942715953,0.9463000876874145,0.9396454736853249,0.9326150140222005,0.9252115207881683,0.9174379552818098,0.9092974268256817,0.9007931915226273,0.8919286509533796,0.8827073508159741,0.8731329795075164,0.8632093666488737,0.8529404815528762,0.8423304316366457,0.8313834607786831,0.8201039476213741,0.8084964038195901,0.7965654722360865,0.7843159250844198,0.7717526620201259,0.758880708180922,0.7457052121767203,0.7322314440302514,0.7184647930691263,0.7044107657701761,0.6900749835569364,0.675463180551151,0.6605812012792007,0.6454349983343708,0.6300306299958922,0.6143742578057118,0.5984721441039564,0.5823306495240819,0.5659562304487028,0.5493554364271266,0.5325349075556212,0.5155013718214642,0.49826164241183857,0.48082261498864826,0.4631912649303452,0.44537464454187115,0.4273798802338298,0.4092141696720173,0.3908847788984522,0.3723990394250557,0.3537643453011431,0.3349881501559051,0.3160779642170538,0.2970413513068324,0.2778859258165868,0.25861934966111083,0.23924932921398243,0.21978361222511694,0.20022998472177053,0.18059626789423291,0.16089031496745576,0.1411200080598672,0.12129325503062975,0.10141798631660186,0.08150215176026912,0.06155371742991315,0.04158066243329049,0.02159097572609596,0.0015926529164868282,-0.01840630693305381,-0.03839790450523538,-0.058374143427580086,-0.0783270334708653,-0.09824859374510868,-0.11813085589181738,-0.13796586727122684,-0.1577456941432482,-0.17746242484086014,-0.19710817293466984,-0.21667508038737962,-0.236155320696897,-0.2555411020268312,-0.274824670323124,-0.2939983124155676,-0.3130543591029702,-0.3319851882207341,-0.35078322768961984,-0.3694409585444771,-0.3879509179417303,-0.4063057021444168,-0.4244979694835826,-0.44252044329485246,-0.4603659148289983,-0.47802724613534286,-0.4954973729168449,-0.5127693073557238,-0.5298361409084934,-0.5466910470692872,-0.56332728410037,-0.5797381977287428,-0.5959172238077639,-0.6118578909427189,-0.6275538230792933,-0.6429987420539088,-0.6581864701049049,-0.6731109323435617,-0.6877661591839738,-0.7021462887308054,-0.7162455691239705,-0.7300583608392995,-0.7435791389442746,-0.7568024953079282,-0.7697231407640238,-0.7823359072266528,-0.7946357497573968,-0.8066177485832405,-0.8182771110644103,-0.8296091736113709,-0.8406094035501945,-0.8512734009355745,-0.8615969003107405,-0.8715757724135882,-0.8812060258283253,-0.8904838085819885,-0.8994054096851777,-0.9079672606164054,-0.9161659367494549,-0.9239981587231879,-0.9314607937532425,-0.9385508568851079,-0.9452655121880633,-0.9516020738895161,-0.9575580074492711,-0.9631309305733167,-0.9683186141667072,-0.9731189832251739,-0.977530117665097,-0.9815502530915153,-0.9851777815038595,-0.9884112519391305,-0.991249371052267,-0.9936910036334644,-0.9957351730622453,-0.9973810616980933,-0.9986280112074989,-0.999475522827284,-0.9999232575641008,-0.9999710363300245,-0.9996188400141854,-0.9988668094904142,-0.9977152455608933,-0.9961646088358407,-0.9942155195492713,-0.9918687573109126,-0.9891252607943698,-0.9859861273616704,-0.9824526126243325,-0.9785261299411385,-0.9742082498528091,-0.9695006994538088,-0.9644053617015305,-0.9589242746631385,-0.9530596307003677,-0.9468137755926089,-0.9401892075986287,-0.9331885764572976,-0.9258146823277325,-0.918070474669267,-0.9099590510617106,-0.9014836559663548,-0.8926476794282346,-0.8834546557201531,-0.8739082619290224,-0.8640123164850744,-0.8537707776345433,-0.8431877418564167,-0.8322674422239013,-0.821014246711247,-0.8094326564466194,-0.7975273039117043,-0.7853029510887806,-0.7727644875559871,-0.759916928531561,-0.7467654128678123,-0.7333152009956565,-0.7195716728205075,-0.7055403255703919,-0.6912267715971271,-0.6766367361314568,-0.6617760549930376,-0.6466506722561834,-0.6312666378723216,-0.6156301052500863,-0.5997473287940438,-0.5836246614030073,-0.5672685519289686,-0.5506855425976376,-0.5338822663916443,-0.5168654443974288,-0.49964188311690244,-0.48221847174493154,-0.46460217941375737,-0.44680005240543,-0.4288192113333959,-0.41066684829434086,-0.39235022399145386,-0.373876664830236,-0.35525355998804264,-0.3364883584585042,-0.31758856607203484,-0.2985617424935936,-0.27941549819892586,-0.2601574914304689,-0.2407954251341592,-0.22133704387835954,-0.2017901307561289,-0.18216250427209588,-0.1624620152151542,-0.14269654351825858,-0.12287399510655005,-0.10300229873509785,-0.0830894028174964,-0.06314327224661277,-0.04317188520872868,-0.02318322999237945,-0.0031853017931379904,0.016813900484349713,0.03680637742582692,0.05678413230707805,0.07673917429251892,0.09666352163141724,0.11654920485049364,0.13638826994159764,0.1561727815432119,0.175894826114484,0.19554651510054424,0.21511998808781552,0.23460741594807993,0.2540010039700231,0.27329299497701237,0.2924756724298697,0.31154136351337786,0.3304824422053109,0.34929133232673487,0.36796051057238466,0.38648250951987934,0.4048499206165983,0.42305539714299684,0.44109165715120235,0.4589514863776903,0.4766277411288995,0.49411335113860816,0.5114013223959524,0.5284847399429308,0.545356770640302,0.562010665900743,0.5784397643882001,0.5946374946823286,0.6105973779069791,0.6263130303216559,0.6417781658749337,0.6569865987187891,0.6719322456828615,0.6866091287076385,0.7010113772355981,0.7151332305593578,0.7289690401258759,0.7425132717958017,0.7557605080570537,0.7687054501917558,0.78134292039565,0.7936678638491531,0.8056753507392133,0.8173605782311729,0.8287188723898353,0.8397456900489799,0.8504366206285644,0.8607873878989017,0.8707938516910911,0.8804520095530344,0.8897579983503596,0.8987080958116269,0.907298722017184,0.9155264408310896,0.9233879612755189,0.9308801388471136,0.9379999767747389,0.9447446272181538,0.951111392407109,0.957097725720417,0.9627012327045701,0.9679196720314863,0.9727509563950137,0.9771931533458229,0.9812444860643621,0.9849033340715608,0.9881682338770004,0.9910378795642898,0.9935111233134158,0.9955869758598548,0.9972646068902659,0.998543345374605,0.9994226798345279,0.9999022585479752,0.9999818896898556,0.9996615414087742,0.998941341839772,0.9978215790530743,0.9963027009388656,0.9943853150281404,0.992070188249698,0.9893582466233818,0.9862505748896837,0.9827484160758622,0.9788531709987474,0.974566397704435,0.9698898108450863,0.9648252809930913,0.9593748338928642,0.9535406496505743,0.94732506186213,0.9407305566797731,0.9337597718176507,0.9264154954967662,0.9187006653297247,0.9106183671457304,0.9021718337562933,0.893364443662152,0.8841997197019127,0.8746813276429652,0.8648130747152218,0.8545989080882805,0.8440429132926041,0.833149312585366,0.8219224632616022,0.8103668559113548,0.7984871126234903,0.7862879851369292,0.7737743529400134,0.7609512213187744,0.7478237193548898,0.7343970978741133,0.7206767273460181,0.706668095735878,0.6923768063095604,0.6778085753922867,0.6629692300821833,0.6478647059195175,0.6325010445125663,0.6168843911210448,0.6010209921980904,0.5849171928917617,0.5685794345070696,0.5520142519295329,0.5352282710113162,0.5182282059209752,0.5010208564578846,0.4836131053324,0.4660119154128711,0.4482243269405849,0.4302574547137687,0.4121184852417566,0.39381467387048763,0.37535334188046277,0.3567418735583286,0.3379877132432676,0.3190983623493521,0.300081376365085,0.2809443618313018,0.2616949732986626,0.24234091026592378,0.22288991410024764,0.20334976494075557,0.183728278586583,0.1640333033706535,0.14427271702045727,0.1244544235070617,0.10458634988363526,0.08467644311472142,0.06473266689756589,0.04476299847674028,0.024775425453357765,0.0047779425901285115,-0.015221451386431743,-0.03521475698538918,-0.05519397715107451,-0.0751511204618093,-0.09507820432636095,-0.11496725817687455,-0.1348103266569955,-0.15459947280389894,-0.17432678122297965,-0.19398436125389723,-0.2135643501267387,-0.2330589161070144,-0.2524602616282581,-0.27176062641094245,-0.2909522905664908,-0.310027577685123,-0.32897885790632714,-0.347798550970695,-0.3664791292519284,-0.38501312076778266,-0.4033931121687696,-0.42161175170339216,-0.43966175215875003,-0.45753589377532133,-0.4752270271347798,-0.49272807601966023,-0.5100320402437544,-0.527131998452086,-0.5440211108893698,-0.5606926221358159,-0.5771398638092097,-0.5933562572321768,-0.6093353160635608,-0.6250706488928821,-0.6405559617968104,-0.6557850608566536,-0.6707518546358369,-0.6854503566164047,-0.6998746875935423,-0.7140190780271818,-0.7278778703497366,-0.7414455212290604,-0.754716603785701,-0.7676858097635825,-0.7803479516532316,-0.79269796476672,-0.8047309092634671,-0.8164419721261122,-0.8278264690856537,-0.8388798464951,-0.8495976831508637,-0.8599756920611861,-0.8700097221608728,-0.87969575997167,-0.8890299312075992,-0.8980085023246196,-0.9066278820139979,-0.9148846226387806,-0.9227754216128067,-0.9302971227216958,-0.9374467173852933,-0.9442213458610589,-0.9506182983879301,-0.9566350162701879,-0.9622690929009016,-0.9675182747245379,-0.9723804621383559,-0.9768537103322188,-0.9809362300664916,-0.9846263883877127,-0.9879227092817555,-0.9908238742642129,-0.9933287229077736,-0.9954362533063774,-0.997145622475965,-0.99845614669166,-0.9993673017612495,-0.9998787232348542,-0.9999902065507035,-0.9997017071169574,-0.999013340329543,-0.997925381525997,-0.9964382658753349,-0.9945525882039892,-0.9922691027578863,-0.9895887229007582,-0.9865125207488105,-0.9830417267418882,-0.9791777291513174,-0.9749220735246146,-0.9702764620672901,-0.9652427529619856,-0.9598229596252282,-0.954019249902089,-0.9478339451990765,-0.9412695195556018,-0.9343285986543979,-0.92701395877128,-0.9193285256646757,-0.9112753734053557,-0.9028577231468499,-0.8940789418370271,-0.8849425408713638,-0.8754521746884285,-0.865611639308158,-0.8554248708134987,-0.8448959437760262,-0.8340290696261731,-0.8228285949687089,-0.8112989998441588,-0.7994448959368459,-0.7872710247302823,-0.7747822556106337,-0.7619835839190333,-0.7488801289535096,-0.7354771319213411,-0.721779953842635,-0.7077940734059962,-0.6935250847771224,-0.6789786953612167,-0.6641607235200951,-0.6490770962449238,-0.6337338467854989,-0.6181371122370333,-0.6022931310853911,-0.5862082407117828,-0.5698888748578939,-0.5533415610524803,-0.5365729180004349,-0.5195896529353996,-0.5023985589369597,-0.48500651221350166,-0.467420469351827,-0.44964746453460147,-0.43169460672678167,-0.4135690768321209,-0.39527812482090974,-0.376829066830075,-0.3582292822368287,-0.3394862107070128,-0.3206073492193382,-0.3016002490666836,-0.2824725128356853,-0.26323179136580094,-0.24388578068908245,-0.22444221895185537,-0.20490888331957058,-0.18529358686603822,-0.1656041754483094,-0.1458485245684275,-0.1260345362233393,-0.10617013574419806,-0.08626326862634386,-0.06632189735120068,-0.04635399820139722,-0.02636755807035826,-0.006370571267652135,0.013628963678619457,0.033623047221136695,0.053603681993066796,0.07356287600690767,0.09349264585116929,0.11338501988364243,0.13323204141994222,0.15302577191607933,0.17275829414376465,0.1924217153572057,0.21200817045009251,0.23150982510153895,0.25091887890969955,0.2702275685118367,0.28942817068955534,0.3085130054579907,0.32747443913769303,0.34630488740800797,0.3649968183406966,0.38354275541260996,0.40193528049619187,0.4201670368266409,0.4382307319445118,0.4561191406126034,0.4738251077059589,0.4913415510738144,0.5086614643723737,0.5257779198672465,0.5426840712044526,0.5593731561488667,0.5758384992890305,0.592073514707223,0.6080717086137423,0.6238266819443293,0.6393321329197169,0.6545818595662513,0.6695697621966024,0.6842898458495511,0.6987362226879031,0.7129031143535387,0.7267848542786822,0.7403758899524486,0.7536707851417809,0.7666642220658663,0.7793510035231799,0.7917260549702911,0.803784426551621,0.8155212950793129,0.8269319659624454,0.8380118750848066,0.8487565906304755,0.8591618148564958,0.8692233858119117,0.8789372790024943,0.8882996090004825,0.8973066309987074,0.9059547423084618,0.914240483800529,0.9221605412887859,0.9297117468558371,0.9368910801201374,0.9436956694441048,0.9501227930827351,0.9561698802722673,0.9618345122584524,0.9671144232640236,0.9720075013949759,0.9765117894852975,0.9806254858798086,0.9843469451548001,0.9876746787761803,0.9906073556948704,0.9931438028792043,0.9952830057841274,0.9970241087570002,0.9983664153798475,0.9993093887479176,0.9998526516844363,0.999995986891472,0.999739337036853,0.9990828047770997,0.9980266527163617,0.9965713033013819,0.9947173386525218,0.9924655003309216,0.989816689041886,0.9867719642746133,0.9833325438784152,0.9794998035755914,0.9752752764111607,0.9706606521396621,0.9656577765492774,0.9602686507235385,0.9544954302409214,0.9483404243126435,0.9418060948590115,0.934895055524683,0.927610070633246,0.9199540540815249,0.9119300681740611,0.9035413223982337,0.8947911721405042,0.8856831173443083,0.8762208011101247,0.866408008238286,0.8562486637151049,0.8457468311429343,0.8349067111147797,0.8237326395341211,0.8122290858806044,0.8004006514223121,0.7882520673753163,0.7757881930112588,0.7630140137137015,0.7499346389840432,0.7365553003977854,0.722881349511976,0.7089182557246514,0.6946716040871542,0.6801470930701855,0.665350532284497,0.6502878401571168,0.6349650415640629,0.6193882654204708,0.6035637422291094,0.5874978015882668,0.5711968696599886,0.5546674665997031,0.5379162039482439,0.5209497819873273,0.5037749870595203,0.48639868885379967,0.4688278376577654,0.45106946157762406,0.433130663727031,0.41501861938594564,0.39674057313061206,0.37830383593583167,0.3597157822506608,0.3409838470487362,0.32211552285438105,0.30311835674570226,0.2839999473358494,0.2647679417336776,0.24543003248500284,0.22599395449569257,0.2064674819377966,0.18685842513998854,0.16717462746353695,0.1474239621650635,0.1276143292473524,0.10775365229944406,0.08784987532731216,0.06791095957636362,0.04794488034705369,0.02795962380486148,0.007963183785937343,-0.012036441400328576,-0.03203125217051633,-0.05201325086691355,-0.07197444495646477,-0.09190685022768164,-0.111802493984214,-0.13165341823383273,-0.15145168287151342,-0.1711893688553761,-0.19085858137418937,-0.21045145300520013,-0.22996014686099078,-0.24937685972413315,-0.2686938251683646,-0.2879033166650653,-0.30699765067375967,-0.325969189715432,-0.344810345427416,-0.3635135815986391,-0.3820714171840091,-0.4004764292967199,-0.4187212561773265,-0.4367986001383378,-0.4547012304831975,-0.47242198639846616,-0.48995377981805127,-0.5072895982583391,-0.5244225076230978,-0.541345654977011,-0.5580522712867794,-0.5745356741286307,-0.5907892703612041,-0.6068065587627183,-0.6225811326313736,-0.6381066823479474,-0.6533769978995605,-0.6683859713635882,-0.6831275993507646,-0.6975959854064472,-0.711785342369123,-0.725689994685196,-0.7393043806791324,-0.7526230547780575,-0.7656406896899116,-0.7783520785342984,-0.7907521369251587,-0.8028359050044701,-0.8145985494261156,-0.8260353652891601,-0.8371417780197468,-0.8479133452008673,-0.8583457583492679,-0.8684348446387881,-0.8781765685694277,-0.8875670335815046,-0.896602483614218,-0.9052793046080263,-0.9135940259502211,-0.9215433218631272,-0.9291240127343684,-0.9363330663886722,-0.9431675993006936,-0.9496248777483951,-0.9557023189064934,-0.9613974918795568,-0.9667081186743308,-0.9716320751109048,-0.976167391672356,-0.98031225429253,-0.9840650050816434,-0.9874241429894153,-0.990388324405471,-0.9929563636967662,-0.9951272336818244,-0.9969000660415961,-0.9982741516667748,-0.9992489409414314,-0.999824043962853,-0.999999230697499,-0.9997744310730111,-0.9991497350062422,-0.9981253923672896,-0.9967018128795512,-0.9948795659558413,-0.9926593804706332,-0.9900421444685181,-0.9870289048090022,-0.9836208667477725,-0.9798193934546138,-0.9756260054681576,-0.9710423800876874,-0.9660703507022413,-0.9607119060572806,-0.9549691894592184,-0.948844497918124,-0.9423402812289547,-0.9354591409916635,-0.9282038295705979,-0.9205772489935901,-0.9125824497911845,-0.9042226297764662,-0.8955011327659783,-0.8864214472422384,-0.8769872049583981,-0.8672021794855813,-0.857070284703512,-0.8465955732350126,-0.8357822348250097,-0.8246345946646914,-0.8131571116614885,-0.8013543766555692,-0.7892311105835722,-0.7767921625902832,-0.7640425080890486,-0.7509872467716762,-0.7376316005686248,-0.7239809115603028,-0.7100406398403069,-0.6958163613314571,-0.6813137655554999,-0.6665386533573856,-0.6514969345849919,-0.6361946257252742,-0.6206378474977482,-0.6048328224062841,-0.5887858722501876,-0.5725034155955647,-0.5559919652079778,-0.5392581254474379,-0.5223085896267315,-0.5051501373341961,-0.4877896317219724,-0.470234016760835,-0.4524903144626965,-0.43456562207189675,-0.416467109226396,-0.39820201509002867,-0.3797776454569147,-0.36120136982925244,-0.34248061846961253,-0.3236228794289322,-0.3046356955513944,-0.2855266614573912,-0.2663034205057765,-0.2469736617366209,-0.22754511679571235,-0.20802555684197996,-0.1884227894391479,-0.16874465543281056,-0.1489990258141988,-0.1291937985718886,-0.10933689553271062,-0.08943625919312187,-0.06949984954232695,-0.04953564087836742,-0.029551618618522943,-0.009555776105247387,0.010443888591061618,0.03043937587118419,0.05042268780681122,0.07038583133961261,0.09032082147833985,0.11021968449273732,0.1300744611029139,0.14987720966295234,0.16962000933746174,0.18929496326980613,0.2088942017407418,0.22840988531620005,0.24783420798295983,0.267159400270935,0.2863777323608796,0.30548151717619876,0.32446311345768003,0.3433149288198954,0.36202942278805417,0.3805991098140923,0.3990165622707952,0.4172744134227364,0.4353653603728932,0.45328216698369495,0.4710176667713848,0.48856476577251795,0.5059164453814522,0.5230657651576964,0.5400058656019978,0.5567299709000376,0.5732313916326848,0.5895035274516621,0.605539869719601,0.6213340041134094,0.6368796131899154,0.6521704789127603,0.6672004851395306,0.6819636200681356,0.6964539786414377,0.7106657649092124,0.7245932943464407,0.7382309961270456,0.7515734153521483,0.7646152152319554,0.7773511792204034,0.7897762131017096,0.8018853470279821,0.8136737375071054,0.8251366693400644,0.8362695575069629,0.8470679490009708,0.857527524609467,0.8676441006416673,0.8774136306020465,0.8868322068088755,0.8958960619572528,0.9046015706259687]},\"selected\":{\"id\":\"1184\"},\"selection_policy\":{\"id\":\"1183\"}},\"id\":\"1157\",\"type\":\"ColumnDataSource\"},{\"attributes\":{},\"id\":\"1012\",\"type\":\"LinearScale\"},{\"attributes\":{},\"id\":\"1026\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"1142\",\"type\":\"ResetTool\"},{\"attributes\":{\"axis_label\":\"x [m]\",\"formatter\":{\"id\":\"1047\"},\"major_label_policy\":{\"id\":\"1049\"},\"ticker\":{\"id\":\"1015\"}},\"id\":\"1014\",\"type\":\"LinearAxis\"},{\"attributes\":{\"line_alpha\":0.1,\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1038\",\"type\":\"Line\"},{\"attributes\":{\"line_color\":\"#1f77b4\",\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1037\",\"type\":\"Line\"},{\"attributes\":{},\"id\":\"1023\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"overlay\":{\"id\":\"1028\"}},\"id\":\"1024\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"1010\",\"type\":\"LinearScale\"},{\"attributes\":{\"start\":0.5},\"id\":\"1321\",\"type\":\"Range1d\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":0.5,\"fill_color\":\"lightgrey\",\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":1.0,\"line_color\":\"black\",\"line_dash\":[4,4],\"line_width\":2,\"right_units\":\"screen\",\"syncable\":false,\"top_units\":\"screen\"},\"id\":\"1028\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"below\":[{\"id\":\"1130\"}],\"center\":[{\"id\":\"1133\"},{\"id\":\"1137\"}],\"left\":[{\"id\":\"1134\"}],\"renderers\":[{\"id\":\"1155\"},{\"id\":\"1160\"}],\"title\":{\"id\":\"1120\"},\"toolbar\":{\"id\":\"1145\"},\"toolbar_location\":null,\"x_range\":{\"id\":\"1296\"},\"x_scale\":{\"id\":\"1126\"},\"y_range\":{\"id\":\"1321\"},\"y_scale\":{\"id\":\"1128\"}},\"id\":\"1119\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"1015\",\"type\":\"BasicTicker\"},{\"attributes\":{\"toolbar\":{\"id\":\"1373\"},\"toolbar_location\":\"above\"},\"id\":\"1374\",\"type\":\"ToolbarBox\"},{\"attributes\":{\"end\":-0.5,\"start\":-1},\"id\":\"1246\",\"type\":\"Range1d\"},{\"attributes\":{},\"id\":\"1126\",\"type\":\"LinearScale\"},{\"attributes\":{\"children\":[[{\"id\":\"1003\"},0,0],[{\"id\":\"1119\"},0,1]]},\"id\":\"1372\",\"type\":\"GridBox\"},{\"attributes\":{\"axis_label\":\"y [m]\",\"formatter\":{\"id\":\"1050\"},\"major_label_policy\":{\"id\":\"1052\"},\"ticker\":{\"id\":\"1019\"}},\"id\":\"1018\",\"type\":\"LinearAxis\"},{\"attributes\":{\"end\":-0.5,\"start\":-1},\"id\":\"1296\",\"type\":\"Range1d\"},{\"attributes\":{\"text\":\"Trajectory tracking problem\"},\"id\":\"1120\",\"type\":\"Title\"},{\"attributes\":{\"overlay\":{\"id\":\"1144\"}},\"id\":\"1140\",\"type\":\"BoxZoomTool\"},{\"attributes\":{},\"id\":\"1019\",\"type\":\"BasicTicker\"},{\"attributes\":{},\"id\":\"1056\",\"type\":\"Selection\"},{\"attributes\":{\"data\":{\"x\":[0.0,0.009999833334166664,0.01999866669333308,0.02999550020249566,0.03998933418663416,0.04997916927067833,0.059964006479444595,0.06994284733753277,0.0799146939691727,0.08987854919801104,0.09983341664682815,0.10977830083717481,0.11971220728891936,0.12963414261969486,0.1395431146442365,0.14943813247359922,0.15931820661424598,0.16918234906699603,0.17902957342582418,0.18885889497650057,0.19866933079506122,0.20845989984609956,0.21822962308086932,0.2279775235351884,0.23770262642713458,0.24740395925452294,0.2570805518921551,0.26673143668883115,0.27635564856411376,0.28595222510483553,0.29552020666133955,0.3050586364434435,0.31456656061611776,0.32404302839486837,0.3334870921408144,0.34289780745545134,0.35227423327508994,0.361615431964962,0.3709204694129827,0.3801884151231614,0.3894183423086505,0.3986093279844229,0.40776045305957015,0.41687080242921076,0.4259394650659996,0.43496553411123023,0.4439481069655198,0.4528862853790683,0.46177917554148284,0.470625888171158,0.479425538604203,0.4881772468829075,0.49688013784373675,0.5055333412048469,0.5141359916531131,0.5226872289306592,0.5311861979208834,0.5396320487339692,0.5480239367918736,0.5563610229127838,0.5646424733950354,0.5728674601004813,0.5810351605373051,0.5891447579422695,0.5971954413623921,0.6051864057360395,0.6131168519734338,0.6209859870365597,0.6287930240184686,0.6365371822219679,0.644217687237691,0.6518337710215366,0.6593846719714731,0.6668696350036979,0.674287911628145,0.6816387600233341,0.6889214451105513,0.6961352386273567,0.7032794192004103,0.7103532724176078,0.7173560908995228,0.7242871743701426,0.7311458297268958,0.7379313711099627,0.7446431199708593,0.7512804051402927,0.757842562895277,0.7643289370255051,0.7707388788989693,0.7770717475268238,0.7833269096274834,0.7895037396899505,0.795601620036366,0.8016199408837772,0.8075581004051142,0.8134155047893737,0.8191915683009983,0.8248857133384501,0.8304973704919705,0.8360259786005205,0.8414709848078965,0.8468318446180152,0.852108021949363,0.8572989891886034,0.8624042272433384,0.867423225594017,0.8723554823449863,0.8772005042746817,0.8819578068849475,0.8866269144494873,0.8912073600614354,0.8956986856800476,0.9001004421765051,0.9044121893788258,0.9086334961158832,0.912763940260521,0.9168031087717669,0.9207505977361357,0.9246060124080203,0.9283689672491666,0.9320390859672263,0.935616001553386,0.9390993563190676,0.9424888019316975,0.945783999449539,0.9489846193555862,0.9520903415905158,0.9551008555846923,0.9580158602892249,0.9608350642060727,0.963558185417193,0.966184951612734,0.9687151001182652,0.9711483779210446,0.9734845416953194,0.9757233578266591,0.9778646024353163,0.9799080613986142,0.9818535303723597,0.9837008148112766,0.9854497299884601,0.9871001010138504,0.9886517628517197,0.9901045603371778,0.9914583481916864,0.9927129910375885,0.9938683634116449,0.9949243497775809,0.99588084453764,0.9967377520431434,0.9974949866040544,0.9981524724975481,0.998710143975583,0.999167945271476,0.9995258306054791,0.999783764189357,0.9999417202299663,0.9999996829318346,0.9999576464987401,0.9998156151342908,0.9995736030415051,0.9992316344213905,0.998789743470524,0.9982479743776325,0.9976063813191737,0.9968650284539189,0.9960239899165367,0.9950833498101802,0.994043202198076,0.9929036510941185,0.9916648104524686,0.990326804156158,0.9888897660047015,0.9873538397007164,0.9857191788355535,0.9839859468739369,0.9821543171376185,0.9802244727880455,0.9781966068080447,0.9760709219825242,0.9738476308781951,0.9715269558223153,0.9691091288804563,0.9665943918332975,0.9639829961524481,0.9612752029752999,0.9584712830789142,0.955571516852944,0.9525761942715953,0.9494856148646305,0.9463000876874145,0.9430199312900106,0.9396454736853249,0.9361770523163061,0.9326150140222005,0.9289597150038693,0.9252115207881683,0.9213708061913954,0.9174379552818098,0.9134133613412252,0.9092974268256817,0.905090563325201,0.9007931915226273,0.89640574115156,0.8919286509533796,0.8873623686333755,0.8827073508159741,0.8779640629990781,0.8731329795075164,0.8682145834456126,0.8632093666488737,0.8581178296348089,0.8529404815528762,0.8476778401335698,0.8423304316366457,0.8368987907984977,0.8313834607786831,0.8257849931056082,0.8201039476213741,0.814340892425796,0.8084964038195901,0.8025710662467472,0.7965654722360865,0.7904802223420048,0.7843159250844198,0.7780731968879212,0.7717526620201259,0.7653549525292535,0.758880708180922,0.7523305763941708,0.7457052121767203,0.7390052780594708,0.7322314440302514,0.7253843874668195,0.7184647930691263,0.7114733527908443,0.7044107657701761,0.6972777382599378,0.6900749835569364,0.6828032219306397,0.675463180551151,0.6680555934164909,0.6605812012792007,0.6530407515722648,0.6454349983343708,0.6377647021345036,0.6300306299958922,0.6222335553193046,0.6143742578057118,0.6064535233783147,0.5984721441039564,0.590430918113913,0.5823306495240819,0.5741721483545726,0.5659562304487028,0.557683717391417,0.5493554364271266,0.5409722203769886,0.5325349075556212,0.5240443416872761,0.5155013718214642,0.5069068522480534,0.49826164241183857,0.4895666068265995,0.48082261498864826,0.47203054128988264,0.4631912649303452,0.45430566983030646,0.44537464454187115,0.4363990821601263,0.4273798802338298,0.418317940675659,0.4092141696720173,0.4000694775924195,0.3908847788984522,0.3816609920523317,0.3723990394250557,0.3630998472041683,0.3537643453011431,0.34439346725839,0.3349881501559051,0.32554933451756,0.3160779642170538,0.30657498638352293,0.2970413513068324,0.2874780123425444,0.2778859258165868,0.2682660509296179,0.25861934966111083,0.24894678667315256,0.23924932921398243,0.2295279470212642,0.21978361222511694,0.21001729925089915,0.20022998472177053,0.19042264736102704,0.18059626789423291,0.17075182895114532,0.16089031496745576,0.15101271208634384,0.1411200080598672,0.13121319215018423,0.12129325503062975,0.11136118868665001,0.10141798631660186,0.0914646422324372,0.08150215176026912,0.0715315111408437,0.06155371742991315,0.05156976839853464,0.04158066243329049,0.031587398436453896,0.02159097572609596,0.011592393936158275,0.0015926529164868282,-0.008407247367148618,-0.01840630693305381,-0.02840352588360379,-0.03839790450523538,-0.04838844336841415,-0.058374143427580086,-0.06835400612104778,-0.0783270334708653,-0.0882922281826076,-0.09824859374510868,-0.10819513453010837,-0.11813085589181738,-0.12805476426637968,-0.13796586727122684,-0.14786317380431852,-0.1577456941432482,-0.16761244004421832,-0.17746242484086014,-0.18729466354290317,-0.19710817293466984,-0.20690197167339974,-0.21667508038737962,-0.22642652177388314,-0.236155320696897,-0.24586050428463702,-0.2555411020268312,-0.26519614587177337,-0.274824670323124,-0.28442571253646254,-0.2939983124155676,-0.30354151270842933,-0.3130543591029702,-0.322535900322479,-0.3319851882207341,-0.34140127787682095,-0.35078322768961984,-0.36013009947196817,-0.3694409585444771,-0.3787148738289976,-0.3879509179417303,-0.3971481672859598,-0.4063057021444168,-0.4154226067712459,-0.4244979694835826,-0.43353088275271773,-0.44252044329485246,-0.45146575216142315,-0.4603659148289983,-0.46922004128872713,-0.47802724613534286,-0.48678664865569937,-0.4954973729168449,-0.5041585478536115,-0.5127693073557238,-0.5213287903544065,-0.5298361409084934,-0.5382905082900176,-0.5466910470692872,-0.5550369171994238,-0.56332728410037,-0.5715613187423437,-0.5797381977287428,-0.5878571033784827,-0.5959172238077639,-0.6039177530112606,-0.6118578909427189,-0.6197368435949633,-0.6275538230792933,-0.6353080477042756,-0.6429987420539088,-0.6506251370651673,-0.6581864701049049,-0.6656819850461192,-0.6731109323435617,-0.680472569108694,-0.6877661591839738,-0.694990973216472,-0.7021462887308054,-0.7092313902013861,-0.7162455691239705,-0.7231881240865121,-0.7300583608392995,-0.7368555923643832,-0.7435791389442746,-0.7502283282299189,-0.7568024953079282,-0.7633009827670734,-0.7697231407640238,-0.7760683270883323,-0.7823359072266528,-0.788525254426195,-0.7946357497573968,-0.8006667821758177,-0.8066177485832405,-0.8124880538879843,-0.8182771110644103,-0.8239843412116258,-0.8296091736113709,-0.8351510457850935,-0.8406094035501945,-0.8459837010754465,-0.8512734009355745,-0.8564779741650012,-0.8615969003107405,-0.8666296674844443,-0.8715757724135882,-0.8764347204918014,-0.8812060258283253,-0.8858892112966027,-0.8904838085819885,-0.8949893582285835,-0.8994054096851777,-0.9037315213503053,-0.9079672606164054,-0.9121122039130803,-0.9161659367494549,-0.9201280537556237,-0.9239981587231879,-0.9277758646448755,-0.9314607937532425,-0.9350525775584491,-0.9385508568851079,-0.941955281908201,-0.9452655121880633,-0.9484812167044256,-0.9516020738895161,-0.9546277716602164,-0.9575580074492711,-0.9603924882355434,-0.9631309305733167,-0.9657730606206388,-0.9683186141667072,-0.9707673366582883,-0.9731189832251739,-0.9753733187046665,-0.977530117665097,-0.9795891644283669,-0.9815502530915153,-0.9834131875473108,-0.9851777815038595,-0.9868438585032365,-0.9884112519391305,-0.9898798050735039,-0.991249371052267,-0.9925198129199632,-0.9936910036334644,-0.9947628260746756,-0.9957351730622453,-0.9966079473622855,-0.9973810616980933,-0.9980544387588794,-0.9986280112074989,-0.9991017216871848,-0.999475522827284,-0.999749377247994,-0.9999232575641008,-0.999997146387718,-0.9999710363300245,-0.9998449300020044,-0.9996188400141854,-0.999292788975378,-0.9988668094904142,-0.9983409441568876,-0.9977152455608933,-0.9969897762717695,-0.9961646088358407,-0.9952398257691627,-0.9942155195492713,-0.9930917926059354,-0.9918687573109126,-0.9905465359667133,-0.9891252607943698,-0.9876050739202153,-0.9859861273616704,-0.9842685830120416,-0.9824526126243325,-0.9805383977940689,-0.9785261299411385,-0.9764160102906497,-0.9742082498528091,-0.9719030694018208,-0.9695006994538088,-0.967001380243766,-0.9644053617015305,-0.9617129034267934,-0.9589242746631385,-0.9560397542711181,-0.9530596307003677,-0.9499842019607608,-0.9468137755926089,-0.9435486686359066,-0.9401892075986287,-0.9367357284240789,-0.9331885764572976,-0.9295481064105251,-0.9258146823277325,-0.9219886775482163,-0.918070474669267,-0.914060465507907,-0.9099590510617106,-0.9057666414687044,-0.9014836559663548,-0.8971105228496424,-0.8926476794282346,-0.8880955719827542,-0.8834546557201531,-0.8787253947281899,-0.8739082619290224,-0.8690037390319161,-0.8640123164850744,-0.858934493426592,-0.8537707776345433,-0.8485216854762045,-0.8431877418564167,-0.8377694801650978,-0.8322674422239013,-0.8266821782320363,-0.821014246711247,-0.8152642144499634,-0.8094326564466194,-0.8035201558521559,-0.7975273039117043,-0.791454699905466,-0.7853029510887806,-0.7790726726314031,-0.7727644875559871,-0.7663790266757843,-0.759916928531561,-0.7533788393277465,-0.7467654128678123,-0.7400773104888944,-0.7333152009956565,-0.726479760593413,-0.7195716728205075,-0.7125916284799615,-0.7055403255703919,-0.6984184692162135,-0.6912267715971271,-0.6839659518769006,-0.6766367361314568,-0.669239857276262,-0.6617760549930376,-0.6542460756557914,-0.6466506722561834,-0.6389906043282237,-0.6312666378723216,-0.6234795452786853,-0.6156301052500863,-0.6077191027239858,-0.5997473287940438,-0.5917155806310094,-0.5836246614030073,-0.5754753801952172,-0.5672685519289686,-0.5590049972802488,-0.5506855425976376,-0.5423110198196698,-0.5338822663916443,-0.5254001251818792,-0.5168654443974288,-0.5082790774992583,-0.49964188311690244,-0.49095472496260173,-0.48221847174493154,-0.47343399708193507,-0.46460217941375737,-0.4557239019148055,-0.44680005240543,-0.4378315232631469,-0.4288192113333959,-0.41976401783985967,-0.41066684829434086,-0.4015286124062146,-0.39235022399145386,-0.38313260088125134,-0.373876664830236,-0.3645833414243013,-0.35525355998804264,-0.34588825349182883,-0.3364883584585042,-0.32705481486974064,-0.31758856607203484,-0.3080905586823781,-0.2985617424935936,-0.2890030703793611,-0.27941549819892586,-0.26979998470151617,-0.2601574914304689,-0.2504889826270749,-0.2407954251341592,-0.23107778829939224,-0.22133704387835954,-0.21157416593738504,-0.2017901307561289,-0.19198591672995502,-0.18216250427209588,-0.17232087571561025,-0.1624620152151542,-0.15258690864856114,-0.14269654351825858,-0.13279190885251674,-0.12287399510655005,-0.11294379406346737,-0.10300229873509785,-0.0930505032626889,-0.0830894028174964,-0.07311999350126308,-0.06314327224661277,-0.053160236717356125,-0.04317188520872868,-0.03317921654755682,-0.02318322999237945,-0.01318492513352214,-0.0031853017931379904,0.006814640074770176,0.016813900484349713,0.026811479517892353,0.03680637742582692,0.04679759472668989,0.05678413230707805,0.06676499152155546,0.07673917429251892,0.08670568321000133,0.09666352163141724,0.10661169378122266,0.11654920485049364,0.1264750610964027,0.13638826994159764,0.14628784007345494,0.1561727815432119,0.1660421058649572,0.175894826114484,0.18572995702797787,0.19554651510054424,0.2053435186845546,0.21511998808781552,0.2248749456715337,0.23460741594807993,0.24431642567853773,0.2540010039700231,0.2636601823727784,0.27329299497701237,0.28289847850949296,0.2924756724298697,0.30202361902673236,0.31154136351337786,0.32102795412328977,0.3304824422053109,0.3399038823185127,0.34929133232673487,0.35864385349280037,0.36796051057238466,0.3772403719075444,0.38648250951987934,0.3956859992033308,0.4048499206165983,0.413973357375178,0.42305539714299684,0.43209513172364716,0.44109165715120235,0.4500440737806176,0.4589514863776903,0.4678130042085835,0.4766277411288995,0.48539481567229026,0.49411335113860816,0.502782475681572,0.5114013223959524,0.5199690294042587,0.5284847399429308,0.536947602448011,0.545356770640302,0.5537114036099907,0.562010665900743,0.570253727593246,0.5784397643882001,0.5865679576887464,0.5946374946823286,0.6026475684219723,0.6105973779069791,0.618486128163024,0.6263130303216559,0.6340773016991814,0.6417781658749337,0.6494148527689112,0.6569865987187891,0.664492646556282,0.6719322456828615,0.6793046521448148,0.6866091287076385,0.6938449449297637,0.7010113772355981,0.7081077089878838,0.7151332305593578,0.7220872394037184,0.7289690401258759,0.7357779445514936,0.7425132717958017,0.7491743483316894,0.7557605080570537,0.7622710923614112,0.7687054501917558,0.775062938117667,0.78134292039565,0.7875447690327109,0.7936678638491531,0.7997115925405982,0.8056753507392133,0.8115585420741488,0.8173605782311729,0.8230808790115055,0.8287188723898353,0.834273994571523,0.8397456900489799,0.8451334116572173,0.8504366206285644,0.8556547866465435,0.8607873878989017,0.8658339111297899,0.8707938516910911,0.8756667135928823,0.8804520095530344,0.8851492610459383,0.8897579983503596,0.8942777605964084,0.8987080958116269,0.9030485609661848,0.907298722017184,0.9114581539520613,0.9155264408310896,0.9195031758289707,0.9233879612755189,0.927180408695427,0.9308801388471136,0.934486781760646,0.9379999767747389,0.9414193725728183,0.9447446272181538,0.9479754081880525,0.951111392407109,0.9541522662795148,0.957097725720417,0.9599474761863261,0.9627012327045701,0.9653587199017918,0.9679196720314863,0.970383833000575,0.9727509563950137,0.9750208055044363,0.9771931533458229,0.9792677826862,0.9812444860643621,0.9831230658116188,0.9849033340715608,0.9865851128188459,0.9881682338770004,0.989652538935238,0.9910378795642898,0.9923241172312475,0.9935111233134158,0.9945987791111761,0.9955869758598548,0.9964756147406005,0.9972646068902659,0.9979538734102932,0.998543345374605,0.9990329638364959,0.9994226798345279,0.999712454397426,0.9999022585479752,0.9999920733059188,0.9999818896898556,0.999871708718139,0.9996615414087742,0.999351408778317,0.998941341839772,0.9984313815994914,0.9978215790530743,0.997111995180267,0.9963027009388656,0.9953937772576199,0.9943853150281404,0.9932774150958098,0.992070188249698,0.9907637552114835,0.9893582466233818,0.9878538030350801,0.9862505748896837,0.9845487225086711,0.9827484160758622,0.9808498356203995,0.9788531709987474,0.9767586218757036,0.974566397704435,0.972276717705532,0.9698898108450863,0.9674059158117949,0.9648252809930913,0.9621481644503063,0.9593748338928642,0.9565055666515091,0.9535406496505743,0.9504803793792889,0.94732506186213,0.9440750126282197,0.9407305566797731,0.9372920284595976,0.9337597718176507,0.9301341399766526,0.9264154954967662,0.9226042102393402,0.9187006653297247,0.9147052511191576,0.9106183671457304,0.9064404220944348,0.9021718337562933,0.8978130289865844,0.893364443662152,0.888826522637821,0.8841997197019127,0.8794844975308649,0.8746813276429652,0.8697906903511999,0.8648130747152218,0.8597489784924482,0.8545989080882805,0.8493633785054673,0.8440429132926041,0.8386380444917783,0.833149312585366,0.827577266441984,0.8219224632616022,0.8161854685198283,0.8103668559113548,0.8044672072925937,0.7984871126234903,0.7924271699085284,0.7862879851369292,0.7800701722220543,0.7737743529400134,0.7674011568674872,0.7609512213187744,0.7544251912820534,0.7478237193548898,0.7411474656789752,0.7343970978741133,0.7275732909714597,0.7206767273460181,0.7137080966484024,0.706668095735878,0.699557428602668,0.6923768063095604,0.6851269469128006,0.6778085753922867,0.6704224235790722,0.6629692300821833,0.6554497402147573,0.6478647059195175,0.6402148856935712,0.6325010445125663,0.6247239537541924,0.6168843911210448,0.6089831405628535,0.6010209921980904,0.5929987422349565,0.5849171928917617,0.5767771523167085,0.5685794345070696,0.5603248592277947,0.5520142519295329,0.5436484436660883,0.5352282710113162,0.5267545759754648,0.5182282059209752,0.5096500134777504,0.5010208564578846,0.49234159776988917,0.4836131053324,0.47483625198738716,0.4660119154128711,0.4571409780351558,0.4482243269405849,0.4392628537868406,0.4302574547137687,0.42120903025377215,0.4121184852417566,0.40298672872464775,0.39381467387048763,0.38460323787711825,0.37535334188046277,0.366065910862411,0.3567418735583286,0.34738216236417424,0.3379877132432676,0.32855946563269217,0.3190983623493521,0.3096053494956915,0.300081376365085,0.2905273953469072,0.2809443618313018,0.27133323411363275,0.2616949732986626,0.252030543204441,0.24234091026592378,0.23262704343833002,0.22288991410024764,0.2131304959564945,0.20334976494075557,0.19354869911798017,0.183728278586583,0.17388948538043356,0.1640333033706535,0.15416071816723032,0.14427271702045727,0.13437028872220905,0.1244544235070617,0.11452611295327708,0.10458634988363526,0.09463612826616005,0.08467644311472142,0.07470829038953478,0.06473266689756589,0.054750570192850956,0.04476299847674028,0.03477095049808608,0.024775425453357765,0.014777422886730236,0.0047779425901285115,-0.005222015496750621,-0.015221451386431743,-0.02521936514365872,-0.03521475698538918,-0.045206627380764856,-0.05519397715107451,-0.0651758075696639,-0.0751511204618093,-0.08511891830453426,-0.09507820432636095,-0.10502798260698659,-0.11496725817687455,-0.12489503711675232,-0.1348103266569955,-0.14471213527691454,-0.15459947280389894,-0.16447135051243542,-0.17432678122297965,-0.1841647794006734,-0.19398436125389723,-0.20378454483265052,-0.2135643501267387,-0.2233227991637839,-0.2330589161070144,-0.24277172735284935,-0.2524602616282581,-0.2621235500878869,-0.27176062641094245,-0.28137052689782505,-0.2909522905664908,-0.30050495924855936,-0.310027577685123,-0.31951919362227366,-0.32897885790632714,-0.33840562457873813,-0.347798550970695,-0.35715669779738596,-0.3664791292519284,-0.3757649130989423,-0.38501312076778266,-0.39422282744538945,-0.4033931121687696,-0.4125230579170927,-0.42161175170339216,-0.43065828466586326,-0.43966175215875003,-0.44862125384280294,-0.45753589377532133,-0.4664047804997409,-0.4752270271347798,-0.4840017514631264,-0.49272807601966023,-0.5014051281791974,-0.5100320402437544,-0.5186079495293108,-0.527131998452086,-0.5356033346142913],\"y\":[0.0,0.01999866669333308,0.03998933418663416,0.059964006479444595,0.0799146939691727,0.09983341664682815,0.11971220728891936,0.1395431146442365,0.15931820661424598,0.17902957342582418,0.19866933079506122,0.21822962308086932,0.23770262642713458,0.2570805518921551,0.27635564856411376,0.29552020666133955,0.31456656061611776,0.3334870921408144,0.35227423327508994,0.3709204694129827,0.3894183423086505,0.40776045305957015,0.4259394650659996,0.4439481069655198,0.46177917554148284,0.479425538604203,0.49688013784373675,0.5141359916531131,0.5311861979208834,0.5480239367918736,0.5646424733950354,0.5810351605373051,0.5971954413623921,0.6131168519734338,0.6287930240184686,0.644217687237691,0.6593846719714731,0.674287911628145,0.6889214451105513,0.7032794192004103,0.7173560908995228,0.7311458297268958,0.7446431199708593,0.757842562895277,0.7707388788989693,0.7833269096274834,0.795601620036366,0.8075581004051142,0.8191915683009983,0.8304973704919705,0.8414709848078965,0.852108021949363,0.8624042272433384,0.8723554823449863,0.8819578068849475,0.8912073600614354,0.9001004421765051,0.9086334961158832,0.9168031087717669,0.9246060124080203,0.9320390859672263,0.9390993563190676,0.945783999449539,0.9520903415905158,0.9580158602892249,0.963558185417193,0.9687151001182652,0.9734845416953194,0.9778646024353163,0.9818535303723597,0.9854497299884601,0.9886517628517197,0.9914583481916864,0.9938683634116449,0.99588084453764,0.9974949866040544,0.998710143975583,0.9995258306054791,0.9999417202299663,0.9999576464987401,0.9995736030415051,0.998789743470524,0.9976063813191737,0.9960239899165367,0.994043202198076,0.9916648104524686,0.9888897660047015,0.9857191788355535,0.9821543171376185,0.9781966068080447,0.9738476308781951,0.9691091288804563,0.9639829961524481,0.9584712830789142,0.9525761942715953,0.9463000876874145,0.9396454736853249,0.9326150140222005,0.9252115207881683,0.9174379552818098,0.9092974268256817,0.9007931915226273,0.8919286509533796,0.8827073508159741,0.8731329795075164,0.8632093666488737,0.8529404815528762,0.8423304316366457,0.8313834607786831,0.8201039476213741,0.8084964038195901,0.7965654722360865,0.7843159250844198,0.7717526620201259,0.758880708180922,0.7457052121767203,0.7322314440302514,0.7184647930691263,0.7044107657701761,0.6900749835569364,0.675463180551151,0.6605812012792007,0.6454349983343708,0.6300306299958922,0.6143742578057118,0.5984721441039564,0.5823306495240819,0.5659562304487028,0.5493554364271266,0.5325349075556212,0.5155013718214642,0.49826164241183857,0.48082261498864826,0.4631912649303452,0.44537464454187115,0.4273798802338298,0.4092141696720173,0.3908847788984522,0.3723990394250557,0.3537643453011431,0.3349881501559051,0.3160779642170538,0.2970413513068324,0.2778859258165868,0.25861934966111083,0.23924932921398243,0.21978361222511694,0.20022998472177053,0.18059626789423291,0.16089031496745576,0.1411200080598672,0.12129325503062975,0.10141798631660186,0.08150215176026912,0.06155371742991315,0.04158066243329049,0.02159097572609596,0.0015926529164868282,-0.01840630693305381,-0.03839790450523538,-0.058374143427580086,-0.0783270334708653,-0.09824859374510868,-0.11813085589181738,-0.13796586727122684,-0.1577456941432482,-0.17746242484086014,-0.19710817293466984,-0.21667508038737962,-0.236155320696897,-0.2555411020268312,-0.274824670323124,-0.2939983124155676,-0.3130543591029702,-0.3319851882207341,-0.35078322768961984,-0.3694409585444771,-0.3879509179417303,-0.4063057021444168,-0.4244979694835826,-0.44252044329485246,-0.4603659148289983,-0.47802724613534286,-0.4954973729168449,-0.5127693073557238,-0.5298361409084934,-0.5466910470692872,-0.56332728410037,-0.5797381977287428,-0.5959172238077639,-0.6118578909427189,-0.6275538230792933,-0.6429987420539088,-0.6581864701049049,-0.6731109323435617,-0.6877661591839738,-0.7021462887308054,-0.7162455691239705,-0.7300583608392995,-0.7435791389442746,-0.7568024953079282,-0.7697231407640238,-0.7823359072266528,-0.7946357497573968,-0.8066177485832405,-0.8182771110644103,-0.8296091736113709,-0.8406094035501945,-0.8512734009355745,-0.8615969003107405,-0.8715757724135882,-0.8812060258283253,-0.8904838085819885,-0.8994054096851777,-0.9079672606164054,-0.9161659367494549,-0.9239981587231879,-0.9314607937532425,-0.9385508568851079,-0.9452655121880633,-0.9516020738895161,-0.9575580074492711,-0.9631309305733167,-0.9683186141667072,-0.9731189832251739,-0.977530117665097,-0.9815502530915153,-0.9851777815038595,-0.9884112519391305,-0.991249371052267,-0.9936910036334644,-0.9957351730622453,-0.9973810616980933,-0.9986280112074989,-0.999475522827284,-0.9999232575641008,-0.9999710363300245,-0.9996188400141854,-0.9988668094904142,-0.9977152455608933,-0.9961646088358407,-0.9942155195492713,-0.9918687573109126,-0.9891252607943698,-0.9859861273616704,-0.9824526126243325,-0.9785261299411385,-0.9742082498528091,-0.9695006994538088,-0.9644053617015305,-0.9589242746631385,-0.9530596307003677,-0.9468137755926089,-0.9401892075986287,-0.9331885764572976,-0.9258146823277325,-0.918070474669267,-0.9099590510617106,-0.9014836559663548,-0.8926476794282346,-0.8834546557201531,-0.8739082619290224,-0.8640123164850744,-0.8537707776345433,-0.8431877418564167,-0.8322674422239013,-0.821014246711247,-0.8094326564466194,-0.7975273039117043,-0.7853029510887806,-0.7727644875559871,-0.759916928531561,-0.7467654128678123,-0.7333152009956565,-0.7195716728205075,-0.7055403255703919,-0.6912267715971271,-0.6766367361314568,-0.6617760549930376,-0.6466506722561834,-0.6312666378723216,-0.6156301052500863,-0.5997473287940438,-0.5836246614030073,-0.5672685519289686,-0.5506855425976376,-0.5338822663916443,-0.5168654443974288,-0.49964188311690244,-0.48221847174493154,-0.46460217941375737,-0.44680005240543,-0.4288192113333959,-0.41066684829434086,-0.39235022399145386,-0.373876664830236,-0.35525355998804264,-0.3364883584585042,-0.31758856607203484,-0.2985617424935936,-0.27941549819892586,-0.2601574914304689,-0.2407954251341592,-0.22133704387835954,-0.2017901307561289,-0.18216250427209588,-0.1624620152151542,-0.14269654351825858,-0.12287399510655005,-0.10300229873509785,-0.0830894028174964,-0.06314327224661277,-0.04317188520872868,-0.02318322999237945,-0.0031853017931379904,0.016813900484349713,0.03680637742582692,0.05678413230707805,0.07673917429251892,0.09666352163141724,0.11654920485049364,0.13638826994159764,0.1561727815432119,0.175894826114484,0.19554651510054424,0.21511998808781552,0.23460741594807993,0.2540010039700231,0.27329299497701237,0.2924756724298697,0.31154136351337786,0.3304824422053109,0.34929133232673487,0.36796051057238466,0.38648250951987934,0.4048499206165983,0.42305539714299684,0.44109165715120235,0.4589514863776903,0.4766277411288995,0.49411335113860816,0.5114013223959524,0.5284847399429308,0.545356770640302,0.562010665900743,0.5784397643882001,0.5946374946823286,0.6105973779069791,0.6263130303216559,0.6417781658749337,0.6569865987187891,0.6719322456828615,0.6866091287076385,0.7010113772355981,0.7151332305593578,0.7289690401258759,0.7425132717958017,0.7557605080570537,0.7687054501917558,0.78134292039565,0.7936678638491531,0.8056753507392133,0.8173605782311729,0.8287188723898353,0.8397456900489799,0.8504366206285644,0.8607873878989017,0.8707938516910911,0.8804520095530344,0.8897579983503596,0.8987080958116269,0.907298722017184,0.9155264408310896,0.9233879612755189,0.9308801388471136,0.9379999767747389,0.9447446272181538,0.951111392407109,0.957097725720417,0.9627012327045701,0.9679196720314863,0.9727509563950137,0.9771931533458229,0.9812444860643621,0.9849033340715608,0.9881682338770004,0.9910378795642898,0.9935111233134158,0.9955869758598548,0.9972646068902659,0.998543345374605,0.9994226798345279,0.9999022585479752,0.9999818896898556,0.9996615414087742,0.998941341839772,0.9978215790530743,0.9963027009388656,0.9943853150281404,0.992070188249698,0.9893582466233818,0.9862505748896837,0.9827484160758622,0.9788531709987474,0.974566397704435,0.9698898108450863,0.9648252809930913,0.9593748338928642,0.9535406496505743,0.94732506186213,0.9407305566797731,0.9337597718176507,0.9264154954967662,0.9187006653297247,0.9106183671457304,0.9021718337562933,0.893364443662152,0.8841997197019127,0.8746813276429652,0.8648130747152218,0.8545989080882805,0.8440429132926041,0.833149312585366,0.8219224632616022,0.8103668559113548,0.7984871126234903,0.7862879851369292,0.7737743529400134,0.7609512213187744,0.7478237193548898,0.7343970978741133,0.7206767273460181,0.706668095735878,0.6923768063095604,0.6778085753922867,0.6629692300821833,0.6478647059195175,0.6325010445125663,0.6168843911210448,0.6010209921980904,0.5849171928917617,0.5685794345070696,0.5520142519295329,0.5352282710113162,0.5182282059209752,0.5010208564578846,0.4836131053324,0.4660119154128711,0.4482243269405849,0.4302574547137687,0.4121184852417566,0.39381467387048763,0.37535334188046277,0.3567418735583286,0.3379877132432676,0.3190983623493521,0.300081376365085,0.2809443618313018,0.2616949732986626,0.24234091026592378,0.22288991410024764,0.20334976494075557,0.183728278586583,0.1640333033706535,0.14427271702045727,0.1244544235070617,0.10458634988363526,0.08467644311472142,0.06473266689756589,0.04476299847674028,0.024775425453357765,0.0047779425901285115,-0.015221451386431743,-0.03521475698538918,-0.05519397715107451,-0.0751511204618093,-0.09507820432636095,-0.11496725817687455,-0.1348103266569955,-0.15459947280389894,-0.17432678122297965,-0.19398436125389723,-0.2135643501267387,-0.2330589161070144,-0.2524602616282581,-0.27176062641094245,-0.2909522905664908,-0.310027577685123,-0.32897885790632714,-0.347798550970695,-0.3664791292519284,-0.38501312076778266,-0.4033931121687696,-0.42161175170339216,-0.43966175215875003,-0.45753589377532133,-0.4752270271347798,-0.49272807601966023,-0.5100320402437544,-0.527131998452086,-0.5440211108893698,-0.5606926221358159,-0.5771398638092097,-0.5933562572321768,-0.6093353160635608,-0.6250706488928821,-0.6405559617968104,-0.6557850608566536,-0.6707518546358369,-0.6854503566164047,-0.6998746875935423,-0.7140190780271818,-0.7278778703497366,-0.7414455212290604,-0.754716603785701,-0.7676858097635825,-0.7803479516532316,-0.79269796476672,-0.8047309092634671,-0.8164419721261122,-0.8278264690856537,-0.8388798464951,-0.8495976831508637,-0.8599756920611861,-0.8700097221608728,-0.87969575997167,-0.8890299312075992,-0.8980085023246196,-0.9066278820139979,-0.9148846226387806,-0.9227754216128067,-0.9302971227216958,-0.9374467173852933,-0.9442213458610589,-0.9506182983879301,-0.9566350162701879,-0.9622690929009016,-0.9675182747245379,-0.9723804621383559,-0.9768537103322188,-0.9809362300664916,-0.9846263883877127,-0.9879227092817555,-0.9908238742642129,-0.9933287229077736,-0.9954362533063774,-0.997145622475965,-0.99845614669166,-0.9993673017612495,-0.9998787232348542,-0.9999902065507035,-0.9997017071169574,-0.999013340329543,-0.997925381525997,-0.9964382658753349,-0.9945525882039892,-0.9922691027578863,-0.9895887229007582,-0.9865125207488105,-0.9830417267418882,-0.9791777291513174,-0.9749220735246146,-0.9702764620672901,-0.9652427529619856,-0.9598229596252282,-0.954019249902089,-0.9478339451990765,-0.9412695195556018,-0.9343285986543979,-0.92701395877128,-0.9193285256646757,-0.9112753734053557,-0.9028577231468499,-0.8940789418370271,-0.8849425408713638,-0.8754521746884285,-0.865611639308158,-0.8554248708134987,-0.8448959437760262,-0.8340290696261731,-0.8228285949687089,-0.8112989998441588,-0.7994448959368459,-0.7872710247302823,-0.7747822556106337,-0.7619835839190333,-0.7488801289535096,-0.7354771319213411,-0.721779953842635,-0.7077940734059962,-0.6935250847771224,-0.6789786953612167,-0.6641607235200951,-0.6490770962449238,-0.6337338467854989,-0.6181371122370333,-0.6022931310853911,-0.5862082407117828,-0.5698888748578939,-0.5533415610524803,-0.5365729180004349,-0.5195896529353996,-0.5023985589369597,-0.48500651221350166,-0.467420469351827,-0.44964746453460147,-0.43169460672678167,-0.4135690768321209,-0.39527812482090974,-0.376829066830075,-0.3582292822368287,-0.3394862107070128,-0.3206073492193382,-0.3016002490666836,-0.2824725128356853,-0.26323179136580094,-0.24388578068908245,-0.22444221895185537,-0.20490888331957058,-0.18529358686603822,-0.1656041754483094,-0.1458485245684275,-0.1260345362233393,-0.10617013574419806,-0.08626326862634386,-0.06632189735120068,-0.04635399820139722,-0.02636755807035826,-0.006370571267652135,0.013628963678619457,0.033623047221136695,0.053603681993066796,0.07356287600690767,0.09349264585116929,0.11338501988364243,0.13323204141994222,0.15302577191607933,0.17275829414376465,0.1924217153572057,0.21200817045009251,0.23150982510153895,0.25091887890969955,0.2702275685118367,0.28942817068955534,0.3085130054579907,0.32747443913769303,0.34630488740800797,0.3649968183406966,0.38354275541260996,0.40193528049619187,0.4201670368266409,0.4382307319445118,0.4561191406126034,0.4738251077059589,0.4913415510738144,0.5086614643723737,0.5257779198672465,0.5426840712044526,0.5593731561488667,0.5758384992890305,0.592073514707223,0.6080717086137423,0.6238266819443293,0.6393321329197169,0.6545818595662513,0.6695697621966024,0.6842898458495511,0.6987362226879031,0.7129031143535387,0.7267848542786822,0.7403758899524486,0.7536707851417809,0.7666642220658663,0.7793510035231799,0.7917260549702911,0.803784426551621,0.8155212950793129,0.8269319659624454,0.8380118750848066,0.8487565906304755,0.8591618148564958,0.8692233858119117,0.8789372790024943,0.8882996090004825,0.8973066309987074,0.9059547423084618,0.914240483800529,0.9221605412887859,0.9297117468558371,0.9368910801201374,0.9436956694441048,0.9501227930827351,0.9561698802722673,0.9618345122584524,0.9671144232640236,0.9720075013949759,0.9765117894852975,0.9806254858798086,0.9843469451548001,0.9876746787761803,0.9906073556948704,0.9931438028792043,0.9952830057841274,0.9970241087570002,0.9983664153798475,0.9993093887479176,0.9998526516844363,0.999995986891472,0.999739337036853,0.9990828047770997,0.9980266527163617,0.9965713033013819,0.9947173386525218,0.9924655003309216,0.989816689041886,0.9867719642746133,0.9833325438784152,0.9794998035755914,0.9752752764111607,0.9706606521396621,0.9656577765492774,0.9602686507235385,0.9544954302409214,0.9483404243126435,0.9418060948590115,0.934895055524683,0.927610070633246,0.9199540540815249,0.9119300681740611,0.9035413223982337,0.8947911721405042,0.8856831173443083,0.8762208011101247,0.866408008238286,0.8562486637151049,0.8457468311429343,0.8349067111147797,0.8237326395341211,0.8122290858806044,0.8004006514223121,0.7882520673753163,0.7757881930112588,0.7630140137137015,0.7499346389840432,0.7365553003977854,0.722881349511976,0.7089182557246514,0.6946716040871542,0.6801470930701855,0.665350532284497,0.6502878401571168,0.6349650415640629,0.6193882654204708,0.6035637422291094,0.5874978015882668,0.5711968696599886,0.5546674665997031,0.5379162039482439,0.5209497819873273,0.5037749870595203,0.48639868885379967,0.4688278376577654,0.45106946157762406,0.433130663727031,0.41501861938594564,0.39674057313061206,0.37830383593583167,0.3597157822506608,0.3409838470487362,0.32211552285438105,0.30311835674570226,0.2839999473358494,0.2647679417336776,0.24543003248500284,0.22599395449569257,0.2064674819377966,0.18685842513998854,0.16717462746353695,0.1474239621650635,0.1276143292473524,0.10775365229944406,0.08784987532731216,0.06791095957636362,0.04794488034705369,0.02795962380486148,0.007963183785937343,-0.012036441400328576,-0.03203125217051633,-0.05201325086691355,-0.07197444495646477,-0.09190685022768164,-0.111802493984214,-0.13165341823383273,-0.15145168287151342,-0.1711893688553761,-0.19085858137418937,-0.21045145300520013,-0.22996014686099078,-0.24937685972413315,-0.2686938251683646,-0.2879033166650653,-0.30699765067375967,-0.325969189715432,-0.344810345427416,-0.3635135815986391,-0.3820714171840091,-0.4004764292967199,-0.4187212561773265,-0.4367986001383378,-0.4547012304831975,-0.47242198639846616,-0.48995377981805127,-0.5072895982583391,-0.5244225076230978,-0.541345654977011,-0.5580522712867794,-0.5745356741286307,-0.5907892703612041,-0.6068065587627183,-0.6225811326313736,-0.6381066823479474,-0.6533769978995605,-0.6683859713635882,-0.6831275993507646,-0.6975959854064472,-0.711785342369123,-0.725689994685196,-0.7393043806791324,-0.7526230547780575,-0.7656406896899116,-0.7783520785342984,-0.7907521369251587,-0.8028359050044701,-0.8145985494261156,-0.8260353652891601,-0.8371417780197468,-0.8479133452008673,-0.8583457583492679,-0.8684348446387881,-0.8781765685694277,-0.8875670335815046,-0.896602483614218,-0.9052793046080263,-0.9135940259502211,-0.9215433218631272,-0.9291240127343684,-0.9363330663886722,-0.9431675993006936,-0.9496248777483951,-0.9557023189064934,-0.9613974918795568,-0.9667081186743308,-0.9716320751109048,-0.976167391672356,-0.98031225429253,-0.9840650050816434,-0.9874241429894153,-0.990388324405471,-0.9929563636967662,-0.9951272336818244,-0.9969000660415961,-0.9982741516667748,-0.9992489409414314,-0.999824043962853,-0.999999230697499,-0.9997744310730111,-0.9991497350062422,-0.9981253923672896,-0.9967018128795512,-0.9948795659558413,-0.9926593804706332,-0.9900421444685181,-0.9870289048090022,-0.9836208667477725,-0.9798193934546138,-0.9756260054681576,-0.9710423800876874,-0.9660703507022413,-0.9607119060572806,-0.9549691894592184,-0.948844497918124,-0.9423402812289547,-0.9354591409916635,-0.9282038295705979,-0.9205772489935901,-0.9125824497911845,-0.9042226297764662,-0.8955011327659783,-0.8864214472422384,-0.8769872049583981,-0.8672021794855813,-0.857070284703512,-0.8465955732350126,-0.8357822348250097,-0.8246345946646914,-0.8131571116614885,-0.8013543766555692,-0.7892311105835722,-0.7767921625902832,-0.7640425080890486,-0.7509872467716762,-0.7376316005686248,-0.7239809115603028,-0.7100406398403069,-0.6958163613314571,-0.6813137655554999,-0.6665386533573856,-0.6514969345849919,-0.6361946257252742,-0.6206378474977482,-0.6048328224062841,-0.5887858722501876,-0.5725034155955647,-0.5559919652079778,-0.5392581254474379,-0.5223085896267315,-0.5051501373341961,-0.4877896317219724,-0.470234016760835,-0.4524903144626965,-0.43456562207189675,-0.416467109226396,-0.39820201509002867,-0.3797776454569147,-0.36120136982925244,-0.34248061846961253,-0.3236228794289322,-0.3046356955513944,-0.2855266614573912,-0.2663034205057765,-0.2469736617366209,-0.22754511679571235,-0.20802555684197996,-0.1884227894391479,-0.16874465543281056,-0.1489990258141988,-0.1291937985718886,-0.10933689553271062,-0.08943625919312187,-0.06949984954232695,-0.04953564087836742,-0.029551618618522943,-0.009555776105247387,0.010443888591061618,0.03043937587118419,0.05042268780681122,0.07038583133961261,0.09032082147833985,0.11021968449273732,0.1300744611029139,0.14987720966295234,0.16962000933746174,0.18929496326980613,0.2088942017407418,0.22840988531620005,0.24783420798295983,0.267159400270935,0.2863777323608796,0.30548151717619876,0.32446311345768003,0.3433149288198954,0.36202942278805417,0.3805991098140923,0.3990165622707952,0.4172744134227364,0.4353653603728932,0.45328216698369495,0.4710176667713848,0.48856476577251795,0.5059164453814522,0.5230657651576964,0.5400058656019978,0.5567299709000376,0.5732313916326848,0.5895035274516621,0.605539869719601,0.6213340041134094,0.6368796131899154,0.6521704789127603,0.6672004851395306,0.6819636200681356,0.6964539786414377,0.7106657649092124,0.7245932943464407,0.7382309961270456,0.7515734153521483,0.7646152152319554,0.7773511792204034,0.7897762131017096,0.8018853470279821,0.8136737375071054,0.8251366693400644,0.8362695575069629,0.8470679490009708,0.857527524609467,0.8676441006416673,0.8774136306020465,0.8868322068088755,0.8958960619572528,0.9046015706259687]},\"selected\":{\"id\":\"1056\"},\"selection_policy\":{\"id\":\"1055\"}},\"id\":\"1041\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"text\":\"Path following problem\"},\"id\":\"1004\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"1047\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"1053\",\"type\":\"UnionRenderers\"},{\"attributes\":{},\"id\":\"1054\",\"type\":\"Selection\"},{\"attributes\":{\"source\":{\"id\":\"1152\"}},\"id\":\"1156\",\"type\":\"CDSView\"},{\"attributes\":{\"axis\":{\"id\":\"1134\"},\"dimension\":1,\"ticker\":null},\"id\":\"1137\",\"type\":\"Grid\"},{\"attributes\":{\"active_multi\":null,\"tools\":[{\"id\":\"1022\"},{\"id\":\"1023\"},{\"id\":\"1024\"},{\"id\":\"1025\"},{\"id\":\"1026\"},{\"id\":\"1027\"}]},\"id\":\"1029\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"1055\",\"type\":\"UnionRenderers\"}],\"root_ids\":[\"1375\"]},\"title\":\"Bokeh Application\",\"version\":\"2.3.1\"}};\n", " var render_items = [{\"docid\":\"d52a5a2f-3f37-4c51-bba1-e7f9fc80aede\",\"root_ids\":[\"1375\"],\"roots\":{\"1375\":\"3d24eb5e-43b0-4bc3-86ac-191d15bbed1d\"}}];\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", " clearInterval(timer);\n", " embed_document(root);\n", " } else {\n", " attempts++;\n", " if (attempts > 100) {\n", " clearInterval(timer);\n", " console.log(\"Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing\");\n", " }\n", " }\n", " }, 10, root)\n", " }\n", "})(window);" ], "application/vnd.bokehjs_exec.v0+json": "" }, "metadata": { "application/vnd.bokehjs_exec.v0+json": { "id": "1375" } }, "output_type": "display_data" } ], "source": [ "from bokeh.models import Range1d\n", "\n", "p_pf.x_range = Range1d(-1,-0.5)\n", "p_pf.y_range = Range1d(0.5, 1)\n", "\n", "p_tt.x_range = Range1d(-1,-0.5)\n", "p_tt.y_range = Range1d(0.5, 1)\n", "\n", "show(gridplot([p_pf,p_tt], ncols=2))" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "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.7.9" } }, "nbformat": 4, "nbformat_minor": 4 }