{ "cells": [ { "cell_type": "markdown", "id": "e014afa1", "metadata": { "tags": [ "header_banner" ] }, "source": [ "\n", " \"image0\"\n", "" ] }, { "cell_type": "code", "execution_count": 1, "id": "2d20e3c4", "metadata": { "execution": { "iopub.execute_input": "2025-08-11T12:54:41.333131Z", "iopub.status.busy": "2025-08-11T12:54:41.332951Z", "iopub.status.idle": "2025-08-11T12:54:44.466076Z", "shell.execute_reply": "2025-08-11T12:54:44.465360Z" }, "tags": [ "imports", "header_0" ] }, "outputs": [], "source": [ "import rich # noqa:F401\n", "\n", "import quantify_core.data.handling as dh\n", "from quantify_scheduler import QuantumDevice\n", "\n", "from utils import ( # noqa:F401 # noqa:F401\n", " display_dict,\n", " initialize_hardware,\n", " run_schedule,\n", " show_connectivity,\n", ")" ] }, { "cell_type": "code", "execution_count": 2, "id": "963e2486", "metadata": { "execution": { "iopub.execute_input": "2025-08-11T12:54:44.469326Z", "iopub.status.busy": "2025-08-11T12:54:44.468794Z", "iopub.status.idle": "2025-08-11T12:54:44.471559Z", "shell.execute_reply": "2025-08-11T12:54:44.471087Z" }, "tags": [ "config", "header_1" ] }, "outputs": [], "source": [ "hw_config_path = \"configs/tuning_transmon_coupled_pair_hardware_config.json\"\n", "device_path = \"devices/transmon_device_2q.json\"" ] }, { "cell_type": "code", "execution_count": 3, "id": "653b7a61", "metadata": { "execution": { "iopub.execute_input": "2025-08-11T12:54:44.473039Z", "iopub.status.busy": "2025-08-11T12:54:44.472888Z", "iopub.status.idle": "2025-08-11T12:54:44.475777Z", "shell.execute_reply": "2025-08-11T12:54:44.475295Z" }, "tags": [ "header_2" ] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Data will be saved in:\n", "/root/quantify-data\n" ] } ], "source": [ "# Enter your own dataset directory here!\n", "dh.set_datadir(dh.default_datadir())" ] }, { "cell_type": "code", "execution_count": 4, "id": "8e86271f", "metadata": { "execution": { "iopub.execute_input": "2025-08-11T12:54:44.477287Z", "iopub.status.busy": "2025-08-11T12:54:44.477139Z", "iopub.status.idle": "2025-08-11T12:54:44.904012Z", "shell.execute_reply": "2025-08-11T12:54:44.903404Z" }, "tags": [ "header_3" ] }, "outputs": [], "source": [ "quantum_device = QuantumDevice.from_json_file(device_path)\n", "qubit = quantum_device.get_element(\"q0\")\n", "quantum_device.hardware_config.load_from_json_file(hw_config_path)\n", "cluster_ip = None\n", "meas_ctrl, inst_coord, cluster = initialize_hardware(quantum_device, ip=cluster_ip)" ] }, { "cell_type": "code", "execution_count": 5, "id": "ebe73c66", "metadata": { "execution": { "iopub.execute_input": "2025-08-11T12:54:44.906110Z", "iopub.status.busy": "2025-08-11T12:54:44.905951Z", "iopub.status.idle": "2025-08-11T12:54:44.909446Z", "shell.execute_reply": "2025-08-11T12:54:44.908879Z" }, "tags": [ "header_flux" ] }, "outputs": [], "source": [ "flux_settable: callable = cluster.module2.out0_offset\n", "flux_settable.inter_delay = 100e-9 # Delay time in seconds between consecutive set operations.\n", "flux_settable.step = 0.3e-3 # Stepsize in V that this Parameter uses during set operation.\n", "flux_settable() # Get before setting to avoid jumps.\n", "flux_settable(0.0)" ] }, { "cell_type": "markdown", "id": "ea3dd390", "metadata": {}, "source": [ "# Resonator Flux Spectroscopy\n", "For flux tunable qubits, the resonance frequency of the readout resonator depends on the flux.\n", "This can be used as a rough measure to find the sweetspot." ] }, { "cell_type": "code", "execution_count": 6, "id": "5af1977a", "metadata": { "execution": { "iopub.execute_input": "2025-08-11T12:54:44.911097Z", "iopub.status.busy": "2025-08-11T12:54:44.910948Z", "iopub.status.idle": "2025-08-11T12:54:44.913521Z", "shell.execute_reply": "2025-08-11T12:54:44.913020Z" }, "title": "HEADER" }, "outputs": [], "source": [ "import numpy as np\n", "from qcodes.parameters import ManualParameter\n", "\n", "from quantify_scheduler import Schedule, ScheduleGettable\n", "from quantify_scheduler.operations import IdlePulse, Measure" ] }, { "cell_type": "markdown", "id": "01456c2e", "metadata": { "tags": [ "no_demo" ] }, "source": [ "## Setup\n", "In this section we configure the hardware configuration which specifies the connectivity of our system.\n", "\n", "The experiments of this tutorial are meant to be executed with a Qblox Cluster controlling a transmon system.\n", "The experiments can also be executed using a dummy Qblox device that is created via an instance of the `Cluster` class, and is initialized with a dummy configuration.\n", "When using a dummy device, the analysis will not work because the experiments will return `np.nan` values.\n", "\n", "### Configuration file\n", "\n", "This is a template hardware configuration file for a 2-qubit system with a flux-control line which can be used to tune the qubit frequency. We will only work with qubit 0.\n", "\n", "The hardware connectivity is as follows, by cluster slot:\n", "\n", "- **QCM** (Slot 2)\n", " - $\\text{O}^{1}$: Flux line for `q0`.\n", " - $\\text{O}^{2}$: Flux line for `q1`.\n", "\n", "- **QCM-RF** (Slot 6)\n", " - $\\text{O}^{1}$: Drive line for `q0` using fixed 80 MHz IF.\n", " - $\\text{O}^{2}$: Drive line for `q1` using fixed 80 MHz IF.\n", "\n", "- **QRM-RF** (Slot 8)\n", " - $\\text{O}^{1}$ and $\\text{I}^{1}$: Shared readout line for `q0`/`q1` using a fixed LO set at 7.5 GHz.\n", "\n", "Note that in the hardware configuration below the mixers are uncorrected, but for high fidelity experiments this should also be done for all the modules." ] }, { "cell_type": "markdown", "id": "fe7f928a", "metadata": { "tags": [ "no_demo" ] }, "source": [ "### Quantum device settings\n", "Here we initialize our `QuantumDevice` and our qubit parameters, checkout this [tutorial](https://quantify-os.org/docs/quantify-scheduler/tutorials/Operations%20and%20Qubits.html) for further details.\n", "\n", "In short, a `QuantumDevice` contains device elements where we save our found parameters. Here we are loading a template for 2 qubits, but we will only use qubit 0." ] }, { "cell_type": "markdown", "id": "90819296", "metadata": {}, "source": [ "## Configure external flux control\n", "In the case of flux-tunable transmon qubits, we need to have some way of controlling the external flux.\n", "This can be done by setting an output bias on a module of the cluster which is then connected to the flux line.\n", "If your system is not using flux-tunable transmons, then you can skip to the next section." ] }, { "cell_type": "markdown", "id": "d9e5cb37", "metadata": { "lines_to_next_cell": 2, "title": "BODY" }, "source": [ "## Resonator Flux Spectroscopy" ] }, { "cell_type": "code", "execution_count": 7, "id": "15294dcd", "metadata": { "execution": { "iopub.execute_input": "2025-08-11T12:54:44.915274Z", "iopub.status.busy": "2025-08-11T12:54:44.915127Z", "iopub.status.idle": "2025-08-11T12:54:44.920107Z", "shell.execute_reply": "2025-08-11T12:54:44.919592Z" }, "lines_to_next_cell": 0 }, "outputs": [], "source": [ "def resonator_spectroscopy_schedule(\n", " qubit, # noqa: ANN001\n", " freqs: np.array,\n", " repetitions: int = 1,\n", ") -> Schedule:\n", " \"\"\"Schedule to sweep the resonator frequency.\"\"\"\n", " sched = Schedule(\"schedule\", repetitions=repetitions)\n", " for i, freq in enumerate(freqs):\n", " sched.add(\n", " Measure(\n", " qubit.name,\n", " acq_index=i,\n", " freq=freq,\n", " )\n", " )\n", " sched.add(IdlePulse(8e-9))\n", " return sched\n", "\n", "\n", "freqs = ManualParameter(name=\"freq\", unit=\"Hz\", label=\"Frequency\")\n", "freqs.batched = True\n", "freqs.batch_size = 100\n", "\n", "spec_sched_kwargs = dict(\n", " qubit=qubit,\n", " freqs=freqs,\n", ")\n", "gettable = ScheduleGettable(\n", " quantum_device,\n", " schedule_function=resonator_spectroscopy_schedule,\n", " schedule_kwargs=spec_sched_kwargs,\n", " real_imag=False,\n", " batched=True,\n", ")\n", "\n", "meas_ctrl.gettables(gettable)" ] }, { "cell_type": "code", "execution_count": 8, "id": "e4143967", "metadata": { "execution": { "iopub.execute_input": "2025-08-11T12:54:44.921746Z", "iopub.status.busy": "2025-08-11T12:54:44.921597Z", "iopub.status.idle": "2025-08-11T12:54:47.148707Z", "shell.execute_reply": "2025-08-11T12:54:47.147995Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Starting batched measurement...\n", "Iterative settable(s) [outer loop(s)]:\n", "\t out0_offset \n", "Batched settable(s):\n", "\t freq \n", "Batch size limit: 100\n", "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6d4cbdd1c29648ffb9a3eb3e1e184011", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Completed: 0%| [ elapsed time: 00:00 | time left: ? ] it" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "
\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "
<xarray.Dataset> Size: 29kB\n",
       "Dimensions:  (dim_0: 900)\n",
       "Coordinates:\n",
       "    x0       (dim_0) float64 7kB 7.58e+09 7.58e+09 ... 7.62e+09 7.62e+09\n",
       "    x1       (dim_0) float64 7kB 0.0 0.0 0.0 0.0 0.0 0.0 ... 1.0 1.0 1.0 1.0 1.0\n",
       "Dimensions without coordinates: dim_0\n",
       "Data variables:\n",
       "    y0       (dim_0) float64 7kB nan nan nan nan nan nan ... nan nan nan nan nan\n",
       "    y1       (dim_0) float64 7kB nan nan nan nan nan nan ... nan nan nan nan nan\n",
       "Attributes:\n",
       "    tuid:                             20250811-125444-924-7003c4\n",
       "    name:                             resonator flux spectroscopy\n",
       "    grid_2d:                          True\n",
       "    grid_2d_uniformly_spaced:         True\n",
       "    1d_2_settables_uniformly_spaced:  False\n",
       "    xlen:                             300\n",
       "    ylen:                             3
" ], "text/plain": [ " Size: 29kB\n", "Dimensions: (dim_0: 900)\n", "Coordinates:\n", " x0 (dim_0) float64 7kB 7.58e+09 7.58e+09 ... 7.62e+09 7.62e+09\n", " x1 (dim_0) float64 7kB 0.0 0.0 0.0 0.0 0.0 0.0 ... 1.0 1.0 1.0 1.0 1.0\n", "Dimensions without coordinates: dim_0\n", "Data variables:\n", " y0 (dim_0) float64 7kB nan nan nan nan nan nan ... nan nan nan nan nan\n", " y1 (dim_0) float64 7kB nan nan nan nan nan nan ... nan nan nan nan nan\n", "Attributes:\n", " tuid: 20250811-125444-924-7003c4\n", " name: resonator flux spectroscopy\n", " grid_2d: True\n", " grid_2d_uniformly_spaced: True\n", " 1d_2_settables_uniformly_spaced: False\n", " xlen: 300\n", " ylen: 3" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "quantum_device.cfg_sched_repetitions(80)\n", "center = qubit.clock_freqs.readout()\n", "frequency_setpoints = np.linspace(center - 20e6, center + 20e6, 300)\n", "flux_setpoints = np.linspace(0, 1, 3)\n", "meas_ctrl.settables([freqs, flux_settable])\n", "meas_ctrl.setpoints_grid((frequency_setpoints, flux_setpoints))\n", "\n", "rfs_ds = meas_ctrl.run(\"resonator flux spectroscopy\")\n", "rfs_ds" ] }, { "cell_type": "code", "execution_count": 9, "id": "a67aaf04", "metadata": { "execution": { "iopub.execute_input": "2025-08-11T12:54:47.151633Z", "iopub.status.busy": "2025-08-11T12:54:47.150949Z", "iopub.status.idle": "2025-08-11T12:54:47.505058Z", "shell.execute_reply": "2025-08-11T12:54:47.504465Z" }, "tags": [ "no_demo" ] }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "033c36d4df894e80a6e4377c88a25dd7", "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": [ "inst_coord.last_schedule.compiled_instructions" ] }, { "cell_type": "code", "execution_count": 10, "id": "b13cef24", "metadata": { "execution": { "iopub.execute_input": "2025-08-11T12:54:47.521639Z", "iopub.status.busy": "2025-08-11T12:54:47.521488Z", "iopub.status.idle": "2025-08-11T12:54:47.663817Z", "shell.execute_reply": "2025-08-11T12:54:47.662858Z" }, "tags": [ "no_demo" ] }, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3f3897cf94734091a55cb4a97fbbf6a0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Tab(children=(Tab(children=(Tab(children=(Tab(children=(Tab(children=(Output(),), selected_index=0, titles=('o…" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "display_dict(quantum_device.hardware_config())" ] }, { "cell_type": "code", "execution_count": 11, "id": "a0b12eb5", "metadata": { "execution": { "iopub.execute_input": "2025-08-11T12:54:47.683599Z", "iopub.status.busy": "2025-08-11T12:54:47.683449Z", "iopub.status.idle": "2025-08-11T12:54:47.691300Z", "shell.execute_reply": "2025-08-11T12:54:47.690817Z" } }, "outputs": [ { "data": { "text/plain": [ "'devices/device_2q_2025-08-11_12-54-47_UTC.json'" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "quantum_device.to_json_file(\"devices/\")" ] } ], "metadata": { "files_to_bundle_in_zip_file": [ "figures/Banner.jpeg", "utils.py", "devices/transmon_device_2q.json", "configs/tuning_transmon_coupled_pair_hardware_config.json" ], "jupytext": { "cell_metadata_filter": "all", "notebook_metadata_filter": "files_to_bundle_in_zip_file,is_demo,execute" }, "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.22" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "state": { "00f840c39f1841fba145e7d31fda6734": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_f9e25e08ca454f28b291bcb7a5f02207", "placeholder": "​", "style": "IPY_MODEL_902b73476f6a490babc2de847112cccb", "tabbable": null, "tooltip": null, "value": "Completed: 100%" } }, "00f9091c9e8d41af88a67dbb443ffc30": { "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_e7c085a8403e44f19cf6a723616d5cb6", "IPY_MODEL_f4bba925013f45728fa89ba98383d5b2", "IPY_MODEL_87ae829d25a64f5ba0876de0f55e6cbc" ], "layout": "IPY_MODEL_083f46ef2fe64caaafeaa57e55a674e1", "selected_index": 0, "tabbable": null, "titles": [ "output_att", "mixer_corrections", "modulation_frequencies" ], "tooltip": null } }, "010d9177b04a4bc9b9a52416c48edd5f": { "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 } }, "0115e7ab0aa0428c85c9fdbe6e3813a9": { "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 } }, "014c47139e9f42c2935b8ef6c448a465": { "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_6a5b4c15758e44ef8d398bb666fb69bb", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "01684a3910fa4d46a09252a9b25316f1": { "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 } }, "018643c72f3843fca32df63437086166": { "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 } }, "01af676410c24050a0745714ab855405": { "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 } }, "01d87aef2b3d44f98a5b172f1a42e1ae": { "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 } }, "0201305117604dbf8a1891b10471555b": { "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_9f850fe413d4450aa4357f71f10b6da0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0205f49e556c4e258a6d760f94b3ac26": { "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 } }, "033c36d4df894e80a6e4377c88a25dd7": { "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_415b00c004d24538a583f077b9d00e43" ], "layout": "IPY_MODEL_c67aafa40d20455a9d953f0b98e44179", "selected_index": 0, "tabbable": null, "titles": [ "cluster0" ], "tooltip": null } }, "03de74f69340498dac46911ef677eaa1": { "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_04a321b5cfa14e0da94dbd5203834b5d" ], "layout": "IPY_MODEL_6bd90a27f1cf487b8b5923cccca690d6", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "03fa5f304439444495a8b57617dd4edc": { "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_58c9de015d5c4a84827e64af962356f6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "04a321b5cfa14e0da94dbd5203834b5d": { "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_6ab03fbc581e4ec5820318f0842f032c", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
interm_freq80000000.0
\n
", "text/plain": "setting value\ninterm_freq 80000000.0" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "05151e76bbb647aaa126bd49dde55ff2": { "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 } }, "070cad5bde7d41fb89b3c604b028d2d4": { "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_aa73ecdac80d46da865c1c38a72bdd27" ], "layout": "IPY_MODEL_330c99d36e0e47f98a5cf131e535ca90", "selected_index": 0, "tabbable": null, "titles": [ "0" ], "tooltip": null } }, "0816e0a00a7f4f5d9f2c9e5fcb988d9c": { "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_7426ab68df4d4ca99c805222fef556d1", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "083f46ef2fe64caaafeaa57e55a674e1": { "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 } }, "08959b0c32ed47368545d206d8fd012c": { "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 } }, "089e9636ab9a4debb0601022c538e50a": { "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 } }, "09aabc88540a490aa5df57be2addffc1": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "FloatProgressModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_c6d86bfa00b0478884a2b891b4cf6cf0", "max": 100.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_75be1196e593460c879b0af021761436", "tabbable": null, "tooltip": null, "value": 100.0 } }, "09ba4f547d14402bbb527f2b897248a7": { "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_f490d9389e2a475683a401e98929b74f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0a2f2b1e8f334769bf26038a067c92b7": { "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_378c512a61cf405a93353aed74632f70", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0ab8228aa42e4c0898245617bf5d76dd": { "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_4de88badc2c042009e8a9172e50afff0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "0b81d7edce7a48c19e8f7c3777e0bd96": { "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 } }, "0c8445438c22411b98af0f1bb83d57b9": { "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 } }, "100beaed100d4e3bb1c904d59e3f6026": { "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_a7f5aad50a354dd598388f4fb099bc5a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "10764ec420084e0cabd18bcfd66cb65a": { "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 } }, "108aa7ba639647e997555113129019e6": { "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 } }, "13450690100d4f11986c3a6803127d73": { "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 } }, "1422db7d170444c5a8eb6e716c45eef2": { "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 } }, "1473232e53ff49fb8ad90b773df629cd": { "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_de1221653f9443008ac40e6981a7aa18", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "14ae9f3447f94e60bd976961d2fb2400": { "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 } }, "14d7bb71b7484792bd25ca5c9c6012f9": { "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_644bb4c9e2f74c74ae7cc55245f64787" ], "layout": "IPY_MODEL_74c960d93f304f7484e3f429422f2c6a", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "1501d9557d8c465cb467438fa463f2a4": { "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_418859452ee04299a6676dc3e1fe93e8", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
instrument_typeQRM_RF
\n
", "text/plain": "setting value\ninstrument_type QRM_RF" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "164bf610b78844ccb273505973e02809": { "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 } }, "17047a7bb32f4edfacb96f4f9b515a52": { "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 } }, "174a02c1f3704f4d8f7f2a5c4922662b": { "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 } }, "1907abc82ba04da9bdb515da286be02b": { "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_b1ed9cef7cf54bd09482a1ff38e74f38" ], "layout": "IPY_MODEL_c1749cb0c93f445da7e64c4b076b31e9", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "1a6c9241150c4e1eb5d068b33cbfc44c": { "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_dfe6a8c9a2a540c69bcd38c390b8ace4", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1b540ae7a7ea4cc9966328ec075be0fc": { "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_207130ae571f4fc1b0dab18a47a0114f", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
instrument_typeQCM
\n
", "text/plain": "setting value\ninstrument_type QCM" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "1c1721f8adf048e9b01543917e2a67c8": { "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 } }, "1cdca0f1c3544d6db7b4face2c10cce4": { "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_1cf687d80c9c4a9198502915e9800a61", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "1cf687d80c9c4a9198502915e9800a61": { "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 } }, "1e046bb8548e43088de9d81cd3895221": { "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_7ccca143d60a4714ab305ec94adf18e5", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
reference_sourceinternal
sync_on_external_triggerNone
\n
", "text/plain": "setting value\nreference_source internal\nsync_on_external_trigger None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "1e291180a3bc440bb35ff491cd2c5402": { "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 } }, "1e6d14bab7fa4c22a2abeba9e0e72eab": { "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 } }, "1eab859b67be47a6ab1496c973a9fdfc": { "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 } }, "207130ae571f4fc1b0dab18a47a0114f": { "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 } }, "211501222a0a4730a664cad4b6bb0f99": { "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_17047a7bb32f4edfacb96f4f9b515a52", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "228d59e276e44bf1babea96d6ec9f79d": { "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_c1a7c8b19b7b49bda2d1c4204d918831", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "230832b19ed14d50be96370528a946ea": { "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 } }, "2367a13f96594c8d8ae578c9060bcacf": { "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 } }, "2401d24dd3d5439a8176e29913491682": { "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_472b105b89a3471fb72cb97b7d4f283f", "IPY_MODEL_d491f42f42214fd4b416d0c48d04c2aa" ], "layout": "IPY_MODEL_6f19728d5de247e0bf54a73ba1bb7222", "selected_index": 0, "tabbable": null, "titles": [ "sequence", "settings" ], "tooltip": null } }, "2508b37d658144cfb97a2df6b34ec8e7": { "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_3bf7a81a20da48ee968d41dfb260ad35", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "253338be5db34901987ccb4cd20ddfeb": { "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 } }, "255a5f742a014b069881d8905f63d747": { "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_db57da7fc86d4340b940d36a769d17c0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2672f7e0083c4ef897841cb75e6b5619": { "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_f15b0cc0e42f473cb9286d1a2a13f2e6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2675c9630fe54eb982412ef8ddf4e7f4": { "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 } }, "28b93f0d2dcd494d85e456d53f387704": { "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 } }, "2909b5f544f1436c9cb21c7ee8bf8ae8": { "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 } }, "29658f0d120841409d57645ef7c09a85": { "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 } }, "2a0c6927b4dc432b9e8be58b6f4604a7": { "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_2c2a3842413f4b11942aa3efd9ae6672", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "2c2a3842413f4b11942aa3efd9ae6672": { "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 } }, "2dd5fea36d104a09ba9aab82104406cc": { "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 } }, "2e30210aa2c54e5f91ca1ef636ddb40d": { "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 } }, "2e68453dca2f465fa902fc0a8d1cff3f": { "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 } }, "2f35b0bdc38048bbaa5d246b3a763f98": { "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_57f090b8982b4465adb3d429b00ddb42" ], "layout": "IPY_MODEL_b80ec1810f084471b3601e144c309b16", "selected_index": 0, "tabbable": null, "titles": [ "0" ], "tooltip": null } }, "2f9de7845f8a43acaf06242c6e8966cf": { "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_f93b0f4a544049ed95e697b8bb237553", "IPY_MODEL_3bfd7b505d4f4c32a4fc512b2cc3f4bf" ], "layout": "IPY_MODEL_c5c4ece666464851a49122b747812acd", "selected_index": 0, "tabbable": null, "titles": [ "modules", "other values" ], "tooltip": null } }, "30daacd0f72b4824a85eafbe9b9f1502": { "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_a81da92a21a543dc8b9fe5e96f29308f" ], "layout": "IPY_MODEL_9b3a1c96f1404944b54352bb3523beca", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "31f43837ec9c4ae79eb343137e7bbce0": { "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_cdea28dde48c4d4ea1f7e93c1f2fb7f2", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "32bd98fd41b34d998c86fb8df739647b": { "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 } }, "32ce0ccbd9824f67bffbdd23865dbb61": { "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_3f77b65e408145a8bc44931870fd609e", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null } }, "330c99d36e0e47f98a5cf131e535ca90": { "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 } }, "3337f57955ab43c499af8964d0ad0515": { "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_67f12b7361674110b39f66cf85590588", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
q0:mw-q0.0110
q1:mw-q1.0110
q0:res-q0.ro60
q1:res-q1.ro60
\n
", "text/plain": "setting value\nq0:mw-q0.01 10\nq1:mw-q1.01 10\nq0:res-q0.ro 60\nq1:res-q1.ro 60" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "3362e47f531f47668af30c1495f31e64": { "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 } }, "36ca4c65338d4fc98636c8342481165a": { "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 } }, "378c512a61cf405a93353aed74632f70": { "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 } }, "3945adbf7c4b43a6bf48bff52d2aa145": { "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_fba17dfd24bf4614b3b545aef1ca3b98" ], "layout": "IPY_MODEL_a91db4ad00b042c080d13394d3c88d15", "selected_index": 0, "tabbable": null, "titles": [ "seq0" ], "tooltip": null } }, "3aca1f7369374cfc856049902c27f609": { "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 } }, "3b9f78a52d5641309822e74422d83be1": { "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 } }, "3bdd9531d1294b2a9789071301f9e191": { "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_fbddfbeaf2644779825787b7d0f9e484", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "3bf7a81a20da48ee968d41dfb260ad35": { "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 } }, "3bfd7b505d4f4c32a4fc512b2cc3f4bf": { "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_53b670026baf45d5b21c82a0977b31b3", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
instrument_typeCluster
sequence_to_fileFalse
refinternal
\n
", "text/plain": "setting value\ninstrument_type Cluster\nsequence_to_file False\nref internal" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "3c370f86b07640bf9b1c9357719c1b73": { "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 } }, "3d0eec6d14f74d2eacc8d0f53c77cab8": { "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_3c370f86b07640bf9b1c9357719c1b73", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "3d8b202bf40847fcbdfae151091ec0d2": { "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 } }, "3e1d8a1a2335437084aaed14c3db8ba9": { "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_d499a88eacc74d38953a26492ab376ec", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "3f3897cf94734091a55cb4a97fbbf6a0": { "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_70df106f849644c6890665872f313d69", "IPY_MODEL_00f9091c9e8d41af88a67dbb443ffc30", "IPY_MODEL_d33745e763f940fd9a20161185c20740", "IPY_MODEL_cc327729f08b48039bb1962907a06691" ], "layout": "IPY_MODEL_b145c60295b143a78e57572368ef4af0", "selected_index": 0, "tabbable": null, "titles": [ "hardware_description", "hardware_options", "connectivity", "other values" ], "tooltip": null } }, "3f77b65e408145a8bc44931870fd609e": { "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 } }, "401cb401f44a49c0a7d4aeee1aed8861": { "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 } }, "4069a0e28fb941749ed376eb5731b76e": { "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_77b8a8abeee74a068a923a650309ab57", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "415632caef664a2f8f0a0733df0c2754": { "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 } }, "415b00c004d24538a583f077b9d00e43": { "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_9251cd4b18f54959b434b9ca8eacb72d", "IPY_MODEL_489d77b034e94bda805b70126be408e8", "IPY_MODEL_a5562916419a41389898e557909e3f3e", "IPY_MODEL_7473fb73f0114915818a1f6524a87c86" ], "layout": "IPY_MODEL_13450690100d4f11986c3a6803127d73", "selected_index": 0, "tabbable": null, "titles": [ "settings", "cluster0_module8", "acq_channels_data", "other values" ], "tooltip": null } }, "418859452ee04299a6676dc3e1fe93e8": { "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 } }, "4280837ccd20467894c78fc487d7a505": { "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_5664ac61a01e423d844083a75c704acf", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
acq_index_dim_nameacq_index_0
protocolSSBIntegrationComplex
bin_modeaverage
coords[{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {...
\n
", "text/plain": "setting value\nacq_index_dim_name acq_index_0\nprotocol SSBIntegrationComplex\nbin_mode average\ncoords [{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {..." }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "42d195395ee44beea23b2ff26d494b43": { "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_3aca1f7369374cfc856049902c27f609", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "447ed7d578bb400c8350a1c74c11d726": { "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_0115e7ab0aa0428c85c9fdbe6e3813a9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "452e7d1fb63c4e11982a2bad198d0fb1": { "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 } }, "457083acb36e4f599d0f8f14533a6a18": { "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_8d811bcdaf164b908998f60c16d79468", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "46bc1054fed04620a252bc37d6101d7d": { "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 } }, "472b105b89a3471fb72cb97b7d4f283f": { "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_070cad5bde7d41fb89b3c604b028d2d4", "IPY_MODEL_7dc73fffe7754aca9a9430fe0a6bd894", "IPY_MODEL_75f88580adc8483bb7b77fe53eceb236" ], "layout": "IPY_MODEL_5072675a4c0043f693bfecff38c8781e", "selected_index": 0, "tabbable": null, "titles": [ "waveforms", "acquisitions", "program" ], "tooltip": null } }, "47804b77c9a4420dbbb8881c63bda76e": { "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 } }, "4885f2fe592944a5bcb48d729b5cbd7b": { "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_dfb2fb6016a94965bd449ae90c95d0ee" ], "layout": "IPY_MODEL_3d8b202bf40847fcbdfae151091ec0d2", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "489a5d56fed843d78068747504f508d3": { "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_785b09c8b4eb4393ac52cd941c1f20bf", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "489d77b034e94bda805b70126be408e8": { "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_3945adbf7c4b43a6bf48bff52d2aa145", "IPY_MODEL_544b2215b1404e3a9100ba6e8281408b", "IPY_MODEL_bb446419d30b46cfbf172b7f8802ee44", "IPY_MODEL_c9a2410cf3b24cff9bc41652b7743248" ], "layout": "IPY_MODEL_fa59a3157de74ea8a48430ead6e74dac", "selected_index": 0, "tabbable": null, "titles": [ "acq_metadata", "sequencers", "settings", "other values" ], "tooltip": null } }, "4a4f48631ef744b4aab48411e6ba1234": { "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 } }, "4ace55c7736c4ae2b4679f526ce69300": { "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_d441a893befd43e98cf1bc18830b3920", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4bfee7cc4fc04d768596bd4e33f61b1a": { "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_9130f990735246adad974fb4b62e62c2", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4c3db82274a841769fb2b77aaa665522": { "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 } }, "4c844578c3334257af293a599003ce92": { "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_743d5af9651643d9a2512eb935f933b6", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4cb983ffae2942d1aeb02615b7d20eaa": { "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_5a617b0beb5547bc8d2bbde0e60b2a58", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4cba16edc55f45ae81cc373f0bf10f8a": { "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_ee62217f53f542edaf407f9a8bd0871f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "4de88badc2c042009e8a9172e50afff0": { "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 } }, "4fa2727a60fb420485c3b7bbfd2ed93e": { "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 } }, "5025d9d8897a4734834f86592ea8726b": { "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_d28a6c84ae2c43048872f824ec5e805c", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5072675a4c0043f693bfecff38c8781e": { "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 } }, "515d6a68a1c5409fbd29667584bbd47b": { "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 } }, "516f2288c8254baaafb245ea79a3fd40": { "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_f67e66fa78894f2195c9829aac1b3a99", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "51fe5a133f8b49d3a3134fb58b848c6f": { "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 } }, "52f2b978e92a4014b4f2b297aa504033": { "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_51fe5a133f8b49d3a3134fb58b848c6f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "53b670026baf45d5b21c82a0977b31b3": { "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 } }, "544b2215b1404e3a9100ba6e8281408b": { "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_2401d24dd3d5439a8176e29913491682" ], "layout": "IPY_MODEL_08959b0c32ed47368545d206d8fd012c", "selected_index": 0, "tabbable": null, "titles": [ "seq0" ], "tooltip": null } }, "549acd61fd9d4638a3c03a0c2bc24d6e": { "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_bb32994e5db3458695d38ad95a909f55" ], "layout": "IPY_MODEL_174a02c1f3704f4d8f7f2a5c4922662b", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "5664ac61a01e423d844083a75c704acf": { "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 } }, "56fa2d535b5441cc8e09ca2235ea0f2f": { "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_9915ab8942b34d3abdc230c0cff08b86", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "57f090b8982b4465adb3d429b00ddb42": { "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_cada4d72f20a44f280f2013a3b5d654b" ], "layout": "IPY_MODEL_9e74d41cc0664025a6ec41410090f1f5", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "5823f390de7f4a5eb6da0e6807d22d77": { "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_01af676410c24050a0745714ab855405", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "584c0c347afe4542bf7f9ffe53a66051": { "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 } }, "58c9de015d5c4a84827e64af962356f6": { "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 } }, "590b084a21574d63a75bdeece2ecbcde": { "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_0b81d7edce7a48c19e8f7c3777e0bd96", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "59357830034445778df43fd876a061f2": { "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_415632caef664a2f8f0a0733df0c2754", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "599832c5a0c949968c2b2469c9d8af55": { "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_01d87aef2b3d44f98a5b172f1a42e1ae", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5a40e3abd07a428882c9952b8b785592": { "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_2367a13f96594c8d8ae578c9060bcacf", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5a617b0beb5547bc8d2bbde0e60b2a58": { "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 } }, "5b5e847649774bc79fd64f7c84bec32f": { "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 } }, "5b6b17fd250741479ef623dd8ec31231": { "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 } }, "5be363e2125242f6b740b3374c461f86": { "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_b340959fd4764dc29bded700d9037dd9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5bf242d063924c9c9b2263cd2b5b874b": { "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 } }, "5c91c217fd784f72bd264601367c877a": { "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_a8b1c98549d841b6b2a0c9f611cf8751", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5ccf3c020ee2405291cf5be2c530dffd": { "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_14ae9f3447f94e60bd976961d2fb2400", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5d07c289c7244003909cc0d4dda91cf5": { "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_584c0c347afe4542bf7f9ffe53a66051", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5daafe09be084e2c90c9b737feebbc84": { "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 } }, "5e308cfd0fd64adb877e1182fa12974a": { "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_bada6ab856a34775bc5d5ba8db884642", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5f41bd9142714121bd813c03f73de013": { "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 } }, "5f6fa16bd7594226b4a48df18b28fe81": { "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_a1efc7e188514f13bfca71e7175b8179", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "5fc0796e59204cd8a086d93c22ea37e5": { "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 } }, "60ce35770421418794e3216a29e137a9": { "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_10764ec420084e0cabd18bcfd66cb65a", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
auto_lo_calon_lo_interm_freq_change
auto_sideband_calon_interm_freq_change
\n
", "text/plain": "setting value\nauto_lo_cal on_lo_interm_freq_change\nauto_sideband_cal on_interm_freq_change" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "60d1b977474d4824969802a85e908c59": { "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 } }, "6183a37cc8c1415997a8cddd24160fe5": { "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 } }, "61e2c6bd45864d898127fb4cb6e56f8e": { "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_93597d38a1d84854a0724181b332b007", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6332c870dd994caba27b674883c84ee1": { "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_d0373f29f3c74f8cbb81980665380752", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "63d772f801f0443581693e5d99620172": { "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 } }, "640b71bba008463093235b02b9885b46": { "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_d05b7709c7854f438b818a294801da95", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "641cfd6bc83c4b34b7f8d7eecada6013": { "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 } }, "64375d80e38040c1aed0f10c3e2fea6e": { "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 } }, "644bb4c9e2f74c74ae7cc55245f64787": { "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_726d1a3457d5471884c89d4c73d24a2f", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
instrument_typeQCM_RF
\n
", "text/plain": "setting value\ninstrument_type QCM_RF" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "64d8745af20f4eefb4b67ee4c845d41e": { "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_b5b842d0f81e4ea6a4e5250bc9781edf", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
auto_lo_calon_lo_interm_freq_change
auto_sideband_calon_interm_freq_change
\n
", "text/plain": "setting value\nauto_lo_cal on_lo_interm_freq_change\nauto_sideband_cal on_interm_freq_change" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "663241f9ed7f421f8aef76fcbc536bf3": { "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 } }, "664380dc508841448f8a2ae84c65966f": { "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_ea109d63d4f74e2ca16e30599ec9638a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "670a1b1301714533a643928c9b533363": { "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 } }, "67f12b7361674110b39f66cf85590588": { "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 } }, "6874dcce060e45f68950cf52970a0ab9": { "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 } }, "690d6359d96f4b9a82920bfb10f1efc4": { "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 } }, "6a5b4c15758e44ef8d398bb666fb69bb": { "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 } }, "6aa19e8392c44883a281a0dd87ec7b21": { "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_d8dabfdfa927493886e9d4d11ff827a2", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6ab03fbc581e4ec5820318f0842f032c": { "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 } }, "6ae7a584697b4f94944f621d61095f5c": { "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_9df5f574b3d0453c91d7836d32bbbaf0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6b157332397c4568b7f17f57b266bb71": { "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_32bd98fd41b34d998c86fb8df739647b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6b319c4a5e8f4236a963ab0353518896": { "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_47804b77c9a4420dbbb8881c63bda76e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6bd90a27f1cf487b8b5923cccca690d6": { "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 } }, "6d429dab873d44e483c5efea895deaba": { "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_2dd5fea36d104a09ba9aab82104406cc", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6d4cbdd1c29648ffb9a3eb3e1e184011": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HBoxModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_00f840c39f1841fba145e7d31fda6734", "IPY_MODEL_09aabc88540a490aa5df57be2addffc1", "IPY_MODEL_c3a5c01e82264900bd16aa3591fdb7f3" ], "layout": "IPY_MODEL_a199ce219db04d4984e321a1e6b795f1", "tabbable": null, "tooltip": null } }, "6e1e7137c1bc47ff934fdda4f56ad57b": { "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_f9f0d607978b49eea250c3c525b8cc7d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "6e767f62b1f54ac4b4e89028c238435d": { "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 } }, "6f19728d5de247e0bf54a73ba1bb7222": { "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 } }, "70df106f849644c6890665872f313d69": { "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_2f9de7845f8a43acaf06242c6e8966cf" ], "layout": "IPY_MODEL_670a1b1301714533a643928c9b533363", "selected_index": 0, "tabbable": null, "titles": [ "cluster0" ], "tooltip": null } }, "71a04a7a215143eabd416dd2c940c9fb": { "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_60d1b977474d4824969802a85e908c59", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "726d1a3457d5471884c89d4c73d24a2f": { "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 } }, "73e9f9ec1dff4719867026ebefdc3bab": { "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 } }, "7426ab68df4d4ca99c805222fef556d1": { "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 } }, "743d5af9651643d9a2512eb935f933b6": { "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 } }, "7473fb73f0114915818a1f6524a87c86": { "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_5fc0796e59204cd8a086d93c22ea37e5", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
repetitions80
\n
", "text/plain": "setting value\nrepetitions 80" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "74c960d93f304f7484e3f429422f2c6a": { "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 } }, "75be1196e593460c879b0af021761436": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "ProgressStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "75f88580adc8483bb7b77fe53eceb236": { "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_87e03f3f84f04e5b8ee8324711fdb526", "msg_id": "", "outputs": [ { "name": "stdout", "output_type": "stream", "text": " \n set_mrk 2 # set markers to 2 (init) \n wait_sync 4 \n upd_param 4 \n wait 4 # latency correction of 4 + 0 ns \n move 80,R0 # iterator for loop with label start \n start: reset_ph \n upd_param 4 \n set_freq 427023411 # set nco frequency to 1.067559e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,0,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 427558528 # set nco frequency to 1.068896e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,1,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 428093645 # set nco frequency to 1.070234e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,2,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 428628763 # set nco frequency to 1.071572e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,3,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 429163880 # set nco frequency to 1.072910e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,4,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 429698997 # set nco frequency to 1.074247e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,5,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 430234114 # set nco frequency to 1.075585e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,6,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 430769231 # set nco frequency to 1.076923e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,7,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 431304348 # set nco frequency to 1.078261e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,8,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 431839465 # set nco frequency to 1.079599e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,9,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 432374582 # set nco frequency to 1.080936e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,10,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 432909699 # set nco frequency to 1.082274e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,11,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 433444816 # set nco frequency to 1.083612e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,12,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 433979933 # set nco frequency to 1.084950e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,13,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 434515050 # set nco frequency to 1.086288e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,14,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 435050167 # set nco frequency to 1.087625e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,15,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 435585284 # set nco frequency to 1.088963e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,16,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 436120401 # set nco frequency to 1.090301e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,17,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 436655518 # set nco frequency to 1.091639e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,18,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 437190635 # set nco frequency to 1.092977e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,19,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 437725753 # set nco frequency to 1.094314e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,20,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 438260870 # set nco frequency to 1.095652e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,21,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 438795987 # set nco frequency to 1.096990e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,22,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 439331104 # set nco frequency to 1.098328e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,23,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 439866221 # set nco frequency to 1.099666e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,24,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 440401338 # set nco frequency to 1.101003e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,25,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 440936455 # set nco frequency to 1.102341e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,26,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 441471572 # set nco frequency to 1.103679e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,27,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 442006689 # set nco frequency to 1.105017e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,28,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 442541806 # set nco frequency to 1.106355e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,29,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 443076923 # set nco frequency to 1.107692e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,30,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 443612040 # set nco frequency to 1.109030e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,31,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 444147157 # set nco frequency to 1.110368e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,32,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 444682274 # set nco frequency to 1.111706e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,33,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 445217391 # set nco frequency to 1.113043e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,34,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 445752508 # set nco frequency to 1.114381e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,35,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 446287625 # set nco frequency to 1.115719e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,36,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 446822742 # set nco frequency to 1.117057e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,37,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 447357860 # set nco frequency to 1.118395e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,38,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 447892977 # set nco frequency to 1.119732e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,39,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 448428094 # set nco frequency to 1.121070e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,40,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 448963211 # set nco frequency to 1.122408e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,41,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 449498328 # set nco frequency to 1.123746e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,42,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 450033445 # set nco frequency to 1.125084e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,43,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 450568562 # set nco frequency to 1.126421e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,44,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 451103679 # set nco frequency to 1.127759e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,45,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 451638796 # set nco frequency to 1.129097e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,46,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 452173913 # set nco frequency to 1.130435e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,47,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 452709030 # set nco frequency to 1.131773e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,48,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 453244147 # set nco frequency to 1.133110e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,49,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 453779264 # set nco frequency to 1.134448e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,50,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 454314381 # set nco frequency to 1.135786e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,51,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 454849498 # set nco frequency to 1.137124e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,52,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 455384615 # set nco frequency to 1.138462e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,53,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 455919732 # set nco frequency to 1.139799e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,54,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 456454849 # set nco frequency to 1.141137e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,55,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 456989967 # set nco frequency to 1.142475e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,56,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 457525084 # set nco frequency to 1.143813e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,57,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 458060201 # set nco frequency to 1.145151e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,58,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 458595318 # set nco frequency to 1.146488e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,59,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 459130435 # set nco frequency to 1.147826e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,60,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 459665552 # set nco frequency to 1.149164e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,61,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 460200669 # set nco frequency to 1.150502e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,62,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 460735786 # set nco frequency to 1.151839e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,63,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 461270903 # set nco frequency to 1.153177e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,64,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 461806020 # set nco frequency to 1.154515e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,65,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 462341137 # set nco frequency to 1.155853e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,66,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 462876254 # set nco frequency to 1.157191e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,67,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 463411371 # set nco frequency to 1.158528e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,68,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 463946488 # set nco frequency to 1.159866e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,69,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 464481605 # set nco frequency to 1.161204e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,70,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 465016722 # set nco frequency to 1.162542e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,71,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 465551839 # set nco frequency to 1.163880e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,72,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 466086957 # set nco frequency to 1.165217e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,73,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 466622074 # set nco frequency to 1.166555e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,74,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 467157191 # set nco frequency to 1.167893e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,75,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 467692308 # set nco frequency to 1.169231e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,76,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 468227425 # set nco frequency to 1.170569e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,77,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 468762542 # set nco frequency to 1.171906e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,78,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 469297659 # set nco frequency to 1.173244e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,79,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 469832776 # set nco frequency to 1.174582e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,80,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 470367893 # set nco frequency to 1.175920e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,81,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 470903010 # set nco frequency to 1.177258e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,82,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 471438127 # set nco frequency to 1.178595e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,83,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 471973244 # set nco frequency to 1.179933e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,84,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 472508361 # set nco frequency to 1.181271e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,85,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 473043478 # set nco frequency to 1.182609e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,86,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 473578595 # set nco frequency to 1.183946e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,87,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 474113712 # set nco frequency to 1.185284e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,88,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 474648829 # set nco frequency to 1.186622e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,89,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 475183946 # set nco frequency to 1.187960e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,90,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 475719064 # set nco frequency to 1.189298e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,91,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 476254181 # set nco frequency to 1.190635e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,92,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 476789298 # set nco frequency to 1.191973e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,93,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 477324415 # set nco frequency to 1.193311e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,94,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 477859532 # set nco frequency to 1.194649e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,95,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 478394649 # set nco frequency to 1.195987e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,96,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 478929766 # set nco frequency to 1.197324e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,97,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 479464883 # set nco frequency to 1.198662e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,98,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n set_freq 480000000 # set nco frequency to 1.200000e+08 Hz \n reset_ph \n set_awg_offs 1638,0 # setting offset for SquarePulse \n upd_param 4 \n wait 196 # auto generated wait (196 ns) \n acquire 0,99,4 \n wait 1792 # auto generated wait (1792 ns) \n set_awg_offs 0,0 # setting offset for SquarePulse \n set_awg_gain 1638,0 # setting gain for SquarePulse \n play 0,0,4 # play SquarePulse (4 ns) \n wait 100 # auto generated wait (100 ns) \n set_freq 400000000 # set nco frequency to 1.000000e+08 Hz \n upd_param 4 \n wait 4 # auto generated wait (4 ns) \n loop R0,@start \n stop \n \n\n" } ], "tabbable": null, "tooltip": null } }, "76670d7692d241e192cc00ae5e2d6b13": { "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_f0f23cf9a6d24182934fdf70cb2cde5a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "76966c6650784467abe51542d81c564f": { "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 } }, "76e6e921552943e48674613d4f0478b2": { "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_af599185c94a4d66b43b9860b6965ee1", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "77b8a8abeee74a068a923a650309ab57": { "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 } }, "785b09c8b4eb4393ac52cd941c1f20bf": { "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 } }, "78eba8e5d26042828d2de10babb76dc0": { "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_5b6b17fd250741479ef623dd8ec31231", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "790fd757fae0415580ba7366cb03728e": { "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_2e30210aa2c54e5f91ca1ef636ddb40d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7a42bd23db1644419f4da9cd60705a3c": { "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 } }, "7ccca143d60a4714ab305ec94adf18e5": { "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 } }, "7cf05d05c9784e7ea7d5368a19e7205e": { "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 } }, "7dc73fffe7754aca9a9430fe0a6bd894": { "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_549acd61fd9d4638a3c03a0c2bc24d6e" ], "layout": "IPY_MODEL_c5fc92d7a72f4ddfacc53bbc9a95f1cf", "selected_index": 0, "tabbable": null, "titles": [ "0" ], "tooltip": null } }, "7dd04fc35bb9498aa75b44a3b3c3ea64": { "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 } }, "7f302e35f74e4ce6b5939ccd2302b922": { "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_f1f002de08f842439d73c4e37cd55964", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "7f59a3e92a5c47499e458e336af4c940": { "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 } }, "806caabf5bc84a7dbd4f1289581af50a": { "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 } }, "8082c07703204a0b80a27ecc5c10a8fa": { "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_8a0d032643eb48eda175c8ac2c84c94d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "80d1284ebb3649439a549939d8342c9c": { "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 } }, "8182e2fb7ab24f4c9d211082993f2538": { "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 } }, "839453d248fe4a81a3272a1342e4c2ac": { "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_9db90997dcaa49379301982d387bb400", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8434887e1bcf434aba0d07927cc5fe1d": { "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 } }, "84a564b59c344cd1b092fa9b1987f720": { "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 } }, "8670549af0d14763ab2d1e32f327b78b": { "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_36ca4c65338d4fc98636c8342481165a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "878557739fd64e7bb7dfb8190a3cceda": { "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_a4d1bb33a3a646aa990dd033f7e0b488", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "87ae829d25a64f5ba0876de0f55e6cbc": { "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_1907abc82ba04da9bdb515da286be02b", "IPY_MODEL_03de74f69340498dac46911ef677eaa1", "IPY_MODEL_30daacd0f72b4824a85eafbe9b9f1502", "IPY_MODEL_4885f2fe592944a5bcb48d729b5cbd7b" ], "layout": "IPY_MODEL_ac77a42c779f4c498f4f362e9e006b0e", "selected_index": 0, "tabbable": null, "titles": [ "q0:mw-q0.01", "q1:mw-q1.01", "q0:res-q0.ro", "q1:res-q1.ro" ], "tooltip": null } }, "87e03f3f84f04e5b8ee8324711fdb526": { "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 } }, "8825918986dd4fb99a20a933bf07c9ec": { "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_64d8745af20f4eefb4b67ee4c845d41e" ], "layout": "IPY_MODEL_f98f01cd760a464c8197b2559042ab48", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "8918fa8a858a4612b5e1326420335e6a": { "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 } }, "8a0d032643eb48eda175c8ac2c84c94d": { "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 } }, "8a81046addff49df9a2f73032bad3a6e": { "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 } }, "8a966a695dd541cdb69e9434ba3b102a": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "8ac3efc2f9564a35a27571ff6071eede": { "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 } }, "8b2f5fd786364d84be32e01306790ac1": { "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_6e767f62b1f54ac4b4e89028c238435d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8bcd997b0c884c688842140e15ced6e0": { "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 } }, "8bcec2e50c0347718e4ee630f47acf01": { "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_63d772f801f0443581693e5d99620172", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8c7da69425f14a988d32fe5862151564": { "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_e245f1947736424ab21257aea15f5780", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "8ce7d0819e5d45229cc211712c04ccd6": { "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 } }, "8d811bcdaf164b908998f60c16d79468": { "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 } }, "8fd9e742602d4402b5be3c035464dd82": { "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_8bcd997b0c884c688842140e15ced6e0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "902b73476f6a490babc2de847112cccb": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLStyleModel", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "2.0.0", "_view_name": "StyleView", "background": null, "description_width": "", "font_size": null, "text_color": null } }, "9130f990735246adad974fb4b62e62c2": { "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 } }, "9251cd4b18f54959b434b9ca8eacb72d": { "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_1e046bb8548e43088de9d81cd3895221" ], "layout": "IPY_MODEL_515d6a68a1c5409fbd29667584bbd47b", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "932ae96de7af468eb783a4645289bf71": { "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_ec99dd34faa74852b2727c11987f74fb", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "93597d38a1d84854a0724181b332b007": { "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 } }, "938eda9ede6d474196b0e38e201a9894": { "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_5f41bd9142714121bd813c03f73de013", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "96303ecc27044cadb7c6972d7fbc471e": { "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 } }, "96b1dc05ed3d43d2a499be24c0b83901": { "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_2e68453dca2f465fa902fc0a8d1cff3f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "978c5e2f36e249eca9a4b48bb7392989": { "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 } }, "9811dfef00ed44cd954a94891fb67917": { "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_5b5e847649774bc79fd64f7c84bec32f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9915ab8942b34d3abdc230c0cff08b86": { "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 } }, "9a591aac4a514878ac444db0e3b0b4b0": { "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 } }, "9acc64ab824048fc9a7ce611e9c503df": { "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 } }, "9b3a1c96f1404944b54352bb3523beca": { "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 } }, "9b8810b5e90842edbbedc0af9294cedf": { "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_d36d775c11ca4b19a92d8c6d8fc125d5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9ccb6f8dd04147d28f0b426a22c10631": { "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 } }, "9d3a4cc8aabe49a7ab038d02e728b695": { "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_5bf242d063924c9c9b2263cd2b5b874b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "9db90997dcaa49379301982d387bb400": { "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 } }, "9df5f574b3d0453c91d7836d32bbbaf0": { "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 } }, "9e74d41cc0664025a6ec41410090f1f5": { "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 } }, "9f850fe413d4450aa4357f71f10b6da0": { "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 } }, "9ff7e7c71afe4361b600bef76d5c111e": { "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_6183a37cc8c1415997a8cddd24160fe5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a0128721df7143cd8af2b7a9aa64e929": { "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_1e291180a3bc440bb35ff491cd2c5402", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
graph[[cluster0.module6.complex_output_0, q0:mw], [...
\n
", "text/plain": "setting value\ngraph [[cluster0.module6.complex_output_0, q0:mw], [..." }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "a049f25fab564bc58b8994f207c1316f": { "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 } }, "a1874ae17768488d85134afe01827a4d": { "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 } }, "a199ce219db04d4984e321a1e6b795f1": { "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 } }, "a1efc7e188514f13bfca71e7175b8179": { "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 } }, "a306d90e28b945e38068d9c56f1337ad": { "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_8a81046addff49df9a2f73032bad3a6e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a321296a42994c07adfacad15cc1362c": { "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 } }, "a4127493d19a4569873061432abd92b3": { "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 } }, "a4d1bb33a3a646aa990dd033f7e0b488": { "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 } }, "a5562916419a41389898e557909e3f3e": { "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_eb6e5167386340d5909c3a5b266688d1" ], "layout": "IPY_MODEL_c562c5b467ff40cb8b1fbbc42d94b2dc", "selected_index": 0, "tabbable": null, "titles": [ "0" ], "tooltip": null } }, "a5e41a268f594bb79502772a02b10235": { "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 } }, "a6da3fbdf6744053b60a75c441d0ac90": { "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_8ac3efc2f9564a35a27571ff6071eede", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a7917a63ff774d599cb0dd98f30eea26": { "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_018643c72f3843fca32df63437086166", "selected_index": null, "tabbable": null, "titles": [], "tooltip": null } }, "a7f5aad50a354dd598388f4fb099bc5a": { "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 } }, "a81da92a21a543dc8b9fe5e96f29308f": { "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_a321296a42994c07adfacad15cc1362c", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
lo_freq7.500000e+09
\n
", "text/plain": "setting value\nlo_freq 7.500000e+09" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "a8450322041142f79bd7ce8b45ac2246": { "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_253338be5db34901987ccb4cd20ddfeb", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a875d352540d4799803a789f075aef86": { "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_96303ecc27044cadb7c6972d7fbc471e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a8b1c98549d841b6b2a0c9f611cf8751": { "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 } }, "a91db4ad00b042c080d13394d3c88d15": { "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 } }, "a97ecb13cd3047ef9bbe326bd4732387": { "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_84a564b59c344cd1b092fa9b1987f720", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "a9a11b108d1a444b819dcfce9f5d116b": { "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_60ce35770421418794e3216a29e137a9" ], "layout": "IPY_MODEL_d717acb560f04e92a39c35b3c0c901a3", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "a9c0788f0bbd49cdb2d789d28fc4a382": { "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_0c8445438c22411b98af0f1bb83d57b9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "aa73ecdac80d46da865c1c38a72bdd27": { "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_164bf610b78844ccb273505973e02809", "msg_id": "", "outputs": [ { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAA20AAAIsCAYAAABhgUG3AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8ekN5oAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA4z0lEQVR4nO3de3RV9Zn44TcXDASTCC2ahARCQFCBDhSrU2/AgDpKZaxWu8QWL60XanWKtV7mN+KltJap1VqdasfOVKvV2iq9QJWOInSNHau2tQoUlYtIIAQLlRwuIUByfn+0ZkghIegh2UmeZ62srpz93Xu/xzbL9eneZ5+sdDqdDgAAABIpu6MHAAAAoGWiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEiw3I4eoLtpbGyM6urqKCgoiKysrI4eBwAA6CDpdDo2b94cpaWlkZ3d8vU00dbOqquro7y8vKPHAAAAEqKqqirKyspa3C7a2llBQUFE/OW/mMLCwg6eBgAA6CipVCrKy8ubGqEloq2dvXtLZGFhoWgDAAD2+bEpDyIBAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJFiXibYtW7bEpEmT4v777291XV1dXdx2220xevToKC0tjeLi4iguLo6hQ4fG+eefHytWrGjzOW+//fb453/+5/c7OgAAQIu6RLSlUqk47bTTYsmSJbF169ZW15533nmxevXqmDt3bqxduzZqamqipqYmXn755Tj11FNj/PjxUV1dvc9zzps3L2688caora3N1NsAAADYQ25HD/B+1dXVxSmnnBKnn356NDY2trr2t7/9baxZsyZmz54d2dnNe7V3794xderU2LBhQ8yaNSvuuuuuFo+zatWqmDZtWtx8882xdOnSjLwPAACAven0V9rS6XRcffXVMWPGjH2uXbRoUYwbN26PYNvdxIkTY9GiRS1ur6uri0984hPx9a9/PYYNG/aeZgYAAGirTh9t+fn5ce6557Zp7Zo1a6KkpKTVNaWlpbF69eq9bkun0/H5z38+xo4dG5/4xCf2e1YAAID91elvj9wfDQ0NkZOT0+qa3Nzc2LVr1163ffe734033ngjnn322Tafs76+Purr65t+T6VSbd4XAACg019pay8vvfRSzJw5Mx577LHo0aNHm/e77bbboqioqOmnvLz8AE4JAAB0Nd062mpra2PIkCGxcOHCVtdt2LAhPvnJT8aDDz4YpaWl+3WOG264IWpra5t+qqqq3sfEAABAd9Otbo/8W0VFRbF8+fJW1zQ0NMR5550Xl19+eYwbN26/z5GXlxd5eXnvcUIAAKC761ZX2lr7vNq7du3aFbm5/9eyM2bMiN69e8eXvvSlAz0eAADAHrrVlbaysrJYvHhxq2uqq6tjwIABEfGXx/vfd999kZWVtdenTtbV1cWOHTti4cKF8corr0RRUdEBmRsAAOi+ulW0jRw5Mu6+++5obGxs8bva5s+fHyNHjoyIiF69esXGjRtbPN4DDzwQf/jDH+Kb3/zmgRgXAACge90eOWbMmBg4cGBMmzYt1q5dG+l0umnbtm3b4uGHH44777wzrrvuug6cEgAA4P90qWgrLCyMgoKCpt8nT54cX/va15qteeSRR6KioiImTZoUpaWlUVxcHMXFxfF3f/d38eSTT8aCBQva/ITIgoKCZucDAADItKz07pebOOBSqVQUFRVFbW1tFBYWdvQ4AABAB2lrG3SpK20AAABdjWgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASrEtE25YtW2LSpElx//33t7qurq4ubrvtthg9enSUlpZGcXFxFBcXx9ChQ+P888+PFStW7LHPCy+8EBMmTIj+/fvHYYcd1rTP4MGD43Of+1z8+c9/PlBvCwAAoPNHWyqVitNOOy2WLFkSW7dubXXteeedF6tXr465c+fG2rVro6amJmpqauLll1+OU089NcaPHx/V1dVN6zdu3BjnnHNO/Mu//EusWbMm1q9f37TPkiVL4tBDD41LLrnkQL9FAACgG8vt6AHej7q6ujjllFPi9NNPj8bGxlbX/va3v401a9bE7NmzIzu7eav27t07pk6dGhs2bIhZs2bFXXfdFRERL774Yhx//PExYcKEPY7Xs2fPmDFjRpSXl8e2bdsiPz8/c28MAADgrzr1lbZ0Oh1XX311zJgxY59rFy1aFOPGjdsj2HY3ceLEWLRoUdPvAwYMiIsuuqjF9dnZ2dG/f/9Ys2bN/g0OAADQRp36Slt+fn6ce+65bVq7Zs2aKCkpaXVNaWlprF69uun34cOHx/Dhw1tcv3379njrrbdiwIABbRsYAABgP3XqaNsfDQ0NkZOT0+qa3Nzc2LVrV5uOt3379rjsssvinHPOiZ49e7a4rr6+Purr65t+T6VSbRsYAAAgOvntkR3l+eefj1GjRkVjY2Pcfvvtra697bbboqioqOmnvLy8naYEAAC6gm4bbbW1tTFkyJBYuHBhm/fZtGlTXHnllXHeeefFrbfeGt///vdbvcoWEXHDDTdEbW1t009VVdX7nBwAAOhOus3tkX+rqKgoli9f3ub1s2fPjunTp8f5558fS5Ysid69e7dpv7y8vMjLy3uvYwIAAN1ct4m2tnxebdeuXZGb2/wfSTqdji9/+cvxox/9KObNmxdHHnnkgRwTAACgmW4TbWVlZbF48eJW11RXV+/xJMjHHnssfv7zn8cLL7zQ5qtrAAAAmdJtPtM2cuTIWLBgQatfwj1//vwYOXJk0+/pdDq+9KUvxYMPPijYAACADtFtom3MmDExcODAmDZtWqxduzbS6XTTtm3btsXDDz8cd955Z1x33XVNr//pT3+K3NzcVr+rDQAA4EDqMrdHFhYWRkFBQdPvkydPjuOOOy6uv/76ptceeeSRuPPOO2PSpEmxfv36pnArKCiIj3zkI7FgwYIoLS1tWv+nP/0p1q1bF8XFxa2e+z/+4z9i8uTJGX5HAAAAEVnp3S85ccClUqkoKiqK2traKCws7OhxAACADtLWNug2t0cCAAB0RqINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEy1i0NTQ0xHe+8504++yzY8yYMTFgwIAYNmxYLF26NCIizjjjjPjMZz4Tf/jDHzJ1SgAAgC4vI9G2ffv2GDNmTFxxxRWxY8eOOOGEE+Lss8+O5cuXx5tvvhkREaeffnr85je/iZNOOileffXVTJwWAACgy8tItH31q1+NZcuWxSuvvBJz5syJu+66K6655ppIp9NNa6ZNmxYvvfRSlJSUxB133JGJ0wIAAHR5GYm2p556KqZMmRLDhw9vdV1+fn780z/9Uzz33HOZOC0AAECXl5FoW7ZsWQwZMqRNa4uLi2PdunWZOC0AAECXl5FoS6VSUVBQ0Ka1eXl5sX379kycFgAAoMvzyH8AAIAEy0i0FRQUxObNm9u0dsuWLW2+KgcAANDdZSTahgwZEsuWLWvT2rfeeisqKyszcVoAAIAuLyPRdsopp8QjjzwSixcvbnXdW2+9FT/4wQ/i1FNPzcRpAQAAurys9O5fpvYebd26NcaMGRMrVqyIU089NSorKyM7Ozu+9a1vxSc/+ckoLy+PqqqqmDNnTvTv3z9+//vfR+/evTMxf6eTSqWiqKgoamtro7CwsKPHAQAAOkhb2yAj0RYRsWPHjvj3f//3+NWvfhWrVq2K2trapm0FBQUxaNCgOOmkk+Lzn/985OXlZeKUnZJoAwAAIjog2mgb0QYAAES0vQ088h8AACDBRBsAAECCiTYAAIAEy92fxZ/+9Kfjrbfeet8nraioiO9///vv+zgAAABd3X5FW2VlZeTm7rnLgw8+GMccc0wceeSRe90vnU7Hq6++Gn/4wx/ixBNPjEGDBr23aQEAALqZjDw9Mjs7O+6555743Oc+1+q6f/u3f4vbb789XnnllSgpKXm/p+2UPD0SAACISOjTI7/0pS9Ffn5+zJo1qz1PCwAA0Gm1a7RlZWXF6aefHr/85S/b87QAAACdVrs/PbJ///6xdu3a9j4tAABAp9Tu0VZUVBRbt25t79MCAAB0ShmJtl69esW2bdvatHb79u3Rq1evTJwWAACgy8tItA0ZMqTN39+2evXqqKyszMRpAQAAuryMRNtxxx0Xjz76aGzcuLHVdRs2bIhHHnkkTjjhhEycFgAAoMvLyPe0bdiwoemLtadOnRoDBw6Mgw8+uGn7li1bYtWqVfHQQw9FdnZ2LFmyJD74wQ++39N2Sr6nDQAAiGh7G+Rm4mQf/OAH47XXXotbb7015s+fH6tWrYpUKtW0vbCwMCoqKmLKlClx4403dttgAwAA2F8ZudJG27nSBgAARLS9Ddr9kf8AAAC0nWgDAABIMNEGAACQYBl5EMl///d/x5o1a9q8vqysLE455ZRMnBoAAKBLy0i0XXHFFbFixYp9rsvKyop0Oh2DBw+OZcuWZeLUAAAAXVpGbo9ctmxZNDY2tvizc+fOePbZZ2PEiBFxww03CDYAAIA2ysiVtn3JycmJcePGxZNPPhmDBw+OE044IU477bT2ODUAAECn1q4PIunfv3+cdtppce+997bnaQEAADqtdn965PDhw+Oll15q79MCAAB0Su0ebf369YsNGza092kBAAA6pXaPtoaGhsjNbZeP0gEAAHR67R5t1dXVMWjQoPY+LQAAQKfUrtG2ffv2ePzxx2PMmDHteVoAAIBOKyP3Kf7xj3+MmpqaFrdv2bIlVq9eHffdd1/86U9/ii9/+cuZOC0AAECXl5Fo+4d/+Id4++23W11TUFAQY8eOjR//+MdRUVGRidMCAAB0eRmJttdffz02bdrU4vbCwsLo06dPJk4FAADQrWQk2oqKiqKoqCgThwIAAGA37f70SAAAANouI9H2gx/8INatW9emtdXV1fHwww9n4rQAAABdXkaiberUqfHTn/60TWsfe+yxmDZtWiZOCwAA0OVlJNrS6XSk0+k2rV29enUMHDgwE6cFAADo8tr1M221tbXx6KOPxt///d+352kBAAA6rff09Mj169fHk08+2ezq2v/+7/9Gz54997p+27ZtUVVVFQ8//HDs2LHDl2sDAAC0UVa6rfc17ubBBx+Miy666P8OkpXV6u2R+fn5UVFREccff3zcfPPNUVJS8t6m3YstW7bEJz/5yTjzzDPjkksuaXFdXV1dfPOb34wf/ehHsX79+mhsbIyIv3yH3Ec+8pG49dZbY/Dgwc322bVrV/zXf/1X3H///VFdXR0NDQ1N72fkyJFxyy23xKhRo/Zr3lQqFUVFRVFbWxuFhYX792YBAIAuo61t8J6utF1wwQVxwQUXNP2enZ0d99xzT3zuc597L4d7z1KpVEyaNCmqqqri5JNPbnXteeedFyUlJTF37twoLS2NrKysiIjYunVrPPHEEzF+/Pj4zW9+E6WlpU37XHPNNVFVVRWPPvpoVFZWRnb2X+4m3b59ezz99NPx8Y9/PH7yk5/sd7gBAAC0VUa+XDsvL6/FWyMPlLq6ujjllFPi9NNPb7pq1pLf/va3sWbNmpg9e3ZTeL2rd+/eMXXq1NiwYUPMmjUr7rrrroiIWLduXfz0pz+NpUuXRq9evZrt07NnzzjjjDNi586dcdNNN8XPfvazzL45AACAv8rIg0heffXVOP/88zNxqDZLp9Nx9dVXx4wZM/a5dtGiRTFu3Lg9gm13EydOjEWLFjX9/tprr8XRRx+9R7DtbsKECc32AQAAyLSMXGk7/PDDM3GY/ZKfnx/nnntum9auWbNmn5+jKy0tjdWrV+/XPkVFRfHnP/+5TTMkTTqdjm07d3X0GAAA0O7ye+Q2fVyqM9jvaGtoaIh169ZFWVnZgZjngGhoaIicnJxW1+Tm5sauXf8XMW3Zpy3q6+ujvr6+6fdUKvW+j5kJ23buioP/7QcdPQYAALS7LdeeH70P6tHRY7TZfkfbsGHD4s0334zTTjst5s6dGxERM2bMiFWrVrX5GBUVFXHrrbfu76k7pdtuuy1uueWWjh4DAADopPY72jZv3hzpdDq2bt3a9FpVVVVUVVW1/aS5Gbkr8z2rra2NMWPGxHe/+90YN25cm/cbPXp0XHPNNfv1+b0bbrghrr766qbfU6lUlJeX78+4B0R+j9zYcm37fg4RAACSIL9Hx/bI/trvaRcvXhyvvfZas8fcf+9738vkTAdcUVFRLF++fL/3e/nll/d7n7y8vMjLy9vv/Q60rKysTnVJGAAAuqv9jrZ+/fpFv379DsQsB8zffl5tb3bt2tXsCmBb9gEAADjQMvLI/6QrKyuLmpqaVtdUV1fHgAED9mufVCoVffv2zciMAAAAe9Pu0bZgwYI49dRT2/WcI0eOjAULFrT6Jdzz58+PkSNHNv1+xBFHxG9/+9vYtm1bm/cBAADItHaPtl//+tfxyiuvtOs5x4wZEwMHDoxp06bF2rVrI51ON23btm1bPPzww3HnnXfGdddd1/R6cXFxnHXWWXH++efH8uXLmwVffX19zJ07N66++uq4+eab2/OtAAAA3Uy7PjZl/fr18cMf/jDGjBmT0eMWFhZGQUFB0++TJ0+O4447Lq6//vqm1x555JG48847Y9KkSbF+/fqmcCsoKIiPfOQjsWDBgigtLW123K9//evxn//5n3HeeefF2rVrm8ItPz8/RowYEbNnz47Ro0dn9L0AAADsLiu9+2WnfTjppJP26/vYdldfXx8bN26Mfv36xdNPPx0jRox4T8fp7FKpVBQVFUVtbW0UFhZ29DgAAEAHaWsb7NeVtgsvvHC/vo9tdz179oxBgwbFaaed1uyqGAAAAC3br2i7+OKLD9QcAAAA7EW3eOQ/AABAZyXaAAAAEky0AQAAJFjGHvlfX18f99xzT/zqV7+KN998M2pra5u2FRUVxaBBg2Ls2LHx+c9/PvLy8jJ1WgAAgC5tvx7535LNmzfHmDFj4q233oozzjgjKioqmj0hcvPmzbFq1aqYO3duDBgwIH73u9912ydIeuQ/AAAQcYAe+d+SmTNnRnV1dSxevDgOP/zwFtctW7YsRo8eHTNnzoxZs2Zl4tQAAABdWkY+0/b000/HlClTWg22iIjDDz88PvWpT8XTTz+didMCAAB0eRmJthUrVsTgwYPbtHbQoEGxcuXKTJwWAACgy8tItG3evDkOPvjgNq09+OCDY/PmzZk4LQAAQJeXkWjr3bt3pFKpTBwKAACA3WQk2vr37x/V1dWZOBQAAAC7yUi0TZw4MZ566qlMHAoAAIDdZCTarr/++ti4cWN861vfysThAAAA+KuMfE/bL3/5yxg3blxMnz49fvKTn8Rxxx0XOTk5e1370ksvRUTEjBkzmr1eVlYWl156aSbGAQAA6DKy0ul0+v0eZPz48bFq1ar3dYxBgwbFs88++35HSby2fus5AADQtbW1DTJypW3BggWZOAwAAAB/IyOfaQMAAODAEG0AAAAJJtoAAAASLCOfaXvXhg0b4vXXX4/q6uqoq6trcV3//v1jwoQJmTw1AABAl5SRaNu5c2dcccUV8eCDD8bOnTv3ub6ysjKWL1+eiVMDAAB0aRm5PfIrX/lKfPe7340vfvGL8cc//jFSqVTs3LmzxZ9ly5Zl4rQAAABdXkautD3xxBNxzjnnxFe/+tVMHA4AAIC/ysiVtuXLl8cxxxyTiUMBAACwm4xEW319feTl5WXiUAAAAOwmI9HWt2/fqKmpycShAAAA2E1Gou3EE0+MZ599NhOHAgAAYDcZibZZs2bFypUr47Of/WwsXbo0tm/fnonDAgAAdHtZ6XQ6nYkDPfXUU3HGGWdEWw43ePDgeOONNzJx2k4nlUpFUVFR1NbWRmFhYUePAwAAdJC2tkFGHvn/3//93zF58uQYOHBgnHPOOVFWVha9evVqcX3//v0zcVoAAIAuLyPRdsstt8RRRx0VL774oqdIAgAAZFBGPtO2aNGiOOusswQbAABAhmUk2rZs2RL9+vXLxKEAAADYTUairaCgIFKpVCYOBQAAwG4yEm1HH310LFmyJBOHAgAAYDcZibbbbrst5s6dGwsWLMjE4QAAAPirjDw9cu7cuTFkyJCYOHFijBo1KgYNGhT5+fktrq+oqIhbb701E6cGAADo0jISbatXr46DDz44TjrppIiI2LhxY2zcuLHlk+Zm5LQAAABdXkbq6YEHHsjEYQAAAPgbGflMGwAAAAeGaAMAAEgw0QYAAJBgGX0iSHV1dbz00kuxatWqqK2tbXFdeXl5XHTRRZk8NQAAQJeUsWibMWNG3H777bF9+/bo1atXbN++Pfr06RO9evWKXbt2xfr16yMrKytKSkpi8ODBog0AAKANMnJ75OOPPx4zZ86Mq6++OjZs2BCvvfZapNPp+P73vx9VVVWxbt26WLRoURx77LExceLE+NWvfpWJ0wIAAHR5GYm2u+++OyZMmBAzZ86Mvn37Rnb2nocdPnx4zJkzJ3784x/HD3/4w0ycFgAAoMvLSLStWLEijjvuuH2u+8AHPhBnnHFGfO9738vEaQEAALq8jERbdXV19OvXr01rhw4dGn/4wx8ycVoAAIAuL2OP/M/KymrTug9+8IOxcePGTJ0WAACgS8tItBUVFcWWLVv2eD2dTu/xWk5Ozl5fBwAAYE8Zibbi4uJYtWpV0++HHHJIRESkUqk91m7evDmKiooycVoAAIAuLyPR9o//+I8xe/bsqKmpiYiI3r17R2lpaTz33HN7rH3uuefi8MMPz8RpAQAAuryMfLn2F77whfjRj34Uhx9+eHzxi1+Mm2++Oa655pr44he/GJs3b46jjz46Ghsb41e/+lU8+eSTHvkPAADQRhmJtoEDB8aLL74YDz74YPTs2TMiIq666qro3bt33HvvvfHzn/88cnJyYsiQIfHYY4/FOeeck4nTAgAAdHlZaU8FaVepVCqKioqitrY2CgsLO3ocAACgg7S1DTL2yH8AAAAyT7QBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgATrNNG2adOmuPbaa2PkyJFRUlISxcXFUVxcHEcddVRMmzYt1q9f3+r+u3btirvvvjs+9KEPNdu/tLQ0RowYEXfccUfs3Lmz2T7pdDq+853v7LFP//794+///u9j7ty5B/ItAwAARG5HD9AWDQ0NMWHChJg8eXIsXLgw+vbtG1lZWRERUVtbGw888EAcf/zx8eqrr0Z+fv5ej3HPPffEvHnzYs6cOTFgwICm/SMi1q9fH1dddVXU19fHDTfc0PT6D3/4w3jooYdizpw5MXDgwKbX0+l0LFmyJM4999woKyuLUaNGHZg3DgAAdHtZ6XQ63dFD7Mvjjz8ejz76aDzxxBMtrrnqqqti0KBBMX369L1uP+qoo+LJJ5+MioqKvW5/5513YvTo0bFq1aqm1z7+8Y/HlVdeGf/wD/+w132++93vxrJly2LWrFltfi+pVCqKioqitrY2CgsL27wfAADQtbS1DTrF7ZGLFi2K8ePHt7pm4sSJsWjRoha3r1u3rtnVsr/Vp0+f2LFjR9TX1ze99vbbb0dpaWmL+5SVlUVVVVWrcwEAALwfnSLa1qxZEyUlJa2uKS0tjdWrV7e4PZ1ON7slcm8OOuigqKura/r9qKOOajXKqqqqorKystVjAgAAvB+dItoaGhoiJyen1TW5ubmxa9euFrdnZ2fHvu4E3T3YIiLOOeec+H//7//FkiVLoqGhoen1dDodf/zjH+Mb3/hGnHjiia0es76+PlKpVLMfAACAtuoU0ZYJpaWlsXLlyha3b9iwId5+++1mr40bNy5KSkpixIgRUVhY2PT0yIMPPjiGDx8ep556apxyyimtnve2226LoqKipp/y8vKMvB8AAKB76JTR9vrrr0dlZWW88cYbbd7niiuuiEsuuSRee+21ZlfNGhsbY+XKlXHllVfGwQcf3Gyfz33uc1FcXBxr166NLVu2RE1NTdTU1ERtbW0sWrQoli9fHr///e9bPe8NN9wQtbW1TT8+AwcAAOyPTvHI/781bNiwVq+a7c1ll10WeXl5ceGFF0ZVVVVTuPXs2TOGDx8e06dPj+eff75p/Z///Od4+umnY/ny5dGjR49mx8rNzY0RI0bErFmzYvr06fH000+3eN68vLzIy8vbr1kBAADe1SmibV+fV4v4y5dn5+a2/Hays7Pj4osvjosvvrhN51yxYkUMGTJkj2Db3ZFHHhkvv/xym44HAADwXnSK2yPLysqipqam1TXV1dUxYMCAFrdfcskl0djY2Ooxtm/fHgcddFBERKsBuLt9xSQAAMD70SmibeTIkTF//vxW18yfPz9GjhzZ4vbnn38+qqurW9yeSqUiKysr8vPzIyKioqIili1b1mqULVu2zINFAACAA6pTRNuZZ54Za9asiZtuuik2btzY7NH9qVQq7r777vjFL34Rl156aavHuP7662PTpk17bNu0aVNceeWVcd555zW91qdPnxg7dmxce+21sXnz5mbr0+l0rF69Oq644oq4/PLL3/8bBAAAaEGniLacnJx45plnoq6uLsaOHRulpaVNj98/5phjYvHixfHcc89F7969IyJi4cKFMWTIkGbfifav//qvUVFREWPGjGnat7i4OEpKSuLoo4+O0tLSmDlzZrPzfvvb346cnJz48Ic/3Gyf0tLSmDRpUpx11lmiDQAAOKCy0vv6xmkyKpVKRVFRUdTW1kZhYWFHjwMAAHSQtrZBp7jSBgAA0F2JNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCdJto2bdoU1157bYwcOTJKSkqiuLg4iouL46ijjopp06bF+vXrW91/165dcffdd8eHPvShZvuXlpbGiBEj4o477oidO3c226empiYuuuiiGDRoUNP64uLiKCkpib/7u7+LBx988EC+ZQAAgMjt6AHaoqGhISZMmBCTJ0+OhQsXRt++fSMrKysiImpra+OBBx6I448/Pl599dXIz8/f6zHuueeemDdvXsyZMycGDBjQtH9ExPr16+Oqq66K+vr6uOGGGyIiIp1Ox5QpU+KUU06J++67L/Ly8podb/ny5XH22WdH//79Y+LEiQfonQMAAN1dVjqdTnf0EPvy+OOPx6OPPhpPPPFEi2uuuuqqGDRoUEyfPn2v24866qh48skno6KiYq/b33nnnRg9enSsWrUqIiKqq6tj3Lhx8frrrzcLvN099NBD8dJLL8W3vvWtNr+XVCoVRUVFUVtbG4WFhW3eDwAA6Fra2gad4vbIRYsWxfjx41tdM3HixFi0aFGL29etWxcDBw5scXufPn1ix44dUV9fHxERq1atisGDB7cYbBERxx57bPTv338f0wMAALx3nSLa1qxZEyUlJa2uKS0tjdWrV7e4PZ1OtxpgEREHHXRQ1NXVRUTEjh079rgl8m8NHTo0rrvuulbXAAAAvB+dItoaGhoiJyen1TW5ubmxa9euFrdnZ2fHvu4EfTfYdvdf//VfMWHChCgrK2t6EElFRUWcfPLJ8fTTT7ftDQAAALxHneJBJJlQWloaK1eujMGDB+91+4YNG+Ltt99u9tr//u//RmVlZTzyyCNx6KGHNl2pq6+vjxdffDE+85nPxIMPPhgf/ehHWzxvfX190y2XEX+5bxUAAKCtOsWVtr/1+uuvR2VlZbzxxhtt3ueKK66ISy65JF577bVoaGhoer2xsTFWrlwZV155ZRx88MHN9undu3d8/etfj8MOO6zZrZV5eXlx4oknxsyZM+Pee+9t9by33XZbFBUVNf2Ul5e3eWYAAIBOeaVt2LBhsXLlyv3a57LLLou8vLy48MILo6qqqincevbsGcOHD4/p06fH888/32yfoUOHtnpb5ogRI+Kuu+5q9bw33HBDXH311U2/p1Ip4QYAALRZp4i2fX1eLeIvX56dm9vy28nOzo6LL744Lr744jaft1evXq1uz8/Pj61bt7a6Ji8vb58PNAEAAGhJp7g9sqysLGpqalpdU11dHQMGDGhx+yWXXBKNjY2tHmP79u1x0EEHRcRfbo3cvn17q+vr6upa/DJvAACATOgU0TZy5MiYP39+q2vmz58fI0eObHH7888/H9XV1S1uT6VSkZWV1RRhlZWVsXz58lafOLl06dKorKzcx/QAAADvXaeItjPPPDPWrFkTN910U2zcuLFZSKVSqbj77rvjF7/4RVx66aWtHuP666+PTZs27bFt06ZNceWVV8Z5553X9NoHPvCB+PCHPxwzZszY4xbIdDodr7zyStx4443x2c9+9v2/QQAAgBZ0imjLycmJZ555Jurq6mLs2LFRWlra9J1pxxxzTCxevDiee+656N27d0RELFy4MIYMGdLs8fr/+q//GhUVFTFmzJimfYuLi6OkpCSOPvroKC0tjZkzZzY77/333x9bt26NUaNGRUlJSdM+/fv3j0svvTS+/OUvx7hx49rzHwUAANDNZKX39Y3TZFQqlYqioqKora2NwsLCjh4HAADoIG1tg05xpQ0AAKC7Em0AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAgok2AACABBNtAAAACSbaAAAAEky0AQAAJJhoAwAASDDRBgAAkGCiDQAAIMFEGwAAQIKJNgAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAASTLQBAAAkmGgDAABIMNEGAACQYKINAAAgwUQbAABAguV29ADdTTqdjoiIVCrVwZMAAAAd6d0meLcRWiLa2tnmzZsjIqK8vLyDJwEAAJJg8+bNUVRU1OL2rPS+so6MamxsjOrq6igoKIisrKwOnSWVSkV5eXlUVVVFYWFhh84CtMzfKnQO/lYh+ZL2d5pOp2Pz5s1RWloa2dktf3LNlbZ2lp2dHWVlZR09RjOFhYWJ+B8t0Dp/q9A5+FuF5EvS32lrV9je5UEkAAAACSbaAAAAEky0dWN5eXlx0003RV5eXkePArTC3yp0Dv5WIfk669+pB5EAAAAkmCttAAAACSbaAAAAEky0AQAAJJhoAwAASDDR1s1s2rQprr322hg5cmSUlJREcXFxFBcXx1FHHRXTpk2L9evXd/SIwF5s2bIlJk2aFPfff39HjwLs5uGHH45Ro0Y1+3dqSUlJHHXUUXHHHXfErl27OnpE6PaeeeaZOOGEE6K0tDQOO+ywpr/TI444Ir72ta/Fzp07O3rEfRJt3UhDQ0NMmDAhevfuHQsXLozq6uqoqamJmpqaeP755+OII46I448/PrZt29bRowK7SaVScdppp8WSJUti69atHT0O8FcLFy6Mr33ta/GjH/0o1q1b1/Tv1HXr1sWCBQti4cKFce+993b0mNCtrVq1Ki666KL4xje+EWvXro3169c3/Z3+z//8T7z00ktxxx13dPSY++SR/93I448/Ho8++mg88cQTLa656qqrYtCgQTF9+vR2nAxoSV1dXYwfPz5OP/30aGxsjEMOOSS+8IUvdPRYQERcd911UVlZGZdddtlet7/++usxderUeOGFF9p5MuBdDz30ULzwwgtxzz337HX7ihUr4txzz43f/e537TzZ/nGlrRtZtGhRjB8/vtU1EydOjEWLFrXTRMC+pNPpuPrqq2PGjBkdPQrwNz760Y/GySef3OL28vLyqKqqaseJgL917LHHxuWXX97i9v79+3eKjwfldvQAtJ81a9bEhz70oVbXlJaWxurVq9tpImBf8vPz49xzz+3oMYC9OPPMM1vdvnjx4hgyZEj7DAPs1dChQ1vdvmbNmvjwhz/cTtO8d660dSMNDQ2Rk5PT6prc3FwfmgaA92nt2rVx2WWXxVVXXdXRowB7kU6nY926dXHttdfG1KlTO3qcfRJtAAAZkk6n44EHHohRo0bFhRdeGJ/4xCc6eiTgr6qqqqK8vDyKi4ujT58+UVpaGn369Imzzjqro0fbJ9HWjb3++utRWVkZb7zxRkePAgCd3htvvBGnnHJKfOc734lf/vKX8c///M8dPRKwm3c/Z1pTUxPvvPNOrFu3Lg4++OBO8QA+0daNDRs2LFauXLnPe30BgJY1NDTErbfeGhMnTozzzz8/fv3rX3eKz8hAd5aVlRXFxcVxxx13xLx586KmpqajR2qVB5F0I235vNquXbsiN9f/LACgLbZs2RJTpkyJ3NzcePXVV+OQQw7p6JGA/ZCTkxNHHnlk/PGPf4zi4uKOHqdFrrR1I2VlZfv8fxGqq6tjwIAB7TQRAHRu11xzTZSVlcUTTzwh2CCBxo0bF5s3b251TXZ2dmRnJzuLkj0dGTVy5MiYP39+q2vmz58fI0eObKeJAKDzWrZsWcybNy++8Y1vRFZWVkePA+xFTk5OvPbaay1uT6fTsXTp0qisrGzHqfafaOtGzjzzzFizZk3cdNNNsXHjxkin003bUqlU3H333fGLX/wiLr300g6cEgA6h5dffjnGjx8fvXr16uhRgBZMmTIlrr322r1+D/HWrVtjxowZMWzYsMTfaebDS91ITk5OPPPMM/GVr3wlxo4d2yzcDjnkkBg7dmw899xz0bt37w6eFNibwsLCKCgo6OgxgL/auHFj/PjHP46nnnqqxTU9evSIF154IUpLS9txMuBdF198cWzfvj0mTZoUGzZsaHbRoqCgIE4//fR44IEHOm7ANspK7z45AAAAieL2SAAAgAQTbQAAAAkm2gAAABJMtAEAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEy+3oAQCAfXv77bdjx44dkZeXF/369evQWd55553YunVr5OTkRHFxcWRlZXXoPABdnSttAHRJ8+bNi169esWnP/3pjh7lffvd734Xhx12WJSXl8ehhx4aK1as6LBZ6urqori4OMrLy6O0tDRmz57dYbMAdBeiDYBOp7GxMb797W/H5s2bW1zz4osvxvbt2+PXv/51O052YLz7PufMmRPPPPNMDBo0qMNm6dWrVzz77LMxZ86c6NevX6v/HQCQGW6PBKDTqaqqiiuuuCKGDRsWEyZM2Ouaf/zHf4yf/OQnccYZZ7TzdAfOxz72sY4eISIijj/++IiIyM/P7+BJALoH0QZAp5NOp5v9594cc8wx8fLLL7fXSABwwLg9EgAAIMFEGwCdxrPPPhu5ublNn+k6+eSTIysrK7KysiI3NzcWLlzYbP3hhx8e8+bN2+M4N910U3z605+ON954IyZPnhx9+vSJrKysyM/Pj9GjR8cPfvCDiIhYv359TJ06NQ477LDIysqKHj16xLBhw+LKK69s9bNcq1atik996lNx5JFHRl5eXtOMxcXFceKJJ8ZDDz3U6lXC/TFkyJCYN29eVFVVxec///kYOnRo5OfnR1ZWVpSVlcW4ceNi9uzZLZ7vjTfeiDPOOCMOPfTQpjnf/cnPz4+PfOQj8dRTT2VkVgDeG7dHAtBpjB49Ou65555Yv3593HzzzXHFFVfEEUccERERubm5MWrUqGbrly9fHmvWrNnjOG+99Va8+OKLMXbs2Dj22GNj+vTp0adPn9i0aVM89dRT8alPfSqysrJi5syZkZWVFRdccEH0798/GhoaYvHixfHtb387li5dGs8888wex166dGmMGTMmDjnkkDjnnHOivLw8evbsGel0OjZs2BAvv/xyTJ06NZ5//vn49re//b7/maxYsSJ+9rOfxbnnnhsDBw6M0047LUpKSiI/Pz/efvvteOGFF+Lss8+OG2+8MW699dZm++7cuTM+9rGPRWNjY1x55ZVxyCGHNHt8/8aNG+Opp56KM888M1555ZWmf9YAtLM0AHQyb775Zjoi0k8//XSr6yIiff/99+/x+gUXXNDitl27dqVPOOGEdHZ2dnrixInpHTt27LHmvvvuS0dE+ve///0e2yZPnpweNGhQura2tsW57r333nR2dnZ60aJFrc7/rgULFqRb+ld2RKR79OiR/uEPf5hubGzc65pbbrklnZeXl66qqmr2+nPPPdfi+3hXfX19um/fvumvfOUre2wbOHBg+nvf+16b3gMA753bIwHolvr27RsXX3zxHq/n5OTElClTorGxMb7whS9Ejx499ljz7ne/LV68uNnr6XQ6Fi5cGJdffnkUFha2eO7PfOYzUVBQEPPnz3+f7+IvpkyZEp/85Cdb/JLr6dOnR319ffzmN79p9npVVVVERAwdOrTFYx900EFxxx13xAknnJCRWQHYf26PBKBbGjhwYGRn7/3/uywrK4uIaPH70PLz86Nv375RXV3d7PVNmzZFKpWKysrKVs/do0ePGDBgQKxatWr/B9+Lj370o61uLygoiL59+8abb77Z7PW+fftGxF/m7t27d4v7X3DBBe9/SADeM9EGQLfU2neM9erVq01r6urqmr1WW1sbEX/5rNjePkv3t+f/05/+1NZxW5WTk7PPNQUFBU3zvWv06NGRn58f119/fVx33XVRVFTU7Gpdz5494wMf+ECLV/AAaB+iDQAybMqUKW1aN2LEiAM8Sev69esX9913X0ybNi0efvjhva4pKCiIyy67LL7yla/EQQcd1M4TAhAh2gAg47785S/v8STLvTn66KMP/DD78OlPfzrOOOOMWLp0aWzcuLHZtvr6+njllVfia1/7Whx22GFxzTXXdNCUAN2baAOg03n381fbtm3r4EmaKygoiIiIUaNGxcc+9rEOnqbtDjnkkBY/F3f22WfHypUr42c/+5loA+ggnh4JQKfzwQ9+MPLz85uefpgUffv2jYKCgjbNdf7558esWbPaYaqWvfjii/HEE0/sc115eXnU1NS0w0QA7I1oA6DTycrKiuOPPz7uv//+qK+v7+hxmmRlZcVJJ50U//Ef/xE7duxocd3y5cvjsccei8MOO6wdp9vTL3/5y7j88stj586dra5btmxZ0xM1AWh/bo8EoFOaNWtWHHvssXHkkUfGWWedFRUVFXH++edHnz59Onyuo48+Oo444og4++yzo6SkJA466KBIp9Oxbdu2ePPNN+PHP/5xDB06ND7+8Y936Kxnnnlm3HrrrXHiiSfGySefvEdE7tixI1599dWYPXt23HfffR00JQCiDYBOafTo0bFo0aK48cYb4+c//3msXbs2hg8fHuPHj29aM3jw4L1eIRo4cGDs2rWrxWMfdthhceihh8YhhxzS4prKysoYMGDAHq8PHz48lixZEjfeeGPMmTMn3nzzzaarboWFhVFaWhqf/exnY/r06VFUVLQf77jlOdpyFayioiIGDhzY7LWRI0fGT3/607jlllvim9/8ZmzZsqXZ9oMOOigqKiri9ttvj8985jPve1YA3pusdDqd7ughAICWLVy4MMaPHx9J+1d2RUVF3HzzzXHhhRd29CgAXZrPtAEAACSY2yMBoJNYtWpV9OzZM4qLizt0jg0bNsSWLVtavcUUgMwRbQCQcD169IiIiEGDBkXEX57mOGTIkA6Zpa6uLkpKSpqC7d3ZADhwfKYNABJu586dsWDBgtixY0f06tUrxo8fH9nZHfcJh1//+tfxzjvvRE5OTowdOzby8/M7bBaA7kC0AQAAJJgHkQAAACSYaAMAAEgw0QYAAJBgog0AACDBRBsAAECCiTYAAIAEE20AAAAJJtoAAAAS7P8DHVwm8/gqSR0AAAAASUVORK5CYII=", "text/plain": "
" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "aa8cd33e0ae44c838f44f1272b0cf741": { "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_1eab859b67be47a6ab1496c973a9fdfc", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ac157b41f4254eb8aae44a58054e124e": { "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 } }, "ac77a42c779f4c498f4f362e9e006b0e": { "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 } }, "ac9cb22726284d78a2a6fc6f031b83c3": { "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_2675c9630fe54eb982412ef8ddf4e7f4", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ad3ae3660713437385b08d107368e6c8": { "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_4a4f48631ef744b4aab48411e6ba1234", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "af599185c94a4d66b43b9860b6965ee1": { "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 } }, "b00cabb40dca4b2ca9e9d9bac73d0e6b": { "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 } }, "b0abca22d0cb42d5806a959feca67c67": { "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 } }, "b0c88631942149469efd8a69454a2ba5": { "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 } }, "b0fe3744c36140d89f02e4b7a1ba1097": { "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_d9817ad16c9442be820ab749d23dd5db", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
auto_lo_calon_lo_interm_freq_change
auto_sideband_calon_interm_freq_change
\n
", "text/plain": "setting value\nauto_lo_cal on_lo_interm_freq_change\nauto_sideband_cal on_interm_freq_change" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "b145c60295b143a78e57572368ef4af0": { "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 } }, "b1ed9cef7cf54bd09482a1ff38e74f38": { "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_7f59a3e92a5c47499e458e336af4c940", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
interm_freq80000000.0
\n
", "text/plain": "setting value\ninterm_freq 80000000.0" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "b2674c87cb234359958a5c3c52f3b288": { "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 } }, "b307ffb1f6be4daea3bd4db00a568d13": { "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_9ccb6f8dd04147d28f0b426a22c10631", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b340959fd4764dc29bded700d9037dd9": { "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 } }, "b44b452458424c9e8670a31d1ac8f77d": { "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 } }, "b548cd24154442b2bd5d3fc07d840807": { "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_089e9636ab9a4debb0601022c538e50a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b5b842d0f81e4ea6a4e5250bc9781edf": { "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 } }, "b69788931a8d400d917f492830096f60": { "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_a4127493d19a4569873061432abd92b3", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b76e1868040d482cbb7dfcedc3b91c96": { "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_fe603efd8ca04b93971c5e175134d7e3", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "b80ec1810f084471b3601e144c309b16": { "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 } }, "bada6ab856a34775bc5d5ba8db884642": { "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 } }, "bb32994e5db3458695d38ad95a909f55": { "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_d0ab4c47c4af43ddab998b01b46e3581", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
num_bins100
index0
\n
", "text/plain": "setting value\nnum_bins 100\nindex 0" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "bb446419d30b46cfbf172b7f8802ee44": { "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_d4a4f9390fe549b48f78f20c17e94b2e" ], "layout": "IPY_MODEL_f312e2ef3ec4422bb756a9398759dd43", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "bb9ba26fb2ea4b64aa7f8bac39132ed9": { "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_7cf05d05c9784e7ea7d5368a19e7205e", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
auto_lo_calon_lo_interm_freq_change
auto_sideband_calon_interm_freq_change
\n
", "text/plain": "setting value\nauto_lo_cal on_lo_interm_freq_change\nauto_sideband_cal on_interm_freq_change" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "bbbdabb94f4f40b7ade61ff229fadd11": { "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_452e7d1fb63c4e11982a2bad198d0fb1", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "be03ae63527f40c7851dc6635b2e8792": { "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_b2674c87cb234359958a5c3c52f3b288", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c131919f69d0481bbcd49bc4ee61ffb0": { "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_29658f0d120841409d57645ef7c09a85", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c1749cb0c93f445da7e64c4b076b31e9": { "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 } }, "c177e29db9bc4d12b20eef444403ccf2": { "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_ac157b41f4254eb8aae44a58054e124e", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c1a7c8b19b7b49bda2d1c4204d918831": { "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 } }, "c2079995a9c045fba55417dc361588ec": { "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_b0fe3744c36140d89f02e4b7a1ba1097" ], "layout": "IPY_MODEL_8434887e1bcf434aba0d07927cc5fe1d", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "c33351ca8ac2403fa1b3796ba3f567d9": { "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_0205f49e556c4e258a6d760f94b3ac26", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c3a5c01e82264900bd16aa3591fdb7f3": { "model_module": "@jupyter-widgets/controls", "model_module_version": "2.0.0", "model_name": "HTMLModel", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "2.0.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "2.0.0", "_view_name": "HTMLView", "description": "", "description_allow_html": false, "layout": "IPY_MODEL_2909b5f544f1436c9cb21c7ee8bf8ae8", "placeholder": "​", "style": "IPY_MODEL_8a966a695dd541cdb69e9434ba3b102a", "tabbable": null, "tooltip": null, "value": " [ elapsed time: 00:01 | time left: 00:00 ]  last batch size: 100" } }, "c562c5b467ff40cb8b1fbbc42d94b2dc": { "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 } }, "c56e35730fda4ded896d0868c10b708f": { "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 } }, "c5c4ece666464851a49122b747812acd": { "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 } }, "c5fc92d7a72f4ddfacc53bbc9a95f1cf": { "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 } }, "c67aafa40d20455a9d953f0b98e44179": { "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 } }, "c6ae2deda2104f53a1d06a52d6c8ce9f": { "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_b00cabb40dca4b2ca9e9d9bac73d0e6b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c6d86bfa00b0478884a2b891b4cf6cf0": { "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 } }, "c6ffdaf1e16b493db6a66279aea0c72d": { "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_641cfd6bc83c4b34b7f8d7eecada6013", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c76f7a4f6b6d42c88645a752ba47849a": { "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_010d9177b04a4bc9b9a52416c48edd5f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "c9a2410cf3b24cff9bc41652b7743248": { "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_d4f0204949b74ad19f251a25617db72c", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
repetitions80
\n
", "text/plain": "setting value\nrepetitions 80" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "c9d18d36563f4323add87203e4abbba7": { "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_7dd04fc35bb9498aa75b44a3b3c3ea64", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "cada4d72f20a44f280f2013a3b5d654b": { "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_978c5e2f36e249eca9a4b48bb7392989", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
acq_channel0
acq_indices[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,...
thresholded_trigger_countNone
\n
", "text/plain": "setting value\nacq_channel 0\nacq_indices [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,...\nthresholded_trigger_count None" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "cc327729f08b48039bb1962907a06691": { "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_64375d80e38040c1aed0f10c3e2fea6e", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
config_typequantify_scheduler.backends.qblox_backend.Qblo...
\n
", "text/plain": "setting value\nconfig_type quantify_scheduler.backends.qblox_backend.Qblo..." }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "ccbe237b1b6f4b48b04791ab9a55caa5": { "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 } }, "cdea28dde48c4d4ea1f7e93c1f2fb7f2": { "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 } }, "cf2f955f941d4bc1bbf420fd7d6c26f4": { "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_3362e47f531f47668af30c1495f31e64", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d0373f29f3c74f8cbb81980665380752": { "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 } }, "d0566d80eaa8416c82a8c43afacc15ff": { "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_8182e2fb7ab24f4c9d211082993f2538", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d05b7709c7854f438b818a294801da95": { "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 } }, "d0ab4c47c4af43ddab998b01b46e3581": { "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 } }, "d28a6c84ae2c43048872f824ec5e805c": { "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 } }, "d2db8e5ca55a48bd91e513590f3c111d": { "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_4c3db82274a841769fb2b77aaa665522", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d2ef68c0628c4a518022720e21ba2bbc": { "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_690d6359d96f4b9a82920bfb10f1efc4", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d33745e763f940fd9a20161185c20740": { "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_a0128721df7143cd8af2b7a9aa64e929" ], "layout": "IPY_MODEL_108aa7ba639647e997555113129019e6", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "d36d0a7fbf2144218cd09746238a153c": { "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_6874dcce060e45f68950cf52970a0ab9", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d36d775c11ca4b19a92d8c6d8fc125d5": { "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 } }, "d38c410fbe704a498b75223b271105e2": { "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 } }, "d441a53de3244f49b86979625d869663": { "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_a5e41a268f594bb79502772a02b10235", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d441a893befd43e98cf1bc18830b3920": { "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 } }, "d491f42f42214fd4b416d0c48d04c2aa": { "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_8ce7d0819e5d45229cc211712c04ccd6", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
sync_enTrue
channel_namecomplex_output_0
channel_name_measure[complex_input_0]
connected_output_indices(0, 1)
connected_input_indices(0, 1)
seq_fnNone
thresholded_acq_trigger_write_enNone
thresholded_acq_trigger_write_addressNone
thresholded_acq_trigger_write_invertFalse
nco_enTrue
init_offset_awg_path_I0.0
init_offset_awg_path_Q0.0
init_gain_awg_path_I1.0
init_gain_awg_path_Q1.0
modulation_freq100000000.0
mixer_corr_phase_offset_degree0.0
mixer_corr_gain_ratio1.0
auto_sideband_calSidebandCalEnum.ON_INTERM_FREQ_CHANGE
integration_length_acq1900
thresholded_acq_thresholdNone
thresholded_acq_rotationNone
ttl_acq_input_selectNone
ttl_acq_thresholdNone
ttl_acq_auto_bin_incr_enNone
\n
", "text/plain": "setting value\nsync_en True\nchannel_name complex_output_0\nchannel_name_measure [complex_input_0]\nconnected_output_indices (0, 1)\nconnected_input_indices (0, 1)\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 100000000.0\nmixer_corr_phase_offset_degree 0.0\nmixer_corr_gain_ratio 1.0\nauto_sideband_cal SidebandCalEnum.ON_INTERM_FREQ_CHANGE\nintegration_length_acq 1900\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 } }, "d499a88eacc74d38953a26492ab376ec": { "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 } }, "d4a4f9390fe549b48f78f20c17e94b2e": { "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_ea4f3e58cb8c4a298b5578e0128a0f5c", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
offset_ch0_path_INone
offset_ch0_path_QNone
offset_ch1_path_INone
offset_ch1_path_QNone
in0_gainNone
in1_gainNone
distortion_corrections[{'exp0': {'coeffs': None, 'config': 'QbloxFil...
out0_lo_freq_cal_type_defaultLoCalEnum.ON_LO_INTERM_FREQ_CHANGE
out1_lo_freq_cal_type_defaultLoCalEnum.OFF
lo0_freq7500000000.0
lo1_freqNone
lo2_freqNone
lo3_freqNone
lo4_freqNone
lo5_freqNone
in0_freq7500000000.0
in1_freqNone
out0_att60
out1_attNone
out2_attNone
out3_attNone
out4_attNone
out5_attNone
in0_attNone
in1_attNone
\n
", "text/plain": "setting value\noffset_ch0_path_I None\noffset_ch0_path_Q None\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.ON_LO_INTERM_FREQ_CHANGE\nout1_lo_freq_cal_type_default LoCalEnum.OFF\nlo0_freq 7500000000.0\nlo1_freq None\nlo2_freq None\nlo3_freq None\nlo4_freq None\nlo5_freq None\nin0_freq 7500000000.0\nin1_freq None\nout0_att 60\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 } }, "d4f0204949b74ad19f251a25617db72c": { "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 } }, "d55347523b564ff583ca87d966eedfaa": { "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_1c1721f8adf048e9b01543917e2a67c8", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d6726b66e391493bbda7e406c61addca": { "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_5daafe09be084e2c90c9b737feebbc84", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d717acb560f04e92a39c35b3c0c901a3": { "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 } }, "d74609f7f787405992ae96ccd2098823": { "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_1b540ae7a7ea4cc9966328ec075be0fc" ], "layout": "IPY_MODEL_1422db7d170444c5a8eb6e716c45eef2", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "d7ca9008b4e046828166651add44cf5b": { "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 } }, "d8beebe1b42048318e40a7021b4cfc01": { "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_80d1284ebb3649439a549939d8342c9c", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "d8dabfdfa927493886e9d4d11ff827a2": { "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 } }, "d9817ad16c9442be820ab749d23dd5db": { "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 } }, "db57da7fc86d4340b940d36a769d17c0": { "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 } }, "dded78edcb8d4fa3ae47582a6696e940": { "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_d7ca9008b4e046828166651add44cf5b", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "de1221653f9443008ac40e6981a7aa18": { "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 } }, "de3dac85c2f74888b83523fc8bcc4fe9": { "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_a1874ae17768488d85134afe01827a4d", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "dfb2fb6016a94965bd449ae90c95d0ee": { "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_c56e35730fda4ded896d0868c10b708f", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
lo_freq7.500000e+09
\n
", "text/plain": "setting value\nlo_freq 7.500000e+09" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "dfe6a8c9a2a540c69bcd38c390b8ace4": { "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 } }, "e238d92f0e5f452594d8311341ecc504": { "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_bb9ba26fb2ea4b64aa7f8bac39132ed9" ], "layout": "IPY_MODEL_ccbe237b1b6f4b48b04791ab9a55caa5", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "e245f1947736424ab21257aea15f5780": { "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 } }, "e51e4b67423b43969472f428633ba3a5": { "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_28b93f0d2dcd494d85e456d53f387704", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "e7c085a8403e44f19cf6a723616d5cb6": { "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_3337f57955ab43c499af8964d0ad0515" ], "layout": "IPY_MODEL_d38c410fbe704a498b75223b271105e2", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "e7c9d142007847afa7248f7aa31b731c": { "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_fb73450f2e48488b88390fe65e1bc726", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "e807447db48846e28d4f4ec84194a819": { "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_3b9f78a52d5641309822e74422d83be1", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "e8d95cf4d5914a06a1f0c9326764a4ce": { "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_1501d9557d8c465cb467438fa463f2a4" ], "layout": "IPY_MODEL_b0abca22d0cb42d5806a959feca67c67", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "e9297b1eb78a46339e800bcf5ae85168": { "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_8918fa8a858a4612b5e1326420335e6a", "msg_id": "", "outputs": [ { "data": { "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
settingvalue
acq_protocolSSBIntegrationComplex
bin_modeaverage
acq_return_type<class 'complex'>
repetitions80
\n
", "text/plain": "setting value\nacq_protocol SSBIntegrationComplex\nbin_mode average\nacq_return_type \nrepetitions 80" }, "metadata": {}, "output_type": "display_data" } ], "tabbable": null, "tooltip": null } }, "e998601d41bf498cb64ace19a18996f7": { "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_9a591aac4a514878ac444db0e3b0b4b0", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "ea109d63d4f74e2ca16e30599ec9638a": { "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 } }, "ea4f3e58cb8c4a298b5578e0128a0f5c": { "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 } }, "eb526ad6a2374aabacb2feeb702fccfe": { "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_fe45c9d0f3f0475b8e4514b7d1587053", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "eb6e5167386340d5909c3a5b266688d1": { "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_4280837ccd20467894c78fc487d7a505" ], "layout": "IPY_MODEL_b44b452458424c9e8670a31d1ac8f77d", "selected_index": 0, "tabbable": null, "titles": [ "other values" ], "tooltip": null } }, "ec99dd34faa74852b2727c11987f74fb": { "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 } }, "ee62217f53f542edaf407f9a8bd0871f": { "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 } }, "f065f29cd23c4a8ba8dae89bb70b25e3": { "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_401cb401f44a49c0a7d4aeee1aed8861", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f0f23cf9a6d24182934fdf70cb2cde5a": { "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 } }, "f15b0cc0e42f473cb9286d1a2a13f2e6": { "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 } }, "f1f002de08f842439d73c4e37cd55964": { "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 } }, "f312e2ef3ec4422bb756a9398759dd43": { "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 } }, "f3698354cf6144499461e0c2b67ace82": { "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_feaabb06679c4d40b2d1b40a9c503067", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f490d9389e2a475683a401e98929b74f": { "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 } }, "f4a725d37ac140fbb3be4827f0b70435": { "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_01684a3910fa4d46a09252a9b25316f1", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f4bba925013f45728fa89ba98383d5b2": { "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_a9a11b108d1a444b819dcfce9f5d116b", "IPY_MODEL_8825918986dd4fb99a20a933bf07c9ec", "IPY_MODEL_c2079995a9c045fba55417dc361588ec", "IPY_MODEL_e238d92f0e5f452594d8311341ecc504" ], "layout": "IPY_MODEL_4fa2727a60fb420485c3b7bbfd2ed93e", "selected_index": 0, "tabbable": null, "titles": [ "q0:mw-q0.01", "q1:mw-q1.01", "q0:res-q0.ro", "q1:res-q1.ro" ], "tooltip": null } }, "f53c4d8368dc4b87b3944461ff41ea91": { "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_76966c6650784467abe51542d81c564f", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f566047b67804c6cb1248e3572d5e04e": { "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_9acc64ab824048fc9a7ce611e9c503df", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f67e66fa78894f2195c9829aac1b3a99": { "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 } }, "f6aa5a96e0e243d8b59d1e70397e2cd7": { "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_663241f9ed7f421f8aef76fcbc536bf3", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f72b45f8a7794556931bfefa232f3ffe": { "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_73e9f9ec1dff4719867026ebefdc3bab", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "f93b0f4a544049ed95e697b8bb237553": { "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_14d7bb71b7484792bd25ca5c9c6012f9", "IPY_MODEL_d74609f7f787405992ae96ccd2098823", "IPY_MODEL_e8d95cf4d5914a06a1f0c9326764a4ce" ], "layout": "IPY_MODEL_a049f25fab564bc58b8994f207c1316f", "selected_index": 0, "tabbable": null, "titles": [ "6", "2", "8" ], "tooltip": null } }, "f98f01cd760a464c8197b2559042ab48": { "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 } }, "f9e25e08ca454f28b291bcb7a5f02207": { "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 } }, "f9f0d607978b49eea250c3c525b8cc7d": { "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 } }, "fa59a3157de74ea8a48430ead6e74dac": { "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 } }, "fb3b67297bb545e48648f3ee7d200d72": { "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_b0c88631942149469efd8a69454a2ba5", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "fb64eba9c1b14028ba22052050a8af66": { "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_1e6d14bab7fa4c22a2abeba9e0e72eab", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "fb73450f2e48488b88390fe65e1bc726": { "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 } }, "fba17dfd24bf4614b3b545aef1ca3b98": { "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_2f35b0bdc38048bbaa5d246b3a763f98", "IPY_MODEL_e9297b1eb78a46339e800bcf5ae85168" ], "layout": "IPY_MODEL_46bc1054fed04620a252bc37d6101d7d", "selected_index": 0, "tabbable": null, "titles": [ "acq_channels_metadata", "settings" ], "tooltip": null } }, "fbaae8492fe944e6990dc569cd2d526f": { "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_806caabf5bc84a7dbd4f1289581af50a", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "fbddfbeaf2644779825787b7d0f9e484": { "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 } }, "fcebed09bebf40c8b870a278bb03dccb": { "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_230832b19ed14d50be96370528a946ea", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "fd64a040bc3645ba8196d72912cbd307": { "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_05151e76bbb647aaa126bd49dde55ff2", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "fe45c9d0f3f0475b8e4514b7d1587053": { "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 } }, "fe603efd8ca04b93971c5e175134d7e3": { "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 } }, "fe6857247e7b46a7a553843daabc643a": { "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_7a42bd23db1644419f4da9cd60705a3c", "msg_id": "", "outputs": [], "tabbable": null, "tooltip": null } }, "feaabb06679c4d40b2d1b40a9c503067": { "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 }