{
"cells": [
{
"cell_type": "markdown",
"id": "75ac49aa",
"metadata": {},
"source": [
"(sec-tutorial-compiling)=\n",
"\n",
"# Tutorial: Compiling to Hardware\n",
"\n",
"```{seealso}\n",
"The complete source code of this tutorial can be found in\n",
"\n",
"{nb-download}`Compiling to Hardware.ipynb`\n",
"```\n",
"\n",
"Compilation allows converting the schedules introduced in {ref}`sec-tutorial-sched-pulse` into a set of instructions that can be executed on the control hardware.\n",
"\n",
"In this notebook, we will define an example schedule, demonstrate how to compile it, and run it on a virtual hardware setup.\n",
"\n",
"## Schedule definition\n",
"\n",
"We start by defining an example schedule."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "1a1ec05f",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Schedule \"Simple schedule\" containing (2) 2 (unique) operations."
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from quantify_scheduler import ClockResource, Schedule\n",
"from quantify_scheduler.operations import SquarePulse\n",
"\n",
"sched = Schedule(\"Simple schedule\")\n",
"sched.add(SquarePulse(amp=0.2, duration=8e-9, port=\"q0:res\", clock=\"q0.ro\"))\n",
"sched.add(SquarePulse(amp=0.1, duration=12e-9, port=\"q0:res\", clock=\"q0.ro\"))\n",
"\n",
"readout_clock = ClockResource(name=\"q0.ro\", freq=7e9)\n",
"sched.add_resource(readout_clock)\n",
"\n",
"sched\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "6d71a265",
"metadata": {},
"source": [
"## Hardware compilation configuration\n",
"\n",
"In our example setup, we will use a Qblox Cluster containing an RF control module (QCM-RF). To compile the schedule, we will need to provide the compiler with a dictionary detailing the hardware compilation configuration.\n",
"\n",
"Please check the documentation on how to properly create such a configuration for the supported backends:\n",
"\n",
"- {ref}`sec-backend-qblox`\n",
"- {ref}`sec-backend-zhinst`\n",
"\n",
"```{admonition} Creating an example Qblox hardware compilation configuration\n",
":class: dropdown\n",
"\n",
"Below we create an example hardware configuration dictionary, for the Qblox backend.\n",
"In this configuration, we include:\n",
"\n",
"- The `\"config_type\"`, which points to the specific {class}`~quantify_scheduler.backends.types.common.HardwareCompilationConfig` datastructure for the backend we want to use (the Qblox backend, in this case).\n",
"- The description of the setup, including:\n",
" - A Cluster containing a QCM-RF module (in the 2nd slot).\n",
"- The hardware options we want to use in the compilation.\n",
"- The connectivity between the control hardware and the quantum device.\n",
"```"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "e989447f",
"metadata": {
"mystnb": {
"code_prompt_show": "Example hardware configuration"
},
"tags": [
"hide-cell"
]
},
"outputs": [],
"source": [
"hardware_comp_cfg = {\n",
" \"config_type\": \"quantify_scheduler.backends.qblox_backend.QbloxHardwareCompilationConfig\",\n",
" \"hardware_description\": {\n",
" \"cluster0\": {\n",
" \"instrument_type\": \"Cluster\",\n",
" \"ref\": \"internal\",\n",
" \"modules\": {\n",
" \"2\": {\n",
" \"instrument_type\": \"QCM_RF\"\n",
" },\n",
" },\n",
" },\n",
" },\n",
" \"hardware_options\": {\n",
" \"modulation_frequencies\": {\n",
" \"q0:res-q0.ro\": {\"interm_freq\": 50e6},\n",
" },\n",
" \"mixer_corrections\": {\n",
" \"q0:res-q0.ro\": {\n",
" \"dc_offset_i\": -0.00552,\n",
" \"dc_offset_q\": -0.00556,\n",
" \"amp_ratio\": 0.9998,\n",
" \"phase_error\": -4.1\n",
" }\n",
" }\n",
" },\n",
" \"connectivity\": {\n",
" \"graph\": [\n",
" (\"cluster0.module2.complex_output_0\", \"q0:res\"),\n",
" ]\n",
" },\n",
"}"
]
},
{
"cell_type": "markdown",
"id": "6e63720e",
"metadata": {},
"source": [
"(sec-tutorial-compiling-to-hardware-compilation)=\n",
"## Compilation\n",
"\n",
"Now we are ready to proceed to the compilation stage. For each of the control stack's instruments, the compilation generates:\n",
"\n",
"- The schedule's absolute timing. During the schedule's definition, we didn't assign absolute times to the operations. Instead, only the duration was defined. For the instruments to know how to execute the schedule, the absolute timing of the operations is calculated.\n",
"- A set of parameters that are used to properly configure each instrument for the execution of the schedule. These parameters typically don't change during the execution of the schedule.\n",
"- A compiled program that contains instructions on what the instrument must do in order for the schedule to be executed.\n",
"\n",
"We perform the compilation via {func}`~quantify_scheduler.backends.graph_compilation.QuantifyCompiler.compile`.\n",
"\n",
"We start by setting the directory where the compiled schedule files will be stored, via [set_datadir](https://quantify-os.org/docs/quantify-core/dev/user/concepts.html#data-directory)."
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "9d06726b",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Data will be saved in:\n",
"/root/quantify-data\n"
]
}
],
"source": [
"from quantify_core.data import handling as dh\n",
"\n",
"dh.set_datadir(dh.default_datadir())\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "300b4ad5",
"metadata": {},
"source": [
"Next, we create a device configuration that contains all knowledge of the physical device under test (DUT). To generate it we use the {class}`~quantify_scheduler.device_under_test.quantum_device.QuantumDevice` class.\n",
"\n",
"The schedule defined at the beginning of this tutorial consists of 2 pulse operations. As such, the hardware compilation configuration must contain the necessary information to execute the schedule. We add the hardware compilation configuration to the `QuantumDevice` object and compile the schedule using this information. We visualize the compiled schedule in a {meth}`pulse diagram <.plot_pulse_diagram>`."
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "4cf88b24",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
" \n",
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"fill": "tozeroy",
"hoverinfo": "x+y+name",
"hoverlabel": {
"namelength": -1
},
"legendgroup": "0",
"line": {
"color": "#636EFA"
},
"mode": "lines",
"name": "SquarePulse, clock q0.ro",
"showlegend": true,
"type": "scatter",
"x": {
"bdata": "lmR54X/9pb0AAAAAAAAAAJXWJugLLhE+ldYm6AsuIT7gQTrcEcUpPpXWJugLLjE+Ooww4o55NT7gQTrcEcU5PoX3Q9aUED4+PHguiIwoQT6V1iboCy5BPg==",
"dtype": "f8"
},
"xaxis": "x",
"y": {
"bdata": "AAAAAAAAAACamZmZmZnJP5qZmZmZmck/mpmZmZmZyT+amZmZmZnJP5qZmZmZmck/mpmZmZmZyT+amZmZmZnJP5qZmZmZmck/mpmZmZmZyT8AAAAAAAAAAA==",
"dtype": "f8"
},
"yaxis": "y"
},
{
"fill": "tozeroy",
"hoverinfo": "x+y+name",
"hoverlabel": {
"namelength": -1
},
"legendgroup": "1",
"line": {
"color": "#EF553B"
},
"mode": "lines",
"name": "SquarePulse, clock q0.ro",
"showlegend": true,
"type": "scatter",
"x": {
"bdata": "PHguiIwoQT6V1iboCy5BPmixK2XNU0M+O4ww4o55RT4OZzVfUJ9HPuFBOtwRxUk+tBw/WdPqSz6H90PWlBBOPi1ppCkrG1A+ltYm6AsuUT4ARKmm7EBSPmqxK2XNU1M+0x6uI65mVD4QXTQyz3ZVPj2MMOKOeVU+",
"dtype": "f8"
},
"xaxis": "x",
"y": {
"bdata": "AAAAAAAAAACamZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5P5qZmZmZmbk/mpmZmZmZuT+amZmZmZm5PwAAAAAAAAAA",
"dtype": "f8"
},
"yaxis": "y"
}
],
"layout": {
"height": 300,
"showlegend": false,
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmap"
}
],
"histogram": [
{
"marker": {
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermap": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermap"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"autotypenumbers": "strict",
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"sequentialminus": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"title": {
"text": "Simple schedule"
},
"width": 1000,
"xaxis": {
"anchor": "y",
"domain": [
0.0,
1.0
],
"hoverformat": ".3s",
"showgrid": true,
"tickformat": ".2s",
"tickformatstops": [
{
"dtickrange": [
null,
1e-09
],
"value": ".10s"
},
{
"dtickrange": [
1e-09,
1e-06
],
"value": ".7s"
},
{
"dtickrange": [
1e-06,
0.001
],
"value": ".4s"
}
],
"ticksuffix": "s",
"title": {
"text": "Time"
}
},
"yaxis": {
"anchor": "x",
"autorange": true,
"domain": [
0.0,
1.0
],
"hoverformat": ".3s",
"tickformat": ".2s",
"ticksuffix": "V",
"title": {
"text": "q0:res"
}
}
}
},
"text/html": [
"
"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"from quantify_scheduler import QuantumDevice, SerialCompiler\n",
"\n",
"quantum_device = QuantumDevice(\"DUT\")\n",
"\n",
"quantum_device.hardware_config(hardware_comp_cfg)\n",
"compiler = SerialCompiler(name=\"compiler\")\n",
"compiled_sched = compiler.compile(\n",
" schedule=sched, config=quantum_device.generate_compilation_config()\n",
")\n",
"\n",
"compiled_sched.plot_pulse_diagram(plot_backend='plotly')\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "32ca1e39",
"metadata": {},
"source": [
"The cell above compiles the schedule, returning a {class}`~quantify_scheduler.schedules.schedule.CompiledSchedule` object. This class differs from {class}`~quantify_scheduler.schedules.schedule.Schedule` in that it is immutable and contains the {attr}`~quantify_scheduler.schedules.schedule.CompiledSchedule.compiled_instructions` attribute. We inspect these instructions below."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "2a87be23",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "6ebb971a9b344850946bc8b6b6d38492",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Tab(children=(Tab(children=(Tab(children=(Output(),), selected_index=0, titles=('other values',)), Tab(childre…"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"compiled_sched.compiled_instructions\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "07dc0ada",
"metadata": {},
"source": [
"## Execution on the hardware\n",
"\n",
"In the compiled schedule, we have all the information necessary to execute the schedule.\n",
"In this specific case, only sequencer {code}`seq0` of the RF control module (QCM-RF) is needed. The compiled schedule contains the file path where the sequencer's program is stored, as well as the QCoDeS parameters that need to be set in the device.\n",
"\n",
"Now that we have compiled the schedule, we are almost ready to execute it with our control setup.\n",
"\n",
"We start by connecting to a dummy cluster device by passing a `dummy_cfg` argument when initializing a `Cluster`:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "d9c93295",
"metadata": {},
"outputs": [],
"source": [
"from qblox_instruments import Cluster, ClusterType\n",
"\n",
"Cluster.close_all() # Closes all registered instruments (not just Clusters)\n",
"\n",
"cluster0 = Cluster(\"cluster0\", dummy_cfg={\"2\": ClusterType.CLUSTER_QCM_RF})\n"
]
},
{
"cell_type": "markdown",
"id": "dcefd13c",
"metadata": {},
"source": [
"Here, {code}`dummy_cfg={\"2\": ClusterType.CLUSTER_QCM_RF}` initializes a dummy cluster instrument that contains an RF control module in slot 2, as specified by the example hardware config.\n",
"\n",
"We attach these instruments to the {class}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator` via the appropriate {class}`~quantify_scheduler.instrument_coordinator.components.base.InstrumentCoordinatorComponentBase` component wrapper class. More information on the scheduler execution can be found in the {ref}`Execution section of User guide `."
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "2e13ea85",
"metadata": {},
"outputs": [],
"source": [
"from quantify_scheduler import InstrumentCoordinator\n",
"from quantify_scheduler.qblox import ClusterComponent\n",
"\n",
"ic = InstrumentCoordinator(\"ic\")\n",
"ic.add_component(ClusterComponent(cluster0))\n",
"\n"
]
},
{
"cell_type": "markdown",
"id": "42c1de53",
"metadata": {},
"source": [
"The {class}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator` object is responsible for the smooth and in-concert operation of the different instruments, so that the provided schedule is correctly executed.\n",
"Essentially, it \"coordinates\" the control stack instruments, giving the relevant commands to the different instruments of the control stack at each point in time.\n",
"\n",
"The experiment can now be conducted using the methods of {class}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator`:\n",
"\n",
"1. We prepare the instruments with the appropriate settings and upload the schedule program by calling the {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.prepare` method and passing the compiled schedule as an argument.\n",
"2. We start the hardware execution by calling the {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.start` method.\n",
"\n",
"Additionally, the {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.wait_done` method is useful to wait for the experiment to finish and assure the synchronicity of the python script."
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "bb21528f",
"metadata": {},
"outputs": [],
"source": [
"# Set the qcodes parameters and upload the schedule program\n",
"ic.prepare(compiled_sched)\n",
"\n",
"# Start the hardware execution\n",
"ic.start()\n",
"\n",
"# Wait for the experiment to finish or for a timeout\n",
"ic.wait_done(timeout_sec=10)\n",
"\n",
"# Stops all running instruments and any active components. Must be run before starting a new experiment.\n",
"ic.stop()\n"
]
},
{
"cell_type": "markdown",
"id": "3558bd2b",
"metadata": {},
"source": [
"The {class}`~~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator` has two more methods that were not covered in this experiment:\n",
"\n",
"- {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.retrieve_acquisition`\n",
" \\- In case the schedule contained acquisitions, this method retrieves the acquired data.\n",
"- {meth}`~quantify_scheduler.instrument_coordinator.instrument_coordinator.InstrumentCoordinator.stop`\n",
" \\- Stops all running instruments.\n",
"\n",
"Note that the schedule used in this tutorial was defined purely in terms of pulses.\n",
"However, `quantify-scheduler` also supports the usage of quantum gates in schedules. Given that gates may require different pulses depending on the type of quantum system, an extra step of defining the quantum device configuration, i.e. the qubits, is necessary. This use case is covered in the {ref}`sec-tutorial-ops-qubits` tutorial."
]
}
],
"metadata": {
"file_format": "mystnb",
"kernelspec": {
"display_name": "python3",
"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.9.23"
},
"source_map": [
6,
25,
40,
64,
102,
117,
124,
130,
145,
149,
154,
165,
173,
178,
187,
199,
213
],
"widgets": {
"application/vnd.jupyter.widget-state+json": {
"state": {
"00c6c0046b8444f492ef120ea32d4e15": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"02d782d449444fce9b634a725f753ca7": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_5a31a4b7a0e248c08fd92c13810c8c7e",
"msg_id": "",
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": " \n set_mrk 1 # set markers to 1 (init) \n wait_sync 4 \n upd_param 4 \n wait 4 # latency correction of 4 + 0 ns \n move 1,R0 # iterator for loop with label start \n start: reset_ph \n upd_param 4 \n set_awg_gain 6554,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (8 ns) \n wait 4 # auto generated wait (4 ns) \n set_awg_gain 3277,0 # setting gain for SquarePulse \n play 1,1,4 # play SquarePulse (12 ns) \n wait 8 # auto generated wait (8 ns) \n loop R0,@start \n stop \n \n\n"
}
],
"tabbable": null,
"tooltip": null
}
},
"04b866d765464591a1b2f1da5ab092cf": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"05339cb27f054141b67dd7334190f157": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"057a7823ca594dd0bbad65aa3edf8ded": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"07b3b93dea944fc6bbe243d63be3f567": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_f218fc68c48f4e958c6c9d3f123977c2",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0a2c56219a9b48d19ec81d10502eef2c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"0d766c4eb332440e9dc5083a2d89ad8d": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_4b36b5fa51924404b436ac021be6414e",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0de03835d7ab49bd8e8f5d2f97450c3e": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_319ef554c51c472eaed5092eccea1d2d",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"0dfd885d9d60421caddcbfb334511cee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"0f8e49a5d9ac4a96a8a1a8890ef74f81": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"14bccceb286a4f9ba0f4379df08e4e65": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_6cd7be960a8f4e1992aa125433b39ee5",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"17950636612f42d0b3729c523a2e526f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"17e8d6fe31db4ebf81d522ffd6792c5d": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_33d5cc8041504b6084000016cac6ffbb",
"IPY_MODEL_02d782d449444fce9b634a725f753ca7"
],
"layout": "IPY_MODEL_7710769cb19640a38e80541df75dafaa",
"selected_index": 0,
"tabbable": null,
"titles": [
"waveforms",
"program"
],
"tooltip": null
}
},
"1918393c942c4f5a92c148ccf6081e8e": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_4f2140a7cd7d4dd9989f5beb929b8c0b",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting | \n value | \n
\n \n \n \n repetitions | \n 1 | \n
\n \n
\n
",
"text/plain": "setting value\nrepetitions 1"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"1d8af109fbf8442eb42e06c885dbd539": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1dc24670d4fd4c058a5c439eed1ecc47": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"1dec3aa13a364a318327dfe236f03b4e": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_00c6c0046b8444f492ef120ea32d4e15",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"2066f4915dcc40f786c5724969d00ca1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_17e8d6fe31db4ebf81d522ffd6792c5d",
"IPY_MODEL_605e589a6d734f8bbc8b8f92770f4bc9"
],
"layout": "IPY_MODEL_ab7e2f27391e454bb738a53347a17d2c",
"selected_index": 0,
"tabbable": null,
"titles": [
"sequence",
"settings"
],
"tooltip": null
}
},
"22122f2b70fe4e6ca27cb1b3806c4d4c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2846992849964f37b238bfd1bf6a9a36": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"289ca424e20c4f41845b254de1cd98e8": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"28a0410362bc4187918638defbcd78ac": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"2addabb962de41deb79350a57e22b94b": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_8d5cbd2da2804a408b44002838ff5e9d",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"2d17ea05d8ee4a40a8d6c70cdc4dd271": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"319b6df93f34463d94eae5737dc50505": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_76b0136fe8e9422594839e4d66aecb51",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"319ef554c51c472eaed5092eccea1d2d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"33d5cc8041504b6084000016cac6ffbb": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_58e5cb7ba80143fa9d066335d848ec50",
"IPY_MODEL_b09473d459b2430c96a7bed757a9de51"
],
"layout": "IPY_MODEL_68a706bdbbc44767a25080e5ad1a707d",
"selected_index": 0,
"tabbable": null,
"titles": [
"0",
"1"
],
"tooltip": null
}
},
"35522e67e6f74e3e984e031c6b52f880": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"368b94d865f74a6eb293b15d00507458": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"3857f9c22da44e8780bf3397dae2d9a1": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_cb62d06b5347412ba77d75e11cca28a6",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"3a9c95d0af51444bbc3fb7ca9921e0b9": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_9ac43e5225244a3baf6c5dca74d92927",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"3aaf747df47c4cd3967f1d453d2c5fd1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"3b46682c65f74db6b765a8a4d2cf00ed": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_95392ab35d374c189e1e219ef1e282ff",
"IPY_MODEL_ee14d85a9a60488c86c291ff7038ef94",
"IPY_MODEL_d3035837734048a59dafedb46ee5f4f6"
],
"layout": "IPY_MODEL_f6056664ec0240fba80c554f53298088",
"selected_index": 0,
"tabbable": null,
"titles": [
"settings",
"cluster0_module2",
"other values"
],
"tooltip": null
}
},
"3c7eaaf9c6b44b5698175f34b8204a8f": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_5a0e17ee157846cbb2068ee7780f309b",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting | \n value | \n
\n \n \n \n offset_ch0_path_I | \n -5.52 | \n
\n \n offset_ch0_path_Q | \n -5.56 | \n
\n \n offset_ch1_path_I | \n None | \n
\n \n offset_ch1_path_Q | \n None | \n
\n \n in0_gain | \n None | \n
\n \n in1_gain | \n None | \n
\n \n distortion_corrections | \n [{'exp0': {'coeffs': None, 'config': 'QbloxFil... | \n
\n \n out0_lo_freq_cal_type_default | \n LoCalEnum.OFF | \n
\n \n out1_lo_freq_cal_type_default | \n LoCalEnum.OFF | \n
\n \n lo0_freq | \n 6950000000.0 | \n
\n \n lo1_freq | \n None | \n
\n \n lo2_freq | \n None | \n
\n \n lo3_freq | \n None | \n
\n \n lo4_freq | \n None | \n
\n \n lo5_freq | \n None | \n
\n \n in0_freq | \n None | \n
\n \n in1_freq | \n None | \n
\n \n out0_att | \n None | \n
\n \n out1_att | \n None | \n
\n \n out2_att | \n None | \n
\n \n out3_att | \n None | \n
\n \n out4_att | \n None | \n
\n \n out5_att | \n None | \n
\n \n in0_att | \n None | \n
\n \n in1_att | \n None | \n
\n \n
\n
",
"text/plain": "setting value\noffset_ch0_path_I -5.52\noffset_ch0_path_Q -5.56\noffset_ch1_path_I None\noffset_ch1_path_Q None\nin0_gain None\nin1_gain None\ndistortion_corrections [{'exp0': {'coeffs': None, 'config': 'QbloxFil...\nout0_lo_freq_cal_type_default LoCalEnum.OFF\nout1_lo_freq_cal_type_default LoCalEnum.OFF\nlo0_freq 6950000000.0\nlo1_freq None\nlo2_freq None\nlo3_freq None\nlo4_freq None\nlo5_freq None\nin0_freq None\nin1_freq None\nout0_att None\nout1_att None\nout2_att None\nout3_att None\nout4_att None\nout5_att None\nin0_att None\nin1_att None"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"3cea51bbb8e24e85bd4982ce075cb848": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_88b6dad90c6047599f5300cfe786e36b",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"3ecbfd0333c24519ae183e2f175bfdbd": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_2d17ea05d8ee4a40a8d6c70cdc4dd271",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"3f36694725e3418b9980621332c41dd5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4430f3ed42c2486f9fc8c3e673b24853": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_eb68b92016ff4e758667f5763cded51d",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"449aba11fedd45c2ab7b05c6045966f8": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_289ca424e20c4f41845b254de1cd98e8",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"4764d7ec186f4435b65770bfeabba02c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4b36b5fa51924404b436ac021be6414e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"4f2140a7cd7d4dd9989f5beb929b8c0b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"502bb129d5c84cf8a505c72249ca9a7a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"523f04cf10bc48f98c86040b258a79ba": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_28a0410362bc4187918638defbcd78ac",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"529d0bca4b28454896f0c5f4ac6accd7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"53ff47a8aa6f4930a1d7ec35e63e5352": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_69cfeca1d2af411b88c6bbcadba6af12",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"540d0491978d48c1877115aa5273dc5c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"5550f94d70f64a02aa09f7e6684f75b7": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_2066f4915dcc40f786c5724969d00ca1"
],
"layout": "IPY_MODEL_b536ace447fb4056b66b6799ceeb01e6",
"selected_index": 0,
"tabbable": null,
"titles": [
"seq0"
],
"tooltip": null
}
},
"562b1736780443f8a8e8598056ec7018": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_ff65c46da1a7444894512da67e5fe626",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"576fe680dc7341d78546fa6c10739e96": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"57fa613f364d450eb2755955ec6b88ee": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"58b842c77ecf42e3997524e0156cee74": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_529d0bca4b28454896f0c5f4ac6accd7",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"58e5cb7ba80143fa9d066335d848ec50": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_875196a864964bf2900d8e940c1c1963",
"msg_id": "",
"outputs": [
{
"data": {
"image/png": "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",
"text/plain": ""
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"5a0e17ee157846cbb2068ee7780f309b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"5a31a4b7a0e248c08fd92c13810c8c7e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"5c2d9e32de4f46df8d76ada0ca88403b": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_1d8af109fbf8442eb42e06c885dbd539",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"5cd86d76ace746dc8321df4ccd868700": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_7dcbea204fcc434cb290bc45b35945eb",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"5d3fc63a110b4e9ba7f44af6bea8955d": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_c61aac6254d140f19a37f2a5b039c299",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"605e589a6d734f8bbc8b8f92770f4bc9": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_0dfd885d9d60421caddcbfb334511cee",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting | \n value | \n
\n \n \n \n sync_en | \n True | \n
\n \n channel_name | \n complex_output_0 | \n
\n \n channel_name_measure | \n None | \n
\n \n connected_output_indices | \n (0, 1) | \n
\n \n connected_input_indices | \n () | \n
\n \n seq_fn | \n None | \n
\n \n thresholded_acq_trigger_write_en | \n None | \n
\n \n thresholded_acq_trigger_write_address | \n None | \n
\n \n thresholded_acq_trigger_write_invert | \n False | \n
\n \n nco_en | \n True | \n
\n \n init_offset_awg_path_I | \n 0.0 | \n
\n \n init_offset_awg_path_Q | \n 0.0 | \n
\n \n init_gain_awg_path_I | \n 1.0 | \n
\n \n init_gain_awg_path_Q | \n 1.0 | \n
\n \n modulation_freq | \n 50000000.0 | \n
\n \n mixer_corr_phase_offset_degree | \n -4.1 | \n
\n \n mixer_corr_gain_ratio | \n 0.9998 | \n
\n \n auto_sideband_cal | \n SidebandCalEnum.OFF | \n
\n \n integration_length_acq | \n None | \n
\n \n thresholded_acq_threshold | \n None | \n
\n \n thresholded_acq_rotation | \n None | \n
\n \n ttl_acq_input_select | \n None | \n
\n \n ttl_acq_threshold | \n None | \n
\n \n ttl_acq_auto_bin_incr_en | \n None | \n
\n \n
\n
",
"text/plain": "setting value\nsync_en True\nchannel_name complex_output_0\nchannel_name_measure None\nconnected_output_indices (0, 1)\nconnected_input_indices ()\nseq_fn None\nthresholded_acq_trigger_write_en None\nthresholded_acq_trigger_write_address None\nthresholded_acq_trigger_write_invert False\nnco_en True\ninit_offset_awg_path_I 0.0\ninit_offset_awg_path_Q 0.0\ninit_gain_awg_path_I 1.0\ninit_gain_awg_path_Q 1.0\nmodulation_freq 50000000.0\nmixer_corr_phase_offset_degree -4.1\nmixer_corr_gain_ratio 0.9998\nauto_sideband_cal SidebandCalEnum.OFF\nintegration_length_acq None\nthresholded_acq_threshold None\nthresholded_acq_rotation None\nttl_acq_input_select None\nttl_acq_threshold None\nttl_acq_auto_bin_incr_en None"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"61922d70cf6242d594e563e0155a6e25": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_7eb7c4bc370343f882ffbe98509876ed",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"6512ca07569a497886e616a98355e04e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"65cf463476b24f8d8e46ed5d363ff1d2": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_3f36694725e3418b9980621332c41dd5",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"6705e5ed47684c40a1c556257f1a525f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"67a1f262a4a14c6ba0fd4bc0085bdd34": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_67ac95042dfd4ca0b7ddc8ce7792f6b1",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"67ac95042dfd4ca0b7ddc8ce7792f6b1": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"68a706bdbbc44767a25080e5ad1a707d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"6977a57ff60c4ee4b00303aef5f38cef": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_22122f2b70fe4e6ca27cb1b3806c4d4c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"69cfeca1d2af411b88c6bbcadba6af12": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"6cd7be960a8f4e1992aa125433b39ee5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"6ebb971a9b344850946bc8b6b6d38492": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_3b46682c65f74db6b765a8a4d2cf00ed"
],
"layout": "IPY_MODEL_502bb129d5c84cf8a505c72249ca9a7a",
"selected_index": 0,
"tabbable": null,
"titles": [
"cluster0"
],
"tooltip": null
}
},
"6f5d3f80598947ca8564817c76c77d36": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"6ff90a049b5641f1ae76dfd7d45b577c": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_2846992849964f37b238bfd1bf6a9a36",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"7152616d9b3b4fbb85e2e6e8953a7ef0": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_05339cb27f054141b67dd7334190f157",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"729a555d247b4e72b898dc3ef6a161a1": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_3c7eaaf9c6b44b5698175f34b8204a8f"
],
"layout": "IPY_MODEL_ba44f20c6f0a44e3b1dec1134afcdc6b",
"selected_index": 0,
"tabbable": null,
"titles": [
"other values"
],
"tooltip": null
}
},
"73342021b26c4ce79923f935aad45dc1": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_aafb06e82f854e3692411e38b9212c77",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"7381942198134220ae01aa4f7aa1a008": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"76b0136fe8e9422594839e4d66aecb51": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"76f5d93f159e4f61a6adb6d635ab678d": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_d1a636e6aa0a4c0b918231ec681edb37",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"7710769cb19640a38e80541df75dafaa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7a09d32dda36422fb00c9d5dda01516c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7bb9707319c14c899aac338ee5f116bd": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_a8586cc5046a4b79afa82ec92c6e1877",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"7dab56a982ae4ed780821e62873eac5d": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_3aaf747df47c4cd3967f1d453d2c5fd1",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"7dcbea204fcc434cb290bc45b35945eb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7eb7c4bc370343f882ffbe98509876ed": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"7fa8d8e560774eada964ea1fdf1f143c": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_909dce058173463f832c698049a6fe39",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"83065be5915b4273bcf07a18bc4600aa": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"875196a864964bf2900d8e940c1c1963": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"88b6dad90c6047599f5300cfe786e36b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"8c49702b41034deaac9c837b26c4190c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"8d5cbd2da2804a408b44002838ff5e9d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"909dce058173463f832c698049a6fe39": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"913528674dda4ae58c42accb8fdd6088": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"91b0da952911452a8551a79b9d7a8495": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_b539f57a0bfd47cc8274850b7ac5a84c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"921110ec16b54ee5bd4de962c2872b58": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_540d0491978d48c1877115aa5273dc5c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"9271c05ecb104bc196df75d744e2e089": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_057a7823ca594dd0bbad65aa3edf8ded",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"95392ab35d374c189e1e219ef1e282ff": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_f57c89226f264e7c91d8f29d3391db5f"
],
"layout": "IPY_MODEL_9a3d136b9e88414c9242ba8dd5c23ae0",
"selected_index": 0,
"tabbable": null,
"titles": [
"other values"
],
"tooltip": null
}
},
"96953e5e06a649b1b91b6c26dd67a58b": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_a5bf0165217f4a7995e2bd032ba070f5",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"99177a6712384892a373592a3cea9548": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [],
"layout": "IPY_MODEL_17950636612f42d0b3729c523a2e526f",
"selected_index": null,
"tabbable": null,
"titles": [],
"tooltip": null
}
},
"992f2f4cc33c4520acf8fb028687044f": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"99ab2295e0a64c25b363383b8d8bbe64": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_ba8eefe55e1f48548cd4e565d041491e",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"9a3d136b9e88414c9242ba8dd5c23ae0": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"9ac43e5225244a3baf6c5dca74d92927": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"a43ae35194884002bc488fb2f1d2964e": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_ed83eec6d12043db979176cab05532cc",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a47ae792daf34e468635b1104f4e5768": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_992f2f4cc33c4520acf8fb028687044f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"a5bf0165217f4a7995e2bd032ba070f5": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"a8586cc5046a4b79afa82ec92c6e1877": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"a87659563b5e4b10a9c5ea987e72e331": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_e84d7eabffa145c498710887e8d3910e",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"aafb06e82f854e3692411e38b9212c77": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ab7e2f27391e454bb738a53347a17d2c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"adb4e2d8240f4089af6052cafdbf8e5d": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_f0358b03200c45aa8ab4848fd673df26",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"b0192e4f9c8a49f68d45db77b744c13f": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_c60ca3c9a6ed449ab81d1047580910e7",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"b09473d459b2430c96a7bed757a9de51": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_0f8e49a5d9ac4a96a8a1a8890ef74f81",
"msg_id": "",
"outputs": [
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAkAAAAGwCAYAAABB4NqyAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8ekN5oAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAobklEQVR4nO3de3BUZZ7/8U8nkE6EJNwkIZCYgAgiEAKBFDDjDkOKLDLUADqCixJBd5fdcAlZhLBcRSHKLMh1QJwdYFQWqJWwrChOKtxkNnJNKLIMMAhMMkASREiTqAHS/fvDtWf6R8Ck6eSkfd6vqlTZT58+/e0utd91+nS3zeVyuQQAAGCQAKsHAAAAaGgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACM08TqARojp9Opy5cvKzQ0VDabzepxAABALbhcLt28eVNRUVEKCLj/MR4CqAaXL19WdHS01WMAAAAvFBcXq0OHDvfdhgCqQWhoqKRvn8CwsDCLpwEAALXhcDgUHR3tfh2/HwKoBt+97RUWFkYAAQDgZ2pz+gonQQMAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACMQwABAADjEEAAAMA4BBAAADAOAQQAAIxDAAEAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACMQwABAADjEEAAAMA4BBAAADAOAQQAAIxDAAEAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACMQwABAADjEEAAAMA4BBAAADAOAQQAAIxDAAEAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACMY2kAHThwQMOHD1dUVJRsNpt27NjxvbfZt2+fevfuLbvdrkcffVQbN26857ZvvPGGbDab0tPTfTYzAADwf5YGUGVlpeLj47VmzZpabX/hwgUNGzZMgwYNUkFBgdLT0/Xyyy/rk08+uWvbI0eO6O2331bPnj19PTYAAPBzTay886FDh2ro0KG13n7dunWKi4vT0qVLJUmPP/64Dh48qLfeekspKSnu7SoqKjR27Fi98847ev31130+NwAA8G9+dQ5QXl6ekpOTPdZSUlKUl5fnsZaWlqZhw4bdte29VFVVyeFwePwBAIAfLkuPANVVSUmJIiIiPNYiIiLkcDj09ddfKyQkRFu2bNHx48d15MiRWu83KytLr776qq/HBQAAjZRfHQH6PsXFxZo6daref/99BQcH1/p2s2bNUnl5ufuvuLi4HqcEAABW86sjQJGRkSotLfVYKy0tVVhYmEJCQnTs2DGVlZWpd+/e7uurq6t14MABrV69WlVVVQoMDLxrv3a7XXa7vd7nBwAAjYNfBVD//v310Ucfeazl5OSof//+kqTBgwfr5MmTHtePHz9eXbt21cyZM2uMHwAAYB5LA6iiokLnzp1zX75w4YIKCgrUqlUrxcTEaNasWbp06ZJ++9vfSpImTpyo1atXa8aMGZowYYL27Nmjbdu2adeuXZKk0NBQde/e3eM+mjVrptatW9+1DgAAzGXpOUBHjx5VQkKCEhISJEkZGRlKSEjQvHnzJElXrlxRUVGRe/u4uDjt2rVLOTk5io+P19KlS/XrX//a4yPwAAAA38fmcrlcVg/R2DgcDoWHh6u8vFxhYWFWjwMAAGqhLq/fP6hPgQEAANQGAQQAAIxDAAEAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACMQwABAADjEEAAAMA4BBAAADAOAQQAAIxDAAEAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACMQwABAADjEEAAAMA4BBAAADAOAQQAAIxDAAEAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACMQwABAADjEEAAAMA4BBAAADAOAQQAAIxDAAEAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACMQwABAADjEEAAAMA4BBAAADAOAQQAAIxDAAEAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOJYG0IEDBzR8+HBFRUXJZrNpx44d33ubffv2qXfv3rLb7Xr00Ue1ceNGj+uzsrLUt29fhYaGqm3bthoxYoTOnDlTPw8AAAD4JUsDqLKyUvHx8VqzZk2ttr9w4YKGDRumQYMGqaCgQOnp6Xr55Zf1ySefuLfZv3+/0tLS9NlnnyknJ0e3b9/WkCFDVFlZWV8PAwAA+Bmby+VyWT2EJNlsNmVnZ2vEiBH33GbmzJnatWuXCgsL3WtjxozRjRs3tHv37hpvc/XqVbVt21b79+/Xk08+WatZHA6HwsPDVV5errCwsDo9DgAAYI26vH771TlAeXl5Sk5O9lhLSUlRXl7ePW9TXl4uSWrVqtU9t6mqqpLD4fD4AwAAP1x+FUAlJSWKiIjwWIuIiJDD4dDXX3991/ZOp1Pp6ekaOHCgunfvfs/9ZmVlKTw83P0XHR3t89kBAEDj4VcBVFdpaWkqLCzUli1b7rvdrFmzVF5e7v4rLi5uoAkBAIAVmlg9QF1ERkaqtLTUY620tFRhYWEKCQnxWJ80aZI+/PBDHThwQB06dLjvfu12u+x2u8/nBQAAjZNfHQHq37+/cnNzPdZycnLUv39/92WXy6VJkyYpOztbe/bsUVxcXEOPCQAAGjlLA6iiokIFBQUqKCiQ9O3H3AsKClRUVCTp27emxo0b595+4sSJOn/+vGbMmKHTp0/rV7/6lbZt26Zp06a5t0lLS9N7772nzZs3KzQ0VCUlJSopKanxHCEAAGAmSz8Gv2/fPg0aNOiu9dTUVG3cuFEvvviiLl68qH379nncZtq0aTp16pQ6dOiguXPn6sUXX3Rfb7PZaryvDRs2eGx3P3wMHgAA/1OX1+9G8z1AjQkBBACA//nBfg8QAACALxBAAADAOAQQAAAwDgEEAACMQwABAADjEEAAAMA4BBAAADAOAQQAAIxDAAEAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACMQwABAADjEEAAAMA4BBAAADAOAQQAAIxDAAEAAOMQQAAAwDgEEAAAMA4BBAAAjEMAAQAA4xBAAADAOAQQAAAwDgEEAACM43UAff7555ozZ46ee+45lZWVSZI+/vhj/e///q/PhgMAAKgPXgXQ/v371aNHDx06dEjbt29XRUWFJOnEiROaP3++TwcEAADwNa8CKDMzU6+//rpycnIUFBTkXv/pT3+qzz77zGfDAQAA1AevAujkyZMaOXLkXett27bVF1988cBDAQAA1CevAqhFixa6cuXKXev5+flq3779Aw8FAABQn7wKoDFjxmjmzJkqKSmRzWaT0+nU73//e02fPl3jxo3z9YwAAAA+5VUALV68WF27dlV0dLQqKirUrVs3PfnkkxowYIDmzJnj6xkBAAB8yuZyuVze3rioqEiFhYWqqKhQQkKCOnfu7MvZLONwOBQeHq7y8nKFhYVZPQ4AAKiFurx+N3mQO4qJiVFMTMyD7AIAAKDB1TqAMjIyar3TZcuWeTUMAABAQ6h1AOXn53tcPn78uO7cuaMuXbpIks6ePavAwED16dPHtxMCAAD4WK0DaO/eve5/XrZsmUJDQ7Vp0ya1bNlSknT9+nWNHz9eP/7xj30/JQAAgA95dRJ0+/bt9bvf/U5PPPGEx3phYaGGDBmiy5cv+2xAK3ASNAAA/qcur99efQze4XDo6tWrd61fvXpVN2/e9GaXAAAADcarABo5cqTGjx+v7du3689//rP+/Oc/64MPPtBLL72kUaNG+XpGAAAAn/LqY/Dr1q3T9OnT9Xd/93e6ffv2tztq0kQvvfSSfvnLX/p0QAAAAF97oC9CrKys1Oeffy5J6tSpk5o1a+azwazEOUAAAPifBvsixGbNmqlnz54PsgsAAIAG51UADRo0SDab7Z7X79mzx+uBAAAA6ptXAdSrVy+Py7dv31ZBQYEKCwuVmprqi7kAAADqjVcB9NZbb9W4vmDBAlVUVDzQQAAAAPXNq4/B38vzzz+v3/zmN77cJQAAgM/5NIDy8vIUHBzsy10CAAD4nFdvgf3/X3bocrl05coVHT16VHPnzvXJYAAAAPXFqwAKCwvz+BRYQECAunTpooULF2rIkCE+Gw4AAKA+eBVAGzdu9PEYAAAADcerc4A6duyoa9eu3bV+48YNdezY8YGHAgAAqE9eBdDFixdVXV1913pVVZUuXbr0wEMBAADUpzoF0M6dO7Vz505J0ieffOK+vHPnTmVnZ+u1115TbGxsrfd34MABDR8+XFFRUbLZbNqxY8f33mbfvn3q3bu37Ha7Hn300RrfjluzZo1iY2MVHByspKQkHT58uNYzAQCAH746nQM0YsQISZLNZrvrG5+bNm2q2NhYLV26tNb7q6ysVHx8vCZMmHDXJ8tqcuHCBQ0bNkwTJ07U+++/r9zcXL388stq166dUlJSJElbt25VRkaG1q1bp6SkJC1fvlwpKSk6c+aM2rZtW/sHCwAAfrC8+jX4uLg4HTlyRG3atPHdIDabsrOz3ZFVk5kzZ2rXrl0qLCx0r40ZM0Y3btzQ7t27JUlJSUnq27evVq9eLUlyOp2Kjo7W5MmTlZmZWatZ6uvX4F0ul76+ffdbhwAAmCikaeB9f1u0rur91+AvXLjg1WAPKi8vT8nJyR5rKSkpSk9PlyTdunVLx44d06xZs9zXBwQEKDk5WXl5effcb1VVlaqqqtyXHQ6Hbwf/P1/frla3eZ/Uy74BAPA3pxam6KEgr1LkgdX6XleuXKl/+Id/UHBwsFauXHnfbadMmfLAg9WkpKREERERHmsRERFyOBz6+uuvdf36dVVXV9e4zenTp++536ysLL366qv1MjMAAGh8ah1Ab731lsaOHavg4OB7/hiq9O1bWfUVQPVl1qxZysjIcF92OByKjo72+f2ENA3UqYUpPt8vAAD+KKRpoGX3XesA+uu3vax6CywyMlKlpaUea6WlpQoLC1NISIgCAwMVGBhY4zaRkZH33K/dbpfdbq+Xmf+azWaz7FAfAAD4C5/+GGp969+/v3Jzcz3WcnJy1L9/f0lSUFCQ+vTp47GN0+lUbm6uexsAAIBaH47467eIvs+yZctqtV1FRYXOnTvnvnzhwgUVFBSoVatWiomJ0axZs3Tp0iX99re/lSRNnDhRq1ev1owZMzRhwgTt2bNH27Zt065duzzmTE1NVWJiovr166fly5ersrJS48ePr/X8AADgh63WAZSfn1+r7erycbajR49q0KBB7svfRVZqaqo2btyoK1euqKioyH19XFycdu3apWnTpmnFihXq0KGDfv3rX7u/A0iSRo8eratXr2revHkqKSlRr169tHv37rtOjAYAAOby6nuAfujq63uAAABA/anL6/cDnwNUXFys4uLiB90NAABAg/EqgO7cuaO5c+cqPDxcsbGxio2NVXh4uObMmaPbt2/7ekYAAACf8uoz2ZMnT9b27du1ZMkS96er8vLytGDBAl27dk1r16716ZAAAAC+5NU5QOHh4dqyZYuGDh3qsf7RRx/pueeeU3l5uc8GtALnAAEA4H/q/Rwgu92u2NjYu9bj4uIUFBTkzS4BAAAajFcBNGnSJL322msePyBaVVWlRYsWadKkST4bDgAAoD54dQ5Qfn6+cnNz1aFDB8XHx0uSTpw4oVu3bmnw4MEaNWqUe9vt27f7ZlIAAAAf8SqAWrRooaefftpjrT5+PBQAAKA+eBVAGzZs8PUcAAAADcavfgwVAADAF7w6AnTt2jXNmzdPe/fuVVlZmZxOp8f1X375pU+GAwAAqA9eBdALL7ygc+fO6aWXXlJERESdfgAVAADA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",
"text/plain": ""
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"b28f4062b31341ae94673fe41ac7abe0": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_35522e67e6f74e3e984e031c6b52f880",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"b536ace447fb4056b66b6799ceeb01e6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b539f57a0bfd47cc8274850b7ac5a84c": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"b5a91780393f4c18b1c46f3ada702258": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_4764d7ec186f4435b65770bfeabba02c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ba44f20c6f0a44e3b1dec1134afcdc6b": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ba8eefe55e1f48548cd4e565d041491e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"bbb86cc9354047db91183fea088805b7": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_913528674dda4ae58c42accb8fdd6088",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"c1b288c2360b4431b50065d728e0bfeb": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"c60ca3c9a6ed449ab81d1047580910e7": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"c61aac6254d140f19a37f2a5b039c299": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"cb62d06b5347412ba77d75e11cca28a6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"cf2db8214f0a4672800477ae76c74885": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d1a636e6aa0a4c0b918231ec681edb37": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d219d90569fe4d1e882e9d699b38f96a": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_d6de04fb91724eb78270c17ebdfd1e63",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"d28e74dbc14e4fe59fe156ca858503ed": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_e929b531f0c246df84aa1f83e40d6cdc",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"d3035837734048a59dafedb46ee5f4f6": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_ffff931cc1cc40f98fd272301da5c23a",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting | \n value | \n
\n \n \n \n repetitions | \n 1 | \n
\n \n
\n
",
"text/plain": "setting value\nrepetitions 1"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"d6de04fb91724eb78270c17ebdfd1e63": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"d72aa509d27a44dead7e30a1b7530986": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"db59f4696bfb47388359ba83d2513f9d": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_eb89b494db194cc8ba807acda6668ab6",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"df1d29adc9634553a6bdbc9b8048b4ac": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_6f5d3f80598947ca8564817c76c77d36",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e3326f9580dc4033828da32fa57e862d": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_368b94d865f74a6eb293b15d00507458",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e36f4fda7b5f4b79bed14f2c924fd462": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_ffbf37a42d964df5a7396ebb8d35f93e",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e50bdb7737c748e7aedc20664bb73073": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_c1b288c2360b4431b50065d728e0bfeb",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e65d5a6dc43f4b1686d85c0b55d307f1": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_576fe680dc7341d78546fa6c10739e96",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"e84d7eabffa145c498710887e8d3910e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"e929b531f0c246df84aa1f83e40d6cdc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ea27552cf85845b88a2966fd8d5fb6aa": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_6705e5ed47684c40a1c556257f1a525f",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ea875e8e054b43b6b68fb41783eb4e44": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_6512ca07569a497886e616a98355e04e",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"eae66518dafd41929f119f3d255c7fe5": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_f0d8bc5a8ab0417c9996141e58b272c9",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"eb68b92016ff4e758667f5763cded51d": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"eb89b494db194cc8ba807acda6668ab6": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"eba432f90f0c4ce88bd94bc9c49290c2": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_04b866d765464591a1b2f1da5ab092cf",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ec1199e97e0c4fd6a8b9fd06d964856b": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_7a09d32dda36422fb00c9d5dda01516c",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ed83eec6d12043db979176cab05532cc": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ee14d85a9a60488c86c291ff7038ef94": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [
"IPY_MODEL_5550f94d70f64a02aa09f7e6684f75b7",
"IPY_MODEL_729a555d247b4e72b898dc3ef6a161a1",
"IPY_MODEL_1918393c942c4f5a92c148ccf6081e8e"
],
"layout": "IPY_MODEL_7381942198134220ae01aa4f7aa1a008",
"selected_index": 0,
"tabbable": null,
"titles": [
"sequencers",
"settings",
"other values"
],
"tooltip": null
}
},
"f0358b03200c45aa8ab4848fd673df26": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f0d8bc5a8ab0417c9996141e58b272c9": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f218fc68c48f4e958c6c9d3f123977c2": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f3d440cbccfd46e9a51d144b740d2790": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_57fa613f364d450eb2755955ec6b88ee",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f49427a3be654368aedf050641e5ecce": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f57c89226f264e7c91d8f29d3391db5f": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_0a2c56219a9b48d19ec81d10502eef2c",
"msg_id": "",
"outputs": [
{
"data": {
"text/html": "\n\n
\n \n \n setting | \n value | \n
\n \n \n \n reference_source | \n internal | \n
\n \n sync_on_external_trigger | \n None | \n
\n \n
\n
",
"text/plain": "setting value\nreference_source internal\nsync_on_external_trigger None"
},
"metadata": {},
"output_type": "display_data"
}
],
"tabbable": null,
"tooltip": null
}
},
"f6056664ec0240fba80c554f53298088": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f6078eea9baf451a9e434809e79aea9e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"f866eb2c60ed473db6f1c76ec0838eb8": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_cf2db8214f0a4672800477ae76c74885",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"f9716f0754da46e88dbeaa8c1287f979": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_83065be5915b4273bcf07a18bc4600aa",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"fad5dbf98f3a4fdaa872444307715493": {
"model_module": "@jupyter-widgets/controls",
"model_module_version": "2.0.0",
"model_name": "TabModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/controls",
"_model_module_version": "2.0.0",
"_model_name": "TabModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/controls",
"_view_module_version": "2.0.0",
"_view_name": "TabView",
"box_style": "",
"children": [],
"layout": "IPY_MODEL_8c49702b41034deaac9c837b26c4190c",
"selected_index": null,
"tabbable": null,
"titles": [],
"tooltip": null
}
},
"fc8b48e430994fb08b95410c954eac3a": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_f49427a3be654368aedf050641e5ecce",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"fd231f7f28ed4caf92232a311ea8eb2a": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_1dc24670d4fd4c058a5c439eed1ecc47",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"fd5b70065aad4503bae491dcd270e604": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_d72aa509d27a44dead7e30a1b7530986",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"fee0cdc606ca4bbb8ace917ae6bed87f": {
"model_module": "@jupyter-widgets/output",
"model_module_version": "1.0.0",
"model_name": "OutputModel",
"state": {
"_dom_classes": [],
"_model_module": "@jupyter-widgets/output",
"_model_module_version": "1.0.0",
"_model_name": "OutputModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/output",
"_view_module_version": "1.0.0",
"_view_name": "OutputView",
"layout": "IPY_MODEL_f6078eea9baf451a9e434809e79aea9e",
"msg_id": "",
"outputs": [],
"tabbable": null,
"tooltip": null
}
},
"ff65c46da1a7444894512da67e5fe626": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ffbf37a42d964df5a7396ebb8d35f93e": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
},
"ffff931cc1cc40f98fd272301da5c23a": {
"model_module": "@jupyter-widgets/base",
"model_module_version": "2.0.0",
"model_name": "LayoutModel",
"state": {
"_model_module": "@jupyter-widgets/base",
"_model_module_version": "2.0.0",
"_model_name": "LayoutModel",
"_view_count": null,
"_view_module": "@jupyter-widgets/base",
"_view_module_version": "2.0.0",
"_view_name": "LayoutView",
"align_content": null,
"align_items": null,
"align_self": null,
"border_bottom": null,
"border_left": null,
"border_right": null,
"border_top": null,
"bottom": null,
"display": null,
"flex": null,
"flex_flow": null,
"grid_area": null,
"grid_auto_columns": null,
"grid_auto_flow": null,
"grid_auto_rows": null,
"grid_column": null,
"grid_gap": null,
"grid_row": null,
"grid_template_areas": null,
"grid_template_columns": null,
"grid_template_rows": null,
"height": null,
"justify_content": null,
"justify_items": null,
"left": null,
"margin": null,
"max_height": null,
"max_width": null,
"min_height": null,
"min_width": null,
"object_fit": null,
"object_position": null,
"order": null,
"overflow": null,
"padding": null,
"right": null,
"top": null,
"visibility": null,
"width": null
}
}
},
"version_major": 2,
"version_minor": 0
}
}
},
"nbformat": 4,
"nbformat_minor": 5
}