-
-
Save tonyfast/548e67d93b895ddf0f2621754be52493 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# Navigating a hierarchy with [Miller Columns](https://en.wikipedia.org/wiki/Miller_columns)\n", | |
"\n", | |
"Picking things from a deep hierarchy can be challenging. This does some stuff to make it better." | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 647, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"from ipywidgets import SelectMultiple, Box, DOMWidget\n", | |
"from ipywidgets.widgets.widget_selection import _Selection\n", | |
"from traitlets import Tuple, Any, observe, link, dlink\n", | |
"import os" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 648, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"class ColumnPicker(Box):\n", | |
" value = Tuple().tag(sync=True)\n", | |
" _source = Any()\n", | |
" \n", | |
" def make_column(self, **kwargs):\n", | |
" idx = len(self.children)\n", | |
" column = SelectMultiple(**kwargs)\n", | |
" column.layout.display = \"flex\"\n", | |
" column.layout.flex = \"1\"\n", | |
" column.layout.flex_flow = \"column\"\n", | |
" link((self.layout, \"height\"), (column.layout, \"height\"))\n", | |
" dlink((column, \"value\"), (column, \"description\"), lambda x: x[0] if len(x) else \" \")\n", | |
"\n", | |
" @column.observe\n", | |
" def _change(change):\n", | |
" if change[\"name\"] != \"value\" or change[\"old\"] == change[\"new\"]:\n", | |
" return\n", | |
" elif len(change[\"new\"]) > 1:\n", | |
" column.value = [column.value[0]]\n", | |
" return\n", | |
" elif change[\"new\"] is None:\n", | |
" self.value = [c.value[0] for c in self.children[:idx - 1]]\n", | |
" else:\n", | |
" self.value = [c.value[0] if len(c.value) else None for c in self.children[:idx + 1]]\n", | |
" \n", | |
" return column\n", | |
" \n", | |
" def data(self, fn):\n", | |
" self._source = fn\n", | |
" \n", | |
" @observe('value')\n", | |
" def update(self, _):\n", | |
" has_child = 1\n", | |
" for col in range(len(self.value) + 1):\n", | |
" selection = self.value[:col]\n", | |
" options = self._source(selection)\n", | |
" if not options:\n", | |
" has_child = 0\n", | |
" elif len(self.children) < col + 1:\n", | |
" self.children = self.children + (self.make_column(\n", | |
" options=options,\n", | |
" value=self.value[col:1]\n", | |
" ), )\n", | |
" elif self.children[col].options != options:\n", | |
" self.children[col].options = options\n", | |
" self.children = self.children[: len(self.value) + has_child]" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 649, | |
"metadata": { | |
"scrolled": false | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"application/vnd.jupyter.widget-view+json": { | |
"model_id": "67e451cb57e2473f9910a453ed6486da" | |
} | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"picker = ColumnPicker()\n", | |
"picker" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 650, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"from pathlib import Path\n", | |
"\n", | |
"@picker.data\n", | |
"def list_files(selection):\n", | |
" # you'd do something fancier here, probably cache it\n", | |
" root = Path(\".\") / \"..\" / \"ipython\"\n", | |
" files = []\n", | |
" \n", | |
" if None in selection:\n", | |
" # need to figure this out\n", | |
" pass\n", | |
" elif not(selection):\n", | |
" files = [f for f in root.glob(\"*\")]\n", | |
" else:\n", | |
" files = [f for f in (root / os.path.join(root, *selection)).glob(\"*\")]\n", | |
" files = sorted(files, key=lambda f: (not f.is_dir(), f.name))\n", | |
" return [((\"📁 \" if f.is_dir() else \"📄 \") + f.name, f.name) for f in files]" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 651, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"picker.value = [\"IPython\"]\n", | |
"picker.layout.height = \"160px\"" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# Still needs a bit o' CSS\n", | |
"An upcoming release of ipywidgets will add a `rows` traitlet, which will make this cleaner" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 495, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<style>\n", | |
".widget-select-multiple select[multiple]{\n", | |
" flex: 1;\n", | |
" width: 100%;\n", | |
"}\n", | |
"</style>" | |
], | |
"text/plain": [ | |
"<IPython.core.display.HTML object>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"%%html\n", | |
"<style>\n", | |
".widget-select-multiple select[multiple]{\n", | |
" flex: 1;\n", | |
" width: 100%;\n", | |
"}\n", | |
"</style>" | |
] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "Python 3", | |
"language": "python", | |
"name": "python3" | |
}, | |
"language_info": { | |
"codemirror_mode": { | |
"name": "ipython", | |
"version": 3 | |
}, | |
"file_extension": ".py", | |
"mimetype": "text/x-python", | |
"name": "python", | |
"nbconvert_exporter": "python", | |
"pygments_lexer": "ipython3", | |
"version": "3.6.2" | |
}, | |
"widgets": { | |
"application/vnd.jupyter.widget-state+json": { | |
"state": { | |
"0025f3efaca84a718b242b3a32375870": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"mypy/" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_81c27cf33bb24217932cfd20eaa3a052", | |
"value": [ | |
"mypy/" | |
] | |
} | |
}, | |
"0077ac50121d43539bfd411623ffb306": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"config", | |
"description", | |
"gitk.cache", | |
"HEAD", | |
"hooks", | |
"index", | |
"info", | |
"logs", | |
"objects", | |
"packed-refs", | |
"refs" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_5e2733b7f6894f32b190b5de53c9b222", | |
"value": [] | |
} | |
}, | |
"00a505236de64bf39539bba903940f1f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_416bdad7c1f74c96b60549c705a9cd1f" | |
], | |
"layout": "IPY_MODEL_9a1f23e528ec4774b2be7e7c1725eb81", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"00e33fcce8834f07b7da3c05cd606151": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0108d22da79d4c51a04f16c15759f5b3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_19587ece190140b2b53c86abc95c03c1", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"011d72383e2b43199d6c16cdc79b4644": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"01318be1d6d84b9fb2524797ba2a1504": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"01582b00825f41958e11db6bfcf7d895": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"01a2f075241b475da2b15a506a965918": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_611ea9ec292a4a228f4c4658fe588713", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"01f2decf7d304822b1a85653a2f631d8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"0214070f4fc34edda45298acf5d17bb9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c75dac0fc6fd4631bd8c3fac29993ca3", | |
"value": [ | |
"anaconda-narrative" | |
] | |
} | |
}, | |
"021f1808048d4ee3bddd40ab0606b029": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b665cc9483544622b477ed33755885e4", | |
"value": [ | |
"anaconda-nb-extension-config-meta" | |
] | |
} | |
}, | |
"031f400b71724db991a9fd17fc80823c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0394881218814ae58f7ceb2cf28db227": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"cx", | |
"cy", | |
"cz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_285e94276ac848dea52d867f458408e8", | |
"value": [] | |
} | |
}, | |
"03d47bf52d9a49cc816972d3d428657d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints/", | |
"ET-NumericalMethods-2016/", | |
"Method-Draw/", | |
"PyPDF2/", | |
"_jademagic/", | |
"adam/", | |
"adam-aproject/", | |
"adam-kapsel/", | |
"aen-lab-theme/", | |
"aen-lab-theme-dist/", | |
"aen-recipes/", | |
"aen_foo/", | |
"aetrial/", | |
"aetrial-old/", | |
"aiohttp-api-test/", | |
"aiooapi/", | |
"alm/", | |
"anaconda/", | |
"anaconda-4.1-linux/", | |
"anaconda-4.3-notebook-config/", | |
"anaconda-build-graph/", | |
"anaconda-client/", | |
"anaconda-desktop/", | |
"anaconda-installer/", | |
"anaconda-narrative/", | |
"anaconda-nb-extension-config-meta/", | |
"anaconda-nb-extensions/", | |
"anaconda-notebook-ui/", | |
"anaconda-platform/", | |
"anaconda-platform-design/", | |
"anaconda-platform-features/", | |
"anaconda-platform-jlab/", | |
"anaconda-platform-ui/", | |
"anaconda-project/", | |
"anaconda-project-foo/", | |
"anaconda-recipes/", | |
"anaconda-run-button/", | |
"anaconda-server/", | |
"anaconda-server-docker/", | |
"anaconda-server-old/", | |
"anaconda-standup/", | |
"apug/", | |
"as-html-foo/", | |
"baobab-site/", | |
"beaker/", | |
"beakerbrowser.com/", | |
"binder-foo/", | |
"blanket/", | |
"blockly-d.ts/", | |
"bokeh/", | |
"bokeh-bug/", | |
"bokeh-deploy/", | |
"bokeh-dev-foo/", | |
"bokeh-foo/", | |
"bokeh-lab/", | |
"bokeh-notebooks/", | |
"braces/", | |
"brand-kit/", | |
"build/", | |
"cards-for-humanity/", | |
"category_encoders/", | |
"cc/", | |
"cc-foo/", | |
"cfvspypi/", | |
"chatterbot-binder/", | |
"ciocheck/", | |
"codemirror/", | |
"coffeetable/", | |
"column-widget/", | |
"components/", | |
"conda/", | |
"conda-backports.shutil_which/", | |
"conda-build/", | |
"conda-capsule/", | |
"conda-doc/", | |
"conda-forge-apprentice/", | |
"conda-forge-badger/", | |
"conda-ipfs/", | |
"conda-kapsel/", | |
"conda-mirror/", | |
"conda-nbdime/", | |
"conda-nodejs/", | |
"conda-notebook/", | |
"conda-notebook-pip/", | |
"conda-patch/", | |
"conda-pyld/", | |
"condatron/", | |
"connexion/", | |
"connexion_/", | |
"constructor-cutter/", | |
"constructor-cutter-test/", | |
"constructor-cutter-unified/", | |
"continuumio-docker-images/", | |
"cookiecutter-conda-forge/", | |
"cookiecutter-jupyterlab_viewer/", | |
"cookiecutters/", | |
"coveragepy/", | |
"cp-foo/", | |
"d3-miller-columns/", | |
"d3-post-it/", | |
"dashboard-example/", | |
"data.gov/", | |
"datashader_nyctaxi_app/", | |
"datlab/", | |
"deap/", | |
"demo-friday/", | |
"dev-meeting-2016/", | |
"docker-apk-build/", | |
"docker-compose-viz/", | |
"docker-conda-cache/", | |
"docker-conda-notebook/", | |
"docker-elk/", | |
"dokang-test/", | |
"dominion/", | |
"env-foo/", | |
"example-bokeh-thing/", | |
"example-project/", | |
"extension-cookiecutter-ts/", | |
"extension-feedstocks/", | |
"extension-foo/", | |
"eysel/", | |
"fbo/", | |
"feedstocks/", | |
"ferenda/", | |
"ferenda-foo/", | |
"flask-restful-swagger/", | |
"fonts/", | |
"foo/", | |
"foorbar/", | |
"foreverwhatever.github.io/", | |
"fovea-foo/", | |
"generator-nbextension/", | |
"ghost.py/", | |
"git_by_a_bus/", | |
"graflex/", | |
"graphuary/", | |
"hack-night/", | |
"hdtpy/", | |
"hy_kernel/", | |
"iconda/", | |
"ieee-spectrum-langs/", | |
"iheartanaconda/", | |
"imply/", | |
"improvicoding/", | |
"installers/", | |
"ipyld/", | |
"ipynblkly/", | |
"ipysankeywidget/", | |
"ipython/", | |
"ipywidgets/", | |
"ipywidgets-json/", | |
"irods-thing/", | |
"jademagic/", | |
"jday-page/", | |
"jefferson/", | |
"jlformat/", | |
"js-notebook-hackery/", | |
"jsonld-lab/", | |
"jsonschema-typing/", | |
"jupyter-anaconda/", | |
"jupyter-box/", | |
"jupyter-conda/", | |
"jupyter-day-atl/", | |
"jupyter-day-chi/", | |
"jupyter-design/", | |
"jupyter-docs/", | |
"jupyter-js-notebook/", | |
"jupyter-js-services/", | |
"jupyter-js-ui/", | |
"jupyter-notepad/", | |
"jupyter-sextant/", | |
"jupyter-sheets/", | |
"jupyter-shelf/", | |
"jupyter-widget-sigmax/", | |
"jupyter-widget-webgazer/", | |
"jupyter_client/", | |
"jupyter_core/", | |
"jupyterlab/", | |
"jupyterlab-bokeh/", | |
"jupyterlab-browser-kernels/", | |
"jupyterlab-build-services/", | |
"jupyterlab-cookiecutter-conda/", | |
"jupyterlab-demo/", | |
"jupyterlab-dev/", | |
"jupyterlab-feedstock/", | |
"jupyterlab-gdrive-foo/", | |
"jupyterlab-legacy/", | |
"jupyterlab-legacy-foo/", | |
"jupyterlab-ubuntu/", | |
"jupyterlab_dot/", | |
"jupyterlab_explainer/", | |
"jupyterlab_kapsel/", | |
"jupyterlab_log/", | |
"jupyterlab_stl/", | |
"jupyterlab_svg/", | |
"jupyterlab_typescript/", | |
"kapsel-docker/", | |
"kernels/", | |
"keycloak/", | |
"kid/", | |
"klee/", | |
"knowledge-constellation/", | |
"license-list/", | |
"linter-mypy/", | |
"literacy/", | |
"living-data/", | |
"lmy/", | |
"loghub/", | |
"mapeo-desktop/", | |
"mdconvert/", | |
"mdconvert-foo/", | |
"metabuilder/", | |
"mistune/", | |
"mtq/", | |
"myconda/", | |
"nb-inkscapelayers/", | |
"nb-jscodemirror-plus/", | |
"nb-livereload/", | |
"nb-mermaid/", | |
"nb_aen_theme/", | |
"nb_anacondacloud/", | |
"nb_anacondacloud-foo/", | |
"nb_conda/", | |
"nb_conda_kernels/", | |
"nb_config_manager/", | |
"nb_delta/", | |
"nb_delta-steve/", | |
"nb_delta_old/", | |
"nb_env_kernels/", | |
"nb_locker/", | |
"nb_revisioncontrol/", | |
"nb_runonly/", | |
"nb_user_sessions/", | |
"nbbrowserpdf/", | |
"nbbrowserpdf-deps/", | |
"nbconvert/", | |
"nbconvert-jsonld/", | |
"nbdiffstream/", | |
"nbdime/", | |
"nbext-foo/", | |
"nbext-unified/", | |
"nbformat/", | |
"nblogger/", | |
"nbpresent/", | |
"nbpresent-79/", | |
"nbpresent-clean/", | |
"nbpresent-continuum-theme/", | |
"nbpresent-example/", | |
"nbpresent-foo/", | |
"nbpresent-reviews/", | |
"nbviewer/", | |
"nbviewer-foo/", | |
"new-anaconda-server/", | |
"new-bokeh/", | |
"newrelic-python-agent/", | |
"niobium/", | |
"nosebook/", | |
"notebook/", | |
"notebook-pytest/", | |
"notebooks/", | |
"npm/", | |
"npm-foo/", | |
"numba-env/", | |
"nvchecker/", | |
"pandas/", | |
"pandas-rdfa-style/", | |
"pgadmin4/", | |
"phosphide/", | |
"phosphor/", | |
"phosphor-bokeh-demo/", | |
"phosphor-foo/", | |
"phosphor-jspy/", | |
"pipfile-tomld/", | |
"pivottable/", | |
"plumberjack/", | |
"powered-by-anaconda/", | |
"project-as-build/", | |
"project-empty-notebook/", | |
"project-foo/", | |
"project-runonly/", | |
"projx-vignette/", | |
"py-jsonapi/", | |
"py-jsonapi-example/", | |
"pydata-meetups/", | |
"pydata-talk/", | |
"quiz/", | |
"repo-intel/", | |
"reproconda/", | |
"rest_notebook/", | |
"revealjs/", | |
"robook/", | |
"rstudio-foo/", | |
"runonly-example/", | |
"screeps/", | |
"skyrim/", | |
"small-treatise/", | |
"snakebiz/", | |
"so-you-want-to-host/", | |
"socratea/", | |
"sparkhead/", | |
"spectoscropy_redux/", | |
"sqlalchemy-jsonapi/", | |
"staged-recipes/", | |
"staged-recipes-tpot/", | |
"svglab/", | |
"svgpan/", | |
"tablewidget/", | |
"this-week-in-anaconda-server/", | |
"traitlets/", | |
"trial-in-a-box/", | |
"typedoc/", | |
"typeshed/", | |
"ui-coding-challenge/", | |
"unarchive-foo/", | |
"underpy/", | |
"uploadwidget/", | |
"vagrant-anaconda-nb-extensions/", | |
"vagrant-images/", | |
"visicons/", | |
"wakari-server/", | |
"whatever-forever/", | |
"widget-cookiecutter/", | |
"widget-dateslider/", | |
"widget-layoutre/", | |
"widget-playground/", | |
"widgetouch/", | |
"wookiecutter/", | |
"xz-foo/", | |
"yamlmagic/", | |
"youtubedl/", | |
".DS_Store", | |
"Untitled.ipynb", | |
"database.db", | |
"npm-debug.log", | |
"package.sh" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_267f01831539430c88492a3a876f413c", | |
"value": [ | |
"cc/" | |
] | |
} | |
}, | |
"03fcc9ddae254fa282dfd2a3f4786428": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints/", | |
"ET-NumericalMethods-2016/", | |
"Method-Draw/", | |
"PyPDF2/", | |
"_jademagic/", | |
"adam/", | |
"adam-aproject/", | |
"adam-kapsel/", | |
"aen-lab-theme/", | |
"aen-lab-theme-dist/", | |
"aen-recipes/", | |
"aen_foo/", | |
"aetrial/", | |
"aetrial-old/", | |
"aiohttp-api-test/", | |
"aiooapi/", | |
"alm/", | |
"anaconda/", | |
"anaconda-4.1-linux/", | |
"anaconda-4.3-notebook-config/", | |
"anaconda-build-graph/", | |
"anaconda-client/", | |
"anaconda-desktop/", | |
"anaconda-installer/", | |
"anaconda-narrative/", | |
"anaconda-nb-extension-config-meta/", | |
"anaconda-nb-extensions/", | |
"anaconda-notebook-ui/", | |
"anaconda-platform/", | |
"anaconda-platform-design/", | |
"anaconda-platform-features/", | |
"anaconda-platform-jlab/", | |
"anaconda-platform-ui/", | |
"anaconda-project/", | |
"anaconda-project-foo/", | |
"anaconda-recipes/", | |
"anaconda-run-button/", | |
"anaconda-server/", | |
"anaconda-server-docker/", | |
"anaconda-server-old/", | |
"anaconda-standup/", | |
"apug/", | |
"as-html-foo/", | |
"baobab-site/", | |
"beaker/", | |
"beakerbrowser.com/", | |
"binder-foo/", | |
"blanket/", | |
"blockly-d.ts/", | |
"bokeh/", | |
"bokeh-bug/", | |
"bokeh-deploy/", | |
"bokeh-dev-foo/", | |
"bokeh-foo/", | |
"bokeh-lab/", | |
"bokeh-notebooks/", | |
"braces/", | |
"brand-kit/", | |
"build/", | |
"cards-for-humanity/", | |
"category_encoders/", | |
"cc/", | |
"cc-foo/", | |
"cfvspypi/", | |
"chatterbot-binder/", | |
"ciocheck/", | |
"codemirror/", | |
"coffeetable/", | |
"column-widget/", | |
"components/", | |
"conda/", | |
"conda-backports.shutil_which/", | |
"conda-build/", | |
"conda-capsule/", | |
"conda-doc/", | |
"conda-forge-apprentice/", | |
"conda-forge-badger/", | |
"conda-ipfs/", | |
"conda-kapsel/", | |
"conda-mirror/", | |
"conda-nbdime/", | |
"conda-nodejs/", | |
"conda-notebook/", | |
"conda-notebook-pip/", | |
"conda-patch/", | |
"conda-pyld/", | |
"condatron/", | |
"connexion/", | |
"connexion_/", | |
"constructor-cutter/", | |
"constructor-cutter-test/", | |
"constructor-cutter-unified/", | |
"continuumio-docker-images/", | |
"cookiecutter-conda-forge/", | |
"cookiecutter-jupyterlab_viewer/", | |
"cookiecutters/", | |
"coveragepy/", | |
"cp-foo/", | |
"d3-miller-columns/", | |
"d3-post-it/", | |
"dashboard-example/", | |
"data.gov/", | |
"datashader_nyctaxi_app/", | |
"datlab/", | |
"deap/", | |
"demo-friday/", | |
"dev-meeting-2016/", | |
"docker-apk-build/", | |
"docker-compose-viz/", | |
"docker-conda-cache/", | |
"docker-conda-notebook/", | |
"docker-elk/", | |
"dokang-test/", | |
"dominion/", | |
"env-foo/", | |
"example-bokeh-thing/", | |
"example-project/", | |
"extension-cookiecutter-ts/", | |
"extension-feedstocks/", | |
"extension-foo/", | |
"eysel/", | |
"fbo/", | |
"feedstocks/", | |
"ferenda/", | |
"ferenda-foo/", | |
"flask-restful-swagger/", | |
"fonts/", | |
"foo/", | |
"foorbar/", | |
"foreverwhatever.github.io/", | |
"fovea-foo/", | |
"generator-nbextension/", | |
"ghost.py/", | |
"git_by_a_bus/", | |
"graflex/", | |
"graphuary/", | |
"hack-night/", | |
"hdtpy/", | |
"hy_kernel/", | |
"iconda/", | |
"ieee-spectrum-langs/", | |
"iheartanaconda/", | |
"imply/", | |
"improvicoding/", | |
"installers/", | |
"ipyld/", | |
"ipynblkly/", | |
"ipysankeywidget/", | |
"ipython/", | |
"ipywidgets/", | |
"ipywidgets-json/", | |
"irods-thing/", | |
"jademagic/", | |
"jday-page/", | |
"jefferson/", | |
"jlformat/", | |
"js-notebook-hackery/", | |
"jsonld-lab/", | |
"jsonschema-typing/", | |
"jupyter-anaconda/", | |
"jupyter-box/", | |
"jupyter-conda/", | |
"jupyter-day-atl/", | |
"jupyter-day-chi/", | |
"jupyter-design/", | |
"jupyter-docs/", | |
"jupyter-js-notebook/", | |
"jupyter-js-services/", | |
"jupyter-js-ui/", | |
"jupyter-notepad/", | |
"jupyter-sextant/", | |
"jupyter-sheets/", | |
"jupyter-shelf/", | |
"jupyter-widget-sigmax/", | |
"jupyter-widget-webgazer/", | |
"jupyter_client/", | |
"jupyter_core/", | |
"jupyterlab/", | |
"jupyterlab-bokeh/", | |
"jupyterlab-browser-kernels/", | |
"jupyterlab-build-services/", | |
"jupyterlab-cookiecutter-conda/", | |
"jupyterlab-demo/", | |
"jupyterlab-dev/", | |
"jupyterlab-feedstock/", | |
"jupyterlab-gdrive-foo/", | |
"jupyterlab-legacy/", | |
"jupyterlab-legacy-foo/", | |
"jupyterlab-ubuntu/", | |
"jupyterlab_dot/", | |
"jupyterlab_explainer/", | |
"jupyterlab_kapsel/", | |
"jupyterlab_log/", | |
"jupyterlab_stl/", | |
"jupyterlab_svg/", | |
"jupyterlab_typescript/", | |
"kapsel-docker/", | |
"kernels/", | |
"keycloak/", | |
"kid/", | |
"klee/", | |
"knowledge-constellation/", | |
"license-list/", | |
"linter-mypy/", | |
"literacy/", | |
"living-data/", | |
"lmy/", | |
"loghub/", | |
"mapeo-desktop/", | |
"mdconvert/", | |
"mdconvert-foo/", | |
"metabuilder/", | |
"mistune/", | |
"mtq/", | |
"myconda/", | |
"nb-inkscapelayers/", | |
"nb-jscodemirror-plus/", | |
"nb-livereload/", | |
"nb-mermaid/", | |
"nb_aen_theme/", | |
"nb_anacondacloud/", | |
"nb_anacondacloud-foo/", | |
"nb_conda/", | |
"nb_conda_kernels/", | |
"nb_config_manager/", | |
"nb_delta/", | |
"nb_delta-steve/", | |
"nb_delta_old/", | |
"nb_env_kernels/", | |
"nb_locker/", | |
"nb_revisioncontrol/", | |
"nb_runonly/", | |
"nb_user_sessions/", | |
"nbbrowserpdf/", | |
"nbbrowserpdf-deps/", | |
"nbconvert/", | |
"nbconvert-jsonld/", | |
"nbdiffstream/", | |
"nbdime/", | |
"nbext-foo/", | |
"nbext-unified/", | |
"nbformat/", | |
"nblogger/", | |
"nbpresent/", | |
"nbpresent-79/", | |
"nbpresent-clean/", | |
"nbpresent-continuum-theme/", | |
"nbpresent-example/", | |
"nbpresent-foo/", | |
"nbpresent-reviews/", | |
"nbviewer/", | |
"nbviewer-foo/", | |
"new-anaconda-server/", | |
"new-bokeh/", | |
"newrelic-python-agent/", | |
"niobium/", | |
"nosebook/", | |
"notebook/", | |
"notebook-pytest/", | |
"notebooks/", | |
"npm/", | |
"npm-foo/", | |
"numba-env/", | |
"nvchecker/", | |
"pandas/", | |
"pandas-rdfa-style/", | |
"pgadmin4/", | |
"phosphide/", | |
"phosphor/", | |
"phosphor-bokeh-demo/", | |
"phosphor-foo/", | |
"phosphor-jspy/", | |
"pipfile-tomld/", | |
"pivottable/", | |
"plumberjack/", | |
"powered-by-anaconda/", | |
"project-as-build/", | |
"project-empty-notebook/", | |
"project-foo/", | |
"project-runonly/", | |
"projx-vignette/", | |
"py-jsonapi/", | |
"py-jsonapi-example/", | |
"pydata-meetups/", | |
"pydata-talk/", | |
"quiz/", | |
"repo-intel/", | |
"reproconda/", | |
"rest_notebook/", | |
"revealjs/", | |
"robook/", | |
"rstudio-foo/", | |
"runonly-example/", | |
"screeps/", | |
"skyrim/", | |
"small-treatise/", | |
"snakebiz/", | |
"so-you-want-to-host/", | |
"socratea/", | |
"sparkhead/", | |
"spectoscropy_redux/", | |
"sqlalchemy-jsonapi/", | |
"staged-recipes/", | |
"staged-recipes-tpot/", | |
"svglab/", | |
"svgpan/", | |
"tablewidget/", | |
"this-week-in-anaconda-server/", | |
"traitlets/", | |
"trial-in-a-box/", | |
"typedoc/", | |
"typeshed/", | |
"ui-coding-challenge/", | |
"unarchive-foo/", | |
"underpy/", | |
"uploadwidget/", | |
"vagrant-anaconda-nb-extensions/", | |
"vagrant-images/", | |
"visicons/", | |
"wakari-server/", | |
"whatever-forever/", | |
"widget-cookiecutter/", | |
"widget-dateslider/", | |
"widget-layoutre/", | |
"widget-playground/", | |
"widgetouch/", | |
"wookiecutter/", | |
"xz-foo/", | |
"yamlmagic/", | |
"youtubedl/", | |
".DS_Store", | |
"Untitled.ipynb", | |
"database.db", | |
"npm-debug.log", | |
"package.sh" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_22267a527fa44476b8114de1eca1d043", | |
"value": [ | |
"anaconda-server/" | |
] | |
} | |
}, | |
"042b66527e6443b1a2cf6380b0c78766": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"043bb2d6d9d5429ca7f5347b6e9041b0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"04aa5c6e9c3e4bec98d73602f3fd5a34": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_2ef090a6dfac49d495deaa477fdd721a", | |
"value": [] | |
} | |
}, | |
"04c9700dfc7145c89f12e7d9e0ca8e3a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_d68330d5d0f34552a60a2cc991dc837d" | |
], | |
"layout": "IPY_MODEL_6eb73aaa11b54bcf9c2ac9f260b21ba3", | |
"value": [] | |
} | |
}, | |
"04f477a715d846bdb5f8caef1c608ccf": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"Untitled-checkpoint.ipynb" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_2be6dfc9a2974559b7b197a697658541", | |
"value": [] | |
} | |
}, | |
"050e75086cc145228813ebe9e5b408a7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".DS_Store", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"README.md", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_20b635d5ab754cbd9e8a9c4661f4921a", | |
"value": [] | |
} | |
}, | |
"052961e6f7384895bcf24b23bca271cf": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"c", | |
"d" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_d5fffa33bda7486fa8447b2c5292d735", | |
"value": [] | |
} | |
}, | |
"0533ec4bdb6b4688a080a2569400bccf": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"059445825eda4508a3ec1c99786228f0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"05b9dde055d044b69e5745c68db5f692": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"05ba44b4193a42c1a9e5a36295c27282": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"05f135e9821448118ea4303c61390c94": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0608a0e59efc459f93cb656fc428b5c7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_522f81d06982489aadb147c87a1dec07", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"060969eb7ba94c8085237b49f5fe183b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"06360d584c44498bbd3b1f01238657ee": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"cx", | |
"cy", | |
"cz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_3b179340bab04a6f8ed6bc0f13f4900e", | |
"value": [] | |
} | |
}, | |
"065238ee6ced4d8699adc24b9d60b8b1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"065c67cb55c94eecbd0387af1b073340": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"065d4b036877430c82a751c5cddd6880": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"0662e861306e4fd0988a0e84b1485021": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".git /", | |
"README.md" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_e0e3a701b0df43c5a8558d120225e1a1", | |
"value": [] | |
} | |
}, | |
"0668a01b0bc1415184d3508a868f0e85": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"__pycache__/", | |
"alldeps/", | |
"tests/", | |
"backport_pr.py", | |
"build_release", | |
"check_sources.py", | |
"gen_latex_symbols.py", | |
"gh_api.py", | |
"git-mpr.py", | |
"git-mrb", | |
"github_stats.py", | |
"make_tarball.py", | |
"mknbindex.py", | |
"post_pr_test.py", | |
"release", | |
"test_pr.py", | |
"testupload", | |
"toollib.py", | |
"update_whatsnew.py" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_bcd581a5b0774eb697c59d10d3a9a813", | |
"value": [] | |
} | |
}, | |
"069bdca1ba3c4c0d9365cfe964cf1a14": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"ax", | |
"ay", | |
"az" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_36cc60fa5c6e478ea3ac015eb334b5d5", | |
"value": [] | |
} | |
}, | |
"0701edca2ff24578ac6416e2b9108b7a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"072118c0058940aba093504dce7dcd4c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"078701a9ad2949a5bf128fdb9976bbd6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".cache /", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".git /", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints /", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"README.md", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids /", | |
"_notebooks /", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise /", | |
"apb", | |
"apb.py", | |
"auth /", | |
"auth_api /", | |
"auth_escrow /", | |
"auth_theme /", | |
"build /", | |
"ci_scripts /", | |
"cli /", | |
"cloudbuild.yaml", | |
"common /", | |
"common_jsonapi /", | |
"common_kubernetes_api /", | |
"conda.recipe /", | |
"data /", | |
"deploy /", | |
"docs /", | |
"environment.yml", | |
"envs /", | |
"example_projects /", | |
"git_proxy /", | |
"git_storage /", | |
"htmlcov /", | |
"installer /", | |
"k8s_builder /", | |
"mirror /", | |
"object_storage /", | |
"offline_docs /", | |
"offline_mirror /", | |
"platform_build /", | |
"postgresql /", | |
"readthedocs.yml", | |
"repository /", | |
"search /", | |
"search_api /", | |
"spaces /", | |
"storage /", | |
"sync /", | |
"table-of-contents.md", | |
"testbed /", | |
"topologies /", | |
"ui /", | |
"ui-kit /" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_958e9183443f4b5e8761817e744b3837", | |
"value": [] | |
} | |
}, | |
"07989b175c5943fcbdc85d3e08be9d2d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_27148528efa54136ae8859fdcdbc4ef0" | |
], | |
"layout": "IPY_MODEL_a836f54b383547018f1ea44c1e717005", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"07b24cbee58e48e692d67608067da838": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_3033ffd043f84cd09f20f0a92182551b", | |
"selections": [] | |
} | |
}, | |
"07dd39217c7f416faa08bbaedcbe3ad6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"ax", | |
"ay", | |
"az" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_674f56265d1448ed98f79d5cc6cd5b6a", | |
"value": [] | |
} | |
}, | |
"081b1e6800c549d6bc8cd2407fea17b4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"081f1ebb8985485b97098733db2380e6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"082c301cf88e4a8fb70d13771dfef0ad": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_4f45f6717f6a47c18af31fe417e5ab63", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"086a0cf8aa4443c782f0315cd3e8220f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_81f9f57c03c74f2ca2c73ff6d996c50f" | |
], | |
"layout": "IPY_MODEL_0bf5641d41414dc28058589286fc63ac", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"087d984c257a4040a7c35641398c9d04": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"0898ef5b4d4640df88a54cb13821703d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"08c38e4d097e4c5da054e176d81026ff": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"ax", | |
"ay", | |
"az" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c805a0ab3d7e4a48b1a1a372e6db13cc", | |
"value": [] | |
} | |
}, | |
"08d2ef7430974f9a9a8f6611b200b43c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".git/", | |
"IPython/", | |
"docs/", | |
"examples/", | |
"scripts/", | |
"setupext/", | |
"tools/", | |
".gitattributes", | |
".gitignore", | |
".mailmap", | |
".travis.yml", | |
"CONTRIBUTING.md", | |
"COPYING.rst", | |
"Dockerfile", | |
"MANIFEST.in", | |
"README.rst", | |
"setup.py", | |
"setupbase.py", | |
"setupegg.py", | |
"tox.ini" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": ".gitignore", | |
"layout": "IPY_MODEL_087d984c257a4040a7c35641398c9d04", | |
"value": [ | |
".gitignore" | |
] | |
} | |
}, | |
"08d5e8dcbda94d20a9d43740356b0565": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"08f8400afef1409186e17a6724ea4d3e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0949da31a75c4fb986ce6c8522ae9768": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"09c4e8dbde9742fd8965c9a711ee20fc": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f12ea146beda420bae6f57e59f3bec72", | |
"value": [] | |
} | |
}, | |
"09dda46993bd4619b14d9ac4074b8b67": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"autoprefixer/", | |
"decamelize/", | |
"defined/", | |
"has/", | |
"postcss-calc/", | |
"postcss-colormin/", | |
"postcss-convert-values/", | |
"postcss-discard-comments/", | |
"postcss-discard-duplicates/", | |
"postcss-discard-empty/", | |
"postcss-discard-overridden/", | |
"postcss-discard-unused/", | |
"postcss-filter-plugins/", | |
"postcss-merge-idents/", | |
"postcss-merge-longhand/", | |
"postcss-merge-rules/", | |
"postcss-minify-font-values/", | |
"postcss-minify-gradients/", | |
"postcss-minify-params/", | |
"postcss-minify-selectors/", | |
"postcss-normalize-charset/", | |
"postcss-normalize-url/", | |
"postcss-ordered-values/", | |
"postcss-reduce-idents/", | |
"postcss-reduce-initial/", | |
"postcss-reduce-transforms/", | |
"postcss-svgo/", | |
"postcss-unique-selectors/", | |
"postcss-value-parser/", | |
"postcss-zindex/" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "decamelize", | |
"layout": "IPY_MODEL_da80e3ba132147939ddf041465519cdd", | |
"value": [ | |
"decamelize/" | |
] | |
} | |
}, | |
"09fbd3b4428c4f50ab083bb4a775effc": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0a2e5c5a07e84224aec3062947a61173": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0a361dce1d594a738b75e5416b783f39": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".DS_Store", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"README.md", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_3c486ce853af4699b5ac3d44eb6d7434", | |
"value": [] | |
} | |
}, | |
"0ae7c7252b084931a3b8f5b9d849f219": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"bx", | |
"by", | |
"bz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b7a4d491719b47129450cec8a79c4391", | |
"value": [] | |
} | |
}, | |
"0afefedea8c54a42aba039607e9a1a97": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"0b15a8fc85344e91881172651a5c90aa": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_76b13b195af04208bc63b8147e5848a3", | |
"value": [ | |
"c", | |
"cx" | |
] | |
} | |
}, | |
"0b3964b3775f46e9aeed1a118a7e422e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_1296a98ed4ee4466b8e299559f0318e3", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"0b47b61564f9404389b2ea0e7fa547ff": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_15879f1a588a41e5875e994b85ec0652", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"0b7937eddf7443cdb947ee23a39e6c69": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_32dd910765d241a6b6df7b38f5e4cff0", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"0bd3cb1c48cb402b80df34e9251f5bdd": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_4b4c6b67294241a5862517703c536ba4", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"0bee3106bec343bb82beb622a4dbf594": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0bf5641d41414dc28058589286fc63ac": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0c02cd82a4fe4f2fa0e319bebead02cf": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"../.DS_Store", | |
"../.ipynb_checkpoints", | |
"../_jademagic", | |
"../adam", | |
"../adam-aproject", | |
"../adam-kapsel", | |
"../aen-lab-theme", | |
"../aen-lab-theme-dist", | |
"../aen-recipes", | |
"../aen_foo", | |
"../aetrial", | |
"../aetrial-old", | |
"../aiohttp-api-test", | |
"../aiooapi", | |
"../alm", | |
"../anaconda", | |
"../anaconda-4.1-linux", | |
"../anaconda-4.3-notebook-config", | |
"../anaconda-build-graph", | |
"../anaconda-client", | |
"../anaconda-desktop", | |
"../anaconda-installer", | |
"../anaconda-narrative", | |
"../anaconda-nb-extension-config-meta", | |
"../anaconda-nb-extensions", | |
"../anaconda-notebook-ui", | |
"../anaconda-platform", | |
"../anaconda-platform-design", | |
"../anaconda-platform-features", | |
"../anaconda-platform-jlab", | |
"../anaconda-platform-ui", | |
"../anaconda-project", | |
"../anaconda-project-foo", | |
"../anaconda-recipes", | |
"../anaconda-run-button", | |
"../anaconda-server", | |
"../anaconda-server-docker", | |
"../anaconda-server-old", | |
"../anaconda-standup", | |
"../apug", | |
"../as-html-foo", | |
"../baobab-site", | |
"../beaker", | |
"../beakerbrowser.com", | |
"../binder-foo", | |
"../blanket", | |
"../blockly-d.ts", | |
"../bokeh", | |
"../bokeh-bug", | |
"../bokeh-deploy", | |
"../bokeh-dev-foo", | |
"../bokeh-foo", | |
"../bokeh-lab", | |
"../bokeh-notebooks", | |
"../braces", | |
"../brand-kit", | |
"../build", | |
"../cards-for-humanity", | |
"../category_encoders", | |
"../cc", | |
"../cc-foo", | |
"../cfvspypi", | |
"../chatterbot-binder", | |
"../ciocheck", | |
"../codemirror", | |
"../coffeetable", | |
"../column-widget", | |
"../components", | |
"../conda", | |
"../conda-backports.shutil_which", | |
"../conda-build", | |
"../conda-capsule", | |
"../conda-doc", | |
"../conda-forge-apprentice", | |
"../conda-forge-badger", | |
"../conda-ipfs", | |
"../conda-kapsel", | |
"../conda-mirror", | |
"../conda-nbdime", | |
"../conda-nodejs", | |
"../conda-notebook", | |
"../conda-notebook-pip", | |
"../conda-patch", | |
"../conda-pyld", | |
"../condatron", | |
"../connexion", | |
"../connexion_", | |
"../constructor-cutter", | |
"../constructor-cutter-test", | |
"../constructor-cutter-unified", | |
"../continuumio-docker-images", | |
"../cookiecutter-conda-forge", | |
"../cookiecutter-jupyterlab_viewer", | |
"../cookiecutters", | |
"../coveragepy", | |
"../cp-foo", | |
"../d3-miller-columns", | |
"../d3-post-it", | |
"../dashboard-example", | |
"../data.gov", | |
"../database.db", | |
"../datashader_nyctaxi_app", | |
"../datlab", | |
"../deap", | |
"../demo-friday", | |
"../dev-meeting-2016", | |
"../docker-apk-build", | |
"../docker-compose-viz", | |
"../docker-conda-cache", | |
"../docker-conda-notebook", | |
"../docker-elk", | |
"../dokang-test", | |
"../dominion", | |
"../env-foo", | |
"../ET-NumericalMethods-2016", | |
"../example-bokeh-thing", | |
"../example-project", | |
"../extension-cookiecutter-ts", | |
"../extension-feedstocks", | |
"../extension-foo", | |
"../eysel", | |
"../fbo", | |
"../feedstocks", | |
"../ferenda", | |
"../ferenda-foo", | |
"../flask-restful-swagger", | |
"../fonts", | |
"../foo", | |
"../foorbar", | |
"../foreverwhatever.github.io", | |
"../fovea-foo", | |
"../generator-nbextension", | |
"../ghost.py", | |
"../git_by_a_bus", | |
"../graflex", | |
"../graphuary", | |
"../hack-night", | |
"../hdtpy", | |
"../hy_kernel", | |
"../iconda", | |
"../ieee-spectrum-langs", | |
"../iheartanaconda", | |
"../imply", | |
"../improvicoding", | |
"../installers", | |
"../ipyld", | |
"../ipynblkly", | |
"../ipysankeywidget", | |
"../ipython", | |
"../ipywidgets", | |
"../ipywidgets-json", | |
"../irods-thing", | |
"../jademagic", | |
"../jday-page", | |
"../jefferson", | |
"../jlformat", | |
"../js-notebook-hackery", | |
"../jsonld-lab", | |
"../jsonschema-typing", | |
"../jupyter-anaconda", | |
"../jupyter-box", | |
"../jupyter-conda", | |
"../jupyter-day-atl", | |
"../jupyter-day-chi", | |
"../jupyter-design", | |
"../jupyter-docs", | |
"../jupyter-js-notebook", | |
"../jupyter-js-services", | |
"../jupyter-js-ui", | |
"../jupyter-notepad", | |
"../jupyter-sextant", | |
"../jupyter-sheets", | |
"../jupyter-shelf", | |
"../jupyter-widget-sigmax", | |
"../jupyter-widget-webgazer", | |
"../jupyter_client", | |
"../jupyter_core", | |
"../jupyterlab", | |
"../jupyterlab-bokeh", | |
"../jupyterlab-browser-kernels", | |
"../jupyterlab-build-services", | |
"../jupyterlab-cookiecutter-conda", | |
"../jupyterlab-demo", | |
"../jupyterlab-dev", | |
"../jupyterlab-feedstock", | |
"../jupyterlab-gdrive-foo", | |
"../jupyterlab-legacy", | |
"../jupyterlab-legacy-foo", | |
"../jupyterlab-ubuntu", | |
"../jupyterlab_dot", | |
"../jupyterlab_explainer", | |
"../jupyterlab_kapsel", | |
"../jupyterlab_log", | |
"../jupyterlab_stl", | |
"../jupyterlab_svg", | |
"../jupyterlab_typescript", | |
"../kapsel-docker", | |
"../kernels", | |
"../keycloak", | |
"../kid", | |
"../klee", | |
"../knowledge-constellation", | |
"../license-list", | |
"../linter-mypy", | |
"../literacy", | |
"../living-data", | |
"../lmy", | |
"../loghub", | |
"../mapeo-desktop", | |
"../mdconvert", | |
"../mdconvert-foo", | |
"../metabuilder", | |
"../Method-Draw", | |
"../mistune", | |
"../mtq", | |
"../myconda", | |
"../nb-inkscapelayers", | |
"../nb-jscodemirror-plus", | |
"../nb-livereload", | |
"../nb-mermaid", | |
"../nb_aen_theme", | |
"../nb_anacondacloud", | |
"../nb_anacondacloud-foo", | |
"../nb_conda", | |
"../nb_conda_kernels", | |
"../nb_config_manager", | |
"../nb_delta", | |
"../nb_delta-steve", | |
"../nb_delta_old", | |
"../nb_env_kernels", | |
"../nb_locker", | |
"../nb_revisioncontrol", | |
"../nb_runonly", | |
"../nb_user_sessions", | |
"../nbbrowserpdf", | |
"../nbbrowserpdf-deps", | |
"../nbconvert", | |
"../nbconvert-jsonld", | |
"../nbdiffstream", | |
"../nbdime", | |
"../nbext-foo", | |
"../nbext-unified", | |
"../nbformat", | |
"../nblogger", | |
"../nbpresent", | |
"../nbpresent-79", | |
"../nbpresent-clean", | |
"../nbpresent-continuum-theme", | |
"../nbpresent-example", | |
"../nbpresent-foo", | |
"../nbpresent-reviews", | |
"../nbviewer", | |
"../nbviewer-foo", | |
"../new-anaconda-server", | |
"../new-bokeh", | |
"../newrelic-python-agent", | |
"../niobium", | |
"../nosebook", | |
"../notebook", | |
"../notebook-pytest", | |
"../notebooks", | |
"../npm", | |
"../npm-debug.log", | |
"../npm-foo", | |
"../numba-env", | |
"../nvchecker", | |
"../package.sh", | |
"../pandas", | |
"../pandas-rdfa-style", | |
"../pgadmin4", | |
"../phosphide", | |
"../phosphor", | |
"../phosphor-bokeh-demo", | |
"../phosphor-foo", | |
"../phosphor-jspy", | |
"../pipfile-tomld", | |
"../pivottable", | |
"../plumberjack", | |
"../powered-by-anaconda", | |
"../project-as-build", | |
"../project-empty-notebook", | |
"../project-foo", | |
"../project-runonly", | |
"../projx-vignette", | |
"../py-jsonapi", | |
"../py-jsonapi-example", | |
"../pydata-meetups", | |
"../pydata-talk", | |
"../PyPDF2", | |
"../quiz", | |
"../repo-intel", | |
"../reproconda", | |
"../rest_notebook", | |
"../revealjs", | |
"../robook", | |
"../rstudio-foo", | |
"../runonly-example", | |
"../screeps", | |
"../skyrim", | |
"../small-treatise", | |
"../snakebiz", | |
"../so-you-want-to-host", | |
"../socratea", | |
"../sparkhead", | |
"../spectoscropy_redux", | |
"../sqlalchemy-jsonapi", | |
"../staged-recipes", | |
"../staged-recipes-tpot", | |
"../svglab", | |
"../svgpan", | |
"../tablewidget", | |
"../this-week-in-anaconda-server", | |
"../traitlets", | |
"../trial-in-a-box", | |
"../typedoc", | |
"../typeshed", | |
"../ui-coding-challenge", | |
"../unarchive-foo", | |
"../underpy", | |
"../Untitled.ipynb", | |
"../uploadwidget", | |
"../vagrant-anaconda-nb-extensions", | |
"../vagrant-images", | |
"../visicons", | |
"../wakari-server", | |
"../whatever-forever", | |
"../widget-cookiecutter", | |
"../widget-dateslider", | |
"../widget-layoutre", | |
"../widget-playground", | |
"../widgetouch", | |
"../wookiecutter", | |
"../xz-foo", | |
"../yamlmagic", | |
"../youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b1e6d2f558bb475eae81004b34d68a8c", | |
"value": [ | |
"../baobab-site" | |
] | |
} | |
}, | |
"0c07abb6c5264d908829a2d2df6097bc": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0c0ad5a98a2c49e8a84b86c30d21beeb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_40565322625b45b8bbd94cafa9fc661b", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"0c128944799544928a048ab370f6f94f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"📄 default.css", | |
"📄 favicon.ico", | |
"📄 logo.png" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_d93b64d3a5e444de8fb872013c6e229b", | |
"value": [] | |
} | |
}, | |
"0c49e300ddfc429e97d472f71e7fccfe": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".DS_Store", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"README.md", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_34b01c1284584ce6b67b5bcfaa16a544", | |
"value": [] | |
} | |
}, | |
"0c634169c65b4463aa237ab2a6f81bca": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"0c8a82e4035f4d2f89058807dff24347": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_bdf60ba639a0411e989a089835bc9562", | |
"value": [] | |
} | |
}, | |
"0c8e89d6086042a781c2cd14dc4e3560": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f606d39c233d4d44b95ab4dda0af098c", | |
"value": [] | |
} | |
}, | |
"0cc3c0a971fa4059bdee1a37cc9b9683": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0cc7cf59f703479ebd6a0fa4bbb1d2b3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ce42e7cc4e16421491177dc8e63092ea", | |
"value": [] | |
} | |
}, | |
"0ce566cfc77946828f5d804eee6bb2bb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0d2933827f2448638b5fbfc0b8a77df3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_9179b1f6427e4876829e79808238b403", | |
"value": [] | |
} | |
}, | |
"0d68cc5fd1544dffb76041a90a35e72b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_57f86f4eb7164d00bb6ed5d540ba0a99" | |
} | |
}, | |
"0d6ceed6574243d7be7eb4b597ddcd37": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_98549bdd495a445985be1f54494d2d36", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"0d8692cff0524957a28df5306ece8542": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"cx", | |
"cy", | |
"cz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_3a73a2421a4a46d5a714f5c7441321b9", | |
"value": [ | |
"cx" | |
] | |
} | |
}, | |
"0db57863328946c0a51d5b45d435c110": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0dbe3b7460994645a854d499d20486ed": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0e33c45720ba4396ba9fcb61f4d00686": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0e36d443b4664702b9972a0f29465e83": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_57030450e91743eb8d46e2ea8abd6c7e" | |
], | |
"layout": "IPY_MODEL_54966168b1d5431588068af1e1496f38", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"0e511710b97c4366b50879d31668c3c4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_4db67d2994b641d1962399cd9bb38534", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"0f44b20fca79444f8c1ca7c60e3e9793": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".DS_Store", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"README.md", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_059445825eda4508a3ec1c99786228f0", | |
"value": [] | |
} | |
}, | |
"0f73616decc64605b9b31459e53df292": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0fa39c91b8294d9980fcc97587a585ce": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"0fb245619a2b4973960eab6a52709d38": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_6e622d5d008047e98997e638472f9105", | |
"value": [] | |
} | |
}, | |
"0fbbcab25fcd40b5a13355cc2c27e2d5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"0feaf336a78f4e779521c4ae0c07679b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_2a0a71fccf4540c8a28fe328893d0568", | |
"IPY_MODEL_706cfeb2dbcb4c4cb39246399bce5220" | |
], | |
"layout": "IPY_MODEL_74f296eb5e3e40f6ab10cd70c69814c1", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"0ff80da934fc456cad9ffda7f352341a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"108f9029bed1435da9082abd6c28b53a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a7bc564d930440e7831b3528ea7a3a91", | |
"value": [] | |
} | |
}, | |
"1094c2c009e647c688fddc9dbff3635b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_623e11eb3253440489169d9ca0ca0386", | |
"value": [] | |
} | |
}, | |
"109c6d0f5dfa41efaf3da4a86b817349": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"111a48f36e7a417f841f8a33cb2b0da0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_8bbd2d5485804acc82b61194cc7ac7a7", | |
"IPY_MODEL_16c408584e8648019563a6ccf152c734", | |
"IPY_MODEL_ec6aea4429134b6698980a9da9f6ba51" | |
], | |
"layout": "IPY_MODEL_424df5c6e8c0411dbdf860b168b898df", | |
"selections": [] | |
} | |
}, | |
"112d711cdccc434a8d33805049f03ee6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b60a1833508742d59a021725bb528dc6", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"116f72b6b3fa4b258fbaf11c654477e7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_fa517881de454ea8a1dfce06a2072020", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"11b8c9c4818f42d3a2b96f6146f91543": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"11ec03770d44406aad4342a508d76198": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"c", | |
"d" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_3afcf5520bda415f9af8a0bff88b0f82", | |
"value": [] | |
} | |
}, | |
"11f9d12e5b1d4ab393660ab2104e3191": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".git/", | |
"aiooapi/", | |
"aiooapi.egg-info/", | |
"envs/", | |
"htmlcov/", | |
".gitignore", | |
".projectignore", | |
"README.md", | |
"anaconda-project.yml", | |
"setup.py" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_92a6e6d5a28c459c9ef5c69f4f1515fa", | |
"value": [ | |
"aiooapi/" | |
] | |
} | |
}, | |
"12819def10f2452f845ccad06b2e9e0d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"📁 .git", | |
"📁 IPython", | |
"📁 docs", | |
"📁 examples", | |
"📁 scripts", | |
"📁 setupext", | |
"📁 tools", | |
"📄 .gitattributes", | |
"📄 .gitignore", | |
"📄 .mailmap", | |
"📄 .travis.yml", | |
"📄 CONTRIBUTING.md", | |
"📄 COPYING.rst", | |
"📄 Dockerfile", | |
"📄 MANIFEST.in", | |
"📄 README.rst", | |
"📄 setup.py", | |
"📄 setupbase.py", | |
"📄 setupegg.py", | |
"📄 tox.ini" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "IPython", | |
"layout": "IPY_MODEL_28e1fed642884fac941f77890c9a22a3", | |
"value": [ | |
"📁 IPython" | |
] | |
} | |
}, | |
"1296a98ed4ee4466b8e299559f0318e3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"12da4f5596304b1ab19a0428bef0b7b0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"12e04232b6a74023b9bb191d744dc95c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"html/", | |
"index.html", | |
"mypy-html.css" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_74d6be2760814a01ae3dd283c905b154", | |
"value": [ | |
"index.html" | |
] | |
} | |
}, | |
"12f766ce6eba4ca1bae957620083ed68": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_20aa8d84798c4ed098b4516b647f6022" | |
], | |
"layout": "IPY_MODEL_fcacb750a1824bf98eaa5282118f598a", | |
"value": [ | |
null, | |
null | |
] | |
} | |
}, | |
"13393648591044e5bc530811c1796a28": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_849da912015142d3be1a4b7d3849f1f7", | |
"IPY_MODEL_923aedff00814488965a5a45175faef9" | |
], | |
"layout": "IPY_MODEL_7c1b030446b6485eaed9665c8f514123", | |
"value": [ | |
"anaconda-platform", | |
null | |
] | |
} | |
}, | |
"134e354222dd468e9b002bcf17ee7837": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"138f8de34aa84ca296f6815fb1d221dd": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"13a07eeebd164cb7b3c0898eef7f20a2": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"13d1019d6fde4c96992c7c09821b03c9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"13f8d14366184604a95047430599405f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"13fe1480106e4f9ca3f2e9f86008d109": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_610c161cc08a46ea9f4f57e3aa133f7c", | |
"IPY_MODEL_1fac5462634f436b8cd40bf2e21eb370" | |
], | |
"layout": "IPY_MODEL_ca88130d070f49dba9bee520007cff6c", | |
"value": [ | |
"anaconda-recipes" | |
] | |
} | |
}, | |
"13ff703e21934b139a8558eefb8bd450": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"cx", | |
"cy", | |
"cz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_38ccd27321e8483a85f71a6e9767e26b", | |
"value": [] | |
} | |
}, | |
"144c77f8079a4380a094f9cc4113f0b4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"15879f1a588a41e5875e994b85ec0652": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"15ba6bd7e07a43b7a932aa9f73fec2b4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"COMMIT_EDITMSG", | |
"config", | |
"description", | |
"FETCH_HEAD", | |
"gitk.cache", | |
"HEAD", | |
"hooks", | |
"index", | |
"info", | |
"logs", | |
"objects", | |
"ORIG_HEAD", | |
"packed-refs", | |
"refs" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c82f6b36a4a94c6587d35c08f2f3b7d0", | |
"value": [ | |
"hooks" | |
] | |
} | |
}, | |
"15ed88924d1447b9a5705535a6297693": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"1607f45ae33c4bd39143c68d2d90dc9a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_08f8400afef1409186e17a6724ea4d3e", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"16502ced12f041a0b98adcbcfdea3875": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"166cc6f702914af1894d36bbc0dbc9b0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f2af89f442384ea8a637f64a0b7aaf42", | |
"value": [] | |
} | |
}, | |
"16806cbdb5d343ee9222065b949b4ac3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c01d0c8efa2c47478e9611cbfe780c8b", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"16bf23b9530046528215c0b4e2c6c62c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_5226b6fd977d411397c25c5ce669d610", | |
"value": [] | |
} | |
}, | |
"16c408584e8648019563a6ccf152c734": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_144c77f8079a4380a094f9cc4113f0b4", | |
"value": [] | |
} | |
}, | |
"1719dfc9f01442b5af6702a7dd8c25db": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_7d97659d7fc4499d80054a956b58db4a", | |
"value": [] | |
} | |
}, | |
"17362fc24b604d6d9796cd58f5077712": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints", | |
"Anaconda Cloud Notebooks.sketch", | |
"Untitled.ipynb" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_8a6e73821cd840e4ae1438318beaae30", | |
"value": [] | |
} | |
}, | |
"18025f3893ac4275b30caa195f25721e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_d8ba89229880427a92a8bce2723c37e3", | |
"value": [ | |
[ | |
"/" | |
] | |
] | |
} | |
}, | |
"183388fc220341b497e7abc07637c670": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ee2fad1b41414b1ca782b41b5d667f7b", | |
"value": [] | |
} | |
}, | |
"1906d283c8244d5f86367881dc41b6f7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_3932900581594662b7ee40b051d76054" | |
], | |
"layout": "IPY_MODEL_30c0b6f9ce3f4c6386f129e9358657fd", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"1918dd88ea1940f6bc1ca4ef3fff60ca": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"19587ece190140b2b53c86abc95c03c1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"1a18aaaf134844878317778b18f212ca": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints", | |
"Anaconda Cloud Notebooks.sketch", | |
"Untitled.ipynb" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_7b58651e3b484e12b7eaeb2d69bcb2f4", | |
"value": [] | |
} | |
}, | |
"1a1ea6ab6a5d44e7832cbc9aa8670be4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"1a6ab23084a448db9942f8a8d467d4f7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ce0fc44d2db748dc8599e75f31d00c99", | |
"value": [] | |
} | |
}, | |
"1a94230a3eae408896cad62c7775ff9f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"jupyter-widget-example/" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_848d0485dc63445abae2b8ab8f3e802c", | |
"value": [] | |
} | |
}, | |
"1ab502d1b32f40bd86f9f21ecc843901": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_5d7cb98499e04400a5e1e3282ee460f9", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"1af32407ce2d46c3b985db4b7714f87e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"ax", | |
"ay", | |
"az" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a2093ea5671c4777b8d008b016ee797c", | |
"value": [] | |
} | |
}, | |
"1b6b9993b06e4964b324c1aa629bbf39": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"1b86eb32fc0a4b59ba9f9cb8c3f09996": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"1c5903b2e07842aa814b875df4003f38": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"📁 core", | |
"📁 extensions", | |
"📁 external", | |
"📁 kernel", | |
"📁 lib", | |
"📁 sphinxext", | |
"📁 terminal", | |
"📁 testing", | |
"📁 utils", | |
"📄 __init__.py", | |
"📄 __main__.py", | |
"📄 config.py", | |
"📄 consoleapp.py", | |
"📄 display.py", | |
"📄 frontend.py", | |
"📄 html.py", | |
"📄 nbconvert.py", | |
"📄 nbformat.py", | |
"📄 parallel.py", | |
"📄 paths.py", | |
"📄 qt.py" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": " ", | |
"layout": "IPY_MODEL_b47b7f11e85d4dd388058c4be437e6f2", | |
"value": [] | |
} | |
}, | |
"1c5e4ef93bb441da89f9aa7cf6a3550d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"1ca676e14173468f80041130b26e349d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"COMMIT_EDITMSG", | |
"config", | |
"description", | |
"FETCH_HEAD", | |
"gitk.cache", | |
"HEAD", | |
"hooks", | |
"index", | |
"info", | |
"lfs", | |
"logs", | |
"modules", | |
"objects", | |
"ORIG_HEAD", | |
"packed-refs", | |
"refs" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_9d97f18f1c974da8bb7187652b964e44", | |
"value": [] | |
} | |
}, | |
"1ccb16ce21914992ae4fa43898b12734": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"1d0170bb0ecc48dc8d985ba23afb7d8c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"1d6e7850863e4d6084697273244695d3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"ET-NumericalMethods-2016", | |
"Method-Draw", | |
"PyPDF2", | |
"Untitled.ipynb", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ac5986bbfe984ce893128bb1ce2edc22", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"1d961a6503854f3faebb8c0736c3b4a1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"1de2675fc2ed471e8af7de1646b1360a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_947bfc7b171b4cc785627741be661444" | |
], | |
"layout": "IPY_MODEL_f54c3281db9140a4ac9735572ae54a16", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"1e35faabb01a432982fd284f30137740": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"1e49e336cfc946fdb114b8cc6513b1ad": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_2d8626fb98454e26aad4472f90e89c75", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"1e880f5eb1d64adaad50d8e2fcc278c8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ee407943a62b4b1a8000a4f23e58dd65", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"1ed637dd229c4e2dbbcdf9c578ab9fd6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".DS_Store", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"README.md", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_cc6aaa61da184e638068ac846f56ed37", | |
"value": [] | |
} | |
}, | |
"1f3d9a41a28d4d20b9313cc9158d23d1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"1f5f257db3214545ae16d37a6fdfc671": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"1f756bb4e5594688b3b9805cbac30c16": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"1f82423462c0473f969f2448f555f93d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"1f89118ecfd3485fb8e32733b56c8f4f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints", | |
"Anaconda Cloud Notebooks.sketch", | |
"Untitled.ipynb" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_031f400b71724db991a9fd17fc80823c", | |
"value": [] | |
} | |
}, | |
"1fac5462634f436b8cd40bf2e21eb370": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".git/", | |
"BUILD/", | |
"affine/", | |
"aiohttp/", | |
"alabaster/", | |
"anaconda-build/", | |
"anaconda-clean/", | |
"anaconda-client/", | |
"anaconda-verify/", | |
"ansi2html/", | |
"anyqt/", | |
"appdirs/", | |
"appnope/", | |
"appscript/", | |
"apptools/", | |
"apr/", | |
"argcomplete/", | |
"asn1crypto/", | |
"astroid/", | |
"astropy/", | |
"async-timeout/", | |
"atom/", | |
"attrs/", | |
"autoconf/", | |
"automake/", | |
"automat/", | |
"azure/", | |
"babel/", | |
"backports/", | |
"backports_abc/", | |
"basemap/", | |
"bcolz/", | |
"bcrypt/", | |
"beautifulsoup4/", | |
"biopython/", | |
"bitarray/", | |
"bkcharts/", | |
"blaze/", | |
"bleach/", | |
"blist/", | |
"bokeh/", | |
"boost/", | |
"boto/", | |
"boto3/", | |
"botocore/", | |
"bottlechest/", | |
"bottleneck/", | |
"bsddb/", | |
"bsdiff4/", | |
"btrees/", | |
"bz2file/", | |
"bzip2/", | |
"cachecontrol/", | |
"cached-property/", | |
"caffe/", | |
"cairo/", | |
"casuarius/", | |
"cdecimal/", | |
"certifi/", | |
"cffi/", | |
"chalmers/", | |
"chameleon/", | |
"chardet/", | |
"cheetah/", | |
"cherrypy/", | |
"chest/", | |
"chrpath/", | |
"click/", | |
"click-plugins/", | |
"cligj/", | |
"cloudpickle/", | |
"clyent/", | |
"cmake/", | |
"colander/", | |
"colorama/", | |
"colorcet/", | |
"comtypes/", | |
"conda-4.2/", | |
"conda-4.3/", | |
"conda-4.4/", | |
"conda-api/", | |
"conda-build/", | |
"conda-build-all/", | |
"conda-env/", | |
"conda-manager/", | |
"conda-verify/", | |
"configargparse/", | |
"configobj/", | |
"configparser/", | |
"console_shortcut/", | |
"constantly/", | |
"constructor/", | |
"contextlib2/", | |
"cookies/", | |
"cornice/", | |
"coverage/", | |
"cryptography/", | |
"cssselect/", | |
"csvkit/", | |
"cubes/", | |
"curl/", | |
"cvxcanon/", | |
"cvxopt/", | |
"cycler/", | |
"cymem/", | |
"cython/", | |
"cytoolz/", | |
"dask/", | |
"datashader/", | |
"datashape/", | |
"datrie/", | |
"db/", | |
"dbf/", | |
"dbus/", | |
"decorator/", | |
"dill/", | |
"distributed/", | |
"django/", | |
"dnspython/", | |
"docopt/", | |
"docutils/", | |
"ecdsa/", | |
"ecos/", | |
"enaml/", | |
"entrypoints/", | |
"enum34/", | |
"envisage/", | |
"ephem/", | |
"essbasepy/", | |
"et_xmlfile/", | |
"execnet/", | |
"expat/", | |
"expressions/", | |
"fabric/", | |
"fastcache/", | |
"feedparser/", | |
"filelock/", | |
"fiona/", | |
"flake8/", | |
"flask/", | |
"flask-cors/", | |
"flask-login/", | |
"flask-wtf/", | |
"fontconfig/", | |
"freeglut/", | |
"freeimage/", | |
"freetype/", | |
"fuel/", | |
"funcsigs/", | |
"functools32/", | |
"functools_lru_cache/", | |
"future/", | |
"futures/", | |
"gdal/", | |
"gdata/", | |
"gdbm/", | |
"gensim/", | |
"genson/", | |
"geos/", | |
"geotiff/", | |
"get_terminal_size/", | |
"gevent/", | |
"gevent-websocket/", | |
"gflags/", | |
"git/", | |
"gitdb2/", | |
"gitpython/", | |
"glib/", | |
"glog/", | |
"glue-core/", | |
"glue-vispy-viewers/", | |
"glueviz/", | |
"googlecl/", | |
"grako/", | |
"graphite-web/", | |
"graphviz/", | |
"greenlet/", | |
"grin/", | |
"gst-plugins-base/", | |
"gstreamer/", | |
"gunicorn/", | |
"h5py/", | |
"harfbuzz/", | |
"hdf4/", | |
"hdf5/", | |
"hdfs3/", | |
"heapdict/", | |
"holoviews/", | |
"hs2client/", | |
"html5lib/", | |
"httpretty/", | |
"humanize/", | |
"hyde/", | |
"hyperlink/", | |
"icu/", | |
"idna/", | |
"imagesize/", | |
"iminuit/", | |
"incremental/", | |
"inflection/", | |
"ipaddress/", | |
"ipykernel/", | |
"ipyparallel/", | |
"ipython-4/", | |
"ipython-5/", | |
"ipython-6/", | |
"ipython_genutils/", | |
"ipywidgets/", | |
"iso8601/", | |
"isort/", | |
"itsdangerous/", | |
"javabridge/", | |
"jbig/", | |
"jdcal/", | |
"jedi/", | |
"jinja2/", | |
"jmespath/", | |
"joblib/", | |
"jpeg/", | |
"jsonschema/", | |
"jupyter/", | |
"jupyter_client/", | |
"jupyter_console/", | |
"jupyter_core/", | |
"kealib/", | |
"kerberos-sspi/", | |
"keyring/", | |
"kiwisolver/", | |
"krb5/", | |
"lancet/", | |
"lazy-object-proxy/", | |
"ldap3/", | |
"leveldb/", | |
"libconda/", | |
"libevent/", | |
"libffi/", | |
"libgcc/", | |
"libgdal/", | |
"libgfortran/", | |
"libgpuarray/", | |
"libgsasl/", | |
"libhdfs3/", | |
"libhs2client/", | |
"libiconv/", | |
"libnetcdf/", | |
"libntlm/", | |
"libpng/", | |
"libpq/", | |
"libprotobuf/", | |
"libpython/", | |
"libsodium/", | |
"libtiff/", | |
"libtool/", | |
"libuuid/", | |
"libxcb/", | |
"libxml2/", | |
"libxslt/", | |
"lighttpd/", | |
"line_profiler/", | |
"llvmdev/", | |
"llvmlite/", | |
"lmdb/", | |
"locket/", | |
"lockfile/", | |
"logilab-common/", | |
"luigi/", | |
"lxml/", | |
"lz4/", | |
"lzo/", | |
"m4/", | |
"mako/", | |
"markdown/", | |
"markdown2/", | |
"markupsafe/", | |
"mathjax/", | |
"matplotlib/", | |
"mayavi/", | |
"mccabe/", | |
"mdp/", | |
"meld3/", | |
"memory_profiler/", | |
"menuinst/", | |
"mercurial/", | |
"mistune/", | |
"mkl/", | |
"mkl-service/", | |
"mock/", | |
"more-itertools/", | |
"mpi4py/", | |
"mpich2/", | |
"mpmath/", | |
"msgpack-python/", | |
"mtq/", | |
"multidict/", | |
"multipledispatch/", | |
"munch/", | |
"murmurhash/", | |
"mysql-connector-python/", | |
"mysql-python/", | |
"natsort/", | |
"nbconvert/", | |
"nbformat/", | |
"ncurses/", | |
"ndg-httpsclient/", | |
"neon/", | |
"netcdf4/", | |
"networkx/", | |
"nltk/", | |
"nose/", | |
"notebook/", | |
"nsis/", | |
"numba/", | |
"numexpr/", | |
"numpy-1.11/", | |
"numpy-1.12/", | |
"numpy-1.13/", | |
"numpydoc/", | |
"odo/", | |
"olefile/", | |
"openblas/", | |
"opencv-2/", | |
"opencv-3/", | |
"openjdk/", | |
"openmpi/", | |
"openpyxl/", | |
"openssl/", | |
"orange/", | |
"orange-app/", | |
"orange3/", | |
"packaging/", | |
"pandas/", | |
"pandas-datareader/", | |
"pandasql/", | |
"pandocfilters/", | |
"pango/", | |
"param/", | |
"paramiko/", | |
"parsel/", | |
"partd/", | |
"passlib/", | |
"paste/", | |
"pastedeploy/", | |
"patch/", | |
"patchelf/", | |
"path.py/", | |
"pathlib2/", | |
"patsy/", | |
"pbr/", | |
"pcre/", | |
"pep381client/", | |
"pep8/", | |
"persistent/", | |
"petl/", | |
"pexpect/", | |
"phantomjs/", | |
"picklable-itertools/", | |
"pickleshare/", | |
"pillow/", | |
"pip/", | |
"pivottablejs/", | |
"pixman/", | |
"pkginfo/", | |
"plac/", | |
"plotly/", | |
"ply/", | |
"pomegranate/", | |
"posix_ipc/", | |
"postgresql/", | |
"preshed/", | |
"progressbar/", | |
"progressbar2/", | |
"proj4/", | |
"prompt_toolkit/", | |
"protobuf/", | |
"psutil/", | |
"psycopg2/", | |
"ptyprocess/", | |
"py/", | |
"pyamg/", | |
"pyasn1/", | |
"pyasn1-modules/", | |
"pyaudio/", | |
"pycairo/", | |
"pycodestyle/", | |
"pycosat/", | |
"pycparser/", | |
"pycrypto/", | |
"pycurl/", | |
"pydispatcher/", | |
"pyface/", | |
"pyflakes/", | |
"pygments/", | |
"pygpu/", | |
"pyhive/", | |
"pykerberos/", | |
"pylint/", | |
"pymc/", | |
"pymongo/", | |
"pymysql/", | |
"pyodbc/", | |
"pyopengl/", | |
"pyopengl-accelerate/", | |
"pyopenssl/", | |
"pyparsing/", | |
"pyproj/", | |
"pyqt/", | |
"pyqtgraph/", | |
"pyramid/", | |
"pyreadline/", | |
"pysal/", | |
"pysam/", | |
"pyserial/", | |
"pysnmp/", | |
"pysocks/", | |
"pystan/", | |
"pytables/", | |
"pytest/", | |
"pytest-cache/", | |
"pytest-cov/", | |
"pytest-mock/", | |
"pytest-pep8/", | |
"pytest-runner/", | |
"pytest-timeout/", | |
"python-2.6/", | |
"python-2.7/", | |
"python-3.4/", | |
"python-3.5/", | |
"python-3.6/", | |
"python-daemon/", | |
"python-dateutil/", | |
"python-gdbm/", | |
"python-gflags/", | |
"python-graphviz/", | |
"python-leveldb/", | |
"python-ntlm/", | |
"python-utils/", | |
"python.app/", | |
"pytz/", | |
"pywavelets/", | |
"pywget/", | |
"pywin32/", | |
"pyyaml/", | |
"pyzmq/", | |
"qgrid/", | |
"qt/", | |
"qtawesome/", | |
"qtconsole/", | |
"qtpy/", | |
"quandl/", | |
"queuelib/", | |
"rasterio/", | |
"readline/", | |
"redis/", | |
"redis-py/", | |
"reportlab/", | |
"repoze.lru/", | |
"requests/", | |
"requests-file/", | |
"requests-ftp/", | |
"requests-kerberos/", | |
"responses/", | |
"rope/", | |
"routes/", | |
"ruamel_yaml/", | |
"runipy/", | |
"s3fs/", | |
"s3transfer/", | |
"sas7bdat/", | |
"scandir/", | |
"scikit-bio/", | |
"scikit-image/", | |
"scikit-learn/", | |
"scikit-rf/", | |
"scipy/", | |
"scrapy/", | |
"seaborn/", | |
"semantic_version/", | |
"semver/", | |
"serf/", | |
"service_identity/", | |
"setuptools/", | |
"setuptools_scm/", | |
"sh/", | |
"shapely/", | |
"simplegeneric/", | |
"simplejson/", | |
"singledispatch/", | |
"sip/", | |
"six/", | |
"smart_open/", | |
"smmap2/", | |
"snakebite/", | |
"snakeviz/", | |
"snappy/", | |
"snowballstemmer/", | |
"snuggs/", | |
"sockjs-tornado/", | |
"sortedcollections/", | |
"sortedcontainers/", | |
"spacy/", | |
"sphinx/", | |
"sphinx_rtd_theme/", | |
"sphinxcontrib/", | |
"sphinxcontrib-websupport/", | |
"sputnik/", | |
"spyder/", | |
"sqlalchemy/", | |
"sqlite/", | |
"sqlparse/", | |
"ssh/", | |
"ssl_match_hostname/", | |
"statsmodels/", | |
"stripe/", | |
"subprocess32/", | |
"suds-jurko/", | |
"supervisor/", | |
"svn/", | |
"swig/", | |
"sympy/", | |
"tabpy-client/", | |
"tabpy-server/", | |
"tblib/", | |
"tempita/", | |
"tensorflow/", | |
"teradata/", | |
"terminado/", | |
"testpath/", | |
"thinc/", | |
"tk/", | |
"toolz/", | |
"tornado/", | |
"tornado-json/", | |
"tqdm/", | |
"traitlets/", | |
"traits/", | |
"traitsui/", | |
"transaction/", | |
"translationstring/", | |
"trollius/", | |
"twisted/", | |
"typing/", | |
"ujson/", | |
"unicodecsv/", | |
"unidecode/", | |
"unixodbc/", | |
"unxutils/", | |
"uuid/", | |
"vc/", | |
"vcversioner/", | |
"venusian/", | |
"vs2008_runtime/", | |
"vs2010_runtime/", | |
"vs2015_runtime/", | |
"vtk/", | |
"w3lib/", | |
"waitress/", | |
"wcwidth/", | |
"webob/", | |
"websocket/", | |
"webtest/", | |
"werkzeug/", | |
"wheel/", | |
"whisper/", | |
"whoosh/", | |
"widgetsnbextension/", | |
"win_inet_pton/", | |
"win_unicode_console/", | |
"word2vec/", | |
"workerpool/", | |
"wrapt/", | |
"wtforms/", | |
"xarray/", | |
"xerces-c/", | |
"xlrd/", | |
"xlsxwriter/", | |
"xlutils/", | |
"xlwings/", | |
"xlwt/", | |
"xz/", | |
"yaml/", | |
"yarl/", | |
"yt/", | |
"zeromq/", | |
"zict/", | |
"zlib/", | |
"zope/", | |
"zope.deprecation/", | |
"zope.interface/", | |
"zope.sqlalchemy/", | |
"LEGACY.md", | |
"LICENSE.txt", | |
"README.md" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ec1504f637a24825aa6d384d08c062bb", | |
"value": [] | |
} | |
}, | |
"1fd19638c46443f78883e199d620a13c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_1f82423462c0473f969f2448f555f93d", | |
"value": [ | |
"a", | |
"b" | |
] | |
} | |
}, | |
"1fe42f38d1f74f94921a4d46192f23cd": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_5e095fd1710d4db9bbc6554240139282", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"2000c8b27e164845beb33f1f702ec59c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b1eec09141154048917bd61b2641fba8", | |
"value": [] | |
} | |
}, | |
"205344b0835648ff95f337b66783dd8d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_635f97fd70534b5baaca4cbcc392049f", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"206e8a9db4a24187976b0821388db05b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"20aa8d84798c4ed098b4516b647f6022": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ead4e566e5694495bd9245dd34a7f639", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"20b635d5ab754cbd9e8a9c4661f4921a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"20d135a186a240b9a140ef489fcf2726": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"20d25f8d3e4f4284b9677d3369477079": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_5bd4476e1b944cc5a156ffbb28e6a2eb", | |
"value": [] | |
} | |
}, | |
"2101326f4f0d460abfd91b549f9898f4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"__pycache__/", | |
"alldeps/", | |
"tests/", | |
"backport_pr.py", | |
"build_release", | |
"check_sources.py", | |
"gen_latex_symbols.py", | |
"gh_api.py", | |
"git-mpr.py", | |
"git-mrb", | |
"github_stats.py", | |
"make_tarball.py", | |
"mknbindex.py", | |
"post_pr_test.py", | |
"release", | |
"test_pr.py", | |
"testupload", | |
"toollib.py", | |
"update_whatsnew.py" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_45713f20b8774528875e595fe13d4805", | |
"value": [] | |
} | |
}, | |
"2190b39bb57b4d37aaf8ff83e4468d03": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"cx", | |
"cy", | |
"cz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_259903addb9442fb9be8d67921ed6468", | |
"value": [ | |
"cx" | |
] | |
} | |
}, | |
"2198a8f8c62e47bca8226bb93784a9d0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"219a9c34a80d46239d13a585f6584c4d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"21a55464155e4e37be286173a95573c0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"21b2f031d9ae46128f9afb8c98a19c1e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"21cb9249f7e94b0689686dfbe1b6b8b9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"21e919451e59425aae19b9e9d5359709": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_60f8ea88b9e242cc92103c51bd068871", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"21eb2df78ca74ca6ac08a2e2550fb032": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"index.js", | |
"license", | |
"package.json", | |
"readme.md" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "index.js", | |
"layout": "IPY_MODEL_fccf3026279d4e1b86e01fe582a6a721", | |
"value": [ | |
"index.js" | |
] | |
} | |
}, | |
"22267a527fa44476b8114de1eca1d043": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"2232c87bde114e92af32f710f1a20696": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_c50425757b6648649ba0a8f5666c61b9", | |
"IPY_MODEL_4cbcd1d2e18c4bf99390e2dd9cd364bb" | |
], | |
"layout": "IPY_MODEL_6109e18352984a999bce4be9b3a8e313", | |
"value": [] | |
} | |
}, | |
"226f5a64abed4468b5ef5de20bc48043": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_21cb9249f7e94b0689686dfbe1b6b8b9", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"22a5caf2b866463ab79d56f1e0f18cdd": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"22b4b9ff132b46bc801def313b867a71": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f412110c718a45f2916bc3d73fcb465c", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"2308c8c5330e45b4b697ec0235bd55d4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"230a048d4ade43c8a46bc6361a4cc2fd": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".DS_Store", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"README.md", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_2d4850e4c0dd4efab5471ce561824d7a", | |
"value": [] | |
} | |
}, | |
"2389ce65abb748228a4262816db8fbb6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a0355a8bc3c54bfb9a2dfc0b7796494c", | |
"value": [ | |
"/" | |
] | |
} | |
}, | |
"23ad287163cb40d8acf6b2fe81c5f347": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"24381754b28b46409f8ddcf581c16f49": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"248a7791e7634ef0ab3a414b5651a274": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_56bde47dea674dfdb7ca0b98c29de0c7", | |
"value": [] | |
} | |
}, | |
"24d0deb24cea48539292e16f56c7a251": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_134e354222dd468e9b002bcf17ee7837", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"250fd8d3fcdc4ab8ae614b01edf199b5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_0108d22da79d4c51a04f16c15759f5b3" | |
], | |
"layout": "IPY_MODEL_2198a8f8c62e47bca8226bb93784a9d0", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"2581e497faad42aea9940e6081be08cd": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_2000c8b27e164845beb33f1f702ec59c" | |
], | |
"layout": "IPY_MODEL_f9dc71be0e704ff2a249d31aa9ebb707", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"259724bcced24f4aaaec788c07e63cbf": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"259903addb9442fb9be8d67921ed6468": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"25a719879fd2449eb9b0bc6bfa834f32": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_5a5ad6fa178547be92dec7768e106a82" | |
], | |
"layout": "IPY_MODEL_513c6a763a444286b04b1a89b63c5905", | |
"selections": [] | |
} | |
}, | |
"25f59b848b2c475b8c464c9e96e3f66c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"260fc71e0dda4865bf3665a9a3fa0b14": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_011d72383e2b43199d6c16cdc79b4644", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"26211bd9461e49c0b0feee080014783f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c3b1060287534b1bbf9b71d9945badc9", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"262d0131905044218b429f903f1e0fe7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_4523da1411a441baa51145ab8c3a8a0d" | |
], | |
"layout": "IPY_MODEL_48f161a45f9a403da38a87b6912cbd69", | |
"value": [ | |
"Untitled.ipynb" | |
] | |
} | |
}, | |
"26482725573a43ef81982f11e6057679": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"267f01831539430c88492a3a876f413c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"26c5034f069e4c76ba9972a462c1138f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"c", | |
"d" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f821f3071dcd4a62888fa0c0c9137521", | |
"value": [] | |
} | |
}, | |
"26e05ead45b445b49999835e67c68968": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"README.md", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_e682635517b4414792a0e6eb26e4c2fb", | |
"value": [] | |
} | |
}, | |
"26f536f5bb754dc693499b7ccf15707a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"270c13dee8904b9daa4a6b16d6d8f024": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"c", | |
"d" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a6db87b7ecbe48829114699c68004f67", | |
"value": [] | |
} | |
}, | |
"27148528efa54136ae8859fdcdbc4ef0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_80edb71b3efe45f984c8f8fec6838573", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"2727598086b84f3a8a8f77323f775d59": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_fe2efd2f4677486f9bfa753d795a29fc", | |
"value": [] | |
} | |
}, | |
"27a99a1822e34cccb595e2be3549206e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"27c70bed42794418936d1c3988d090c0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints", | |
"anaconda-chains.yml", | |
"foo.csv", | |
"foo.js", | |
"Uploader Widget.ipynb", | |
"uploader-widget-ipynb" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_eb0a46bb64f1470c8329a765e316842a", | |
"value": [] | |
} | |
}, | |
"27fef159c47e4bc0bef513183dc72e2c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2809ad68db894436842533a2ad6ad935": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex" | |
} | |
}, | |
"2824504717264f9a9f765329ebe50dc4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_511ec4793617428aac91069d2ffff3ad", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"285e94276ac848dea52d867f458408e8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"286cb516d2bf4b7588e45c590539af0f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_eeaafbfc8ff1495d92e0717169d12484", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"289bc3a187bb42f4858aa809b4f81ad2": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"28e1fed642884fac941f77890c9a22a3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"290c0585e68840d99f745b7e442f4565": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"294a295d39bf41d9bdcf5595943cedd7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"296918815ecd4b44afd02be0ac2ca4af": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"29cf6c27839e44d7b60f79bf816a4a3c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2a0a71fccf4540c8a28fe328893d0568": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a385b6545b1f4a94a68b495da71789aa", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"2a3d49b9e6c84045b85b713faf082885": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_1fe42f38d1f74f94921a4d46192f23cd" | |
], | |
"layout": "IPY_MODEL_7a296629ca4344a8a33f951b98858599", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"2a4731fc3fd14ffebdd469294e37c450": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2ad0e7a049534b678085a2f8c707eef8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2afd572e61e041699bb155ae111a84ae": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2b16bac5148842808cffbc99f23af10f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_0e33c45720ba4396ba9fcb61f4d00686", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"2b16f8e890bf46438b9d4259d19e9fd5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2b213784664a441ea4c7df36cf36b667": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2b469ed70a7349f7a01c654ba1e2e032": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2b4dd9f6546b447cad476ab90dd4bf4e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_1f3d9a41a28d4d20b9313cc9158d23d1", | |
"value": [] | |
} | |
}, | |
"2b5dc944cad64bf39fde3fb49586208b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_ac5bd3d0a01948239832f5208cddea75" | |
], | |
"layout": "IPY_MODEL_d1d4b9e8715f4f49b3349fe0c91e6264", | |
"value": [ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
"anaconda-notebook-ui" | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
} | |
}, | |
"2b8491a65cb7448091fb9cc15c3685d9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_e9c22fcc98204c50b3a2a34c6e87646e", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"2b8606c059c74ed4867e03d89269bbda": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2be6dfc9a2974559b7b197a697658541": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"2c4271add50f4dd8aa1eb1bd5315b050": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_1c5e4ef93bb441da89f9aa7cf6a3550d", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"2c4d72b79f0045a3b31bf371a4f669e4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".DS_Store", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"README.md", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_6e73570db037410bbc53025e1fceacbf", | |
"value": [] | |
} | |
}, | |
"2c5b680e2748405796b8ef1fae99d464": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_bcaa1f8db2ee4c8bb4819e3cf7331f9d", | |
"value": [] | |
} | |
}, | |
"2c935eedf2834e76b16fc2b05dba2116": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"bx", | |
"by", | |
"bz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_df24df9168cd4824a771d1d57952f937", | |
"value": [] | |
} | |
}, | |
"2cd17e577dd44f69a360e256df96ed63": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2d460045efc0481a88a331ca41243b0c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2d4850e4c0dd4efab5471ce561824d7a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2d79edacc45b4dbb9ebf3e7b8ab5c538": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_e8e4a7228c7144ceb215891f1f4534ad", | |
"IPY_MODEL_fb88a7bb121c42caafe04c7a0834ff79" | |
], | |
"layout": "IPY_MODEL_6609c3765e8e4d0fa2012fa8a1c1bae6", | |
"value": [ | |
"ipython" | |
] | |
} | |
}, | |
"2d8626fb98454e26aad4472f90e89c75": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2db7727726574e91959a13251ba06132": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2df8d4f726bd497686a42eebb2f8b8b9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_37354dad2ea64cd195ebee5825152ec2", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"2e54bead761143a9be517c089dba2c3a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"component/", | |
"core/", | |
"__init__.py" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "component", | |
"layout": "IPY_MODEL_7e12a2972656487bad2c2b1857dc7e8a", | |
"value": [ | |
"component/" | |
] | |
} | |
}, | |
"2ed14ad41a8a47c3bf2e8aa60cab096c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2eebfe3924484a4f89c6216876e7a896": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_d9045094b6c64f4aa4b42c1589028ca2", | |
"value": [] | |
} | |
}, | |
"2ef090a6dfac49d495deaa477fdd721a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2efbf32c12a2440f81d27dc89d803823": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"cx", | |
"cy", | |
"cz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b9d255351bc24d87bf18a02f794a271b", | |
"value": [] | |
} | |
}, | |
"2f0c4d3264374764a96fe89ffc6d49c5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2fbfb6e3332241e2ad4881076053df44": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2fd9cb533a8140bbbff87036f6d46882": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"2fdc70c7c7964d3b860c047eabb05cbe": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_4f69df34add442839f73a0f3003039fc", | |
"value": [] | |
} | |
}, | |
"2fffe092f4ac41979562084e6689a724": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c20b9d5f49b0421c8e1770a8e47df93b", | |
"value": [] | |
} | |
}, | |
"300bcc4b242e49359692561a00b53f97": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"bx", | |
"by", | |
"bz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_da5220d039ba4326af906f251460f3f4", | |
"value": [] | |
} | |
}, | |
"30167df1e0de402d9328c0239be17819": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3033ffd043f84cd09f20f0a92182551b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"303503440e1f477c9abce7474c537bc3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a3955ea2860e42f19c7698e94d04e82e", | |
"value": [] | |
} | |
}, | |
"30509afd898140999bacdb818ef66b1b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_5836c2f659b24becbe91d06a48a4607c" | |
], | |
"layout": "IPY_MODEL_dea0c1244a9a4d2584e922acf80581f5", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"30a547605c1049e0a87e0d39819b553b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_cca276c67ebd4c069d175034c7b2def1", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"30aa670564664489ac77907c25f1767c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"30c0b6f9ce3f4c6386f129e9358657fd": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"30d4808b635c4eeea932dc6b218e39a8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3125d34e50974041b7467a6281450e9f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_50b50ed737c649aea282243bdaa98e6c", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"3140ada4240349a9b895c20a0504bc39": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "200px" | |
} | |
}, | |
"3172fec3e27c40ea9c5f32fd9c4f825d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"31944095e04645a3bed271df326a988a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"322c7d25fb7440f3bc2348d34fce0bfb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_4295a1be0fcf453db7a692d49c711bd1", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"3242d6b67307497cabc0472f3eb5d7ff": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"32a411a54eb94038b1d56f3654bc26ec": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"32b2df72e1144015851268d960f9f89c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_78e3816936a34066aaddcae811caa931", | |
"value": [ | |
"/" | |
] | |
} | |
}, | |
"32b615908bf440728e2e26e85f74d53c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_296918815ecd4b44afd02be0ac2ca4af", | |
"value": [] | |
} | |
}, | |
"32dd910765d241a6b6df7b38f5e4cff0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"331b3f0299e14510859092532d1d508f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache/", | |
".git/", | |
".github/", | |
".ipynb_checkpoints/", | |
".vagrant/", | |
"anaconda-platform-fixtures/", | |
"anaconda_platform/", | |
"binstar/", | |
"binstar_server.egg-info/", | |
"build/", | |
"certs/", | |
"ci/", | |
"conda.recipe/", | |
"docker/", | |
"docs/", | |
"example_configs/", | |
"example_kapsels/", | |
"example_notebooks/", | |
"fs-testing/", | |
"integration_tests/", | |
"node_modules/", | |
"static/", | |
"styling/", | |
"tests/", | |
"tmp/", | |
"vagrant/", | |
"wiki/", | |
".DS_Store", | |
".codecov.yml", | |
".coverage", | |
".coveragerc", | |
".dockerignore", | |
".gitignore", | |
".jshintignore", | |
".travis.yml", | |
"CHANGELOG.md", | |
"CONFIG-SETTINGS.md", | |
"DockerFile-Anaconda-Server", | |
"MANIFEST.in", | |
"Procfile", | |
"README.md", | |
"RELEASE-PROCESS.md", | |
"TESTING.md", | |
"Untitled.ipynb", | |
"Vagrantfile", | |
"circle.yml", | |
"codecov.yml", | |
"config.yaml", | |
"conftest.py", | |
"conftest.pyc", | |
"dev-requirements.txt", | |
"docker-compose.yml", | |
"gulpfile.js", | |
"install-output.txt", | |
"key.py", | |
"make_version.py", | |
"package.json", | |
"record.txt", | |
"setup.cfg", | |
"setup.py", | |
"test.log" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ce3efc58a6fa4dce9bfda83010f12561", | |
"value": [] | |
} | |
}, | |
"33865ecdad534f318e1841ddd28cd0bc": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"339223c0fc6c437298cb67839287984f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_76be1f9a9e184288ac4147f495a631fb", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"33af39513f65425d965739e340d99c82": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"34b01c1284584ce6b67b5bcfaa16a544": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"34e3f63c12b64e4d8d30c52a3baddb59": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"34eafe41d0694f0c9c95368ad31f22b8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"350b3afa001a462984c4181a12e2a8f3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_0afefedea8c54a42aba039607e9a1a97", | |
"value": [] | |
} | |
}, | |
"3516ec4f4a9844e9ab50bc49367b520b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"351725d7dac444df94ab3d821ed5ac3c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"359d5d3b7b4c49f5ae4b7c1a6e35ca8c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_d080f91cdbb44685a359734725785b01" | |
], | |
"layout": "IPY_MODEL_2fd9cb533a8140bbbff87036f6d46882", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"35a28198800342eba15df00c8e34e5fc": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"36096c5a4f294626a8cfc4c2e9b82427": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"36cc60fa5c6e478ea3ac015eb334b5d5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3711852e6772437c8f1cb397541c8731": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"37354dad2ea64cd195ebee5825152ec2": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"375eaa81d63b4384a61cd0f04750cbe5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"37c64cdecec34879ae4e9e5e4bb25ab8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"__init__.py", | |
"install_data_ext.py" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_0fbbcab25fcd40b5a13355cc2c27e2d5", | |
"value": [] | |
} | |
}, | |
"37f4bf4cbb584e158c1df7d02ca784e5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_e3fc65c4a3cb48a6bbfed15986ee23ef", | |
"IPY_MODEL_899d50a42fa9443d864f51692e1a2c48" | |
], | |
"layout": "IPY_MODEL_efc305c615f04756b46611d0725eba25", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"38a4a98f147a4facb030af90028d309f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_34e3f63c12b64e4d8d30c52a3baddb59", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"38a7432b4f154d848372860419bdcd22": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_d273a4edfaa94281940df8ae322d1eeb", | |
"value": [ | |
"/" | |
] | |
} | |
}, | |
"38ccd27321e8483a85f71a6e9767e26b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3904fd6621d84447be478e5022c808e5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_48464c93662c41dcbe71faa3e36034fb", | |
"value": [ | |
"anaconda-installer" | |
] | |
} | |
}, | |
"3911c415f4e7481490e84f3231f3e73a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints", | |
"Anaconda Cloud Notebooks.sketch", | |
"Untitled.ipynb" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_351725d7dac444df94ab3d821ed5ac3c", | |
"value": [] | |
} | |
}, | |
"391c8a448a00481c9efebd64585838a1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"ax", | |
"ay", | |
"az" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_d8e0d3813041472b8846b6042868e204", | |
"value": [] | |
} | |
}, | |
"3932900581594662b7ee40b051d76054": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_36096c5a4f294626a8cfc4c2e9b82427", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"3942e016f2cf4085b6fd2c8f00075f29": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints /", | |
"ET-NumericalMethods-2016 /", | |
"Method-Draw /", | |
"PyPDF2 /", | |
"Untitled.ipynb", | |
"_jademagic /", | |
"adam /", | |
"adam-aproject /", | |
"adam-kapsel /", | |
"aen-lab-theme /", | |
"aen-lab-theme-dist /", | |
"aen-recipes /", | |
"aen_foo /", | |
"aetrial /", | |
"aetrial-old /", | |
"aiohttp-api-test /", | |
"aiooapi /", | |
"alm /", | |
"anaconda /", | |
"anaconda-4.1-linux /", | |
"anaconda-4.3-notebook-config /", | |
"anaconda-build-graph /", | |
"anaconda-client /", | |
"anaconda-desktop /", | |
"anaconda-installer /", | |
"anaconda-narrative /", | |
"anaconda-nb-extension-config-meta /", | |
"anaconda-nb-extensions /", | |
"anaconda-notebook-ui /", | |
"anaconda-platform /", | |
"anaconda-platform-design /", | |
"anaconda-platform-features /", | |
"anaconda-platform-jlab /", | |
"anaconda-platform-ui /", | |
"anaconda-project /", | |
"anaconda-project-foo /", | |
"anaconda-recipes /", | |
"anaconda-run-button /", | |
"anaconda-server /", | |
"anaconda-server-docker /", | |
"anaconda-server-old /", | |
"anaconda-standup /", | |
"apug /", | |
"as-html-foo /", | |
"baobab-site /", | |
"beaker /", | |
"beakerbrowser.com /", | |
"binder-foo /", | |
"blanket /", | |
"blockly-d.ts /", | |
"bokeh /", | |
"bokeh-bug /", | |
"bokeh-deploy /", | |
"bokeh-dev-foo /", | |
"bokeh-foo /", | |
"bokeh-lab /", | |
"bokeh-notebooks /", | |
"braces /", | |
"brand-kit /", | |
"build /", | |
"cards-for-humanity /", | |
"category_encoders /", | |
"cc /", | |
"cc-foo /", | |
"cfvspypi /", | |
"chatterbot-binder /", | |
"ciocheck /", | |
"codemirror /", | |
"coffeetable /", | |
"column-widget /", | |
"components /", | |
"conda /", | |
"conda-backports.shutil_which /", | |
"conda-build /", | |
"conda-capsule /", | |
"conda-doc /", | |
"conda-forge-apprentice /", | |
"conda-forge-badger /", | |
"conda-ipfs /", | |
"conda-kapsel /", | |
"conda-mirror /", | |
"conda-nbdime /", | |
"conda-nodejs /", | |
"conda-notebook /", | |
"conda-notebook-pip /", | |
"conda-patch /", | |
"conda-pyld /", | |
"condatron /", | |
"connexion /", | |
"connexion_ /", | |
"constructor-cutter /", | |
"constructor-cutter-test /", | |
"constructor-cutter-unified /", | |
"continuumio-docker-images /", | |
"cookiecutter-conda-forge /", | |
"cookiecutter-jupyterlab_viewer /", | |
"cookiecutters /", | |
"coveragepy /", | |
"cp-foo /", | |
"d3-miller-columns /", | |
"d3-post-it /", | |
"dashboard-example /", | |
"data.gov /", | |
"database.db", | |
"datashader_nyctaxi_app /", | |
"datlab /", | |
"deap /", | |
"demo-friday /", | |
"dev-meeting-2016 /", | |
"docker-apk-build /", | |
"docker-compose-viz /", | |
"docker-conda-cache /", | |
"docker-conda-notebook /", | |
"docker-elk /", | |
"dokang-test /", | |
"dominion /", | |
"env-foo /", | |
"example-bokeh-thing /", | |
"example-project /", | |
"extension-cookiecutter-ts /", | |
"extension-feedstocks /", | |
"extension-foo /", | |
"eysel /", | |
"fbo /", | |
"feedstocks /", | |
"ferenda /", | |
"ferenda-foo /", | |
"flask-restful-swagger /", | |
"fonts /", | |
"foo /", | |
"foorbar /", | |
"foreverwhatever.github.io /", | |
"fovea-foo /", | |
"generator-nbextension /", | |
"ghost.py /", | |
"git_by_a_bus /", | |
"graflex /", | |
"graphuary /", | |
"hack-night /", | |
"hdtpy /", | |
"hy_kernel /", | |
"iconda /", | |
"ieee-spectrum-langs /", | |
"iheartanaconda /", | |
"imply /", | |
"improvicoding /", | |
"installers /", | |
"ipyld /", | |
"ipynblkly /", | |
"ipysankeywidget /", | |
"ipython /", | |
"ipywidgets /", | |
"ipywidgets-json /", | |
"irods-thing /", | |
"jademagic /", | |
"jday-page /", | |
"jefferson /", | |
"jlformat /", | |
"js-notebook-hackery /", | |
"jsonld-lab /", | |
"jsonschema-typing /", | |
"jupyter-anaconda /", | |
"jupyter-box /", | |
"jupyter-conda /", | |
"jupyter-day-atl /", | |
"jupyter-day-chi /", | |
"jupyter-design /", | |
"jupyter-docs /", | |
"jupyter-js-notebook /", | |
"jupyter-js-services /", | |
"jupyter-js-ui /", | |
"jupyter-notepad /", | |
"jupyter-sextant /", | |
"jupyter-sheets /", | |
"jupyter-shelf /", | |
"jupyter-widget-sigmax /", | |
"jupyter-widget-webgazer /", | |
"jupyter_client /", | |
"jupyter_core /", | |
"jupyterlab /", | |
"jupyterlab-bokeh /", | |
"jupyterlab-browser-kernels /", | |
"jupyterlab-build-services /", | |
"jupyterlab-cookiecutter-conda /", | |
"jupyterlab-demo /", | |
"jupyterlab-dev /", | |
"jupyterlab-feedstock /", | |
"jupyterlab-gdrive-foo /", | |
"jupyterlab-legacy /", | |
"jupyterlab-legacy-foo /", | |
"jupyterlab-ubuntu /", | |
"jupyterlab_dot /", | |
"jupyterlab_explainer /", | |
"jupyterlab_kapsel /", | |
"jupyterlab_log /", | |
"jupyterlab_stl /", | |
"jupyterlab_svg /", | |
"jupyterlab_typescript /", | |
"kapsel-docker /", | |
"kernels /", | |
"keycloak /", | |
"kid /", | |
"klee /", | |
"knowledge-constellation /", | |
"license-list /", | |
"linter-mypy /", | |
"literacy /", | |
"living-data /", | |
"lmy /", | |
"loghub /", | |
"mapeo-desktop /", | |
"mdconvert /", | |
"mdconvert-foo /", | |
"metabuilder /", | |
"mistune /", | |
"mtq /", | |
"myconda /", | |
"nb-inkscapelayers /", | |
"nb-jscodemirror-plus /", | |
"nb-livereload /", | |
"nb-mermaid /", | |
"nb_aen_theme /", | |
"nb_anacondacloud /", | |
"nb_anacondacloud-foo /", | |
"nb_conda /", | |
"nb_conda_kernels /", | |
"nb_config_manager /", | |
"nb_delta /", | |
"nb_delta-steve /", | |
"nb_delta_old /", | |
"nb_env_kernels /", | |
"nb_locker /", | |
"nb_revisioncontrol /", | |
"nb_runonly /", | |
"nb_user_sessions /", | |
"nbbrowserpdf /", | |
"nbbrowserpdf-deps /", | |
"nbconvert /", | |
"nbconvert-jsonld /", | |
"nbdiffstream /", | |
"nbdime /", | |
"nbext-foo /", | |
"nbext-unified /", | |
"nbformat /", | |
"nblogger /", | |
"nbpresent /", | |
"nbpresent-79 /", | |
"nbpresent-clean /", | |
"nbpresent-continuum-theme /", | |
"nbpresent-example /", | |
"nbpresent-foo /", | |
"nbpresent-reviews /", | |
"nbviewer /", | |
"nbviewer-foo /", | |
"new-anaconda-server /", | |
"new-bokeh /", | |
"newrelic-python-agent /", | |
"niobium /", | |
"nosebook /", | |
"notebook /", | |
"notebook-pytest /", | |
"notebooks /", | |
"npm /", | |
"npm-debug.log", | |
"npm-foo /", | |
"numba-env /", | |
"nvchecker /", | |
"package.sh", | |
"pandas /", | |
"pandas-rdfa-style /", | |
"pgadmin4 /", | |
"phosphide /", | |
"phosphor /", | |
"phosphor-bokeh-demo /", | |
"phosphor-foo /", | |
"phosphor-jspy /", | |
"pipfile-tomld /", | |
"pivottable /", | |
"plumberjack /", | |
"powered-by-anaconda /", | |
"project-as-build /", | |
"project-empty-notebook /", | |
"project-foo /", | |
"project-runonly /", | |
"projx-vignette /", | |
"py-jsonapi /", | |
"py-jsonapi-example /", | |
"pydata-meetups /", | |
"pydata-talk /", | |
"quiz /", | |
"repo-intel /", | |
"reproconda /", | |
"rest_notebook /", | |
"revealjs /", | |
"robook /", | |
"rstudio-foo /", | |
"runonly-example /", | |
"screeps /", | |
"skyrim /", | |
"small-treatise /", | |
"snakebiz /", | |
"so-you-want-to-host /", | |
"socratea /", | |
"sparkhead /", | |
"spectoscropy_redux /", | |
"sqlalchemy-jsonapi /", | |
"staged-recipes /", | |
"staged-recipes-tpot /", | |
"svglab /", | |
"svgpan /", | |
"tablewidget /", | |
"this-week-in-anaconda-server /", | |
"traitlets /", | |
"trial-in-a-box /", | |
"typedoc /", | |
"typeshed /", | |
"ui-coding-challenge /", | |
"unarchive-foo /", | |
"underpy /", | |
"uploadwidget /", | |
"vagrant-anaconda-nb-extensions /", | |
"vagrant-images /", | |
"visicons /", | |
"wakari-server /", | |
"whatever-forever /", | |
"widget-cookiecutter /", | |
"widget-dateslider /", | |
"widget-layoutre /", | |
"widget-playground /", | |
"widgetouch /", | |
"wookiecutter /", | |
"xz-foo /", | |
"yamlmagic /", | |
"youtubedl /" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b1376aff789d405bbb9a14f1e32f9a32", | |
"value": [ | |
"anaconda-platform /" | |
] | |
} | |
}, | |
"3a538fb89bb74efb91004c02886dc8da": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"3a73a2421a4a46d5a714f5c7441321b9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3a8714ad013e4ccb80ebf2cb4b431e04": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ba3b0ddaf2464a119f702c1e9f996aab", | |
"value": [] | |
} | |
}, | |
"3a94028791184fe89734d568bd8cf9e0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3a969a83b6a34af498ae3c103adf6dbb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3ad3bd70af9f4d45866cce46ec9bc345": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3afcf5520bda415f9af8a0bff88b0f82": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3b179340bab04a6f8ed6bc0f13f4900e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3bd2479c54064ac886ab266e37811b41": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_def29c5bf8a94810b9fa0061c21306f9", | |
"IPY_MODEL_84c0330361a14d6c9d421e79f5a1551f", | |
"IPY_MODEL_48b28540adf2432f90ad8022db86f963" | |
], | |
"layout": "IPY_MODEL_40cea3b7ddac41bcabdb2a6c845e2289", | |
"selections": [] | |
} | |
}, | |
"3c1b41582d0b4537b8f93432ab70b7c3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"bx", | |
"by", | |
"bz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_eb506f2d48d34528ae5ce8ace904d0c9", | |
"value": [] | |
} | |
}, | |
"3c486ce853af4699b5ac3d44eb6d7434": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3c70f7896a9441e9a47bffa9aa429221": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3c7abcdad7a545caa7b419f84e54d88a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3c9918e8a4bf4c5cb054d0ba0785c5fe": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3c9c61641d054993b8fb022f93d0920d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex" | |
} | |
}, | |
"3cbc5cf21d204f07a8ffac3edfe0a848": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3d0c6bbd15e841c39f40da6d4b3ef8e4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3d28d65b5d9741c3a3dc31160afedbe9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"3d3d9921837e424289d50f52c343a971": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3d97a3bde752448eab661e43d1eb5ae0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".git", | |
".gitignore", | |
".ipynb_checkpoints", | |
"environment.yml", | |
"js", | |
"MANIFEST.in", | |
"notebooks", | |
"README.md", | |
"RELEASE.md", | |
"setup.cfg", | |
"setup.py", | |
"wookiecutter", | |
"wookiecutter.egg-info" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_68cd80a7c12a49a8bf2715b284e4d4d8", | |
"value": [] | |
} | |
}, | |
"3e4d14d4675e44f5846ceee3858ff275": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3e5956689bf34534994ecfa9280a0771": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_081f1ebb8985485b97098733db2380e6", | |
"value": [] | |
} | |
}, | |
"3eac3b5dc4d84d099675c89289433f7a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_9171d25b113c4e4e9acddc1af251e9e1", | |
"selections": [] | |
} | |
}, | |
"3ed5c2b3bb724575b4fe7645eec770b9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache/", | |
".git/", | |
".ipynb_checkpoints/", | |
"_mermaids/", | |
"_notebooks/", | |
"anaconda_enterprise/", | |
"auth/", | |
"auth_api/", | |
"auth_escrow/", | |
"auth_theme/", | |
"build/", | |
"ci_scripts/", | |
"cli/", | |
"common/", | |
"common_jsonapi/", | |
"common_kubernetes_api/", | |
"conda.recipe/", | |
"data/", | |
"deploy/", | |
"docs/", | |
"envs/", | |
"example_projects/", | |
"git_proxy/", | |
"git_storage/", | |
"htmlcov/", | |
"installer/", | |
"k8s_builder/", | |
"mirror/", | |
"object_storage/", | |
"offline_docs/", | |
"offline_mirror/", | |
"platform_build/", | |
"postgresql/", | |
"repository/", | |
"search/", | |
"search_api/", | |
"spaces/", | |
"storage/", | |
"sync/", | |
"testbed/", | |
"topologies/", | |
"ui/", | |
"ui-kit/", | |
".DS_Store", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".gitattributes", | |
".gitignore", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"README.md", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"apb", | |
"apb.py", | |
"cloudbuild.yaml", | |
"environment.yml", | |
"readthedocs.yml", | |
"table-of-contents.md" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f178c27efc2b4339963ebf88239b9cf2", | |
"value": [] | |
} | |
}, | |
"3f300b41035641f4939c9b31e89b9fa0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3f412ea640954586889a27869ba42787": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_70c1d795dd46464199a608ce00b13b52", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"3f620f0e0c1a40bfb6e84b75c752b60d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"3f9f4d4818cc4eb4885921e82ad7d7ad": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints/", | |
"ET-NumericalMethods-2016/", | |
"Method-Draw/", | |
"PyPDF2/", | |
"_jademagic/", | |
"adam/", | |
"adam-aproject/", | |
"adam-kapsel/", | |
"aen-lab-theme/", | |
"aen-lab-theme-dist/", | |
"aen-recipes/", | |
"aen_foo/", | |
"aetrial/", | |
"aetrial-old/", | |
"aiohttp-api-test/", | |
"aiooapi/", | |
"alm/", | |
"anaconda/", | |
"anaconda-4.1-linux/", | |
"anaconda-4.3-notebook-config/", | |
"anaconda-build-graph/", | |
"anaconda-client/", | |
"anaconda-desktop/", | |
"anaconda-installer/", | |
"anaconda-narrative/", | |
"anaconda-nb-extension-config-meta/", | |
"anaconda-nb-extensions/", | |
"anaconda-notebook-ui/", | |
"anaconda-platform/", | |
"anaconda-platform-design/", | |
"anaconda-platform-features/", | |
"anaconda-platform-jlab/", | |
"anaconda-platform-ui/", | |
"anaconda-project/", | |
"anaconda-project-foo/", | |
"anaconda-recipes/", | |
"anaconda-run-button/", | |
"anaconda-server/", | |
"anaconda-server-docker/", | |
"anaconda-server-old/", | |
"anaconda-standup/", | |
"apug/", | |
"as-html-foo/", | |
"baobab-site/", | |
"beaker/", | |
"beakerbrowser.com/", | |
"binder-foo/", | |
"blanket/", | |
"blockly-d.ts/", | |
"bokeh/", | |
"bokeh-bug/", | |
"bokeh-deploy/", | |
"bokeh-dev-foo/", | |
"bokeh-foo/", | |
"bokeh-lab/", | |
"bokeh-notebooks/", | |
"braces/", | |
"brand-kit/", | |
"build/", | |
"cards-for-humanity/", | |
"category_encoders/", | |
"cc/", | |
"cc-foo/", | |
"cfvspypi/", | |
"chatterbot-binder/", | |
"ciocheck/", | |
"codemirror/", | |
"coffeetable/", | |
"column-widget/", | |
"components/", | |
"conda/", | |
"conda-backports.shutil_which/", | |
"conda-build/", | |
"conda-capsule/", | |
"conda-doc/", | |
"conda-forge-apprentice/", | |
"conda-forge-badger/", | |
"conda-ipfs/", | |
"conda-kapsel/", | |
"conda-mirror/", | |
"conda-nbdime/", | |
"conda-nodejs/", | |
"conda-notebook/", | |
"conda-notebook-pip/", | |
"conda-patch/", | |
"conda-pyld/", | |
"condatron/", | |
"connexion/", | |
"connexion_/", | |
"constructor-cutter/", | |
"constructor-cutter-test/", | |
"constructor-cutter-unified/", | |
"continuumio-docker-images/", | |
"cookiecutter-conda-forge/", | |
"cookiecutter-jupyterlab_viewer/", | |
"cookiecutters/", | |
"coveragepy/", | |
"cp-foo/", | |
"d3-miller-columns/", | |
"d3-post-it/", | |
"dashboard-example/", | |
"data.gov/", | |
"datashader_nyctaxi_app/", | |
"datlab/", | |
"deap/", | |
"demo-friday/", | |
"dev-meeting-2016/", | |
"docker-apk-build/", | |
"docker-compose-viz/", | |
"docker-conda-cache/", | |
"docker-conda-notebook/", | |
"docker-elk/", | |
"dokang-test/", | |
"dominion/", | |
"env-foo/", | |
"example-bokeh-thing/", | |
"example-project/", | |
"extension-cookiecutter-ts/", | |
"extension-feedstocks/", | |
"extension-foo/", | |
"eysel/", | |
"fbo/", | |
"feedstocks/", | |
"ferenda/", | |
"ferenda-foo/", | |
"flask-restful-swagger/", | |
"fonts/", | |
"foo/", | |
"foorbar/", | |
"foreverwhatever.github.io/", | |
"fovea-foo/", | |
"generator-nbextension/", | |
"ghost.py/", | |
"git_by_a_bus/", | |
"graflex/", | |
"graphuary/", | |
"hack-night/", | |
"hdtpy/", | |
"hy_kernel/", | |
"iconda/", | |
"ieee-spectrum-langs/", | |
"iheartanaconda/", | |
"imply/", | |
"improvicoding/", | |
"installers/", | |
"ipyld/", | |
"ipynblkly/", | |
"ipysankeywidget/", | |
"ipython/", | |
"ipywidgets/", | |
"ipywidgets-json/", | |
"irods-thing/", | |
"jademagic/", | |
"jday-page/", | |
"jefferson/", | |
"jlformat/", | |
"js-notebook-hackery/", | |
"jsonld-lab/", | |
"jsonschema-typing/", | |
"jupyter-anaconda/", | |
"jupyter-box/", | |
"jupyter-conda/", | |
"jupyter-day-atl/", | |
"jupyter-day-chi/", | |
"jupyter-design/", | |
"jupyter-docs/", | |
"jupyter-js-notebook/", | |
"jupyter-js-services/", | |
"jupyter-js-ui/", | |
"jupyter-notepad/", | |
"jupyter-sextant/", | |
"jupyter-sheets/", | |
"jupyter-shelf/", | |
"jupyter-widget-sigmax/", | |
"jupyter-widget-webgazer/", | |
"jupyter_client/", | |
"jupyter_core/", | |
"jupyterlab/", | |
"jupyterlab-bokeh/", | |
"jupyterlab-browser-kernels/", | |
"jupyterlab-build-services/", | |
"jupyterlab-cookiecutter-conda/", | |
"jupyterlab-demo/", | |
"jupyterlab-dev/", | |
"jupyterlab-feedstock/", | |
"jupyterlab-gdrive-foo/", | |
"jupyterlab-legacy/", | |
"jupyterlab-legacy-foo/", | |
"jupyterlab-ubuntu/", | |
"jupyterlab_dot/", | |
"jupyterlab_explainer/", | |
"jupyterlab_kapsel/", | |
"jupyterlab_log/", | |
"jupyterlab_stl/", | |
"jupyterlab_svg/", | |
"jupyterlab_typescript/", | |
"kapsel-docker/", | |
"kernels/", | |
"keycloak/", | |
"kid/", | |
"klee/", | |
"knowledge-constellation/", | |
"license-list/", | |
"linter-mypy/", | |
"literacy/", | |
"living-data/", | |
"lmy/", | |
"loghub/", | |
"mapeo-desktop/", | |
"mdconvert/", | |
"mdconvert-foo/", | |
"metabuilder/", | |
"mistune/", | |
"mtq/", | |
"myconda/", | |
"nb-inkscapelayers/", | |
"nb-jscodemirror-plus/", | |
"nb-livereload/", | |
"nb-mermaid/", | |
"nb_aen_theme/", | |
"nb_anacondacloud/", | |
"nb_anacondacloud-foo/", | |
"nb_conda/", | |
"nb_conda_kernels/", | |
"nb_config_manager/", | |
"nb_delta/", | |
"nb_delta-steve/", | |
"nb_delta_old/", | |
"nb_env_kernels/", | |
"nb_locker/", | |
"nb_revisioncontrol/", | |
"nb_runonly/", | |
"nb_user_sessions/", | |
"nbbrowserpdf/", | |
"nbbrowserpdf-deps/", | |
"nbconvert/", | |
"nbconvert-jsonld/", | |
"nbdiffstream/", | |
"nbdime/", | |
"nbext-foo/", | |
"nbext-unified/", | |
"nbformat/", | |
"nblogger/", | |
"nbpresent/", | |
"nbpresent-79/", | |
"nbpresent-clean/", | |
"nbpresent-continuum-theme/", | |
"nbpresent-example/", | |
"nbpresent-foo/", | |
"nbpresent-reviews/", | |
"nbviewer/", | |
"nbviewer-foo/", | |
"new-anaconda-server/", | |
"new-bokeh/", | |
"newrelic-python-agent/", | |
"niobium/", | |
"nosebook/", | |
"notebook/", | |
"notebook-pytest/", | |
"notebooks/", | |
"npm/", | |
"npm-foo/", | |
"numba-env/", | |
"nvchecker/", | |
"pandas/", | |
"pandas-rdfa-style/", | |
"pgadmin4/", | |
"phosphide/", | |
"phosphor/", | |
"phosphor-bokeh-demo/", | |
"phosphor-foo/", | |
"phosphor-jspy/", | |
"pipfile-tomld/", | |
"pivottable/", | |
"plumberjack/", | |
"powered-by-anaconda/", | |
"project-as-build/", | |
"project-empty-notebook/", | |
"project-foo/", | |
"project-runonly/", | |
"projx-vignette/", | |
"py-jsonapi/", | |
"py-jsonapi-example/", | |
"pydata-meetups/", | |
"pydata-talk/", | |
"quiz/", | |
"repo-intel/", | |
"reproconda/", | |
"rest_notebook/", | |
"revealjs/", | |
"robook/", | |
"rstudio-foo/", | |
"runonly-example/", | |
"screeps/", | |
"skyrim/", | |
"small-treatise/", | |
"snakebiz/", | |
"so-you-want-to-host/", | |
"socratea/", | |
"sparkhead/", | |
"spectoscropy_redux/", | |
"sqlalchemy-jsonapi/", | |
"staged-recipes/", | |
"staged-recipes-tpot/", | |
"svglab/", | |
"svgpan/", | |
"tablewidget/", | |
"this-week-in-anaconda-server/", | |
"traitlets/", | |
"trial-in-a-box/", | |
"typedoc/", | |
"typeshed/", | |
"ui-coding-challenge/", | |
"unarchive-foo/", | |
"underpy/", | |
"uploadwidget/", | |
"vagrant-anaconda-nb-extensions/", | |
"vagrant-images/", | |
"visicons/", | |
"wakari-server/", | |
"whatever-forever/", | |
"widget-cookiecutter/", | |
"widget-dateslider/", | |
"widget-layoutre/", | |
"widget-playground/", | |
"widgetouch/", | |
"wookiecutter/", | |
"xz-foo/", | |
"yamlmagic/", | |
"youtubedl/", | |
".DS_Store", | |
"Untitled.ipynb", | |
"database.db", | |
"npm-debug.log", | |
"package.sh" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "X", | |
"layout": "IPY_MODEL_4bf58aa3581545dbb4ff81dfcc64899c", | |
"value": [ | |
"anaconda-platform/" | |
] | |
} | |
}, | |
"3fa41424ebe542c084f23b2f74e7cc84": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"3fce7cad23154cfa86e0080efd2409db": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_33865ecdad534f318e1841ddd28cd0bc", | |
"value": [ | |
"yamlmagic" | |
] | |
} | |
}, | |
"3fdf33ea233c4c4a875901dd7bc6fa28": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_e88184cbf22142c3a740072959f5120b" | |
], | |
"layout": "IPY_MODEL_8167b614599c43398fdab71e6c12bf39", | |
"rows": 7, | |
"value": [ | |
[], | |
[] | |
] | |
} | |
}, | |
"400480e39e304af48de959f68d239062": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"babel-code-frame/", | |
"css-selector-tokenizer/", | |
"cssnano/", | |
"loader-utils/", | |
"lodash.camelcase/", | |
"object-assign/", | |
"postcss/", | |
"postcss-modules-extract-imports/", | |
"postcss-modules-local-by-default/", | |
"postcss-modules-scope/", | |
"postcss-modules-values/", | |
"source-list-map/" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "cssnano", | |
"layout": "IPY_MODEL_861540119a224ab692d97b76a096849e", | |
"value": [ | |
"cssnano/" | |
] | |
} | |
}, | |
"40565322625b45b8bbd94cafa9fc661b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"40cea3b7ddac41bcabdb2a6c845e2289": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"41128e9660674ed99c714e54bdc4875e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"4124a8264faf4a81ae6584edbe68a5ae": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_8b78cf26f14a453c853786cb858f0139", | |
"value": [] | |
} | |
}, | |
"4157d0ba57a841d6a39aa4fbce0133a6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".DS_Store", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"README.md", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b18de0305f16491b8956c50ee36ba434", | |
"value": [] | |
} | |
}, | |
"416bdad7c1f74c96b60549c705a9cd1f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_e3b1c51dd74f4fea9e058d6cbde09b9b", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"41a1d3baca9b4d9c9c970497fa84d639": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"41c504c8881e4461b86feb10e6f4266a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_0d6ceed6574243d7be7eb4b597ddcd37", | |
"IPY_MODEL_a19937f50f7d4f0b9b11176df60a137d", | |
"IPY_MODEL_aea8002bf92e42889e531f6547d9e1ab" | |
], | |
"layout": "IPY_MODEL_fe038bbddebe4da2bf77e95c71391c9f", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"41e593db8bb945b39fc1b687561e83e3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_78c9a8dc63eb41a28d6023d0c1d883eb", | |
"value": [] | |
} | |
}, | |
"42425c9480f245ad9baccc4b89890652": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"AutoCad_Diagram.pdf", | |
"AutoCad_Simple.pdf", | |
"README.txt", | |
"SF424_page2.pdf" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_d0bc825ab2e34d9b96dd7cd6734dbfa9", | |
"value": [] | |
} | |
}, | |
"424df5c6e8c0411dbdf860b168b898df": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"4279a4b9f40447eebb1e1886c216fd3d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b64db356678a443da243544e2116b742", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"427edd8759494332acac768758e909e2": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_e5efde09c59b4ca7a149c62b1347a65f", | |
"IPY_MODEL_7b414e406d06448997d37cb68f2ace84", | |
"IPY_MODEL_b5c8b91365164233b90ef3c9ce2523db" | |
], | |
"layout": "IPY_MODEL_206e8a9db4a24187976b0821388db05b", | |
"value": [ | |
"IPython", | |
"kernel", | |
"channels.py" | |
] | |
} | |
}, | |
"4295a1be0fcf453db7a692d49c711bd1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"42c8fb97f9e7401ebe8900902e383a2b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"COMMIT_EDITMSG", | |
"config", | |
"description", | |
"FETCH_HEAD", | |
"gitk.cache", | |
"HEAD", | |
"hooks", | |
"index", | |
"info", | |
"logs", | |
"objects", | |
"ORIG_HEAD", | |
"refs" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_aa3ea9ffb5d64e75accac3567f7227fa", | |
"value": [] | |
} | |
}, | |
"42ceacec9c884daba34f98d14acca459": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"43488a5f6b1d411da7add02eaf3c2f71": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"c", | |
"d" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_56a74770d9614e1ca0b4169fbe6f0a11", | |
"value": [] | |
} | |
}, | |
"43a7bdd7393b46aeaa4cf8428b962168": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"43b6c9f0b5a94ae090a1d967c9d77e76": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"branches", | |
"COMMIT_EDITMSG", | |
"config", | |
"description", | |
"HEAD", | |
"hooks", | |
"index", | |
"info", | |
"logs", | |
"objects", | |
"refs" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_33af39513f65425d965739e340d99c82", | |
"value": [] | |
} | |
}, | |
"44023e33db884c74b58862448b9ba2d1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_3904fd6621d84447be478e5022c808e5", | |
"IPY_MODEL_d69c8f0ddfc04118a06f1eb6fee4f934" | |
], | |
"layout": "IPY_MODEL_650aa347779d4060919c1a87ce71a92f", | |
"value": [ | |
"anaconda-installer" | |
] | |
} | |
}, | |
"4429c0a89be3450eb3c10ea6c6507608": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_4c0db6198bbd4173b1171c81cb441d04", | |
"value": [] | |
} | |
}, | |
"443247d59c904e71a8907dede872b1b0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"44669937afc94033bd18c1cd7d229a8e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_51950efa071d4a4a8f2bb2204cfa62a4", | |
"IPY_MODEL_88182f73eb184f63adad198837fdcc63" | |
], | |
"layout": "IPY_MODEL_065d4b036877430c82a751c5cddd6880", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"44956e5db914453abce4632773231ec8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".DS_Store", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"README.md", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_2fbfb6e3332241e2ad4881076053df44", | |
"value": [] | |
} | |
}, | |
"449f8f9431894994940f41556306a631": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"44c570784e774606863728af4b7618a5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"ax", | |
"ay", | |
"az" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_972d93f003224da7aa7b06f707c8a52b", | |
"value": [] | |
} | |
}, | |
"44cdfdfefc7943889631c800e608b2bb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"c", | |
"d" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_7a085396d3954aef82eb70e24d392462", | |
"value": [] | |
} | |
}, | |
"44efa95db5ab4541843033dce218148b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"4523da1411a441baa51145ab8c3a8a0d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_3ad3bd70af9f4d45866cce46ec9bc345", | |
"value": [ | |
"Untitled.ipynb" | |
] | |
} | |
}, | |
"4557f919db374f148ed84536d2400404": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"45713f20b8774528875e595fe13d4805": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"45847d3b188b422e8ca66a594eef8a06": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ad93e671c4a4483ba7e607a22582e155", | |
"value": [] | |
} | |
}, | |
"45a67eb1dfbf4834b38567e6c8c6fd62": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"45a84a5f7eab4aee9ee913644e6576a5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_afa9b112015744bc9537418ae54d75f3", | |
"value": [] | |
} | |
}, | |
"45b6328418e343d394c4f557aba9288e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_980fa115726a4aeb8362c16aa4aec9c7" | |
], | |
"layout": "IPY_MODEL_60655030a34c4f09ad1ae4effea6aecb", | |
"value": [ | |
[], | |
[] | |
] | |
} | |
}, | |
"465acadd52aa4b7d910be62bd9d3e091": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"4677755c4be548b9b0b1163d0fedf904": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"470074382d80445a9e7e59ec86e0a458": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"core/", | |
"extensions/", | |
"external/", | |
"kernel/", | |
"lib/", | |
"sphinxext/", | |
"terminal/", | |
"testing/", | |
"utils/", | |
"__init__.py", | |
"__main__.py", | |
"config.py", | |
"consoleapp.py", | |
"display.py", | |
"frontend.py", | |
"html.py", | |
"nbconvert.py", | |
"nbformat.py", | |
"parallel.py", | |
"paths.py", | |
"qt.py" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_95b40985de6244c7a3d74c784eff27fa", | |
"value": [] | |
} | |
}, | |
"473be2dc37be434ba6b9e678a5fdc2d8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"477e3384438d4cb2b50651c5d6dc7992": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"483cc6e7c9524efb9149a2acf4443e14": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"48464c93662c41dcbe71faa3e36034fb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"484a0e4b2785440a87e9c950c44ccd42": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"48a2913fba93440d8b2d41b087fac84d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".git/", | |
"IPython/", | |
"docs/", | |
"examples/", | |
"scripts/", | |
"setupext/", | |
"tools/", | |
".gitattributes", | |
".gitignore", | |
".mailmap", | |
".travis.yml", | |
"CONTRIBUTING.md", | |
"COPYING.rst", | |
"Dockerfile", | |
"MANIFEST.in", | |
"README.rst", | |
"setup.py", | |
"setupbase.py", | |
"setupegg.py", | |
"tox.ini" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ff67b9854dc847099cad65d9ab24264f", | |
"value": [] | |
} | |
}, | |
"48b28540adf2432f90ad8022db86f963": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_69bb8585c17c4c5cb6d53fca42d0a2ec", | |
"value": [] | |
} | |
}, | |
"48f161a45f9a403da38a87b6912cbd69": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"49393fa5295a43c2a64b599d7f990801": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_477e3384438d4cb2b50651c5d6dc7992", | |
"value": [] | |
} | |
}, | |
"4977f6c3fa81459fba2813831703affa": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"README.md", | |
"Vagrantfile" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "README.md", | |
"layout": "IPY_MODEL_f4a7c76fe4f54b9a9f2921e98d1d6bcf", | |
"value": [ | |
"README.md" | |
] | |
} | |
}, | |
"498a6947620a4a4797def8bcef7422cf": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"49b0059bd5d34c0dac66d2e8096b3441": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f03de5f042894f31b1c07a3faf438d89", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"49c723c712b04e65a8b7d1f543dcae0e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_83ed47f705bb4c07b4499f2be3fd2fcb", | |
"value": [] | |
} | |
}, | |
"49fdb553f60a44338623e61373e7f67c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_d365e068a54f4fbdbd3f651f2352d814" | |
], | |
"layout": "IPY_MODEL_8d8598bb71b24698936d7eed82a927d7", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"4a09cfef9b424d0786b63082ccc134a0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".git", | |
".gitignore", | |
"cookiecutter.json", | |
"jupyterlab_frob_extension", | |
"README.md", | |
"test.sh", | |
"test_build.sh", | |
"{{ cookiecutter.project_slug }}" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_bff3ddb9f7e8485297a88dc5ef88a0f3", | |
"value": [] | |
} | |
}, | |
"4a3d2138a5e34bd1a17ab2d09b9a09a6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f51ce36bae824a54baba607691a42c36", | |
"value": [] | |
} | |
}, | |
"4abe2428c67b4d488ccb557da121d3cc": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"4b4c6b67294241a5862517703c536ba4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"4b572b49b0494bcbaaddda61e39ed86f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"4bf58aa3581545dbb4ff81dfcc64899c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"4c0db6198bbd4173b1171c81cb441d04": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"4c67c5bea9414ada81d9e4be2c05dfcb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_8f11c28ab73f4a9da85afd7ea30138e2", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"4c80841f806f4cd1a6a27ab787c9e50d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_c9ff33904b2b46689c118301747feaab" | |
], | |
"layout": "IPY_MODEL_3d0c6bbd15e841c39f40da6d4b3ef8e4", | |
"rows": 7, | |
"value": [ | |
"a", | |
"c" | |
] | |
} | |
}, | |
"4cbcd1d2e18c4bf99390e2dd9cd364bb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"c", | |
"d" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_d5116311ca094506a0edd2fe6e406586", | |
"value": [] | |
} | |
}, | |
"4d070819363b4c19b228f5b368ce71ea": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".coverage", | |
".git", | |
".gitignore", | |
".ipynb_checkpoints", | |
".jupyter.jstest.log", | |
".travis.yml", | |
"appveyor.yml", | |
"design", | |
"LICENSE", | |
"MANIFEST.in", | |
"nb_conda_kernels", | |
"nb_conda_kernels.egg-info", | |
"nb_conda_kernels.tests.xunit.xml", | |
"node_modules", | |
"package.json", | |
"README.md", | |
"requirements.txt", | |
"runtime_dir", | |
"screenshots", | |
"setup.cfg", | |
"setup.py", | |
"Untitled.ipynb" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c3e1d7c0e5924b7eaeb74f2710c2a07b", | |
"value": [ | |
".git" | |
] | |
} | |
}, | |
"4d2728f86dd6407d86ee4a1c586693fa": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_62bf208a7d994caf91115cf55b6fd218" | |
], | |
"layout": "IPY_MODEL_c9e4336834ee4698a7a50bb824ede88c", | |
"value": [ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
"anaconda-notebook-ui" | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
} | |
}, | |
"4d385dc43107402f985f3298aba1730e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"4d9cd41020634a6aaee3330635811dd5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_940411e48a5146b38d0233c2b3f80ed1", | |
"value": [] | |
} | |
}, | |
"4db67d2994b641d1962399cd9bb38534": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"4e025ff75b334d31a0724e229becdcca": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"machines/" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_90bdf34411144b01b3a29360ccffe1cf", | |
"value": [] | |
} | |
}, | |
"4e924b36525847ca8950ae358fa9e56a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"4eb82925da6b4c2bac610da161dd5175": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_e6efe5dc6e0948f2bed4e5016ed4c6dd", | |
"value": [] | |
} | |
}, | |
"4f45f6717f6a47c18af31fe417e5ab63": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"4f69df34add442839f73a0f3003039fc": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"4f7b5ae7dba94752b469c0fb3c22395e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"4fad841512bf45ed812f8c0f3f3c4242": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"4fc9b5c9ea174d12bd18e0197b90fb5e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_bd4cecace66c4283b9ecdefe8527428b", | |
"value": [] | |
} | |
}, | |
"502a329378ed4744adc6515b4d6b5c4c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_790d27fb5c534d9580afddcbdc37a483", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"5040c9bdeab843b5a459284cbd394ed3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column" | |
} | |
}, | |
"506df31d37094430bfdc50626864678f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"50b50ed737c649aea282243bdaa98e6c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"50bba60577eb4b0d94ae534a3bdec0d8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"511ec4793617428aac91069d2ffff3ad": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"513c6a763a444286b04b1a89b63c5905": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"516986999ac94f2ca0f3142b1f03db3d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".git", | |
"anaconda2", | |
"anaconda3", | |
"miniconda2", | |
"miniconda3", | |
"README.md", | |
"windows-build" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c18bda0bb064450c9c1ae258a0b1b327", | |
"value": [] | |
} | |
}, | |
"51950efa071d4a4a8f2bb2204cfa62a4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
"Untitled.ipynb", | |
"database.db", | |
"npm-debug.log", | |
"package.sh", | |
".ipynb_checkpoints/", | |
"ET-NumericalMethods-2016/", | |
"Method-Draw/", | |
"PyPDF2/", | |
"_jademagic/", | |
"adam/", | |
"adam-aproject/", | |
"adam-kapsel/", | |
"aen-lab-theme/", | |
"aen-lab-theme-dist/", | |
"aen-recipes/", | |
"aen_foo/", | |
"aetrial/", | |
"aetrial-old/", | |
"aiohttp-api-test/", | |
"aiooapi/", | |
"alm/", | |
"anaconda/", | |
"anaconda-4.1-linux/", | |
"anaconda-4.3-notebook-config/", | |
"anaconda-build-graph/", | |
"anaconda-client/", | |
"anaconda-desktop/", | |
"anaconda-installer/", | |
"anaconda-narrative/", | |
"anaconda-nb-extension-config-meta/", | |
"anaconda-nb-extensions/", | |
"anaconda-notebook-ui/", | |
"anaconda-platform/", | |
"anaconda-platform-design/", | |
"anaconda-platform-features/", | |
"anaconda-platform-jlab/", | |
"anaconda-platform-ui/", | |
"anaconda-project/", | |
"anaconda-project-foo/", | |
"anaconda-recipes/", | |
"anaconda-run-button/", | |
"anaconda-server/", | |
"anaconda-server-docker/", | |
"anaconda-server-old/", | |
"anaconda-standup/", | |
"apug/", | |
"as-html-foo/", | |
"baobab-site/", | |
"beaker/", | |
"beakerbrowser.com/", | |
"binder-foo/", | |
"blanket/", | |
"blockly-d.ts/", | |
"bokeh/", | |
"bokeh-bug/", | |
"bokeh-deploy/", | |
"bokeh-dev-foo/", | |
"bokeh-foo/", | |
"bokeh-lab/", | |
"bokeh-notebooks/", | |
"braces/", | |
"brand-kit/", | |
"build/", | |
"cards-for-humanity/", | |
"category_encoders/", | |
"cc/", | |
"cc-foo/", | |
"cfvspypi/", | |
"chatterbot-binder/", | |
"ciocheck/", | |
"codemirror/", | |
"coffeetable/", | |
"column-widget/", | |
"components/", | |
"conda/", | |
"conda-backports.shutil_which/", | |
"conda-build/", | |
"conda-capsule/", | |
"conda-doc/", | |
"conda-forge-apprentice/", | |
"conda-forge-badger/", | |
"conda-ipfs/", | |
"conda-kapsel/", | |
"conda-mirror/", | |
"conda-nbdime/", | |
"conda-nodejs/", | |
"conda-notebook/", | |
"conda-notebook-pip/", | |
"conda-patch/", | |
"conda-pyld/", | |
"condatron/", | |
"connexion/", | |
"connexion_/", | |
"constructor-cutter/", | |
"constructor-cutter-test/", | |
"constructor-cutter-unified/", | |
"continuumio-docker-images/", | |
"cookiecutter-conda-forge/", | |
"cookiecutter-jupyterlab_viewer/", | |
"cookiecutters/", | |
"coveragepy/", | |
"cp-foo/", | |
"d3-miller-columns/", | |
"d3-post-it/", | |
"dashboard-example/", | |
"data.gov/", | |
"datashader_nyctaxi_app/", | |
"datlab/", | |
"deap/", | |
"demo-friday/", | |
"dev-meeting-2016/", | |
"docker-apk-build/", | |
"docker-compose-viz/", | |
"docker-conda-cache/", | |
"docker-conda-notebook/", | |
"docker-elk/", | |
"dokang-test/", | |
"dominion/", | |
"env-foo/", | |
"example-bokeh-thing/", | |
"example-project/", | |
"extension-cookiecutter-ts/", | |
"extension-feedstocks/", | |
"extension-foo/", | |
"eysel/", | |
"fbo/", | |
"feedstocks/", | |
"ferenda/", | |
"ferenda-foo/", | |
"flask-restful-swagger/", | |
"fonts/", | |
"foo/", | |
"foorbar/", | |
"foreverwhatever.github.io/", | |
"fovea-foo/", | |
"generator-nbextension/", | |
"ghost.py/", | |
"git_by_a_bus/", | |
"graflex/", | |
"graphuary/", | |
"hack-night/", | |
"hdtpy/", | |
"hy_kernel/", | |
"iconda/", | |
"ieee-spectrum-langs/", | |
"iheartanaconda/", | |
"imply/", | |
"improvicoding/", | |
"installers/", | |
"ipyld/", | |
"ipynblkly/", | |
"ipysankeywidget/", | |
"ipython/", | |
"ipywidgets/", | |
"ipywidgets-json/", | |
"irods-thing/", | |
"jademagic/", | |
"jday-page/", | |
"jefferson/", | |
"jlformat/", | |
"js-notebook-hackery/", | |
"jsonld-lab/", | |
"jsonschema-typing/", | |
"jupyter-anaconda/", | |
"jupyter-box/", | |
"jupyter-conda/", | |
"jupyter-day-atl/", | |
"jupyter-day-chi/", | |
"jupyter-design/", | |
"jupyter-docs/", | |
"jupyter-js-notebook/", | |
"jupyter-js-services/", | |
"jupyter-js-ui/", | |
"jupyter-notepad/", | |
"jupyter-sextant/", | |
"jupyter-sheets/", | |
"jupyter-shelf/", | |
"jupyter-widget-sigmax/", | |
"jupyter-widget-webgazer/", | |
"jupyter_client/", | |
"jupyter_core/", | |
"jupyterlab/", | |
"jupyterlab-bokeh/", | |
"jupyterlab-browser-kernels/", | |
"jupyterlab-build-services/", | |
"jupyterlab-cookiecutter-conda/", | |
"jupyterlab-demo/", | |
"jupyterlab-dev/", | |
"jupyterlab-feedstock/", | |
"jupyterlab-gdrive-foo/", | |
"jupyterlab-legacy/", | |
"jupyterlab-legacy-foo/", | |
"jupyterlab-ubuntu/", | |
"jupyterlab_dot/", | |
"jupyterlab_explainer/", | |
"jupyterlab_kapsel/", | |
"jupyterlab_log/", | |
"jupyterlab_stl/", | |
"jupyterlab_svg/", | |
"jupyterlab_typescript/", | |
"kapsel-docker/", | |
"kernels/", | |
"keycloak/", | |
"kid/", | |
"klee/", | |
"knowledge-constellation/", | |
"license-list/", | |
"linter-mypy/", | |
"literacy/", | |
"living-data/", | |
"lmy/", | |
"loghub/", | |
"mapeo-desktop/", | |
"mdconvert/", | |
"mdconvert-foo/", | |
"metabuilder/", | |
"mistune/", | |
"mtq/", | |
"myconda/", | |
"nb-inkscapelayers/", | |
"nb-jscodemirror-plus/", | |
"nb-livereload/", | |
"nb-mermaid/", | |
"nb_aen_theme/", | |
"nb_anacondacloud/", | |
"nb_anacondacloud-foo/", | |
"nb_conda/", | |
"nb_conda_kernels/", | |
"nb_config_manager/", | |
"nb_delta/", | |
"nb_delta-steve/", | |
"nb_delta_old/", | |
"nb_env_kernels/", | |
"nb_locker/", | |
"nb_revisioncontrol/", | |
"nb_runonly/", | |
"nb_user_sessions/", | |
"nbbrowserpdf/", | |
"nbbrowserpdf-deps/", | |
"nbconvert/", | |
"nbconvert-jsonld/", | |
"nbdiffstream/", | |
"nbdime/", | |
"nbext-foo/", | |
"nbext-unified/", | |
"nbformat/", | |
"nblogger/", | |
"nbpresent/", | |
"nbpresent-79/", | |
"nbpresent-clean/", | |
"nbpresent-continuum-theme/", | |
"nbpresent-example/", | |
"nbpresent-foo/", | |
"nbpresent-reviews/", | |
"nbviewer/", | |
"nbviewer-foo/", | |
"new-anaconda-server/", | |
"new-bokeh/", | |
"newrelic-python-agent/", | |
"niobium/", | |
"nosebook/", | |
"notebook/", | |
"notebook-pytest/", | |
"notebooks/", | |
"npm/", | |
"npm-foo/", | |
"numba-env/", | |
"nvchecker/", | |
"pandas/", | |
"pandas-rdfa-style/", | |
"pgadmin4/", | |
"phosphide/", | |
"phosphor/", | |
"phosphor-bokeh-demo/", | |
"phosphor-foo/", | |
"phosphor-jspy/", | |
"pipfile-tomld/", | |
"pivottable/", | |
"plumberjack/", | |
"powered-by-anaconda/", | |
"project-as-build/", | |
"project-empty-notebook/", | |
"project-foo/", | |
"project-runonly/", | |
"projx-vignette/", | |
"py-jsonapi/", | |
"py-jsonapi-example/", | |
"pydata-meetups/", | |
"pydata-talk/", | |
"quiz/", | |
"repo-intel/", | |
"reproconda/", | |
"rest_notebook/", | |
"revealjs/", | |
"robook/", | |
"rstudio-foo/", | |
"runonly-example/", | |
"screeps/", | |
"skyrim/", | |
"small-treatise/", | |
"snakebiz/", | |
"so-you-want-to-host/", | |
"socratea/", | |
"sparkhead/", | |
"spectoscropy_redux/", | |
"sqlalchemy-jsonapi/", | |
"staged-recipes/", | |
"staged-recipes-tpot/", | |
"svglab/", | |
"svgpan/", | |
"tablewidget/", | |
"this-week-in-anaconda-server/", | |
"traitlets/", | |
"trial-in-a-box/", | |
"typedoc/", | |
"typeshed/", | |
"ui-coding-challenge/", | |
"unarchive-foo/", | |
"underpy/", | |
"uploadwidget/", | |
"vagrant-anaconda-nb-extensions/", | |
"vagrant-images/", | |
"visicons/", | |
"wakari-server/", | |
"whatever-forever/", | |
"widget-cookiecutter/", | |
"widget-dateslider/", | |
"widget-layoutre/", | |
"widget-playground/", | |
"widgetouch/", | |
"wookiecutter/", | |
"xz-foo/", | |
"yamlmagic/", | |
"youtubedl/" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_cb81e2a0ed1e432cae243f26671b4587", | |
"value": [ | |
"anaconda-platform/" | |
] | |
} | |
}, | |
"51b4b8709e774f37a00b29bc2b9752d0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"51d156fb049b41258ae231c7ed1b3362": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_8c021b556ae2447c9e1a75bdd4cfbfb8" | |
], | |
"layout": "IPY_MODEL_6ece7b0c1855458aa27d28defb33b4e9", | |
"rows": 7, | |
"value": [ | |
[], | |
[] | |
] | |
} | |
}, | |
"521c345a77e54cc7b4e909e4255640e1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"521eb17c50e04a2eb3ff2d6061aa859c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints/", | |
"ET-NumericalMethods-2016/", | |
"Method-Draw/", | |
"PyPDF2/", | |
"_jademagic/", | |
"adam/", | |
"adam-aproject/", | |
"adam-kapsel/", | |
"aen-lab-theme/", | |
"aen-lab-theme-dist/", | |
"aen-recipes/", | |
"aen_foo/", | |
"aetrial/", | |
"aetrial-old/", | |
"aiohttp-api-test/", | |
"aiooapi/", | |
"alm/", | |
"anaconda/", | |
"anaconda-4.1-linux/", | |
"anaconda-4.3-notebook-config/", | |
"anaconda-build-graph/", | |
"anaconda-client/", | |
"anaconda-desktop/", | |
"anaconda-installer/", | |
"anaconda-narrative/", | |
"anaconda-nb-extension-config-meta/", | |
"anaconda-nb-extensions/", | |
"anaconda-notebook-ui/", | |
"anaconda-platform/", | |
"anaconda-platform-design/", | |
"anaconda-platform-features/", | |
"anaconda-platform-jlab/", | |
"anaconda-platform-ui/", | |
"anaconda-project/", | |
"anaconda-project-foo/", | |
"anaconda-recipes/", | |
"anaconda-run-button/", | |
"anaconda-server/", | |
"anaconda-server-docker/", | |
"anaconda-server-old/", | |
"anaconda-standup/", | |
"apug/", | |
"as-html-foo/", | |
"baobab-site/", | |
"beaker/", | |
"beakerbrowser.com/", | |
"binder-foo/", | |
"blanket/", | |
"blockly-d.ts/", | |
"bokeh/", | |
"bokeh-bug/", | |
"bokeh-deploy/", | |
"bokeh-dev-foo/", | |
"bokeh-foo/", | |
"bokeh-lab/", | |
"bokeh-notebooks/", | |
"braces/", | |
"brand-kit/", | |
"build/", | |
"cards-for-humanity/", | |
"category_encoders/", | |
"cc/", | |
"cc-foo/", | |
"cfvspypi/", | |
"chatterbot-binder/", | |
"ciocheck/", | |
"codemirror/", | |
"coffeetable/", | |
"column-widget/", | |
"components/", | |
"conda/", | |
"conda-backports.shutil_which/", | |
"conda-build/", | |
"conda-capsule/", | |
"conda-doc/", | |
"conda-forge-apprentice/", | |
"conda-forge-badger/", | |
"conda-ipfs/", | |
"conda-kapsel/", | |
"conda-mirror/", | |
"conda-nbdime/", | |
"conda-nodejs/", | |
"conda-notebook/", | |
"conda-notebook-pip/", | |
"conda-patch/", | |
"conda-pyld/", | |
"condatron/", | |
"connexion/", | |
"connexion_/", | |
"constructor-cutter/", | |
"constructor-cutter-test/", | |
"constructor-cutter-unified/", | |
"continuumio-docker-images/", | |
"cookiecutter-conda-forge/", | |
"cookiecutter-jupyterlab_viewer/", | |
"cookiecutters/", | |
"coveragepy/", | |
"cp-foo/", | |
"d3-miller-columns/", | |
"d3-post-it/", | |
"dashboard-example/", | |
"data.gov/", | |
"datashader_nyctaxi_app/", | |
"datlab/", | |
"deap/", | |
"demo-friday/", | |
"dev-meeting-2016/", | |
"docker-apk-build/", | |
"docker-compose-viz/", | |
"docker-conda-cache/", | |
"docker-conda-notebook/", | |
"docker-elk/", | |
"dokang-test/", | |
"dominion/", | |
"env-foo/", | |
"example-bokeh-thing/", | |
"example-project/", | |
"extension-cookiecutter-ts/", | |
"extension-feedstocks/", | |
"extension-foo/", | |
"eysel/", | |
"fbo/", | |
"feedstocks/", | |
"ferenda/", | |
"ferenda-foo/", | |
"flask-restful-swagger/", | |
"fonts/", | |
"foo/", | |
"foorbar/", | |
"foreverwhatever.github.io/", | |
"fovea-foo/", | |
"generator-nbextension/", | |
"ghost.py/", | |
"git_by_a_bus/", | |
"graflex/", | |
"graphuary/", | |
"hack-night/", | |
"hdtpy/", | |
"hy_kernel/", | |
"iconda/", | |
"ieee-spectrum-langs/", | |
"iheartanaconda/", | |
"imply/", | |
"improvicoding/", | |
"installers/", | |
"ipyld/", | |
"ipynblkly/", | |
"ipysankeywidget/", | |
"ipython/", | |
"ipywidgets/", | |
"ipywidgets-json/", | |
"irods-thing/", | |
"jademagic/", | |
"jday-page/", | |
"jefferson/", | |
"jlformat/", | |
"js-notebook-hackery/", | |
"jsonld-lab/", | |
"jsonschema-typing/", | |
"jupyter-anaconda/", | |
"jupyter-box/", | |
"jupyter-conda/", | |
"jupyter-day-atl/", | |
"jupyter-day-chi/", | |
"jupyter-design/", | |
"jupyter-docs/", | |
"jupyter-js-notebook/", | |
"jupyter-js-services/", | |
"jupyter-js-ui/", | |
"jupyter-notepad/", | |
"jupyter-sextant/", | |
"jupyter-sheets/", | |
"jupyter-shelf/", | |
"jupyter-widget-sigmax/", | |
"jupyter-widget-webgazer/", | |
"jupyter_client/", | |
"jupyter_core/", | |
"jupyterlab/", | |
"jupyterlab-bokeh/", | |
"jupyterlab-browser-kernels/", | |
"jupyterlab-build-services/", | |
"jupyterlab-cookiecutter-conda/", | |
"jupyterlab-demo/", | |
"jupyterlab-dev/", | |
"jupyterlab-feedstock/", | |
"jupyterlab-gdrive-foo/", | |
"jupyterlab-legacy/", | |
"jupyterlab-legacy-foo/", | |
"jupyterlab-ubuntu/", | |
"jupyterlab_dot/", | |
"jupyterlab_explainer/", | |
"jupyterlab_kapsel/", | |
"jupyterlab_log/", | |
"jupyterlab_stl/", | |
"jupyterlab_svg/", | |
"jupyterlab_typescript/", | |
"kapsel-docker/", | |
"kernels/", | |
"keycloak/", | |
"kid/", | |
"klee/", | |
"knowledge-constellation/", | |
"license-list/", | |
"linter-mypy/", | |
"literacy/", | |
"living-data/", | |
"lmy/", | |
"loghub/", | |
"mapeo-desktop/", | |
"mdconvert/", | |
"mdconvert-foo/", | |
"metabuilder/", | |
"mistune/", | |
"mtq/", | |
"myconda/", | |
"nb-inkscapelayers/", | |
"nb-jscodemirror-plus/", | |
"nb-livereload/", | |
"nb-mermaid/", | |
"nb_aen_theme/", | |
"nb_anacondacloud/", | |
"nb_anacondacloud-foo/", | |
"nb_conda/", | |
"nb_conda_kernels/", | |
"nb_config_manager/", | |
"nb_delta/", | |
"nb_delta-steve/", | |
"nb_delta_old/", | |
"nb_env_kernels/", | |
"nb_locker/", | |
"nb_revisioncontrol/", | |
"nb_runonly/", | |
"nb_user_sessions/", | |
"nbbrowserpdf/", | |
"nbbrowserpdf-deps/", | |
"nbconvert/", | |
"nbconvert-jsonld/", | |
"nbdiffstream/", | |
"nbdime/", | |
"nbext-foo/", | |
"nbext-unified/", | |
"nbformat/", | |
"nblogger/", | |
"nbpresent/", | |
"nbpresent-79/", | |
"nbpresent-clean/", | |
"nbpresent-continuum-theme/", | |
"nbpresent-example/", | |
"nbpresent-foo/", | |
"nbpresent-reviews/", | |
"nbviewer/", | |
"nbviewer-foo/", | |
"new-anaconda-server/", | |
"new-bokeh/", | |
"newrelic-python-agent/", | |
"niobium/", | |
"nosebook/", | |
"notebook/", | |
"notebook-pytest/", | |
"notebooks/", | |
"npm/", | |
"npm-foo/", | |
"numba-env/", | |
"nvchecker/", | |
"pandas/", | |
"pandas-rdfa-style/", | |
"pgadmin4/", | |
"phosphide/", | |
"phosphor/", | |
"phosphor-bokeh-demo/", | |
"phosphor-foo/", | |
"phosphor-jspy/", | |
"pipfile-tomld/", | |
"pivottable/", | |
"plumberjack/", | |
"powered-by-anaconda/", | |
"project-as-build/", | |
"project-empty-notebook/", | |
"project-foo/", | |
"project-runonly/", | |
"projx-vignette/", | |
"py-jsonapi/", | |
"py-jsonapi-example/", | |
"pydata-meetups/", | |
"pydata-talk/", | |
"quiz/", | |
"repo-intel/", | |
"reproconda/", | |
"rest_notebook/", | |
"revealjs/", | |
"robook/", | |
"rstudio-foo/", | |
"runonly-example/", | |
"screeps/", | |
"skyrim/", | |
"small-treatise/", | |
"snakebiz/", | |
"so-you-want-to-host/", | |
"socratea/", | |
"sparkhead/", | |
"spectoscropy_redux/", | |
"sqlalchemy-jsonapi/", | |
"staged-recipes/", | |
"staged-recipes-tpot/", | |
"svglab/", | |
"svgpan/", | |
"tablewidget/", | |
"this-week-in-anaconda-server/", | |
"traitlets/", | |
"trial-in-a-box/", | |
"typedoc/", | |
"typeshed/", | |
"ui-coding-challenge/", | |
"unarchive-foo/", | |
"underpy/", | |
"uploadwidget/", | |
"vagrant-anaconda-nb-extensions/", | |
"vagrant-images/", | |
"visicons/", | |
"wakari-server/", | |
"whatever-forever/", | |
"widget-cookiecutter/", | |
"widget-dateslider/", | |
"widget-layoutre/", | |
"widget-playground/", | |
"widgetouch/", | |
"wookiecutter/", | |
"xz-foo/", | |
"yamlmagic/", | |
"youtubedl/", | |
".DS_Store", | |
"Untitled.ipynb", | |
"database.db", | |
"npm-debug.log", | |
"package.sh" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_d1d04900bc3943f0aafafbfac5659c76", | |
"value": [ | |
"aiooapi/" | |
] | |
} | |
}, | |
"5226b6fd977d411397c25c5ce669d610": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"522f81d06982489aadb147c87a1dec07": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"524ff01ab48849a5ac50c27110836e8e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_2ad0e7a049534b678085a2f8c707eef8", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"5251d6ed3d2b43e4a3cd782053998028": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c066125500b04ccc869656ecd38f4515", | |
"value": [] | |
} | |
}, | |
"527cf8986ae841ab9ae7fa4530470820": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_042b66527e6443b1a2cf6380b0c78766", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"529ddc9e796b4e5f987abec5876a1393": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"52c34de6baf14d0db878f832ab6d72a3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"52df6ac7223e4cccb8bc3c5bed5e728b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a71f25de6c5749f6b955d8e67fb0921c", | |
"value": [] | |
} | |
}, | |
"53104d16add74ce8b71edf33b7bafb18": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints/", | |
"ET-NumericalMethods-2016/", | |
"Method-Draw/", | |
"PyPDF2/", | |
"_jademagic/", | |
"adam/", | |
"adam-aproject/", | |
"adam-kapsel/", | |
"aen-lab-theme/", | |
"aen-lab-theme-dist/", | |
"aen-recipes/", | |
"aen_foo/", | |
"aetrial/", | |
"aetrial-old/", | |
"aiohttp-api-test/", | |
"aiooapi/", | |
"alm/", | |
"anaconda/", | |
"anaconda-4.1-linux/", | |
"anaconda-4.3-notebook-config/", | |
"anaconda-build-graph/", | |
"anaconda-client/", | |
"anaconda-desktop/", | |
"anaconda-installer/", | |
"anaconda-narrative/", | |
"anaconda-nb-extension-config-meta/", | |
"anaconda-nb-extensions/", | |
"anaconda-notebook-ui/", | |
"anaconda-platform/", | |
"anaconda-platform-design/", | |
"anaconda-platform-features/", | |
"anaconda-platform-jlab/", | |
"anaconda-platform-ui/", | |
"anaconda-project/", | |
"anaconda-project-foo/", | |
"anaconda-recipes/", | |
"anaconda-run-button/", | |
"anaconda-server/", | |
"anaconda-server-docker/", | |
"anaconda-server-old/", | |
"anaconda-standup/", | |
"apug/", | |
"as-html-foo/", | |
"baobab-site/", | |
"beaker/", | |
"beakerbrowser.com/", | |
"binder-foo/", | |
"blanket/", | |
"blockly-d.ts/", | |
"bokeh/", | |
"bokeh-bug/", | |
"bokeh-deploy/", | |
"bokeh-dev-foo/", | |
"bokeh-foo/", | |
"bokeh-lab/", | |
"bokeh-notebooks/", | |
"braces/", | |
"brand-kit/", | |
"build/", | |
"cards-for-humanity/", | |
"category_encoders/", | |
"cc/", | |
"cc-foo/", | |
"cfvspypi/", | |
"chatterbot-binder/", | |
"ciocheck/", | |
"codemirror/", | |
"coffeetable/", | |
"column-widget/", | |
"components/", | |
"conda/", | |
"conda-backports.shutil_which/", | |
"conda-build/", | |
"conda-capsule/", | |
"conda-doc/", | |
"conda-forge-apprentice/", | |
"conda-forge-badger/", | |
"conda-ipfs/", | |
"conda-kapsel/", | |
"conda-mirror/", | |
"conda-nbdime/", | |
"conda-nodejs/", | |
"conda-notebook/", | |
"conda-notebook-pip/", | |
"conda-patch/", | |
"conda-pyld/", | |
"condatron/", | |
"connexion/", | |
"connexion_/", | |
"constructor-cutter/", | |
"constructor-cutter-test/", | |
"constructor-cutter-unified/", | |
"continuumio-docker-images/", | |
"cookiecutter-conda-forge/", | |
"cookiecutter-jupyterlab_viewer/", | |
"cookiecutters/", | |
"coveragepy/", | |
"cp-foo/", | |
"d3-miller-columns/", | |
"d3-post-it/", | |
"dashboard-example/", | |
"data.gov/", | |
"datashader_nyctaxi_app/", | |
"datlab/", | |
"deap/", | |
"demo-friday/", | |
"dev-meeting-2016/", | |
"docker-apk-build/", | |
"docker-compose-viz/", | |
"docker-conda-cache/", | |
"docker-conda-notebook/", | |
"docker-elk/", | |
"dokang-test/", | |
"dominion/", | |
"env-foo/", | |
"example-bokeh-thing/", | |
"example-project/", | |
"extension-cookiecutter-ts/", | |
"extension-feedstocks/", | |
"extension-foo/", | |
"eysel/", | |
"fbo/", | |
"feedstocks/", | |
"ferenda/", | |
"ferenda-foo/", | |
"flask-restful-swagger/", | |
"fonts/", | |
"foo/", | |
"foorbar/", | |
"foreverwhatever.github.io/", | |
"fovea-foo/", | |
"generator-nbextension/", | |
"ghost.py/", | |
"git_by_a_bus/", | |
"graflex/", | |
"graphuary/", | |
"hack-night/", | |
"hdtpy/", | |
"hy_kernel/", | |
"iconda/", | |
"ieee-spectrum-langs/", | |
"iheartanaconda/", | |
"imply/", | |
"improvicoding/", | |
"installers/", | |
"ipyld/", | |
"ipynblkly/", | |
"ipysankeywidget/", | |
"ipython/", | |
"ipywidgets/", | |
"ipywidgets-json/", | |
"irods-thing/", | |
"jademagic/", | |
"jday-page/", | |
"jefferson/", | |
"jlformat/", | |
"js-notebook-hackery/", | |
"jsonld-lab/", | |
"jsonschema-typing/", | |
"jupyter-anaconda/", | |
"jupyter-box/", | |
"jupyter-conda/", | |
"jupyter-day-atl/", | |
"jupyter-day-chi/", | |
"jupyter-design/", | |
"jupyter-docs/", | |
"jupyter-js-notebook/", | |
"jupyter-js-services/", | |
"jupyter-js-ui/", | |
"jupyter-notepad/", | |
"jupyter-sextant/", | |
"jupyter-sheets/", | |
"jupyter-shelf/", | |
"jupyter-widget-sigmax/", | |
"jupyter-widget-webgazer/", | |
"jupyter_client/", | |
"jupyter_core/", | |
"jupyterlab/", | |
"jupyterlab-bokeh/", | |
"jupyterlab-browser-kernels/", | |
"jupyterlab-build-services/", | |
"jupyterlab-cookiecutter-conda/", | |
"jupyterlab-demo/", | |
"jupyterlab-dev/", | |
"jupyterlab-feedstock/", | |
"jupyterlab-gdrive-foo/", | |
"jupyterlab-legacy/", | |
"jupyterlab-legacy-foo/", | |
"jupyterlab-ubuntu/", | |
"jupyterlab_dot/", | |
"jupyterlab_explainer/", | |
"jupyterlab_kapsel/", | |
"jupyterlab_log/", | |
"jupyterlab_stl/", | |
"jupyterlab_svg/", | |
"jupyterlab_typescript/", | |
"kapsel-docker/", | |
"kernels/", | |
"keycloak/", | |
"kid/", | |
"klee/", | |
"knowledge-constellation/", | |
"license-list/", | |
"linter-mypy/", | |
"literacy/", | |
"living-data/", | |
"lmy/", | |
"loghub/", | |
"mapeo-desktop/", | |
"mdconvert/", | |
"mdconvert-foo/", | |
"metabuilder/", | |
"mistune/", | |
"mtq/", | |
"myconda/", | |
"nb-inkscapelayers/", | |
"nb-jscodemirror-plus/", | |
"nb-livereload/", | |
"nb-mermaid/", | |
"nb_aen_theme/", | |
"nb_anacondacloud/", | |
"nb_anacondacloud-foo/", | |
"nb_conda/", | |
"nb_conda_kernels/", | |
"nb_config_manager/", | |
"nb_delta/", | |
"nb_delta-steve/", | |
"nb_delta_old/", | |
"nb_env_kernels/", | |
"nb_locker/", | |
"nb_revisioncontrol/", | |
"nb_runonly/", | |
"nb_user_sessions/", | |
"nbbrowserpdf/", | |
"nbbrowserpdf-deps/", | |
"nbconvert/", | |
"nbconvert-jsonld/", | |
"nbdiffstream/", | |
"nbdime/", | |
"nbext-foo/", | |
"nbext-unified/", | |
"nbformat/", | |
"nblogger/", | |
"nbpresent/", | |
"nbpresent-79/", | |
"nbpresent-clean/", | |
"nbpresent-continuum-theme/", | |
"nbpresent-example/", | |
"nbpresent-foo/", | |
"nbpresent-reviews/", | |
"nbviewer/", | |
"nbviewer-foo/", | |
"new-anaconda-server/", | |
"new-bokeh/", | |
"newrelic-python-agent/", | |
"niobium/", | |
"nosebook/", | |
"notebook/", | |
"notebook-pytest/", | |
"notebooks/", | |
"npm/", | |
"npm-foo/", | |
"numba-env/", | |
"nvchecker/", | |
"pandas/", | |
"pandas-rdfa-style/", | |
"pgadmin4/", | |
"phosphide/", | |
"phosphor/", | |
"phosphor-bokeh-demo/", | |
"phosphor-foo/", | |
"phosphor-jspy/", | |
"pipfile-tomld/", | |
"pivottable/", | |
"plumberjack/", | |
"powered-by-anaconda/", | |
"project-as-build/", | |
"project-empty-notebook/", | |
"project-foo/", | |
"project-runonly/", | |
"projx-vignette/", | |
"py-jsonapi/", | |
"py-jsonapi-example/", | |
"pydata-meetups/", | |
"pydata-talk/", | |
"quiz/", | |
"repo-intel/", | |
"reproconda/", | |
"rest_notebook/", | |
"revealjs/", | |
"robook/", | |
"rstudio-foo/", | |
"runonly-example/", | |
"screeps/", | |
"skyrim/", | |
"small-treatise/", | |
"snakebiz/", | |
"so-you-want-to-host/", | |
"socratea/", | |
"sparkhead/", | |
"spectoscropy_redux/", | |
"sqlalchemy-jsonapi/", | |
"staged-recipes/", | |
"staged-recipes-tpot/", | |
"svglab/", | |
"svgpan/", | |
"tablewidget/", | |
"this-week-in-anaconda-server/", | |
"traitlets/", | |
"trial-in-a-box/", | |
"typedoc/", | |
"typeshed/", | |
"ui-coding-challenge/", | |
"unarchive-foo/", | |
"underpy/", | |
"uploadwidget/", | |
"vagrant-anaconda-nb-extensions/", | |
"vagrant-images/", | |
"visicons/", | |
"wakari-server/", | |
"whatever-forever/", | |
"widget-cookiecutter/", | |
"widget-dateslider/", | |
"widget-layoutre/", | |
"widget-playground/", | |
"widgetouch/", | |
"wookiecutter/", | |
"xz-foo/", | |
"yamlmagic/", | |
"youtubedl/", | |
".DS_Store", | |
"Untitled.ipynb", | |
"database.db", | |
"npm-debug.log", | |
"package.sh" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b6ca4d10c4674eacad55188b4f374b5e", | |
"value": [ | |
"anaconda-platform-features/" | |
] | |
} | |
}, | |
"53cc3c92aaf843a8892291e7d77b1127": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_6401217a1e5647f5bf66d0996a3f5b6c", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"5410cd3d1b394cfa9b6becfab4bea70d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5447603c3b11474c86b58facb1f1bea4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"544dc73781ca49759588618591cfe941": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"cx", | |
"cy", | |
"cz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_6cdf01328a0e438a956b59e52c83cb25", | |
"value": [] | |
} | |
}, | |
"5454cabe8321407d955786006e8a14a2": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"Index.ipynb", | |
"embed_class_long.py", | |
"embed_class_short.py", | |
"embed_function.py" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "Index.ipynb", | |
"layout": "IPY_MODEL_ea2b216e52ca437ba0ed24e9c21a6be8", | |
"value": [ | |
"Index.ipynb" | |
] | |
} | |
}, | |
"547ed6d1e3aa4aafa3121a37686c2eb4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_de9d5084f4964a7faedec1930e86dde4", | |
"value": [] | |
} | |
}, | |
"54966168b1d5431588068af1e1496f38": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"54b8edeb58284c9fb462e199a11e2710": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"Nonex", | |
"Noney", | |
"Nonez" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_702919c4ef2543c892e905cc07226ec2", | |
"value": [] | |
} | |
}, | |
"55028e54f48a490dad61e11dafe3804a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f47d074f7c074d7aae509b5c3935308c", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"552e0ba9912649468e0c0ab1d3b0fcc7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"552e96a0e0874e6aa0e7d1df245e3ef5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"55472033e57f4938938804e88be7c17c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".binstar.yml", | |
".git", | |
"LICENSE", | |
"meta.yaml", | |
"README.md" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_94d89648549748f6adfe7016636dedc6", | |
"value": [] | |
} | |
}, | |
"555c27320f104e5b8ad7143b62581603": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"cx", | |
"cy", | |
"cz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_21b2f031d9ae46128f9afb8c98a19c1e", | |
"value": [] | |
} | |
}, | |
"5571a63fb21b4055b96b4430946a36a0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_9b5a7b7fc2524b4691a31ad22ac942ac", | |
"IPY_MODEL_a987696ab6014a839300b9209763d6a1" | |
], | |
"layout": "IPY_MODEL_1ccb16ce21914992ae4fa43898b12734", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"5579fd1e088e4c91a4dffda1c9c9135d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5594184dccac4eaa8e7d9665229c4de1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"55aa788ef57a4d36b13a6b01fcfe2a98": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"55d8adcdd7e4458ab951f9ff7c082ace": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_3a94028791184fe89734d568bd8cf9e0", | |
"value": [] | |
} | |
}, | |
"55db354a6b174a19bdb7030c1d29b93c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_fb5081ea14d54e3bb7317cd1cece8aae" | |
], | |
"layout": "IPY_MODEL_ad1d9d497e4e418dabec27ab70fada8c", | |
"value": [] | |
} | |
}, | |
"563bace1c06d41bd826e162bce38c98e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_d5cf36af647d49029edeb74f7808077e" | |
], | |
"layout": "IPY_MODEL_8906a762d8d143ca8c5c58a65ef439ad", | |
"selections": [] | |
} | |
}, | |
"5642997546c84adcbe1d1e754f7d41ae": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"565fd9500f4d4c638daf61cacedf985a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_072118c0058940aba093504dce7dcd4c", | |
"value": [] | |
} | |
}, | |
"5686f95877934336b544e1fa498d718a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"56a74770d9614e1ca0b4169fbe6f0a11": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"56bde47dea674dfdb7ca0b98c29de0c7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"56cc710e710542688a6dd7bbc6f39854": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_6f4fb5805e1a4305b321435ddc7b3f5e", | |
"value": [] | |
} | |
}, | |
"57030450e91743eb8d46e2ea8abd6c7e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_1b86eb32fc0a4b59ba9f9cb8c3f09996", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"577f693415134bb2be43ff3cc180f27c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_6bfb21c3698145ff95a271b8f53e1559", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"57b1afbe472747abb785b00826eca78f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_bacf97ab6c5a47d49e8c195ddf885d88", | |
"value": [] | |
} | |
}, | |
"57b959302d3c4ee2afd5985e747ec67c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_53104d16add74ce8b71edf33b7bafb18", | |
"IPY_MODEL_3ed5c2b3bb724575b4fe7645eec770b9" | |
], | |
"layout": "IPY_MODEL_6bb175d8ccfd4519b1813ea638d21060", | |
"value": [ | |
"anaconda-platform-features" | |
] | |
} | |
}, | |
"57f86f4eb7164d00bb6ed5d540ba0a99": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"580e31058f684da69b5d84ddf720b1e8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"5836c2f659b24becbe91d06a48a4607c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f695146d3ea64bb2bc91cc4744cbcba2", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"58407a7d4aa94a7aa75198743d0ef172": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"586ce9f2b8cc4e92a863fe97889f4a83": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints", | |
"Anaconda Cloud Notebooks.sketch", | |
"Untitled.ipynb" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f603b1809436457d8d49c11396ceb876", | |
"value": [] | |
} | |
}, | |
"5870cd2ab9f84be6a3699ee349d7224f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_03fcc9ddae254fa282dfd2a3f4786428", | |
"IPY_MODEL_331b3f0299e14510859092532d1d508f" | |
], | |
"layout": "IPY_MODEL_88d04a46704e4400bda747647c99519a", | |
"value": [ | |
"anaconda-server" | |
] | |
} | |
}, | |
"58af25f5aa274ce8878c653464afefeb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5926239f7edf4c9cab590b68079e976e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b0781cf2089c43839f5866dd55bef214", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"5a00de138b5e44fe875923906e2cc689": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_df781d6d67524b5ca59b0ff165bef1df", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"5a269b7fd51b4adb80348a0fca43587a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5a48bb5526904cf4a449e114e9ab4f23": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"5a529f22795d4f2499bca22a61b2ec1b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5a5ad6fa178547be92dec7768e106a82": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_814d4e97c7204fb0a159da9d8842ed0a", | |
"value": [] | |
} | |
}, | |
"5a746ba9bc4d4110846f5dcb01517973": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_6a4476f90153477084f6578b59347c93", | |
"value": [] | |
} | |
}, | |
"5a926bc01fd3427598deb88e28da8491": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_813d7dd443554a0d97583e8ab6f75a79", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"5ab472410d1f499992a0d0632075eddc": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"5ab9b2c2f3bb451bb32a9f2fb69d217d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5b0770f7ca154b188dcf31f2df357a43": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5b28b5d46d0f4edd9f38c09f8f265fdb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_e3f7fa2d18f04a828808b61eb2a6d2e6", | |
"IPY_MODEL_1c5903b2e07842aa814b875df4003f38" | |
], | |
"layout": "IPY_MODEL_f3aeae8b21634822a6998574e36961d4", | |
"value": [ | |
"IPython" | |
] | |
} | |
}, | |
"5b3cbdf4d9de44d1859fc308085a50cf": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".DS_Store", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"README.md", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_13d1019d6fde4c96992c7c09821b03c9", | |
"value": [] | |
} | |
}, | |
"5b6ca16a466c46d29eb3cfca3130eae4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5b851d9ae93f4283ac6f93fa665e438f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5bbb0d4c3a35489cb649ac53350df62b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_2c4271add50f4dd8aa1eb1bd5315b050", | |
"IPY_MODEL_0c49e300ddfc429e97d472f71e7fccfe" | |
], | |
"layout": "IPY_MODEL_27a99a1822e34cccb595e2be3549206e", | |
"value": [ | |
"anaconda-platform", | |
null | |
] | |
} | |
}, | |
"5bd4476e1b944cc5a156ffbb28e6a2eb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"5bf3efaec14b4624ac7c8e97bd11b73b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_777ac83e4e8a45f4aff699202098fe76", | |
"IPY_MODEL_54b8edeb58284c9fb462e199a11e2710" | |
], | |
"layout": "IPY_MODEL_5410cd3d1b394cfa9b6becfab4bea70d", | |
"value": [ | |
null | |
] | |
} | |
}, | |
"5c0962a3538f437fb750880e3082584b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5c24afd7a8714638aa206572affb178d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_7f7dfac473ad4798a3446c86a9068d06" | |
], | |
"layout": "IPY_MODEL_689bbb44c12548ddb2139dce8b48df89", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"5c7dae454cb34d4a834e63e1833f1def": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_5686f95877934336b544e1fa498d718a", | |
"value": [] | |
} | |
}, | |
"5c9c39451ced474780ec023f55300743": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"5cb0f21a97f94aa695ef83abcfab3dfd": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"branches", | |
"config", | |
"description", | |
"HEAD", | |
"hooks", | |
"index", | |
"info", | |
"logs", | |
"objects", | |
"packed-refs", | |
"refs" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_6c71425e05b943b4ac14a3b318de099b", | |
"value": [] | |
} | |
}, | |
"5cc8e820e32846c7a4c303dfaf916b0b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5ce3135c56dc494ca7a451b72ae2e92a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"cx", | |
"cy", | |
"cz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_2db7727726574e91959a13251ba06132", | |
"value": [] | |
} | |
}, | |
"5cea011170ab4c8187b5b29c6485c669": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5d4e388705f744ad954fa3b49db1cad0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints", | |
"Anaconda Cloud Notebooks.sketch", | |
"Untitled.ipynb" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_30d4808b635c4eeea932dc6b218e39a8", | |
"value": [] | |
} | |
}, | |
"5d7cb98499e04400a5e1e3282ee460f9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"5d9fb45e7b514db295d6d4d5265c6afc": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_951fc6b49ea644ca9e7a869063272b34", | |
"value": [] | |
} | |
}, | |
"5e095fd1710d4db9bbc6554240139282": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5e2733b7f6894f32b190b5de53c9b222": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"5ef96ed38ad14681966d143cfb8bac55": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"COMMIT_EDITMSG", | |
"config", | |
"description", | |
"FETCH_HEAD", | |
"gitk.cache", | |
"HEAD", | |
"hooks", | |
"index", | |
"info", | |
"logs", | |
"objects", | |
"ORIG_HEAD", | |
"packed-refs", | |
"refs" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ed06afca40e846818891191d64290b7a", | |
"value": [ | |
"hooks" | |
] | |
} | |
}, | |
"5f0783d79e2548d3b83a73a0a389c03b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_521c345a77e54cc7b4e909e4255640e1", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"5f179af797644eaab2b5fcec81f27137": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_6434d862bba84b8487d355010c91cd8c", | |
"value": [] | |
} | |
}, | |
"5f2a3545605c4a079d629b45abd8fa1c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_3e4d14d4675e44f5846ceee3858ff275", | |
"value": [ | |
"anaconda-nb-extensions" | |
] | |
} | |
}, | |
"5f49549e111e4561ac3df8294a2247c7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ec5dbc1f21ad4c2aa32ac134b7dcbd4c", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"5f5eab825eb24a6998d943a0c3a2c359": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_e5a1f60809214843aeb347f287ee2593", | |
"value": [ | |
"as-html-foo" | |
] | |
} | |
}, | |
"5f916d97e24543c8be435da01c172d76": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints/", | |
"ET-NumericalMethods-2016/", | |
"Method-Draw/", | |
"PyPDF2/", | |
"_jademagic/", | |
"adam/", | |
"adam-aproject/", | |
"adam-kapsel/", | |
"aen-lab-theme/", | |
"aen-lab-theme-dist/", | |
"aen-recipes/", | |
"aen_foo/", | |
"aetrial/", | |
"aetrial-old/", | |
"aiohttp-api-test/", | |
"aiooapi/", | |
"alm/", | |
"anaconda/", | |
"anaconda-4.1-linux/", | |
"anaconda-4.3-notebook-config/", | |
"anaconda-build-graph/", | |
"anaconda-client/", | |
"anaconda-desktop/", | |
"anaconda-installer/", | |
"anaconda-narrative/", | |
"anaconda-nb-extension-config-meta/", | |
"anaconda-nb-extensions/", | |
"anaconda-notebook-ui/", | |
"anaconda-platform/", | |
"anaconda-platform-design/", | |
"anaconda-platform-features/", | |
"anaconda-platform-jlab/", | |
"anaconda-platform-ui/", | |
"anaconda-project/", | |
"anaconda-project-foo/", | |
"anaconda-recipes/", | |
"anaconda-run-button/", | |
"anaconda-server/", | |
"anaconda-server-docker/", | |
"anaconda-server-old/", | |
"anaconda-standup/", | |
"apug/", | |
"as-html-foo/", | |
"baobab-site/", | |
"beaker/", | |
"beakerbrowser.com/", | |
"binder-foo/", | |
"blanket/", | |
"blockly-d.ts/", | |
"bokeh/", | |
"bokeh-bug/", | |
"bokeh-deploy/", | |
"bokeh-dev-foo/", | |
"bokeh-foo/", | |
"bokeh-lab/", | |
"bokeh-notebooks/", | |
"braces/", | |
"brand-kit/", | |
"build/", | |
"cards-for-humanity/", | |
"category_encoders/", | |
"cc/", | |
"cc-foo/", | |
"cfvspypi/", | |
"chatterbot-binder/", | |
"ciocheck/", | |
"codemirror/", | |
"coffeetable/", | |
"column-widget/", | |
"components/", | |
"conda/", | |
"conda-backports.shutil_which/", | |
"conda-build/", | |
"conda-capsule/", | |
"conda-doc/", | |
"conda-forge-apprentice/", | |
"conda-forge-badger/", | |
"conda-ipfs/", | |
"conda-kapsel/", | |
"conda-mirror/", | |
"conda-nbdime/", | |
"conda-nodejs/", | |
"conda-notebook/", | |
"conda-notebook-pip/", | |
"conda-patch/", | |
"conda-pyld/", | |
"condatron/", | |
"connexion/", | |
"connexion_/", | |
"constructor-cutter/", | |
"constructor-cutter-test/", | |
"constructor-cutter-unified/", | |
"continuumio-docker-images/", | |
"cookiecutter-conda-forge/", | |
"cookiecutter-jupyterlab_viewer/", | |
"cookiecutters/", | |
"coveragepy/", | |
"cp-foo/", | |
"d3-miller-columns/", | |
"d3-post-it/", | |
"dashboard-example/", | |
"data.gov/", | |
"datashader_nyctaxi_app/", | |
"datlab/", | |
"deap/", | |
"demo-friday/", | |
"dev-meeting-2016/", | |
"docker-apk-build/", | |
"docker-compose-viz/", | |
"docker-conda-cache/", | |
"docker-conda-notebook/", | |
"docker-elk/", | |
"dokang-test/", | |
"dominion/", | |
"env-foo/", | |
"example-bokeh-thing/", | |
"example-project/", | |
"extension-cookiecutter-ts/", | |
"extension-feedstocks/", | |
"extension-foo/", | |
"eysel/", | |
"fbo/", | |
"feedstocks/", | |
"ferenda/", | |
"ferenda-foo/", | |
"flask-restful-swagger/", | |
"fonts/", | |
"foo/", | |
"foorbar/", | |
"foreverwhatever.github.io/", | |
"fovea-foo/", | |
"generator-nbextension/", | |
"ghost.py/", | |
"git_by_a_bus/", | |
"graflex/", | |
"graphuary/", | |
"hack-night/", | |
"hdtpy/", | |
"hy_kernel/", | |
"iconda/", | |
"ieee-spectrum-langs/", | |
"iheartanaconda/", | |
"imply/", | |
"improvicoding/", | |
"installers/", | |
"ipyld/", | |
"ipynblkly/", | |
"ipysankeywidget/", | |
"ipython/", | |
"ipywidgets/", | |
"ipywidgets-json/", | |
"irods-thing/", | |
"jademagic/", | |
"jday-page/", | |
"jefferson/", | |
"jlformat/", | |
"js-notebook-hackery/", | |
"jsonld-lab/", | |
"jsonschema-typing/", | |
"jupyter-anaconda/", | |
"jupyter-box/", | |
"jupyter-conda/", | |
"jupyter-day-atl/", | |
"jupyter-day-chi/", | |
"jupyter-design/", | |
"jupyter-docs/", | |
"jupyter-js-notebook/", | |
"jupyter-js-services/", | |
"jupyter-js-ui/", | |
"jupyter-notepad/", | |
"jupyter-sextant/", | |
"jupyter-sheets/", | |
"jupyter-shelf/", | |
"jupyter-widget-sigmax/", | |
"jupyter-widget-webgazer/", | |
"jupyter_client/", | |
"jupyter_core/", | |
"jupyterlab/", | |
"jupyterlab-bokeh/", | |
"jupyterlab-browser-kernels/", | |
"jupyterlab-build-services/", | |
"jupyterlab-cookiecutter-conda/", | |
"jupyterlab-demo/", | |
"jupyterlab-dev/", | |
"jupyterlab-feedstock/", | |
"jupyterlab-gdrive-foo/", | |
"jupyterlab-legacy/", | |
"jupyterlab-legacy-foo/", | |
"jupyterlab-ubuntu/", | |
"jupyterlab_dot/", | |
"jupyterlab_explainer/", | |
"jupyterlab_kapsel/", | |
"jupyterlab_log/", | |
"jupyterlab_stl/", | |
"jupyterlab_svg/", | |
"jupyterlab_typescript/", | |
"kapsel-docker/", | |
"kernels/", | |
"keycloak/", | |
"kid/", | |
"klee/", | |
"knowledge-constellation/", | |
"license-list/", | |
"linter-mypy/", | |
"literacy/", | |
"living-data/", | |
"lmy/", | |
"loghub/", | |
"mapeo-desktop/", | |
"mdconvert/", | |
"mdconvert-foo/", | |
"metabuilder/", | |
"mistune/", | |
"mtq/", | |
"myconda/", | |
"nb-inkscapelayers/", | |
"nb-jscodemirror-plus/", | |
"nb-livereload/", | |
"nb-mermaid/", | |
"nb_aen_theme/", | |
"nb_anacondacloud/", | |
"nb_anacondacloud-foo/", | |
"nb_conda/", | |
"nb_conda_kernels/", | |
"nb_config_manager/", | |
"nb_delta/", | |
"nb_delta-steve/", | |
"nb_delta_old/", | |
"nb_env_kernels/", | |
"nb_locker/", | |
"nb_revisioncontrol/", | |
"nb_runonly/", | |
"nb_user_sessions/", | |
"nbbrowserpdf/", | |
"nbbrowserpdf-deps/", | |
"nbconvert/", | |
"nbconvert-jsonld/", | |
"nbdiffstream/", | |
"nbdime/", | |
"nbext-foo/", | |
"nbext-unified/", | |
"nbformat/", | |
"nblogger/", | |
"nbpresent/", | |
"nbpresent-79/", | |
"nbpresent-clean/", | |
"nbpresent-continuum-theme/", | |
"nbpresent-example/", | |
"nbpresent-foo/", | |
"nbpresent-reviews/", | |
"nbviewer/", | |
"nbviewer-foo/", | |
"new-anaconda-server/", | |
"new-bokeh/", | |
"newrelic-python-agent/", | |
"niobium/", | |
"nosebook/", | |
"notebook/", | |
"notebook-pytest/", | |
"notebooks/", | |
"npm/", | |
"npm-foo/", | |
"numba-env/", | |
"nvchecker/", | |
"pandas/", | |
"pandas-rdfa-style/", | |
"pgadmin4/", | |
"phosphide/", | |
"phosphor/", | |
"phosphor-bokeh-demo/", | |
"phosphor-foo/", | |
"phosphor-jspy/", | |
"pipfile-tomld/", | |
"pivottable/", | |
"plumberjack/", | |
"powered-by-anaconda/", | |
"project-as-build/", | |
"project-empty-notebook/", | |
"project-foo/", | |
"project-runonly/", | |
"projx-vignette/", | |
"py-jsonapi/", | |
"py-jsonapi-example/", | |
"pydata-meetups/", | |
"pydata-talk/", | |
"quiz/", | |
"repo-intel/", | |
"reproconda/", | |
"rest_notebook/", | |
"revealjs/", | |
"robook/", | |
"rstudio-foo/", | |
"runonly-example/", | |
"screeps/", | |
"skyrim/", | |
"small-treatise/", | |
"snakebiz/", | |
"so-you-want-to-host/", | |
"socratea/", | |
"sparkhead/", | |
"spectoscropy_redux/", | |
"sqlalchemy-jsonapi/", | |
"staged-recipes/", | |
"staged-recipes-tpot/", | |
"svglab/", | |
"svgpan/", | |
"tablewidget/", | |
"this-week-in-anaconda-server/", | |
"traitlets/", | |
"trial-in-a-box/", | |
"typedoc/", | |
"typeshed/", | |
"ui-coding-challenge/", | |
"unarchive-foo/", | |
"underpy/", | |
"uploadwidget/", | |
"vagrant-anaconda-nb-extensions/", | |
"vagrant-images/", | |
"visicons/", | |
"wakari-server/", | |
"whatever-forever/", | |
"widget-cookiecutter/", | |
"widget-dateslider/", | |
"widget-layoutre/", | |
"widget-playground/", | |
"widgetouch/", | |
"wookiecutter/", | |
"xz-foo/", | |
"yamlmagic/", | |
"youtubedl/", | |
".DS_Store", | |
"Untitled.ipynb", | |
"database.db", | |
"npm-debug.log", | |
"package.sh" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_e62d1613953d4e9b8e78dfb1425aeca8", | |
"value": [ | |
"anaconda-platform-ui/" | |
] | |
} | |
}, | |
"5ff0b99e393e4a16ad7fdb6363870ec4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_caed9ec4cab9445f8096aa2c0e922e6d" | |
], | |
"layout": "IPY_MODEL_043bb2d6d9d5429ca7f5347b6e9041b0", | |
"value": [ | |
null | |
] | |
} | |
}, | |
"603cee710af44b3094352f6a12895ad8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"60655030a34c4f09ad1ae4effea6aecb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6065cbc5e8f9495faec7aad2570f26fb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"applypatch-msg.sample", | |
"commit-msg.sample", | |
"post-update.sample", | |
"pre-applypatch.sample", | |
"pre-commit.sample", | |
"pre-push.sample", | |
"pre-rebase.sample", | |
"prepare-commit-msg.sample", | |
"update.sample" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a1942646ae3a408aa74c62be20d58494", | |
"value": [] | |
} | |
}, | |
"606e42505d7a405d86703cb0e1e88966": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"608803b46316423aaad5446815e8be7a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"609d7dd285ce4445abba0e79f36a1150": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_cbb986daa40c4cc1b4f2c538098388ce" | |
], | |
"layout": "IPY_MODEL_498a6947620a4a4797def8bcef7422cf", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"60f2ef6b72624b8d91463cc003000ff2": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_738dcba8601d4bb69492e4a2d4574e75", | |
"IPY_MODEL_71fb73b57af0426c955080b0abd9b385" | |
], | |
"layout": "IPY_MODEL_cdb56055d0b649caa78d768c8fff8b9e", | |
"rows": 7, | |
"value": [ | |
"a", | |
"c" | |
] | |
} | |
}, | |
"60f8ea88b9e242cc92103c51bd068871": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6109e18352984a999bce4be9b3a8e313": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"610c161cc08a46ea9f4f57e3aa133f7c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints/", | |
"ET-NumericalMethods-2016/", | |
"Method-Draw/", | |
"PyPDF2/", | |
"_jademagic/", | |
"adam/", | |
"adam-aproject/", | |
"adam-kapsel/", | |
"aen-lab-theme/", | |
"aen-lab-theme-dist/", | |
"aen-recipes/", | |
"aen_foo/", | |
"aetrial/", | |
"aetrial-old/", | |
"aiohttp-api-test/", | |
"aiooapi/", | |
"alm/", | |
"anaconda/", | |
"anaconda-4.1-linux/", | |
"anaconda-4.3-notebook-config/", | |
"anaconda-build-graph/", | |
"anaconda-client/", | |
"anaconda-desktop/", | |
"anaconda-installer/", | |
"anaconda-narrative/", | |
"anaconda-nb-extension-config-meta/", | |
"anaconda-nb-extensions/", | |
"anaconda-notebook-ui/", | |
"anaconda-platform/", | |
"anaconda-platform-design/", | |
"anaconda-platform-features/", | |
"anaconda-platform-jlab/", | |
"anaconda-platform-ui/", | |
"anaconda-project/", | |
"anaconda-project-foo/", | |
"anaconda-recipes/", | |
"anaconda-run-button/", | |
"anaconda-server/", | |
"anaconda-server-docker/", | |
"anaconda-server-old/", | |
"anaconda-standup/", | |
"apug/", | |
"as-html-foo/", | |
"baobab-site/", | |
"beaker/", | |
"beakerbrowser.com/", | |
"binder-foo/", | |
"blanket/", | |
"blockly-d.ts/", | |
"bokeh/", | |
"bokeh-bug/", | |
"bokeh-deploy/", | |
"bokeh-dev-foo/", | |
"bokeh-foo/", | |
"bokeh-lab/", | |
"bokeh-notebooks/", | |
"braces/", | |
"brand-kit/", | |
"build/", | |
"cards-for-humanity/", | |
"category_encoders/", | |
"cc/", | |
"cc-foo/", | |
"cfvspypi/", | |
"chatterbot-binder/", | |
"ciocheck/", | |
"codemirror/", | |
"coffeetable/", | |
"column-widget/", | |
"components/", | |
"conda/", | |
"conda-backports.shutil_which/", | |
"conda-build/", | |
"conda-capsule/", | |
"conda-doc/", | |
"conda-forge-apprentice/", | |
"conda-forge-badger/", | |
"conda-ipfs/", | |
"conda-kapsel/", | |
"conda-mirror/", | |
"conda-nbdime/", | |
"conda-nodejs/", | |
"conda-notebook/", | |
"conda-notebook-pip/", | |
"conda-patch/", | |
"conda-pyld/", | |
"condatron/", | |
"connexion/", | |
"connexion_/", | |
"constructor-cutter/", | |
"constructor-cutter-test/", | |
"constructor-cutter-unified/", | |
"continuumio-docker-images/", | |
"cookiecutter-conda-forge/", | |
"cookiecutter-jupyterlab_viewer/", | |
"cookiecutters/", | |
"coveragepy/", | |
"cp-foo/", | |
"d3-miller-columns/", | |
"d3-post-it/", | |
"dashboard-example/", | |
"data.gov/", | |
"datashader_nyctaxi_app/", | |
"datlab/", | |
"deap/", | |
"demo-friday/", | |
"dev-meeting-2016/", | |
"docker-apk-build/", | |
"docker-compose-viz/", | |
"docker-conda-cache/", | |
"docker-conda-notebook/", | |
"docker-elk/", | |
"dokang-test/", | |
"dominion/", | |
"env-foo/", | |
"example-bokeh-thing/", | |
"example-project/", | |
"extension-cookiecutter-ts/", | |
"extension-feedstocks/", | |
"extension-foo/", | |
"eysel/", | |
"fbo/", | |
"feedstocks/", | |
"ferenda/", | |
"ferenda-foo/", | |
"flask-restful-swagger/", | |
"fonts/", | |
"foo/", | |
"foorbar/", | |
"foreverwhatever.github.io/", | |
"fovea-foo/", | |
"generator-nbextension/", | |
"ghost.py/", | |
"git_by_a_bus/", | |
"graflex/", | |
"graphuary/", | |
"hack-night/", | |
"hdtpy/", | |
"hy_kernel/", | |
"iconda/", | |
"ieee-spectrum-langs/", | |
"iheartanaconda/", | |
"imply/", | |
"improvicoding/", | |
"installers/", | |
"ipyld/", | |
"ipynblkly/", | |
"ipysankeywidget/", | |
"ipython/", | |
"ipywidgets/", | |
"ipywidgets-json/", | |
"irods-thing/", | |
"jademagic/", | |
"jday-page/", | |
"jefferson/", | |
"jlformat/", | |
"js-notebook-hackery/", | |
"jsonld-lab/", | |
"jsonschema-typing/", | |
"jupyter-anaconda/", | |
"jupyter-box/", | |
"jupyter-conda/", | |
"jupyter-day-atl/", | |
"jupyter-day-chi/", | |
"jupyter-design/", | |
"jupyter-docs/", | |
"jupyter-js-notebook/", | |
"jupyter-js-services/", | |
"jupyter-js-ui/", | |
"jupyter-notepad/", | |
"jupyter-sextant/", | |
"jupyter-sheets/", | |
"jupyter-shelf/", | |
"jupyter-widget-sigmax/", | |
"jupyter-widget-webgazer/", | |
"jupyter_client/", | |
"jupyter_core/", | |
"jupyterlab/", | |
"jupyterlab-bokeh/", | |
"jupyterlab-browser-kernels/", | |
"jupyterlab-build-services/", | |
"jupyterlab-cookiecutter-conda/", | |
"jupyterlab-demo/", | |
"jupyterlab-dev/", | |
"jupyterlab-feedstock/", | |
"jupyterlab-gdrive-foo/", | |
"jupyterlab-legacy/", | |
"jupyterlab-legacy-foo/", | |
"jupyterlab-ubuntu/", | |
"jupyterlab_dot/", | |
"jupyterlab_explainer/", | |
"jupyterlab_kapsel/", | |
"jupyterlab_log/", | |
"jupyterlab_stl/", | |
"jupyterlab_svg/", | |
"jupyterlab_typescript/", | |
"kapsel-docker/", | |
"kernels/", | |
"keycloak/", | |
"kid/", | |
"klee/", | |
"knowledge-constellation/", | |
"license-list/", | |
"linter-mypy/", | |
"literacy/", | |
"living-data/", | |
"lmy/", | |
"loghub/", | |
"mapeo-desktop/", | |
"mdconvert/", | |
"mdconvert-foo/", | |
"metabuilder/", | |
"mistune/", | |
"mtq/", | |
"myconda/", | |
"nb-inkscapelayers/", | |
"nb-jscodemirror-plus/", | |
"nb-livereload/", | |
"nb-mermaid/", | |
"nb_aen_theme/", | |
"nb_anacondacloud/", | |
"nb_anacondacloud-foo/", | |
"nb_conda/", | |
"nb_conda_kernels/", | |
"nb_config_manager/", | |
"nb_delta/", | |
"nb_delta-steve/", | |
"nb_delta_old/", | |
"nb_env_kernels/", | |
"nb_locker/", | |
"nb_revisioncontrol/", | |
"nb_runonly/", | |
"nb_user_sessions/", | |
"nbbrowserpdf/", | |
"nbbrowserpdf-deps/", | |
"nbconvert/", | |
"nbconvert-jsonld/", | |
"nbdiffstream/", | |
"nbdime/", | |
"nbext-foo/", | |
"nbext-unified/", | |
"nbformat/", | |
"nblogger/", | |
"nbpresent/", | |
"nbpresent-79/", | |
"nbpresent-clean/", | |
"nbpresent-continuum-theme/", | |
"nbpresent-example/", | |
"nbpresent-foo/", | |
"nbpresent-reviews/", | |
"nbviewer/", | |
"nbviewer-foo/", | |
"new-anaconda-server/", | |
"new-bokeh/", | |
"newrelic-python-agent/", | |
"niobium/", | |
"nosebook/", | |
"notebook/", | |
"notebook-pytest/", | |
"notebooks/", | |
"npm/", | |
"npm-foo/", | |
"numba-env/", | |
"nvchecker/", | |
"pandas/", | |
"pandas-rdfa-style/", | |
"pgadmin4/", | |
"phosphide/", | |
"phosphor/", | |
"phosphor-bokeh-demo/", | |
"phosphor-foo/", | |
"phosphor-jspy/", | |
"pipfile-tomld/", | |
"pivottable/", | |
"plumberjack/", | |
"powered-by-anaconda/", | |
"project-as-build/", | |
"project-empty-notebook/", | |
"project-foo/", | |
"project-runonly/", | |
"projx-vignette/", | |
"py-jsonapi/", | |
"py-jsonapi-example/", | |
"pydata-meetups/", | |
"pydata-talk/", | |
"quiz/", | |
"repo-intel/", | |
"reproconda/", | |
"rest_notebook/", | |
"revealjs/", | |
"robook/", | |
"rstudio-foo/", | |
"runonly-example/", | |
"screeps/", | |
"skyrim/", | |
"small-treatise/", | |
"snakebiz/", | |
"so-you-want-to-host/", | |
"socratea/", | |
"sparkhead/", | |
"spectoscropy_redux/", | |
"sqlalchemy-jsonapi/", | |
"staged-recipes/", | |
"staged-recipes-tpot/", | |
"svglab/", | |
"svgpan/", | |
"tablewidget/", | |
"this-week-in-anaconda-server/", | |
"traitlets/", | |
"trial-in-a-box/", | |
"typedoc/", | |
"typeshed/", | |
"ui-coding-challenge/", | |
"unarchive-foo/", | |
"underpy/", | |
"uploadwidget/", | |
"vagrant-anaconda-nb-extensions/", | |
"vagrant-images/", | |
"visicons/", | |
"wakari-server/", | |
"whatever-forever/", | |
"widget-cookiecutter/", | |
"widget-dateslider/", | |
"widget-layoutre/", | |
"widget-playground/", | |
"widgetouch/", | |
"wookiecutter/", | |
"xz-foo/", | |
"yamlmagic/", | |
"youtubedl/", | |
".DS_Store", | |
"Untitled.ipynb", | |
"database.db", | |
"npm-debug.log", | |
"package.sh" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_cc578720adb8489385b3c1e63a39176e", | |
"value": [ | |
"anaconda-recipes/" | |
] | |
} | |
}, | |
"611ea9ec292a4a228f4c4658fe588713": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6173f4681763435e8ddc41abb0d9c871": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"lib/", | |
"node_modules/", | |
".eslintrc", | |
".npmignore", | |
".travis.yml", | |
"README.md", | |
"index.js", | |
"locals.js", | |
"package.json" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "node_modules", | |
"layout": "IPY_MODEL_8cd3fb9cffbd494eafdff184b69ad6ac", | |
"value": [ | |
"node_modules/" | |
] | |
} | |
}, | |
"620583beebfd48a3a5feb06249cdcae1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"COMMIT_EDITMSG", | |
"config", | |
"description", | |
"FETCH_HEAD", | |
"gitk.cache", | |
"HEAD", | |
"hooks", | |
"index", | |
"info", | |
"logs", | |
"objects", | |
"ORIG_HEAD", | |
"refs" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f4563605e4254f36b7e99644793f7861", | |
"value": [ | |
"hooks" | |
] | |
} | |
}, | |
"62245f62e222447f979dea9b42dcff53": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6225839f366644f3b5fcce66a7661c63": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_0898ef5b4d4640df88a54cb13821703d", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"623e11eb3253440489169d9ca0ca0386": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"62bf208a7d994caf91115cf55b6fd218": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_465acadd52aa4b7d910be62bd9d3e091", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"635c763c9a4f4c06aab7c005e9e732bb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".DS_Store", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"README.md", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c2a197090b7f4ee886d7a46be256d3d7", | |
"value": [] | |
} | |
}, | |
"635f97fd70534b5baaca4cbcc392049f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6370fd72836f4261b5c1181b10e4992c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"63913d54e6e84337899c8f7512e7f433": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"63d7d100539f49f2970c2a52765037ef": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"Nonex", | |
"Noney", | |
"Nonez" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_0cc3c0a971fa4059bdee1a37cc9b9683", | |
"value": [] | |
} | |
}, | |
"63e759550a074b33b70afcadef087d83": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_3125d34e50974041b7467a6281450e9f", | |
"IPY_MODEL_da1073a142a14681ab59f4fadd72082c" | |
], | |
"layout": "IPY_MODEL_c9e6691ed9ed451ebf3ec2bac3bc95e2", | |
"value": [ | |
"anaconda-platform", | |
null | |
] | |
} | |
}, | |
"6401217a1e5647f5bf66d0996a3f5b6c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6424dbb3b19447a48adebd69069e220e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".git/", | |
"IPython/", | |
"docs/", | |
"examples/", | |
"scripts/", | |
"setupext/", | |
"tools/", | |
".gitattributes", | |
".gitignore", | |
".mailmap", | |
".travis.yml", | |
"CONTRIBUTING.md", | |
"COPYING.rst", | |
"Dockerfile", | |
"MANIFEST.in", | |
"README.rst", | |
"setup.py", | |
"setupbase.py", | |
"setupegg.py", | |
"tox.ini" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "IPython", | |
"layout": "IPY_MODEL_d55302c5485f4087bf4fdebf1e7d2d0f", | |
"value": [ | |
"IPython/" | |
] | |
} | |
}, | |
"6425d5b0e290458583a7d64206f75944": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_89d6c81ebf964f5789a5ccb34cb8fbdd", | |
"value": [] | |
} | |
}, | |
"6434d862bba84b8487d355010c91cd8c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"64aa4b6de9e64798b037ad515798b905": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c84b79b3eb2545e18896e4bade2c31e9", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"64ed6a2a074b44b2a321e1bdc176750e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"650aa347779d4060919c1a87ce71a92f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"654816bfc799453ca64d092f3b0898fa": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_5ab472410d1f499992a0d0632075eddc", | |
"value": [] | |
} | |
}, | |
"65ee155a57464b0a9ddd7ec9eba49534": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"65fe03a3c6504baab621597cd2008920": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_8b1f5ca3e26345b38744bc4e28301955", | |
"value": [] | |
} | |
}, | |
"65fe7e96ad994436b63bc1d39d2181f3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"6600624cb75d409f9937e52a62e9cb69": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c4ef4b93e2ca45008a1cdc536c04ba14", | |
"value": [] | |
} | |
}, | |
"66076c4228294c51b2b349034b46a1df": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6609c3765e8e4d0fa2012fa8a1c1bae6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"6652d26736654bf4b4422514deec1452": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ede774bb36be45d49df1d62f622c6279", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"667442515fa644c5951d632ba3195c03": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_dd30ccf69be14aa78901de069094621e", | |
"IPY_MODEL_73299f7c2bde4eca843583427e2f4b93" | |
], | |
"layout": "IPY_MODEL_eac53435e8ed45399ce20a4f5e1b1065", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"6677a7a7b3fe4744986fcb75633f380e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_473be2dc37be434ba6b9e678a5fdc2d8", | |
"value": [] | |
} | |
}, | |
"66eb80eb3d54426aa658a00e52071028": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_55d8adcdd7e4458ab951f9ff7c082ace" | |
], | |
"layout": "IPY_MODEL_2a4731fc3fd14ffebdd469294e37c450", | |
"value": [] | |
} | |
}, | |
"66f140a2cd4645aeb7effe1ecd942b7e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"674f56265d1448ed98f79d5cc6cd5b6a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"677849d96ec1470ba9b2e7cf011cafab": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"679528b7ee4142cdb4c79ea2c5784ac9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"67a51333b02b4d3293e4cc17be5dbff3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_5ab9b2c2f3bb451bb32a9f2fb69d217d", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"67b42c2275ef4fa48b37f4e257690258": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"COMMIT_EDITMSG", | |
"config", | |
"description", | |
"FETCH_HEAD", | |
"gitk.cache", | |
"HEAD", | |
"hooks", | |
"index", | |
"info", | |
"lfs", | |
"logs", | |
"modules", | |
"objects", | |
"ORIG_HEAD", | |
"packed-refs", | |
"refs" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_729ac53cb69e4c549b89e61def5eeeb6", | |
"value": [] | |
} | |
}, | |
"67e451cb57e2473f9910a453ed6486da": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_12819def10f2452f845ccad06b2e9e0d", | |
"IPY_MODEL_682a8a0d4f6d4cbf89dcf3bb965894df" | |
], | |
"layout": "IPY_MODEL_d604b01def6745d58fdbf6ac547220e0", | |
"value": [ | |
"IPython" | |
] | |
} | |
}, | |
"67f40112e2bd44629ed7920954d3762b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_0a2e5c5a07e84224aec3062947a61173", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"6821860ea81f4e979ba2d64fa69050ba": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"682a8a0d4f6d4cbf89dcf3bb965894df": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"📁 core", | |
"📁 extensions", | |
"📁 external", | |
"📁 kernel", | |
"📁 lib", | |
"📁 sphinxext", | |
"📁 terminal", | |
"📁 testing", | |
"📁 utils", | |
"📄 __init__.py", | |
"📄 __main__.py", | |
"📄 config.py", | |
"📄 consoleapp.py", | |
"📄 display.py", | |
"📄 frontend.py", | |
"📄 html.py", | |
"📄 nbconvert.py", | |
"📄 nbformat.py", | |
"📄 parallel.py", | |
"📄 paths.py", | |
"📄 qt.py" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": " ", | |
"layout": "IPY_MODEL_f0f45121c61f4d5fb3108b34ae2f0761", | |
"value": [] | |
} | |
}, | |
"689bbb44c12548ddb2139dce8b48df89": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"68a255eea99847b2840805089859ccbe": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_3fa41424ebe542c084f23b2f74e7cc84", | |
"value": [] | |
} | |
}, | |
"68cd80a7c12a49a8bf2715b284e4d4d8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"691863a8da874817804af481b8c9042e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"6918b6f35e07479d89ac3b4a6a7dbbfc": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_5b6ca16a466c46d29eb3cfca3130eae4", | |
"value": [ | |
"/" | |
] | |
} | |
}, | |
"6958f23d63144b55a7a3688fd63b4d92": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_065c67cb55c94eecbd0387af1b073340", | |
"value": [] | |
} | |
}, | |
"69bb8585c17c4c5cb6d53fca42d0a2ec": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"69bf1c1464ac48f9bd9b0518b11071bc": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6a2521925db5420c836873e98cd4f43f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6a282a0bf87b4ee39c689879ded09981": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_b769cfc73f414082a530f70aec4403a4", | |
"IPY_MODEL_71b4a40d95a64e7cb95f5a1a228afbff" | |
], | |
"layout": "IPY_MODEL_00e33fcce8834f07b7da3c05cd606151", | |
"value": [ | |
"a", | |
"c" | |
] | |
} | |
}, | |
"6a4476f90153477084f6578b59347c93": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"6a7c44cfc9bd4f9fa1b5e05ed0087168": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".DS_Store", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"README.md", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_7fed2b1983b041258043f70a3b89d08b", | |
"value": [] | |
} | |
}, | |
"6a926916702d41c29420247b5883bb39": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6ac9463512c04425bdbd24439ff97f6b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6b1c9006078c47a58dccebfcbb27f009": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_53cc3c92aaf843a8892291e7d77b1127" | |
], | |
"layout": "IPY_MODEL_065238ee6ced4d8699adc24b9d60b8b1", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"6b33dcaff6d94f9786880b8432d11d18": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b4952561a0f347a9ab6bbbff359102e7", | |
"value": [] | |
} | |
}, | |
"6b6f1969693b48329fc82522a68711d3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"6b90d38529484c5a8239c5bd2d192f7b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ead252e8661a49d28a4b68cce90525cf", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"6bb175d8ccfd4519b1813ea638d21060": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"6bb73637fe7340c490d88b1922ce6f1f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"6bfb21c3698145ff95a271b8f53e1559": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6c71425e05b943b4ac14a3b318de099b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6c8b7f0bc799488e84127c8963bd577c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"bx", | |
"by", | |
"bz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_484a0e4b2785440a87e9c950c44ccd42", | |
"value": [] | |
} | |
}, | |
"6cbb50516fc54d4f893057b689b55d5c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "200px" | |
} | |
}, | |
"6cde7d84f7074a3dbf355604473fe008": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"bx", | |
"by", | |
"bz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_0bee3106bec343bb82beb622a4dbf594", | |
"value": [] | |
} | |
}, | |
"6cdf01328a0e438a956b59e52c83cb25": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6dac0d8867cd4f71a3e4f0d2848ab237": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_1b6b9993b06e4964b324c1aa629bbf39", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"6df0c1cc7b82481b8f878501dc904821": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b203f3910c4348fa8820ebe796cc5415", | |
"selections": [] | |
} | |
}, | |
"6df3b1ecec234723903f518a9395e247": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"__init__.py" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_e4cd2c709d3f49779cfb18ea93a29044", | |
"value": [] | |
} | |
}, | |
"6e2618c1c18e44a0aa1343dae433a525": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".dockerignore", | |
"Dockerfile", | |
"docker", | |
"docker-compose-test.yml", | |
"docker-compose.yml" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_375eaa81d63b4384a61cd0f04750cbe5", | |
"value": [] | |
} | |
}, | |
"6e621c2b62274a8db5f11869d75207cb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b56a5067cf144a75b03470abc713d2ba", | |
"value": [ | |
"wakari-server" | |
] | |
} | |
}, | |
"6e622d5d008047e98997e638472f9105": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"6e6f535d79bf4c118cada7dae280f651": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_97d6bd12ec044a6abba84f30ae59c951", | |
"value": [ | |
"cookiecutters" | |
] | |
} | |
}, | |
"6e73570db037410bbc53025e1fceacbf": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6e9c57a4d0994dbe907435e82359fac9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_55aa788ef57a4d36b13a6b01fcfe2a98", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"6eb73aaa11b54bcf9c2ac9f260b21ba3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6ece7b0c1855458aa27d28defb33b4e9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6f24f2ddaf23462d8b5bddb9c7235f26": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"6f4fb5805e1a4305b321435ddc7b3f5e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"6fa12864656b42d6a2388e5590e361c5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"bx", | |
"by", | |
"bz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_22a5caf2b866463ab79d56f1e0f18cdd", | |
"value": [] | |
} | |
}, | |
"700244271ad14a289e4da8f3a92c34de": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_6225839f366644f3b5fcce66a7661c63" | |
], | |
"layout": "IPY_MODEL_2afd572e61e041699bb155ae111a84ae", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"700e860a55ad496cb0933819d196d282": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"702919c4ef2543c892e905cc07226ec2": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"706cfeb2dbcb4c4cb39246399bce5220": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"anaconda-platformx", | |
"anaconda-platformy", | |
"anaconda-platformz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_de7d8f3749874af7a390d11881bc5d60", | |
"value": [] | |
} | |
}, | |
"708ebc814aaf460ab485d1f261838683": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_7968ef2909a04b8ba8b654bae57b935c", | |
"value": [] | |
} | |
}, | |
"70c1d795dd46464199a608ce00b13b52": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"height": "200px" | |
} | |
}, | |
"7111dff893c948469d2958ee9065b340": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_4e924b36525847ca8950ae358fa9e56a", | |
"value": [] | |
} | |
}, | |
"7135f04d933a430e918f03a9dea46f1c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"71701f13257f439d96666032b393afa6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"c", | |
"d" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a365221bc8424e509a13a49ab13e0267", | |
"value": "c" | |
} | |
}, | |
"719d54040dc94ba9b5c1aed0b823d680": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c09e2cb3a7da43799d8d038ac8e0cd76", | |
"value": [ | |
"widget-dateslider" | |
] | |
} | |
}, | |
"71b4a40d95a64e7cb95f5a1a228afbff": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"c", | |
"d" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a03eb58e27f142eaacadcf28087d3b4a", | |
"value": "c" | |
} | |
}, | |
"71f37f70a3ab4ae184bc160b20f198c5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"71fb73b57af0426c955080b0abd9b385": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"c", | |
"d" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_72d33f0a33424dbc85b81789019d8a73", | |
"value": "c" | |
} | |
}, | |
"725b0cbc677d4ef7ba224bbe4959c2ee": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_9949b63e755541b1aa168bcec062a671", | |
"value": [] | |
} | |
}, | |
"729536eaface4dbb8d26808165c0fc01": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a003ea762efb4d9193c5ac40b19024fb", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"729ac53cb69e4c549b89e61def5eeeb6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"72b88299a6fe416ba97c125f342545d1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_03d47bf52d9a49cc816972d3d428657d", | |
"IPY_MODEL_1a94230a3eae408896cad62c7775ff9f" | |
], | |
"layout": "IPY_MODEL_0c634169c65b4463aa237ab2a6f81bca", | |
"value": [ | |
"cc" | |
] | |
} | |
}, | |
"72d33f0a33424dbc85b81789019d8a73": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"72f4b1b5ba8643f1b7f515d95ab278b8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_0cc7cf59f703479ebd6a0fa4bbb1d2b3" | |
], | |
"layout": "IPY_MODEL_f827a47d083e4b23b6eec432c0075221", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"72ff700cc0e040a598fca5a8c2a3dbca": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_1d961a6503854f3faebb8c0736c3b4a1", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"73299f7c2bde4eca843583427e2f4b93": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".ipynb_checkpoints", | |
"Anaconda Cloud Notebooks.sketch", | |
"Untitled.ipynb" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_7634d2e3163d4fa39fe58c1a00fb162d", | |
"value": [] | |
} | |
}, | |
"738dcba8601d4bb69492e4a2d4574e75": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_608803b46316423aaad5446815e8be7a", | |
"value": "a" | |
} | |
}, | |
"73a59eb0058746208c2969b24946dff0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"741f1756775c41aea4c9d5182f53c401": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_606e42505d7a405d86703cb0e1e88966", | |
"value": [] | |
} | |
}, | |
"7472799b74c240dd852fc4893f3656b5": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7484913710a140b4ab36a5f24d8f5281": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"74aee813a130466c96ee8801499a6a22": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_d74842d5f81b49df82f44859b3b28eb8", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"74c6747e4dee4c2da215eb9e9fa58a55": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"COMMIT_EDITMSG", | |
"config", | |
"description", | |
"HEAD", | |
"hooks", | |
"index", | |
"info", | |
"logs", | |
"objects", | |
"refs" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c331bada81f041cb85e792a276edd6ba", | |
"value": [] | |
} | |
}, | |
"74d6be2760814a01ae3dd283c905b154": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"74f296eb5e3e40f6ab10cd70c69814c1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7509ac2bb1544c38bd27c27a8e480819": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"bx", | |
"by", | |
"bz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b6b6ddcd11a54a46ab18484605af0926", | |
"value": [] | |
} | |
}, | |
"7527d30b526f4e06ba4cfb2edf3b7f55": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"📁 .git", | |
"📁 IPython", | |
"📁 docs", | |
"📁 examples", | |
"📁 scripts", | |
"📁 setupext", | |
"📁 tools", | |
"📄 .gitattributes", | |
"📄 .gitignore", | |
"📄 .mailmap", | |
"📄 .travis.yml", | |
"📄 CONTRIBUTING.md", | |
"📄 COPYING.rst", | |
"📄 Dockerfile", | |
"📄 MANIFEST.in", | |
"📄 README.rst", | |
"📄 setup.py", | |
"📄 setupbase.py", | |
"📄 setupegg.py", | |
"📄 tox.ini" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "docs", | |
"layout": "IPY_MODEL_a885af03eb0c465f9aec50f9a94dd45b", | |
"value": [ | |
"📁 docs" | |
] | |
} | |
}, | |
"75b49b16ff1e4e33a0bc7994e3168e73": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"75b68b3ac97c44d096c3a920e2255c99": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"75c8b9194a4c4a818545688f600da9f6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_ba6458b07aa248d09a4ae275b241d751", | |
"IPY_MODEL_b840365b39a6408f86ed0d3e45e82066" | |
], | |
"layout": "IPY_MODEL_2308c8c5330e45b4b697ec0235bd55d4", | |
"value": [ | |
"IPython" | |
] | |
} | |
}, | |
"75f17fc0ad0942fd80a535b4144685da": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7634d2e3163d4fa39fe58c1a00fb162d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"76aad13fc3f64651b07bf1e64fdf0ca3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"76b13b195af04208bc63b8147e5848a3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"76be1f9a9e184288ac4147f495a631fb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7761006b162340a8bd31f6d9b72713c9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_3d3d9921837e424289d50f52c343a971", | |
"value": [] | |
} | |
}, | |
"777ac83e4e8a45f4aff699202098fe76": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_2ed14ad41a8a47c3bf2e8aa60cab096c", | |
"value": [] | |
} | |
}, | |
"77c9e8f17e3c4ec981ec2560070e961f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_ab1d7b53c1f34011880bb77e33a4fdda", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"77f39e47332048ceb11ba1db10984e8d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_a574b73e236a417b971d468ea06395b0", | |
"IPY_MODEL_be3edbbec65c4ce18e3454d00ca35075" | |
], | |
"layout": "IPY_MODEL_a6474e88df9140a384ea39d72f0f89f3", | |
"value": [ | |
"bokeh-foo" | |
] | |
} | |
}, | |
"7842ffb641e44a1daea792816bf309ac": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7846a084276a4da1ac419cd7b7038c6f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_08d2ef7430974f9a9a8f6611b200b43c" | |
], | |
"layout": "IPY_MODEL_c6d440949d9743f69b01bb27544382f6", | |
"value": [ | |
".gitignore" | |
] | |
} | |
}, | |
"787822e3d33f4417a66d4b79d183b69c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_05ba44b4193a42c1a9e5a36295c27282", | |
"value": [] | |
} | |
}, | |
"7896e66f30354e0596911e6b633d5cb8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"icons/", | |
"background.png", | |
"icon.icns", | |
"icon.ico", | |
"make-icns.sh" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "icons", | |
"layout": "IPY_MODEL_24381754b28b46409f8ddcf581c16f49", | |
"value": [ | |
"icons/" | |
] | |
} | |
}, | |
"78c9a8dc63eb41a28d6023d0c1d883eb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"78e3816936a34066aaddcae811caa931": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"790d27fb5c534d9580afddcbdc37a483": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"790e97cd4d894996ad678eac345da2fb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_060969eb7ba94c8085237b49f5fe183b", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"7913542df1aa4ef3b0e2c95ed1b76e01": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_69bf1c1464ac48f9bd9b0518b11071bc", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"7929ab6d00334f48814ab1b0c7d17d50": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7941c0c7e9b64b53b40fda4e95ec1d8e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_52df6ac7223e4cccb8bc3c5bed5e728b", | |
"IPY_MODEL_9f281a4c307e4249b74275ece66e851c" | |
], | |
"layout": "IPY_MODEL_0c07abb6c5264d908829a2d2df6097bc", | |
"rows": 7, | |
"value": [ | |
[], | |
[] | |
] | |
} | |
}, | |
"7968ef2909a04b8ba8b654bae57b935c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"79953465c99d40ab8ce3a0c9e957338f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"📁 tests", | |
"📄 __init__.py", | |
"📄 autoreload.py", | |
"📄 cythonmagic.py", | |
"📄 rmagic.py", | |
"📄 storemagic.py", | |
"📄 sympyprinting.py" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "tests", | |
"layout": "IPY_MODEL_baa917df7b68497bac6f9fe978cea10b", | |
"value": [ | |
"📁 tests" | |
] | |
} | |
}, | |
"79a55663333d4c3bb75a4ec792116221": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"79bacb73df95450aa3a080ad4c0b0ed3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"79bc6b7dfac94df5ba08d2c9c02383ac": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"ET-NumericalMethods-2016", | |
"Method-Draw", | |
"PyPDF2", | |
"Untitled.ipynb", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_35a28198800342eba15df00c8e34e5fc", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"79dcc6ec89d34040b4a131bb90b8e75a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"ax", | |
"ay", | |
"az" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_d5e7d7bc514d416e85130459db178ada", | |
"value": [] | |
} | |
}, | |
"7a085396d3954aef82eb70e24d392462": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7a0943f434414c9c880a8259e3350fe9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column" | |
} | |
}, | |
"7a296629ca4344a8a33f951b98858599": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7a2be19b30c74676a841459d7cd85554": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"7a2c4c63cc8f4347b12964579bef9f8c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7a5428db2246479e958c3fc9ce1fb140": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7a6fb3aa72bb4b71b479368ad63ef4f6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b5623782589d498a95e73119b416f44b", | |
"value": [] | |
} | |
}, | |
"7a8377babfa24f2abd7f214e8edf0aa9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_d8c735e112d14f49ba8d39492802715a", | |
"IPY_MODEL_f8bf31083e754d17826494d7b3a96a9e" | |
], | |
"layout": "IPY_MODEL_64ed6a2a074b44b2a321e1bdc176750e", | |
"value": [] | |
} | |
}, | |
"7a8c08fe8d464757956566939c5da4f3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"7aa17a89d27e4b1e9c75ab4814a3a27f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f717ae1331a54cf19d6250e9c58c7699", | |
"value": [ | |
"b" | |
] | |
} | |
}, | |
"7b414e406d06448997d37cb68f2ace84": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"📁 core", | |
"📁 extensions", | |
"📁 external", | |
"📁 kernel", | |
"📁 lib", | |
"📁 sphinxext", | |
"📁 terminal", | |
"📁 testing", | |
"📁 utils", | |
"📄 __init__.py", | |
"📄 __main__.py", | |
"📄 config.py", | |
"📄 consoleapp.py", | |
"📄 display.py", | |
"📄 frontend.py", | |
"📄 html.py", | |
"📄 nbconvert.py", | |
"📄 nbformat.py", | |
"📄 parallel.py", | |
"📄 paths.py", | |
"📄 qt.py" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "kernel", | |
"layout": "IPY_MODEL_41128e9660674ed99c714e54bdc4875e", | |
"value": [ | |
"📁 kernel" | |
] | |
} | |
}, | |
"7b4e18dd10f94e178cfbecfa97662cef": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_7842ffb641e44a1daea792816bf309ac", | |
"value": [] | |
} | |
}, | |
"7b4fb439d5b94ac79346c22441a8edcd": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"7b53b4b5a1a045688ac3434c47c6008b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"height": "200px" | |
} | |
}, | |
"7b58651e3b484e12b7eaeb2d69bcb2f4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7b7cee8307e44d6f91427ac7278b1ac9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_89ad5f1fc2ec44c8a937b095dd74215f" | |
], | |
"layout": "IPY_MODEL_f36b449622554271b81e845410d00db9", | |
"value": [ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
"anaconda-notebook-ui" | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
} | |
}, | |
"7bb6ac37558743a18a7d36db6a596e88": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_7a2c4c63cc8f4347b12964579bef9f8c", | |
"value": [] | |
} | |
}, | |
"7be8bc43903f4b819409d1eedff2d8aa": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_7b4fb439d5b94ac79346c22441a8edcd", | |
"value": [] | |
} | |
}, | |
"7bf34f43ec4741bda5f2931802445c90": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"ax", | |
"ay", | |
"az" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_6a2521925db5420c836873e98cd4f43f", | |
"value": [] | |
} | |
}, | |
"7c1b030446b6485eaed9665c8f514123": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7c98aab19af64d3f84917abd9ff1b247": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7cf237918b0148bd9b25c6c3ccaea29d": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"7d96f1b3a83f4e04b00ac8ba01502316": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7d97659d7fc4499d80054a956b58db4a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7dfb2bd47988414eb2473ed995de443f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_79bc6b7dfac94df5ba08d2c9c02383ac", | |
"IPY_MODEL_26e05ead45b445b49999835e67c68968" | |
], | |
"layout": "IPY_MODEL_d831221dbaca472982b6418a5dcd3091", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"7e0c95ee49bd476aa7f7c7a985089598": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_5f49549e111e4561ac3df8294a2247c7", | |
"IPY_MODEL_6a7c44cfc9bd4f9fa1b5e05ed0087168" | |
], | |
"layout": "IPY_MODEL_a3726f9ea58e4f319ac5a9b6ee3a9831", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"7e12a2972656487bad2c2b1857dc7e8a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"7e37845114354a2fad0b4d88229e6e85": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_fb1c87d565ba4e4ea9c5e076418fe5b4", | |
"value": [] | |
} | |
}, | |
"7e56e196ce5945c29c8e6de0d0204a93": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"7e7104c48957485fb5ece003536a83fa": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b25ad5d706f04e7395d378c82a18ea2e", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"7f134afac6f646f4a49bc1886d961b6f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_fb219a355717453ca265d45ff2731ff8", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"7f435960c3bb475ebe35ae1166f308a1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_4429c0a89be3450eb3c10ea6c6507608" | |
], | |
"layout": "IPY_MODEL_934a83727fed4d78835361ca2ccf584d", | |
"value": [ | |
null | |
] | |
} | |
}, | |
"7f48e60ac9ca433889ac860badb00afa": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"7f74e6f62a2d447a977cef32fe2c71a2": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b86c270452154685aa668f138611d22e", | |
"value": [] | |
} | |
}, | |
"7f7dfac473ad4798a3446c86a9068d06": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_2b8606c059c74ed4867e03d89269bbda", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"7fed2b1983b041258043f70a3b89d08b": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"height": "200px" | |
} | |
}, | |
"7ff11b46f6d14b9db5305290aa98055e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"803200d343d14f0f987e07300cb1fcf3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_16502ced12f041a0b98adcbcfdea3875", | |
"value": [] | |
} | |
}, | |
"8037b405901e4e8f810ba358b1f584da": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"Nonex", | |
"Noney", | |
"Nonez" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_7472799b74c240dd852fc4893f3656b5", | |
"value": [] | |
} | |
}, | |
"80ba28b4dc16430fa8e6862c7f1abd3e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"80edb71b3efe45f984c8f8fec6838573": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"810d0d74ebc34c298189522fab71d5f7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"81297593de3d4e899644855e0fbf1a15": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_acebc99744a34566a1d2ffdc4a0a1292", | |
"value": [ | |
"nb_env_kernels" | |
] | |
} | |
}, | |
"813d7dd443554a0d97583e8ab6f75a79": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"814d4e97c7204fb0a159da9d8842ed0a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"8167b614599c43398fdab71e6c12bf39": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"818d437beb604eb69453bffb31ae46c4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_5b0770f7ca154b188dcf31f2df357a43", | |
"value": [] | |
} | |
}, | |
"81c27cf33bb24217932cfd20eaa3a052": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"81f9f57c03c74f2ca2c73ff6d996c50f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_30167df1e0de402d9328c0239be17819", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"8220e2af6b6d4607bfb92c0e8d15d114": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"82367355f1f0472487fc17f9c2087036": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"82b8cd72a29d4fd3a734076c70767161": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_d90e866337cd42f5bd4f5e39a41cd2bf", | |
"IPY_MODEL_e98918a81a2846f4ae1aa8271cda53c4" | |
], | |
"layout": "IPY_MODEL_01582b00825f41958e11db6bfcf7d895", | |
"value": [ | |
"" | |
] | |
} | |
}, | |
"82c4d17391f74883a476761e186a47eb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"COMMIT_EDITMSG", | |
"config", | |
"description", | |
"FETCH_HEAD", | |
"gitk.cache", | |
"HEAD", | |
"hooks", | |
"index", | |
"info", | |
"lfs", | |
"logs", | |
"modules", | |
"objects", | |
"ORIG_HEAD", | |
"packed-refs", | |
"refs" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_58af25f5aa274ce8878c653464afefeb", | |
"value": [] | |
} | |
}, | |
"82f6a0dc31854e6eb2678cd44917ab01": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"83265e87b8244dedb2f46a7015feb864": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"838502286df74c17a9829867cd32d100": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"83bcd6a6f1a44c9a95fa8e5c9dcf6bc0": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_5f916d97e24543c8be435da01c172d76", | |
"IPY_MODEL_9d0649e03347445d8344e832439479a6" | |
], | |
"layout": "IPY_MODEL_c4bf46294e6341deb463597d85e46faa", | |
"value": [ | |
"anaconda-platform-ui" | |
] | |
} | |
}, | |
"83ce345c79d649b7b609519214d71e33": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_691863a8da874817804af481b8c9042e", | |
"value": [] | |
} | |
}, | |
"83d8b75fbd174a499d6ed014c37575ec": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_3f9f4d4818cc4eb4885921e82ad7d7ad", | |
"IPY_MODEL_fa0be2528465431eabd9be7c65fe1577" | |
], | |
"layout": "IPY_MODEL_290c0585e68840d99f745b7e442f4565", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"83ed47f705bb4c07b4499f2be3fd2fcb": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"843a1975cd43440c84496d833e8504e1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_0c0ad5a98a2c49e8a84b86c30d21beeb" | |
], | |
"layout": "IPY_MODEL_8eda74d8b98f4b74af903125629985a0", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"848d0485dc63445abae2b8ab8f3e802c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"849c05776f9a47e48471e856e1ebfea1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"849da912015142d3be1a4b7d3849f1f7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_82367355f1f0472487fc17f9c2087036", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"849f1590bd0a4598a92ac9a464d98af3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"COMMIT_EDITMSG", | |
"config", | |
"description", | |
"FETCH_HEAD", | |
"gitk.cache", | |
"HEAD", | |
"hooks", | |
"index", | |
"info", | |
"logs", | |
"objects", | |
"ORIG_HEAD", | |
"packed-refs", | |
"refs" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_75f17fc0ad0942fd80a535b4144685da", | |
"value": [] | |
} | |
}, | |
"84a23f1219d047168e4ccad31b3f8fff": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"84c0330361a14d6c9d421e79f5a1551f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_23ad287163cb40d8acf6b2fe81c5f347", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"84c6be7929064086a4383b7715b1eae3": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"853839ffb01048b2b94afff82a235dc1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_6424dbb3b19447a48adebd69069e220e", | |
"IPY_MODEL_d5a3d13190d349c9b659e79719394b85" | |
], | |
"layout": "IPY_MODEL_58407a7d4aa94a7aa75198743d0ef172", | |
"value": [ | |
"IPython" | |
] | |
} | |
}, | |
"861540119a224ab692d97b76a096849e": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"863dd201e4e241798316d5b9a652134c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"869e8959fbde406b96ce8c1383d03dea": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_41a1d3baca9b4d9c9c970497fa84d639", | |
"value": [] | |
} | |
}, | |
"86a2232ee3ba4089a761f9e9932cc8aa": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"86aee4bc46184e388e08c8fc0b37204c": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"8701abccc28142169263320aabf8d236": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"ET-NumericalMethods-2016", | |
"Method-Draw", | |
"PyPDF2", | |
"Untitled.ipynb", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_feb8567f21934064bca94e11e6cb87dc", | |
"value": [ | |
"anaconda-server-docker" | |
] | |
} | |
}, | |
"8760ebe26ac848bfb02b6782acc6f0e1": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"drawing.svg" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_f3a089c2882c453e9344fad1d67af607", | |
"value": [] | |
} | |
}, | |
"87791ecb28b04da8b02b7c8765959534": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_5cea011170ab4c8187b5b29c6485c669", | |
"value": [ | |
"c" | |
] | |
} | |
}, | |
"88182f73eb184f63adad198837fdcc63": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".gitattributes", | |
".gitignore", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"README.md", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"apb", | |
"apb.py", | |
"cloudbuild.yaml", | |
"environment.yml", | |
"readthedocs.yml", | |
"table-of-contents.md", | |
".cache/", | |
".git/", | |
".ipynb_checkpoints/", | |
"_mermaids/", | |
"_notebooks/", | |
"anaconda_enterprise/", | |
"auth/", | |
"auth_api/", | |
"auth_escrow/", | |
"auth_theme/", | |
"build/", | |
"ci_scripts/", | |
"cli/", | |
"common/", | |
"common_jsonapi/", | |
"common_kubernetes_api/", | |
"conda.recipe/", | |
"data/", | |
"deploy/", | |
"docs/", | |
"envs/", | |
"example_projects/", | |
"git_proxy/", | |
"git_storage/", | |
"htmlcov/", | |
"installer/", | |
"k8s_builder/", | |
"mirror/", | |
"object_storage/", | |
"offline_docs/", | |
"offline_mirror/", | |
"platform_build/", | |
"postgresql/", | |
"repository/", | |
"search/", | |
"search_api/", | |
"spaces/", | |
"storage/", | |
"sync/", | |
"testbed/", | |
"topologies/", | |
"ui/", | |
"ui-kit/" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_c65a9eb099e74c81a6e4e617da7cdaec", | |
"value": [] | |
} | |
}, | |
"882358a8ac40452293acbb9a402bb498": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"8859847ef61849b1b96ef199ffeea0f8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_3c70f7896a9441e9a47bffa9aa429221", | |
"value": [] | |
} | |
}, | |
"8867c25ef7a14ad98da5753a8e5fbe66": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_1e35faabb01a432982fd284f30137740", | |
"value": [] | |
} | |
}, | |
"887c0f93cb2e48dc82511ea433f6f166": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"88d04a46704e4400bda747647c99519a": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"height": "160px" | |
} | |
}, | |
"88d1d3cc7e1148ce9f5ed9f51f59d511": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"88d5cd71b44546ffb6ba9a56a71c5886": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_7f134afac6f646f4a49bc1886d961b6f" | |
], | |
"layout": "IPY_MODEL_b666d9abf3fb4d198979ae25016818db", | |
"value": [ | |
"anaconda-platform" | |
] | |
} | |
}, | |
"8906a762d8d143ca8c5c58a65ef439ad": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"89377f885f4e4a559f80093991735766": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"898dc8296e574f56891337231b5c98f9": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"899d50a42fa9443d864f51692e1a2c48": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"x", | |
"y", | |
"z" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a0a9dbbe19354c96af5f9e7fe40dd23c", | |
"value": [] | |
} | |
}, | |
"89ad5f1fc2ec44c8a937b095dd74215f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".ipynb_checkpoints", | |
"_jademagic", | |
"adam", | |
"adam-aproject", | |
"adam-kapsel", | |
"aen-lab-theme", | |
"aen-lab-theme-dist", | |
"aen-recipes", | |
"aen_foo", | |
"aetrial", | |
"aetrial-old", | |
"aiohttp-api-test", | |
"aiooapi", | |
"alm", | |
"anaconda", | |
"anaconda-4.1-linux", | |
"anaconda-4.3-notebook-config", | |
"anaconda-build-graph", | |
"anaconda-client", | |
"anaconda-desktop", | |
"anaconda-installer", | |
"anaconda-narrative", | |
"anaconda-nb-extension-config-meta", | |
"anaconda-nb-extensions", | |
"anaconda-notebook-ui", | |
"anaconda-platform", | |
"anaconda-platform-design", | |
"anaconda-platform-features", | |
"anaconda-platform-jlab", | |
"anaconda-platform-ui", | |
"anaconda-project", | |
"anaconda-project-foo", | |
"anaconda-recipes", | |
"anaconda-run-button", | |
"anaconda-server", | |
"anaconda-server-docker", | |
"anaconda-server-old", | |
"anaconda-standup", | |
"apug", | |
"as-html-foo", | |
"baobab-site", | |
"beaker", | |
"beakerbrowser.com", | |
"binder-foo", | |
"blanket", | |
"blockly-d.ts", | |
"bokeh", | |
"bokeh-bug", | |
"bokeh-deploy", | |
"bokeh-dev-foo", | |
"bokeh-foo", | |
"bokeh-lab", | |
"bokeh-notebooks", | |
"braces", | |
"brand-kit", | |
"build", | |
"cards-for-humanity", | |
"category_encoders", | |
"cc", | |
"cc-foo", | |
"cfvspypi", | |
"chatterbot-binder", | |
"ciocheck", | |
"codemirror", | |
"coffeetable", | |
"column-widget", | |
"components", | |
"conda", | |
"conda-backports.shutil_which", | |
"conda-build", | |
"conda-capsule", | |
"conda-doc", | |
"conda-forge-apprentice", | |
"conda-forge-badger", | |
"conda-ipfs", | |
"conda-kapsel", | |
"conda-mirror", | |
"conda-nbdime", | |
"conda-nodejs", | |
"conda-notebook", | |
"conda-notebook-pip", | |
"conda-patch", | |
"conda-pyld", | |
"condatron", | |
"connexion", | |
"connexion_", | |
"constructor-cutter", | |
"constructor-cutter-test", | |
"constructor-cutter-unified", | |
"continuumio-docker-images", | |
"cookiecutter-conda-forge", | |
"cookiecutter-jupyterlab_viewer", | |
"cookiecutters", | |
"coveragepy", | |
"cp-foo", | |
"d3-miller-columns", | |
"d3-post-it", | |
"dashboard-example", | |
"data.gov", | |
"database.db", | |
"datashader_nyctaxi_app", | |
"datlab", | |
"deap", | |
"demo-friday", | |
"dev-meeting-2016", | |
"docker-apk-build", | |
"docker-compose-viz", | |
"docker-conda-cache", | |
"docker-conda-notebook", | |
"docker-elk", | |
"dokang-test", | |
"dominion", | |
"env-foo", | |
"ET-NumericalMethods-2016", | |
"example-bokeh-thing", | |
"example-project", | |
"extension-cookiecutter-ts", | |
"extension-feedstocks", | |
"extension-foo", | |
"eysel", | |
"fbo", | |
"feedstocks", | |
"ferenda", | |
"ferenda-foo", | |
"flask-restful-swagger", | |
"fonts", | |
"foo", | |
"foorbar", | |
"foreverwhatever.github.io", | |
"fovea-foo", | |
"generator-nbextension", | |
"ghost.py", | |
"git_by_a_bus", | |
"graflex", | |
"graphuary", | |
"hack-night", | |
"hdtpy", | |
"hy_kernel", | |
"iconda", | |
"ieee-spectrum-langs", | |
"iheartanaconda", | |
"imply", | |
"improvicoding", | |
"installers", | |
"ipyld", | |
"ipynblkly", | |
"ipysankeywidget", | |
"ipython", | |
"ipywidgets", | |
"ipywidgets-json", | |
"irods-thing", | |
"jademagic", | |
"jday-page", | |
"jefferson", | |
"jlformat", | |
"js-notebook-hackery", | |
"jsonld-lab", | |
"jsonschema-typing", | |
"jupyter-anaconda", | |
"jupyter-box", | |
"jupyter-conda", | |
"jupyter-day-atl", | |
"jupyter-day-chi", | |
"jupyter-design", | |
"jupyter-docs", | |
"jupyter-js-notebook", | |
"jupyter-js-services", | |
"jupyter-js-ui", | |
"jupyter-notepad", | |
"jupyter-sextant", | |
"jupyter-sheets", | |
"jupyter-shelf", | |
"jupyter-widget-sigmax", | |
"jupyter-widget-webgazer", | |
"jupyter_client", | |
"jupyter_core", | |
"jupyterlab", | |
"jupyterlab-bokeh", | |
"jupyterlab-browser-kernels", | |
"jupyterlab-build-services", | |
"jupyterlab-cookiecutter-conda", | |
"jupyterlab-demo", | |
"jupyterlab-dev", | |
"jupyterlab-feedstock", | |
"jupyterlab-gdrive-foo", | |
"jupyterlab-legacy", | |
"jupyterlab-legacy-foo", | |
"jupyterlab-ubuntu", | |
"jupyterlab_dot", | |
"jupyterlab_explainer", | |
"jupyterlab_kapsel", | |
"jupyterlab_log", | |
"jupyterlab_stl", | |
"jupyterlab_svg", | |
"jupyterlab_typescript", | |
"kapsel-docker", | |
"kernels", | |
"keycloak", | |
"kid", | |
"klee", | |
"knowledge-constellation", | |
"license-list", | |
"linter-mypy", | |
"literacy", | |
"living-data", | |
"lmy", | |
"loghub", | |
"mapeo-desktop", | |
"mdconvert", | |
"mdconvert-foo", | |
"metabuilder", | |
"Method-Draw", | |
"mistune", | |
"mtq", | |
"myconda", | |
"nb-inkscapelayers", | |
"nb-jscodemirror-plus", | |
"nb-livereload", | |
"nb-mermaid", | |
"nb_aen_theme", | |
"nb_anacondacloud", | |
"nb_anacondacloud-foo", | |
"nb_conda", | |
"nb_conda_kernels", | |
"nb_config_manager", | |
"nb_delta", | |
"nb_delta-steve", | |
"nb_delta_old", | |
"nb_env_kernels", | |
"nb_locker", | |
"nb_revisioncontrol", | |
"nb_runonly", | |
"nb_user_sessions", | |
"nbbrowserpdf", | |
"nbbrowserpdf-deps", | |
"nbconvert", | |
"nbconvert-jsonld", | |
"nbdiffstream", | |
"nbdime", | |
"nbext-foo", | |
"nbext-unified", | |
"nbformat", | |
"nblogger", | |
"nbpresent", | |
"nbpresent-79", | |
"nbpresent-clean", | |
"nbpresent-continuum-theme", | |
"nbpresent-example", | |
"nbpresent-foo", | |
"nbpresent-reviews", | |
"nbviewer", | |
"nbviewer-foo", | |
"new-anaconda-server", | |
"new-bokeh", | |
"newrelic-python-agent", | |
"niobium", | |
"nosebook", | |
"notebook", | |
"notebook-pytest", | |
"notebooks", | |
"npm", | |
"npm-debug.log", | |
"npm-foo", | |
"numba-env", | |
"nvchecker", | |
"package.sh", | |
"pandas", | |
"pandas-rdfa-style", | |
"pgadmin4", | |
"phosphide", | |
"phosphor", | |
"phosphor-bokeh-demo", | |
"phosphor-foo", | |
"phosphor-jspy", | |
"pipfile-tomld", | |
"pivottable", | |
"plumberjack", | |
"powered-by-anaconda", | |
"project-as-build", | |
"project-empty-notebook", | |
"project-foo", | |
"project-runonly", | |
"projx-vignette", | |
"py-jsonapi", | |
"py-jsonapi-example", | |
"pydata-meetups", | |
"pydata-talk", | |
"PyPDF2", | |
"quiz", | |
"repo-intel", | |
"reproconda", | |
"rest_notebook", | |
"revealjs", | |
"robook", | |
"rstudio-foo", | |
"runonly-example", | |
"screeps", | |
"skyrim", | |
"small-treatise", | |
"snakebiz", | |
"so-you-want-to-host", | |
"socratea", | |
"sparkhead", | |
"spectoscropy_redux", | |
"sqlalchemy-jsonapi", | |
"staged-recipes", | |
"staged-recipes-tpot", | |
"svglab", | |
"svgpan", | |
"tablewidget", | |
"this-week-in-anaconda-server", | |
"traitlets", | |
"trial-in-a-box", | |
"typedoc", | |
"typeshed", | |
"ui-coding-challenge", | |
"unarchive-foo", | |
"underpy", | |
"Untitled.ipynb", | |
"uploadwidget", | |
"vagrant-anaconda-nb-extensions", | |
"vagrant-images", | |
"visicons", | |
"wakari-server", | |
"whatever-forever", | |
"widget-cookiecutter", | |
"widget-dateslider", | |
"widget-layoutre", | |
"widget-playground", | |
"widgetouch", | |
"wookiecutter", | |
"xz-foo", | |
"yamlmagic", | |
"youtubedl" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_2d460045efc0481a88a331ca41243b0c", | |
"value": [ | |
"anaconda-notebook-ui" | |
] | |
} | |
}, | |
"89d6c81ebf964f5789a5ccb34cb8fbdd": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"89ebfb0f5acf4772a84c52a7d730149f": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"8a6e73821cd840e4ae1438318beaae30": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"8aa054bf6f3948df8ba0dbae1bcf96a4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_a34154b7e8324f8b8b0492704dd1797a", | |
"value": [] | |
} | |
}, | |
"8b016c59d8dd4f6caba717dc7f1cd2e4": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"8b1f5ca3e26345b38744bc4e28301955": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"8b78cf26f14a453c853786cb858f0139": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"8b938ed607864dc7aa340d5bdbe82900": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_d3ce1c05b06a49ea8c4234b298343c2e", | |
"value": [] | |
} | |
}, | |
"8bbd2d5485804acc82b61194cc7ac7a7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_b2b762b4f8ac41b793b250931aa4ed7a", | |
"value": [] | |
} | |
}, | |
"8bd9c2a630c34ed582a68052e6ba3486": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"8bdae49a93124936861680dabf8c0200": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b", | |
"c" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_6821860ea81f4e979ba2d64fa69050ba", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"8bfe8dee8a22453d8d17646d7c529aff": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_1094c2c009e647c688fddc9dbff3635b", | |
"IPY_MODEL_08c38e4d097e4c5da054e176d81026ff" | |
], | |
"layout": "IPY_MODEL_ea5f4385fc99403c95f37309ed5bbc9f", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"8c021b556ae2447c9e1a75bdd4cfbfb8": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"a", | |
"b" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_677849d96ec1470ba9b2e7cf011cafab", | |
"value": [ | |
"a" | |
] | |
} | |
}, | |
"8cd3fb9cffbd494eafdff184b69ad6ac": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"display": "flex", | |
"flex": "1", | |
"flex_flow": "column", | |
"height": "160px" | |
} | |
}, | |
"8cdcff78db364e79859444b942a4b8f6": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"cx", | |
"cy", | |
"cz" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_e615bb6dbc884d77a371ebeb59c8288a", | |
"value": [] | |
} | |
}, | |
"8cdf1002e7de41bf9648f04ff732e534": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_790e97cd4d894996ad678eac345da2fb", | |
"IPY_MODEL_bf441ce1a46449129dedec837fab5000" | |
], | |
"layout": "IPY_MODEL_f8bb478bd3544e7285d17a560a56279f", | |
"value": [] | |
} | |
}, | |
"8d8598bb71b24698936d7eed82a927d7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "LayoutModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4" | |
} | |
}, | |
"8d9e903fd5b544e9a5326d07c9121176": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
".DS_Store", | |
".cache", | |
".ciocheck", | |
".ciocheck-integration", | |
".ciocheck-lint", | |
".ciocheck-test", | |
".ciocopyright", | |
".coverage", | |
".dockerignore", | |
".git", | |
".gitattributes", | |
".gitignore", | |
".ipynb_checkpoints", | |
".projectignore", | |
".projectignore.mine", | |
".travis.yml", | |
"README.md", | |
"_hosts.sh", | |
"_integration_spaces.sh", | |
"_integration_ui.sh", | |
"_launch_agent.sh", | |
"_launch_auth.sh", | |
"_launch_deploy.sh", | |
"_launch_dnsmasq.sh", | |
"_launch_kubernetes.sh", | |
"_launch_postgresql.sh", | |
"_launch_repo.sh", | |
"_launch_search.sh", | |
"_launch_spaces.sh", | |
"_launch_ui.sh", | |
"_mermaids", | |
"_notebooks", | |
"_trust_hosts.sh", | |
"_unit_ui.sh", | |
"anaconda-project-lock.yml", | |
"anaconda-project.yml", | |
"anaconda_enterprise", | |
"apb", | |
"apb.py", | |
"auth", | |
"auth_api", | |
"auth_escrow", | |
"auth_theme", | |
"build", | |
"ci_scripts", | |
"cli", | |
"cloudbuild.yaml", | |
"common", | |
"common_jsonapi", | |
"common_kubernetes_api", | |
"conda.recipe", | |
"data", | |
"deploy", | |
"docs", | |
"environment.yml", | |
"envs", | |
"example_projects", | |
"git_proxy", | |
"git_storage", | |
"htmlcov", | |
"installer", | |
"k8s_builder", | |
"mirror", | |
"object_storage", | |
"offline_docs", | |
"offline_mirror", | |
"platform_build", | |
"postgresql", | |
"readthedocs.yml", | |
"repository", | |
"search", | |
"search_api", | |
"spaces", | |
"storage", | |
"sync", | |
"table-of-contents.md", | |
"testbed", | |
"topologies", | |
"ui", | |
"ui-kit" | |
], | |
"_view_module_version": "~2.1.4", | |
"layout": "IPY_MODEL_dc1b712852ca4dff9eb525882930130e", | |
"value": [] | |
} | |
}, | |
"8dbdffdb2e844af88ae1ac844b0501d7": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "SelectMultipleModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_options_labels": [ | |
"dist/", | |
"node_modules/", | |
"CHANGELOG.md", | |
"LICENSE-MIT", | |
"README.md", | |
"package.json" | |
], | |
"_view_module_version": "~2.1.4", | |
"description": "node_modules", | |
"layout": "IPY_MODEL_8e363bf9e06a45688d4d6cb685fe5a2f", | |
"value": [ | |
"node_modules/" | |
] | |
} | |
}, | |
"8dda89d4fb88446fbd8819ae9972c057": { | |
"model_module": "jupyter-js-widgets", | |
"model_module_version": "~2.1.4", | |
"model_name": "BoxModel", | |
"state": { | |
"_model_module_version": "~2.1.4", | |
"_view_module_version": "~2.1.4", | |
"children": [ | |
"IPY_MODEL_22b4b9ff132b46bc801def313b867a71" | |
], | |
"layout": "IPY_MODEL_449f8f9431894994940f41556306a631", | |
"value": [ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
[ | |
"anaconda-notebook-ui" | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment