From 14efb6f3c8d80f6c821cf3945b44eed104916683 Mon Sep 17 00:00:00 2001 From: Norman Rzepka Date: Wed, 11 Oct 2023 19:04:36 +0200 Subject: [PATCH 1/2] DaskExecutor (#943) * adds DaskScheduler * upgrades * no ci for 3.8 * lazy import dask * updates * drop py3.7 support * lockfile * fixes? * future * fixes * fixes * fixes * fixes for 3.8 * update cassettes * ci * changelog and DaskExecutor.from_kwargs * fixes as_completed * refactor Executor type to protocol * fixes protocol * fixes * Update webknossos/Changelog.md Co-authored-by: Philipp Otto * Changelog --------- Co-authored-by: Philipp Otto --- .github/workflows/ci.yml | 12 +- cluster_tools/Changelog.md | 4 + cluster_tools/cluster_tools/__init__.py | 19 +- .../cluster_tools/executor_protocol.py | 59 + cluster_tools/cluster_tools/executors/dask.py | 128 ++ .../executors/multiprocessing_.py | 18 +- .../cluster_tools/executors/pickle_.py | 26 +- .../schedulers/cluster_executor.py | 10 +- .../cluster_tools/schedulers/kube.py | 3 +- cluster_tools/cluster_tools/schedulers/pbs.py | 4 +- cluster_tools/poetry.lock | 1091 ++++++--- cluster_tools/pyproject.toml | 5 +- cluster_tools/tests/test_all.py | 24 +- cluster_tools/tests/test_deref_main.py | 4 +- requirements.txt | 4 +- webknossos/Changelog.md | 2 + webknossos/__generate_client.py | 1 + webknossos/examples/learned_segmenter.py | 4 +- webknossos/examples/zarr_and_dask.py | 2 +- webknossos/poetry.lock | 2007 +++++++++-------- webknossos/pyproject.toml | 21 +- ...on_from_url[61c20205010000cc004a6356].yaml | 407 +--- ...annotation_from_url[LNir_A2-aCUzsoSL].yaml | 387 +--- .../test_bounding_box_roundtrip.yaml | 403 +--- .../test_examples/test_learned_segmenter.yaml | 365 +-- .../test_examples/test_remote_datasets.yaml | 1585 ++++--------- .../test_examples/test_upload_image_data.yaml | 211 +- .../test_examples/test_upload_tiff_stack.yaml | 245 +- .../test_examples/test_user_times.yaml | 26 +- .../test_annotation_info.yaml | 8 +- .../test_build_info.yaml | 10 +- ...urrent_user_info_and_user_logged_time.yaml | 12 +- .../test_dataset_info.yaml | 8 +- .../test_datastore_list.yaml | 4 +- .../test_generate_token_for_data_store.yaml | 4 +- .../test_generated_client/test_health.yaml | 4 +- .../test_generated_client/test_user_list.yaml | 8 +- .../test_context/test_user_organization.yaml | 8 +- .../test_user/test_get_all_managed_users.yaml | 8 +- .../test_user/test_get_current_user.yaml | 8 +- .../test_user/test_get_logged_time.yaml | 12 +- .../test_remote_dataset.yaml | 976 +++----- .../test_upload_download_roundtrip.yaml | 493 ++-- .../test_url_download[93zLg9U9vJ3c_UWp].yaml | 12 +- ...test_url_download[l4_sample_dev-view].yaml | 8 +- .../test_url_download[l4_sample_dev].yaml | 8 +- ..._download[l4_sample_dev_sharing-view].yaml | 8 +- ...est_url_open_remote[93zLg9U9vJ3c_UWp].yaml | 156 +- ...t_url_open_remote[l4_sample_dev-view].yaml | 132 +- .../test_url_open_remote[l4_sample_dev].yaml | 88 +- ...en_remote[l4_sample_dev_sharing-view].yaml | 152 +- webknossos/tests/test_examples.py | 4 + .../webknossos/annotation/annotation.py | 2 +- webknossos/webknossos/cli/convert_raw.py | 3 +- webknossos/webknossos/cli/convert_zarr.py | 3 +- .../webknossos/cli/export_wkw_as_tiff.py | 1 + webknossos/webknossos/dataset/dataset.py | 1 + webknossos/webknossos/dataset/mag_view.py | 4 +- webknossos/webknossos/dataset/view.py | 9 +- webknossos/webknossos/utils.py | 11 +- 60 files changed, 3532 insertions(+), 5710 deletions(-) create mode 100644 cluster_tools/cluster_tools/executor_protocol.py create mode 100644 cluster_tools/cluster_tools/executors/dask.py diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df95676b2..41a9972be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,15 +94,15 @@ jobs: poetry install - name: Check typing - if: ${{ matrix.executors == 'multiprocessing' }} + if: ${{ matrix.executors == 'multiprocessing' && matrix.python-version == '3.11' }} run: ./typecheck.sh - name: Check formatting - if: ${{ matrix.executors == 'multiprocessing' }} + if: ${{ matrix.executors == 'multiprocessing' && matrix.python-version == '3.11' }} run: ./format.sh check - name: Lint code - if: ${{ matrix.executors == 'multiprocessing' }} + if: ${{ matrix.executors == 'multiprocessing' && matrix.python-version == '3.11' }} run: ./lint.sh - name: Run multiprocessing tests @@ -160,15 +160,15 @@ jobs: poetry install --extras all - name: Check formatting - if: matrix.group == 1 + if: ${{ matrix.group == 1 && matrix.python-version == '3.11' }} run: ./format.sh check - name: Lint code - if: matrix.group == 1 + if: ${{ matrix.group == 1 && matrix.python-version == '3.11' }} run: ./lint.sh - name: Check typing - if: matrix.group == 1 + if: ${{ matrix.group == 1 && matrix.python-version == '3.11' }} run: ./typecheck.sh - name: Python tests diff --git a/cluster_tools/Changelog.md b/cluster_tools/Changelog.md index d5cd3c648..a9ff6f226 100644 --- a/cluster_tools/Changelog.md +++ b/cluster_tools/Changelog.md @@ -10,10 +10,14 @@ For upgrade instructions, please check the respective *Breaking Changes* section [Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.13.7...HEAD) ### Breaking Changes +- Dropped support for Python 3.7. [#943](https://github.com/scalableminds/webknossos-libs/pull/943) +- Please use `Executor.as_completed` instead of `concurrent.futures.as_completed` because the latter will not work for `DaskExecutor` futures. [#943](https://github.com/scalableminds/webknossos-libs/pull/943) ### Added +- Added `DaskScheduler` (only Python >= 3.9). [#943](https://github.com/scalableminds/webknossos-libs/pull/943) ### Changed +- The exported `Executor` type is now implemented as a protocol. [#943](https://github.com/scalableminds/webknossos-libs/pull/943) ### Fixed diff --git a/cluster_tools/cluster_tools/__init__.py b/cluster_tools/cluster_tools/__init__.py index e698c9276..b2dfe159d 100644 --- a/cluster_tools/cluster_tools/__init__.py +++ b/cluster_tools/cluster_tools/__init__.py @@ -1,7 +1,7 @@ -from typing import Any, Union, overload - -from typing_extensions import Literal +from typing import Any, Literal, overload +from cluster_tools.executor_protocol import Executor +from cluster_tools.executors.dask import DaskExecutor from cluster_tools.executors.debug_sequential import DebugSequentialExecutor from cluster_tools.executors.multiprocessing_ import MultiprocessingExecutor from cluster_tools.executors.pickle_ import PickleExecutor @@ -70,6 +70,11 @@ def get_executor( ... +@overload +def get_executor(environment: Literal["dask"], **kwargs: Any) -> DaskExecutor: + ... + + @overload def get_executor( environment: Literal["multiprocessing"], **kwargs: Any @@ -105,6 +110,11 @@ def get_executor(environment: str, **kwargs: Any) -> "Executor": return PBSExecutor(**kwargs) elif environment == "kubernetes": return KubernetesExecutor(**kwargs) + elif environment == "dask": + if "client" in kwargs: + return DaskExecutor(kwargs["client"]) + else: + return DaskExecutor.from_kwargs(**kwargs) elif environment == "multiprocessing": global did_start_test_multiprocessing if not did_start_test_multiprocessing: @@ -119,6 +129,3 @@ def get_executor(environment: str, **kwargs: Any) -> "Executor": elif environment == "test_pickling": return PickleExecutor(**kwargs) raise Exception("Unknown executor: {}".format(environment)) - - -Executor = Union[ClusterExecutor, MultiprocessingExecutor] diff --git a/cluster_tools/cluster_tools/executor_protocol.py b/cluster_tools/cluster_tools/executor_protocol.py new file mode 100644 index 000000000..4cc65bf5b --- /dev/null +++ b/cluster_tools/cluster_tools/executor_protocol.py @@ -0,0 +1,59 @@ +from concurrent.futures import Future +from os import PathLike +from typing import ( + Callable, + ContextManager, + Iterable, + Iterator, + List, + Optional, + Protocol, + TypeVar, +) + +from typing_extensions import ParamSpec + +_T = TypeVar("_T") +_P = ParamSpec("_P") +_S = TypeVar("_S") + + +class Executor(Protocol, ContextManager["Executor"]): + @classmethod + def as_completed(cls, futures: List["Future[_T]"]) -> Iterator["Future[_T]"]: + ... + + def submit( + self, + __fn: Callable[_P, _T], + /, + *args: _P.args, + **kwargs: _P.kwargs, + ) -> "Future[_T]": + ... + + def map_unordered(self, fn: Callable[[_S], _T], args: Iterable[_S]) -> Iterator[_T]: + ... + + def map_to_futures( + self, + fn: Callable[[_S], _T], + args: Iterable[_S], + output_pickle_path_getter: Optional[Callable[[_S], PathLike]] = None, + ) -> List["Future[_T]"]: + ... + + def map( + self, + fn: Callable[[_S], _T], + iterables: Iterable[_S], + timeout: Optional[float] = None, + chunksize: Optional[int] = None, + ) -> Iterator[_T]: + ... + + def forward_log(self, fut: "Future[_T]") -> _T: + ... + + def shutdown(self, wait: bool = True, *, cancel_futures: bool = False) -> None: + ... diff --git a/cluster_tools/cluster_tools/executors/dask.py b/cluster_tools/cluster_tools/executors/dask.py new file mode 100644 index 000000000..eb46cb4ee --- /dev/null +++ b/cluster_tools/cluster_tools/executors/dask.py @@ -0,0 +1,128 @@ +import os +from concurrent import futures +from concurrent.futures import Future +from functools import partial +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Iterable, + Iterator, + List, + Optional, + TypeVar, + cast, +) + +from typing_extensions import ParamSpec + +from cluster_tools._utils.warning import enrich_future_with_uncaught_warning +from cluster_tools.executors.multiprocessing_ import CFutDict, MultiprocessingExecutor + +if TYPE_CHECKING: + from distributed import Client + +_T = TypeVar("_T") +_P = ParamSpec("_P") +_S = TypeVar("_S") + + +class DaskExecutor(futures.Executor): + client: "Client" + + def __init__( + self, + client: "Client", + ) -> None: + self.client = client + + @classmethod + def from_kwargs( + cls, + **kwargs: Any, + ) -> "DaskExecutor": + from distributed import Client + + return cls(Client(**kwargs)) + + @classmethod + def as_completed(cls, futures: List["Future[_T]"]) -> Iterator["Future[_T]"]: + from distributed import as_completed + + return as_completed(futures) + + def submit( # type: ignore[override] + self, + __fn: Callable[_P, _T], + *args: _P.args, + **kwargs: _P.kwargs, + ) -> "Future[_T]": + if "__cfut_options" in kwargs: + output_pickle_path = cast(CFutDict, kwargs["__cfut_options"])[ + "output_pickle_path" + ] + del kwargs["__cfut_options"] + + __fn = partial( + MultiprocessingExecutor._execute_and_persist_function, + output_pickle_path, + __fn, + ) + fut = self.client.submit(partial(__fn, *args, **kwargs)) + + enrich_future_with_uncaught_warning(fut) + return fut + + def map_unordered(self, fn: Callable[[_S], _T], args: Iterable[_S]) -> Iterator[_T]: + futs: List["Future[_T]"] = self.map_to_futures(fn, args) + + # Return a separate generator to avoid that map_unordered + # is executed lazily (otherwise, jobs would be submitted + # lazily, as well). + def result_generator() -> Iterator: + for fut in self.as_completed(futs): + yield fut.result() + + return result_generator() + + def map_to_futures( + self, + fn: Callable[[_S], _T], + args: Iterable[_S], # TODO change: allow more than one arg per call + output_pickle_path_getter: Optional[Callable[[_S], os.PathLike]] = None, + ) -> List["Future[_T]"]: + if output_pickle_path_getter is not None: + futs = [ + self.submit( # type: ignore[call-arg] + fn, + arg, + __cfut_options={ + "output_pickle_path": output_pickle_path_getter(arg) + }, + ) + for arg in args + ] + else: + futs = [self.submit(fn, arg) for arg in args] + + return futs + + def map( # type: ignore[override] + self, + fn: Callable[[_S], _T], + iterables: Iterable[_S], + timeout: Optional[float] = None, + chunksize: Optional[int] = None, + ) -> Iterator[_T]: + if chunksize is None: + chunksize = 1 + return super().map(fn, iterables, timeout=timeout, chunksize=chunksize) + + def forward_log(self, fut: "Future[_T]") -> _T: + return fut.result() + + def shutdown(self, wait: bool = True, *, cancel_futures: bool = False) -> None: + if wait: + self.client.close(timeout=60 * 60 * 24) + else: + self.client.close() diff --git a/cluster_tools/cluster_tools/executors/multiprocessing_.py b/cluster_tools/cluster_tools/executors/multiprocessing_.py index 4532c186a..5f25a7297 100644 --- a/cluster_tools/cluster_tools/executors/multiprocessing_.py +++ b/cluster_tools/cluster_tools/executors/multiprocessing_.py @@ -16,11 +16,12 @@ List, Optional, Tuple, + TypedDict, TypeVar, cast, ) -from typing_extensions import ParamSpec, TypedDict +from typing_extensions import ParamSpec from cluster_tools._utils import pickling from cluster_tools._utils.multiprocessing_logging_handler import ( @@ -85,6 +86,10 @@ def __init__( else: self._mp_logging_handler_pool = _MultiprocessingLoggingHandlerPool() + @classmethod + def as_completed(cls, futs: List["Future[_T]"]) -> Iterator["Future[_T]"]: + return futures.as_completed(futs) + def submit( # type: ignore[override] self, __fn: Callable[_P, _T], @@ -143,6 +148,17 @@ def submit( # type: ignore[override] enrich_future_with_uncaught_warning(fut) return fut + def map( # type: ignore[override] + self, + fn: Callable[[_S], _T], + iterables: Iterable[_S], + timeout: Optional[float] = None, + chunksize: Optional[int] = None, + ) -> Iterator[_T]: + if chunksize is None: + chunksize = 1 + return super().map(fn, iterables, timeout=timeout, chunksize=chunksize) + def _submit_via_io( self, __fn: Callable[_P, _T], diff --git a/cluster_tools/cluster_tools/executors/pickle_.py b/cluster_tools/cluster_tools/executors/pickle_.py index 9e837255a..42442db31 100644 --- a/cluster_tools/cluster_tools/executors/pickle_.py +++ b/cluster_tools/cluster_tools/executors/pickle_.py @@ -1,5 +1,8 @@ from concurrent.futures import Future -from typing import Any, Callable, TypeVar +from functools import partial +from typing import Callable, TypeVar + +from typing_extensions import ParamSpec from cluster_tools._utils import pickling from cluster_tools.executors.multiprocessing_ import MultiprocessingExecutor @@ -7,13 +10,19 @@ # The module name includes a _-suffix to avoid name clashes with the standard library pickle module. _T = TypeVar("_T") +_P = ParamSpec("_P") +_S = TypeVar("_S") -def _pickle_identity(obj: _T) -> _T: +def _pickle_identity(obj: _S) -> _S: return pickling.loads(pickling.dumps(obj)) -def _pickle_identity_executor(fn: Callable[..., _T], *args: Any, **kwargs: Any) -> _T: +def _pickle_identity_executor( + fn: Callable[_P, _T], + *args: _P.args, + **kwargs: _P.kwargs, +) -> _T: result = fn(*args, **kwargs) return _pickle_identity(result) @@ -27,13 +36,16 @@ class PickleExecutor(MultiprocessingExecutor): def submit( # type: ignore[override] self, - fn: Callable[..., _T], - *args: Any, - **kwargs: Any, + fn: Callable[_P, _T], + /, + *args: _P.args, + **kwargs: _P.kwargs, ) -> "Future[_T]": (fn_pickled, args_pickled, kwargs_pickled) = _pickle_identity( (fn, args, kwargs) ) return super().submit( - _pickle_identity_executor, fn_pickled, *args_pickled, **kwargs_pickled + partial(_pickle_identity_executor, fn_pickled), + *args_pickled, + **kwargs_pickled, ) diff --git a/cluster_tools/cluster_tools/schedulers/cluster_executor.py b/cluster_tools/cluster_tools/schedulers/cluster_executor.py index e5945f142..ce3627bb6 100644 --- a/cluster_tools/cluster_tools/schedulers/cluster_executor.py +++ b/cluster_tools/cluster_tools/schedulers/cluster_executor.py @@ -15,6 +15,7 @@ Iterable, Iterator, List, + Literal, Optional, Tuple, Type, @@ -23,7 +24,7 @@ cast, ) -from typing_extensions import Literal, ParamSpec +from typing_extensions import ParamSpec from cluster_tools._utils import pickling from cluster_tools._utils.file_wait_thread import FileWaitThread @@ -140,6 +141,10 @@ def __init__( if "logging_setup_fn" in kwargs: self.meta_data["logging_setup_fn"] = kwargs["logging_setup_fn"] + @classmethod + def as_completed(cls, futs: List["Future[_T]"]) -> Iterator["Future[_T]"]: + return futures.as_completed(futs) + @classmethod @abstractmethod def executor_key(cls) -> str: @@ -593,10 +598,9 @@ def shutdown(self, wait: bool = True, cancel_futures: bool = True) -> None: pass self.files_to_clean_up = [] - # TODO: args should be *iterables, this would be a breaking change! def map( # type: ignore[override] self, - fn: Callable[_P, _T], + fn: Callable[[_S], _T], args: Iterable[Any], timeout: Optional[float] = None, chunksize: Optional[int] = None, diff --git a/cluster_tools/cluster_tools/schedulers/kube.py b/cluster_tools/cluster_tools/schedulers/kube.py index aa1d229dc..bafe484eb 100644 --- a/cluster_tools/cluster_tools/schedulers/kube.py +++ b/cluster_tools/cluster_tools/schedulers/kube.py @@ -4,12 +4,11 @@ import sys from concurrent.futures import Future from pathlib import Path -from typing import Any, Dict, List, Optional, Tuple +from typing import Any, Dict, List, Literal, Optional, Tuple from uuid import uuid4 import kubernetes import kubernetes.client.models as kubernetes_models -from typing_extensions import Literal from cluster_tools.schedulers.cluster_executor import ClusterExecutor diff --git a/cluster_tools/cluster_tools/schedulers/pbs.py b/cluster_tools/cluster_tools/schedulers/pbs.py index 4c153ab86..1aaf18482 100644 --- a/cluster_tools/cluster_tools/schedulers/pbs.py +++ b/cluster_tools/cluster_tools/schedulers/pbs.py @@ -4,9 +4,7 @@ import os import re from concurrent.futures import Future -from typing import Any, Dict, List, Optional, Tuple, Union - -from typing_extensions import Literal +from typing import Any, Dict, List, Literal, Optional, Tuple, Union from cluster_tools._utils.call import call, chcall from cluster_tools._utils.string_ import random_string diff --git a/cluster_tools/poetry.lock b/cluster_tools/poetry.lock index 2eaad71dc..1476c9f91 100644 --- a/cluster_tools/poetry.lock +++ b/cluster_tools/poetry.lock @@ -1,19 +1,18 @@ -# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. [[package]] name = "astroid" -version = "2.14.2" +version = "2.15.7" description = "An abstract syntax tree for Python with inference support." optional = false python-versions = ">=3.7.2" files = [ - {file = "astroid-2.14.2-py3-none-any.whl", hash = "sha256:0e0e3709d64fbffd3037e4ff403580550f14471fd3eaae9fa11cc9a5c7901153"}, - {file = "astroid-2.14.2.tar.gz", hash = "sha256:a3cf9f02c53dd259144a7e8f3ccd75d67c9a8c716ef183e0c1f291bc5d7bb3cf"}, + {file = "astroid-2.15.7-py3-none-any.whl", hash = "sha256:958f280532e36ca84a13023f15cb1556fb6792d193acb87e1f3ca536b6fa6bd2"}, + {file = "astroid-2.15.7.tar.gz", hash = "sha256:c522f2832a900e27a7d284b9b6ef670d2495f760ede3c8c0b004a5641d3c5987"}, ] [package.dependencies] lazy-object-proxy = ">=1.4.0" -typed-ast = {version = ">=1.4.0,<2.0", markers = "implementation_name == \"cpython\" and python_version < \"3.8\""} typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""} wrapt = [ {version = ">=1.11,<2", markers = "python_version < \"3.11\""}, @@ -22,71 +21,50 @@ wrapt = [ [[package]] name = "asttokens" -version = "2.2.1" +version = "2.4.0" description = "Annotate AST trees with source code positions" optional = false python-versions = "*" files = [ - {file = "asttokens-2.2.1-py2.py3-none-any.whl", hash = "sha256:6b0ac9e93fb0335014d382b8fa9b3afa7df546984258005da0b9e7095b3deb1c"}, - {file = "asttokens-2.2.1.tar.gz", hash = "sha256:4622110b2a6f30b77e1473affaa97e711bc2f07d3f10848420ff1898edbe94f3"}, + {file = "asttokens-2.4.0-py2.py3-none-any.whl", hash = "sha256:cf8fc9e61a86461aa9fb161a14a0841a03c405fa829ac6b202670b3495d2ce69"}, + {file = "asttokens-2.4.0.tar.gz", hash = "sha256:2e0171b991b2c959acc6c49318049236844a5da1d65ba2672c4880c1c894834e"}, ] [package.dependencies] -six = "*" +six = ">=1.12.0" [package.extras] test = ["astroid", "pytest"] -[[package]] -name = "attrs" -version = "22.2.0" -description = "Classes Without Boilerplate" -optional = false -python-versions = ">=3.6" -files = [ - {file = "attrs-22.2.0-py3-none-any.whl", hash = "sha256:29e95c7f6778868dbd49170f98f8818f78f3dc5e0e37c0b1f474e3561b240836"}, - {file = "attrs-22.2.0.tar.gz", hash = "sha256:c9227bfc2f01993c03f68db37d1d15c9690188323c067c641f1a35ca58185f99"}, -] - -[package.extras] -cov = ["attrs[tests]", "coverage-enable-subprocess", "coverage[toml] (>=5.3)"] -dev = ["attrs[docs,tests]"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope.interface"] -tests = ["attrs[tests-no-zope]", "zope.interface"] -tests-no-zope = ["cloudpickle", "cloudpickle", "hypothesis", "hypothesis", "mypy (>=0.971,<0.990)", "mypy (>=0.971,<0.990)", "pympler", "pympler", "pytest (>=4.3.0)", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-mypy-plugins", "pytest-xdist[psutil]", "pytest-xdist[psutil]"] - [[package]] name = "black" -version = "23.3.0" +version = "23.9.1" description = "The uncompromising code formatter." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "black-23.3.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:0945e13506be58bf7db93ee5853243eb368ace1c08a24c65ce108986eac65915"}, - {file = "black-23.3.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:67de8d0c209eb5b330cce2469503de11bca4085880d62f1628bd9972cc3366b9"}, - {file = "black-23.3.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:7c3eb7cea23904399866c55826b31c1f55bbcd3890ce22ff70466b907b6775c2"}, - {file = "black-23.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32daa9783106c28815d05b724238e30718f34155653d4d6e125dc7daec8e260c"}, - {file = "black-23.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:35d1381d7a22cc5b2be2f72c7dfdae4072a3336060635718cc7e1ede24221d6c"}, - {file = "black-23.3.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:a8a968125d0a6a404842fa1bf0b349a568634f856aa08ffaff40ae0dfa52e7c6"}, - {file = "black-23.3.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:c7ab5790333c448903c4b721b59c0d80b11fe5e9803d8703e84dcb8da56fec1b"}, - {file = "black-23.3.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:a6f6886c9869d4daae2d1715ce34a19bbc4b95006d20ed785ca00fa03cba312d"}, - {file = "black-23.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f3c333ea1dd6771b2d3777482429864f8e258899f6ff05826c3a4fcc5ce3f70"}, - {file = "black-23.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:11c410f71b876f961d1de77b9699ad19f939094c3a677323f43d7a29855fe326"}, - {file = "black-23.3.0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:1d06691f1eb8de91cd1b322f21e3bfc9efe0c7ca1f0e1eb1db44ea367dff656b"}, - {file = "black-23.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50cb33cac881766a5cd9913e10ff75b1e8eb71babf4c7104f2e9c52da1fb7de2"}, - {file = "black-23.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:e114420bf26b90d4b9daa597351337762b63039752bdf72bf361364c1aa05925"}, - {file = "black-23.3.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:48f9d345675bb7fbc3dd85821b12487e1b9a75242028adad0333ce36ed2a6d27"}, - {file = "black-23.3.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:714290490c18fb0126baa0fca0a54ee795f7502b44177e1ce7624ba1c00f2331"}, - {file = "black-23.3.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:064101748afa12ad2291c2b91c960be28b817c0c7eaa35bec09cc63aa56493c5"}, - {file = "black-23.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:562bd3a70495facf56814293149e51aa1be9931567474993c7942ff7d3533961"}, - {file = "black-23.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:e198cf27888ad6f4ff331ca1c48ffc038848ea9f031a3b40ba36aced7e22f2c8"}, - {file = "black-23.3.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:3238f2aacf827d18d26db07524e44741233ae09a584273aa059066d644ca7b30"}, - {file = "black-23.3.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:f0bd2f4a58d6666500542b26354978218a9babcdc972722f4bf90779524515f3"}, - {file = "black-23.3.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:92c543f6854c28a3c7f39f4d9b7694f9a6eb9d3c5e2ece488c327b6e7ea9b266"}, - {file = "black-23.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a150542a204124ed00683f0db1f5cf1c2aaaa9cc3495b7a3b5976fb136090ab"}, - {file = "black-23.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:6b39abdfb402002b8a7d030ccc85cf5afff64ee90fa4c5aebc531e3ad0175ddb"}, - {file = "black-23.3.0-py3-none-any.whl", hash = "sha256:ec751418022185b0c1bb7d7736e6933d40bbb14c14a0abcf9123d1b159f98dd4"}, - {file = "black-23.3.0.tar.gz", hash = "sha256:1c7b8d606e728a41ea1ccbd7264677e494e87cf630e399262ced92d4a8dac940"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71"}, + {file = "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7"}, + {file = "black-23.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186"}, + {file = "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f"}, + {file = "black-23.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204"}, + {file = "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377"}, + {file = "black-23.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393"}, + {file = "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9"}, + {file = "black-23.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f"}, + {file = "black-23.9.1-py3-none-any.whl", hash = "sha256:6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9"}, + {file = "black-23.9.1.tar.gz", hash = "sha256:24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d"}, ] [package.dependencies] @@ -96,8 +74,7 @@ packaging = ">=22.0" pathspec = ">=0.9.0" platformdirs = ">=2" tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} -typed-ast = {version = ">=1.4.2", markers = "python_version < \"3.8\" and implementation_name == \"cpython\""} -typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""} +typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} [package.extras] colorama = ["colorama (>=0.4.3)"] @@ -107,54 +84,134 @@ uvloop = ["uvloop (>=0.15.2)"] [[package]] name = "cachetools" -version = "3.1.1" +version = "5.3.1" description = "Extensible memoizing collections and decorators" optional = false -python-versions = "*" +python-versions = ">=3.7" files = [ - {file = "cachetools-3.1.1-py2.py3-none-any.whl", hash = "sha256:428266a1c0d36dc5aca63a2d7c5942e88c2c898d72139fca0e97fdd2380517ae"}, - {file = "cachetools-3.1.1.tar.gz", hash = "sha256:8ea2d3ce97850f31e4a08b0e2b5e6c34997d7216a9d2c98e0f3978630d4da69a"}, + {file = "cachetools-5.3.1-py3-none-any.whl", hash = "sha256:95ef631eeaea14ba2e36f06437f36463aac3a096799e876ee55e5cdccb102590"}, + {file = "cachetools-5.3.1.tar.gz", hash = "sha256:dce83f2d9b4e1f732a8cd44af8e8fab2dbe46201467fc98b3ef8f269092bf62b"}, ] [[package]] name = "certifi" -version = "2022.12.7" +version = "2023.7.22" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"}, - {file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, ] [[package]] name = "charset-normalizer" -version = "2.0.12" +version = "3.2.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false -python-versions = ">=3.5.0" +python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-2.0.12.tar.gz", hash = "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"}, - {file = "charset_normalizer-2.0.12-py3-none-any.whl", hash = "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"}, + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, ] -[package.extras] -unicode-backport = ["unicodedata2"] - [[package]] name = "click" -version = "8.1.3" +version = "8.1.7" description = "Composable command line interface toolkit" optional = false python-versions = ">=3.7" files = [ - {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, - {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, ] [package.dependencies] colorama = {version = "*", markers = "platform_system == \"Windows\""} -importlib-metadata = {version = "*", markers = "python_version < \"3.8\""} + +[[package]] +name = "cloudpickle" +version = "2.2.1" +description = "Extended pickling support for Python objects" +optional = false +python-versions = ">=3.6" +files = [ + {file = "cloudpickle-2.2.1-py3-none-any.whl", hash = "sha256:61f594d1f4c295fa5cd9014ceb3a1fc4a70b0de1164b94fbc2d854ccba056f9f"}, + {file = "cloudpickle-2.2.1.tar.gz", hash = "sha256:d89684b8de9e34a2a43b3460fbca07d09d6e25ce858df4d5a44240403b6178f5"}, +] [[package]] name = "colorama" @@ -167,29 +224,86 @@ files = [ {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, ] +[[package]] +name = "dask" +version = "2023.9.2" +description = "Parallel PyData with Task Scheduling" +optional = false +python-versions = ">=3.9" +files = [ + {file = "dask-2023.9.2-py3-none-any.whl", hash = "sha256:5742bc3752a8caad1c8bbb24aa2986424c73c4c819d5ac5a9544c6f373d0094b"}, + {file = "dask-2023.9.2.tar.gz", hash = "sha256:34e04ed79870cd01119217562f417c6ce575b10fb8fdcd866e9c5cd10c088944"}, +] + +[package.dependencies] +click = ">=8.0" +cloudpickle = ">=1.5.0" +fsspec = ">=2021.09.0" +importlib-metadata = ">=4.13.0" +packaging = ">=20.0" +partd = ">=1.2.0" +pyyaml = ">=5.3.1" +toolz = ">=0.10.0" + +[package.extras] +array = ["numpy (>=1.21)"] +complete = ["dask[array,dataframe,diagnostics,distributed]", "lz4 (>=4.3.2)", "pyarrow (>=7.0)"] +dataframe = ["dask[array]", "pandas (>=1.3)"] +diagnostics = ["bokeh (>=2.4.2)", "jinja2 (>=2.10.3)"] +distributed = ["distributed (==2023.9.2)"] +test = ["pandas[test]", "pre-commit", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-timeout", "pytest-xdist"] + [[package]] name = "dill" -version = "0.3.6" -description = "serialize all of python" +version = "0.3.7" +description = "serialize all of Python" optional = false python-versions = ">=3.7" files = [ - {file = "dill-0.3.6-py3-none-any.whl", hash = "sha256:a07ffd2351b8c678dfc4a856a3005f8067aea51d6ba6c700796a4d9e280f39f0"}, - {file = "dill-0.3.6.tar.gz", hash = "sha256:e5db55f3687856d8fbdab002ed78544e1c4559a130302693d839dfe8f93f2373"}, + {file = "dill-0.3.7-py3-none-any.whl", hash = "sha256:76b122c08ef4ce2eedcd4d1abd8e641114bfc6c2867f49f3c41facf65bf19f5e"}, + {file = "dill-0.3.7.tar.gz", hash = "sha256:cc1c8b182eb3013e24bd475ff2e9295af86c1a38eb1aff128dac8962a9ce3c03"}, ] [package.extras] graph = ["objgraph (>=1.7.2)"] +[[package]] +name = "distributed" +version = "2023.9.2" +description = "Distributed scheduler for Dask" +optional = false +python-versions = ">=3.9" +files = [ + {file = "distributed-2023.9.2-py3-none-any.whl", hash = "sha256:c2adf3b803599e8cff40034abf3dcd8470ef0678f6ae5a0d23c2ffd55fc0e0ca"}, + {file = "distributed-2023.9.2.tar.gz", hash = "sha256:b76b43be6a297c6cc6dc4eac7f5a05a8c6834aaf025ed37395d1d830448d540e"}, +] + +[package.dependencies] +click = ">=8.0" +cloudpickle = ">=1.5.0" +dask = "2023.9.2" +jinja2 = ">=2.10.3" +locket = ">=1.0.0" +msgpack = ">=1.0.0" +packaging = ">=20.0" +psutil = ">=5.7.2" +pyyaml = ">=5.3.1" +sortedcontainers = ">=2.0.5" +tblib = ">=1.6.0" +toolz = ">=0.10.0" +tornado = ">=6.0.4" +urllib3 = ">=1.24.3" +zict = ">=3.0.0" + [[package]] name = "exceptiongroup" -version = "1.1.0" +version = "1.1.3" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.1.0-py3-none-any.whl", hash = "sha256:327cbda3da756e2de031a3107b81ab7b3770a602c4d16ca618298c526f4bec1e"}, - {file = "exceptiongroup-1.1.0.tar.gz", hash = "sha256:bcb67d800a4497e1b404c2dd44fca47d3b7a5e5433dbab67f96c1a685cdfdf23"}, + {file = "exceptiongroup-1.1.3-py3-none-any.whl", hash = "sha256:343280667a4585d195ca1cf9cef84a4e178c4b6cf2274caef9859782b567d5e3"}, + {file = "exceptiongroup-1.1.3.tar.gz", hash = "sha256:097acd85d473d75af5bb98e41b61ff7fe35efe6675e4f9370ec6ec5126d160e9"}, ] [package.extras] @@ -209,29 +323,64 @@ files = [ [package.extras] tests = ["asttokens", "littleutils", "pytest", "rich"] +[[package]] +name = "fsspec" +version = "2023.9.2" +description = "File-system specification" +optional = false +python-versions = ">=3.8" +files = [ + {file = "fsspec-2023.9.2-py3-none-any.whl", hash = "sha256:603dbc52c75b84da501b9b2ec8c11e1f61c25984c4a0dda1f129ef391fbfc9b4"}, + {file = "fsspec-2023.9.2.tar.gz", hash = "sha256:80bfb8c70cc27b2178cc62a935ecf242fc6e8c3fb801f9c571fc01b1e715ba7d"}, +] + +[package.extras] +abfs = ["adlfs"] +adl = ["adlfs"] +arrow = ["pyarrow (>=1)"] +dask = ["dask", "distributed"] +devel = ["pytest", "pytest-cov"] +dropbox = ["dropbox", "dropboxdrivefs", "requests"] +full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "dask", "distributed", "dropbox", "dropboxdrivefs", "fusepy", "gcsfs", "libarchive-c", "ocifs", "panel", "paramiko", "pyarrow (>=1)", "pygit2", "requests", "s3fs", "smbprotocol", "tqdm"] +fuse = ["fusepy"] +gcs = ["gcsfs"] +git = ["pygit2"] +github = ["requests"] +gs = ["gcsfs"] +gui = ["panel"] +hdfs = ["pyarrow (>=1)"] +http = ["aiohttp (!=4.0.0a0,!=4.0.0a1)", "requests"] +libarchive = ["libarchive-c"] +oci = ["ocifs"] +s3 = ["s3fs"] +sftp = ["paramiko"] +smb = ["smbprotocol"] +ssh = ["paramiko"] +tqdm = ["tqdm"] + [[package]] name = "google-auth" -version = "2.16.1" +version = "2.23.0" description = "Google Authentication Library" optional = false -python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*" +python-versions = ">=3.7" files = [ - {file = "google-auth-2.16.1.tar.gz", hash = "sha256:5fd170986bce6bfd7bb5c845c4b8362edb1e0cba901e062196e83f8bb5d5d32c"}, - {file = "google_auth-2.16.1-py2.py3-none-any.whl", hash = "sha256:75d76ea857df65938e1f71dcbcd7d0cd48e3f80b34b8870ba229c9292081f7ef"}, + {file = "google-auth-2.23.0.tar.gz", hash = "sha256:753a26312e6f1eaeec20bc6f2644a10926697da93446e1f8e24d6d32d45a922a"}, + {file = "google_auth-2.23.0-py2.py3-none-any.whl", hash = "sha256:2cec41407bd1e207f5b802638e32bb837df968bb5c05f413d0fa526fac4cf7a7"}, ] [package.dependencies] cachetools = ">=2.0.0,<6.0" pyasn1-modules = ">=0.2.1" -rsa = {version = ">=3.1.4,<5", markers = "python_version >= \"3.6\""} -six = ">=1.9.0" +rsa = ">=3.1.4,<5" +urllib3 = "<2.0" [package.extras] -aiohttp = ["aiohttp (>=3.6.2,<4.0.0dev)", "requests (>=2.20.0,<3.0.0dev)"] +aiohttp = ["aiohttp (>=3.6.2,<4.0.0.dev0)", "requests (>=2.20.0,<3.0.0.dev0)"] enterprise-cert = ["cryptography (==36.0.2)", "pyopenssl (==22.0.0)"] pyopenssl = ["cryptography (>=38.0.3)", "pyopenssl (>=20.0.0)"] reauth = ["pyu2f (>=0.1.5)"] -requests = ["requests (>=2.20.0,<3.0.0dev)"] +requests = ["requests (>=2.20.0,<3.0.0.dev0)"] [[package]] name = "icecream" @@ -263,23 +412,22 @@ files = [ [[package]] name = "importlib-metadata" -version = "6.0.0" +version = "6.8.0" description = "Read metadata from Python packages" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "importlib_metadata-6.0.0-py3-none-any.whl", hash = "sha256:7efb448ec9a5e313a57655d35aa54cd3e01b7e1fbcf72dce1bf06119420f5bad"}, - {file = "importlib_metadata-6.0.0.tar.gz", hash = "sha256:e354bedeb60efa6affdcc8ae121b73544a7aa74156d047311948f6d711cd378d"}, + {file = "importlib_metadata-6.8.0-py3-none-any.whl", hash = "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb"}, + {file = "importlib_metadata-6.8.0.tar.gz", hash = "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743"}, ] [package.dependencies] -typing-extensions = {version = ">=3.6.4", markers = "python_version < \"3.8\""} zipp = ">=0.5" [package.extras] docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] perf = ["ipython"] -testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)"] +testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"] [[package]] name = "iniconfig" @@ -294,40 +442,57 @@ files = [ [[package]] name = "isort" -version = "5.11.5" +version = "5.12.0" description = "A Python utility / library to sort Python imports." optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" files = [ - {file = "isort-5.11.5-py3-none-any.whl", hash = "sha256:ba1d72fb2595a01c7895a5128f9585a5cc4b6d395f1c8d514989b9a7eb2a8746"}, - {file = "isort-5.11.5.tar.gz", hash = "sha256:6be1f76a507cb2ecf16c7cf14a37e41609ca082330be4e3436a18ef74add55db"}, + {file = "isort-5.12.0-py3-none-any.whl", hash = "sha256:f84c2818376e66cf843d497486ea8fed8700b340f308f076c6fb1229dff318b6"}, + {file = "isort-5.12.0.tar.gz", hash = "sha256:8bef7dde241278824a6d83f44a544709b065191b95b6e50894bdc722fcba0504"}, ] [package.extras] -colors = ["colorama (>=0.4.3,<0.5.0)"] +colors = ["colorama (>=0.4.3)"] pipfile-deprecated-finder = ["pip-shims (>=0.5.2)", "pipreqs", "requirementslib"] plugins = ["setuptools"] requirements-deprecated-finder = ["pip-api", "pipreqs"] +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + [[package]] name = "kubernetes" -version = "23.6.0" +version = "27.2.0" description = "Kubernetes python client" optional = false python-versions = ">=3.6" files = [ - {file = "kubernetes-23.6.0-py2.py3-none-any.whl", hash = "sha256:dd58e286a53071bc8e32041f07f3c2236b3ed8ca5b9f57794a5077358f7ccb06"}, - {file = "kubernetes-23.6.0.tar.gz", hash = "sha256:cadb1cd7c44eae5b39b50316313343c0f2aff94529f067ec2ba44d38411158e3"}, + {file = "kubernetes-27.2.0-py2.py3-none-any.whl", hash = "sha256:0f9376329c85cf07615ed6886bf9bf21eb1cbfc05e14ec7b0f74ed8153cd2815"}, + {file = "kubernetes-27.2.0.tar.gz", hash = "sha256:d479931c6f37561dbfdf28fc5f46384b1cb8b28f9db344ed4a232ce91990825a"}, ] [package.dependencies] certifi = ">=14.05.14" google-auth = ">=1.0.1" +oauthlib = ">=3.2.2" python-dateutil = ">=2.5.3" pyyaml = ">=5.4.1" requests = "*" requests-oauthlib = "*" -setuptools = ">=21.0.0" six = ">=1.9.0" urllib3 = ">=1.24.2" websocket-client = ">=0.32.0,<0.40.0 || >0.40.0,<0.41.dev0 || >=0.43.dev0" @@ -380,6 +545,76 @@ files = [ {file = "lazy_object_proxy-1.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:db1c1722726f47e10e0b5fdbf15ac3b8adb58c091d12b3ab713965795036985f"}, ] +[[package]] +name = "locket" +version = "1.0.0" +description = "File-based locks for Python on Linux and Windows" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "locket-1.0.0-py2.py3-none-any.whl", hash = "sha256:b6c819a722f7b6bd955b80781788e4a66a55628b858d347536b7e81325a3a5e3"}, + {file = "locket-1.0.0.tar.gz", hash = "sha256:5c0d4c052a8bbbf750e056a8e65ccd309086f4f0f18a2eac306a8dfa4112a632"}, +] + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + [[package]] name = "mccabe" version = "0.7.0" @@ -391,51 +626,115 @@ files = [ {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, ] +[[package]] +name = "msgpack" +version = "1.0.6" +description = "MessagePack serializer" +optional = false +python-versions = ">=3.8" +files = [ + {file = "msgpack-1.0.6-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f4321692e7f299277e55f322329b2c972d93bb612d85f3fda8741bec5c6285ce"}, + {file = "msgpack-1.0.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1f0e36a5fa7a182cde391a128a64f437657d2b9371dfa42eda3436245adccbf5"}, + {file = "msgpack-1.0.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b5c8dd9a386a66e50bd7fa22b7a49fb8ead2b3574d6bd69eb1caced6caea0803"}, + {file = "msgpack-1.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f85200ea102276afdd3749ca94747f057bbb868d1c52921ee2446730b508d0f"}, + {file = "msgpack-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a006c300e82402c0c8f1ded11352a3ba2a61b87e7abb3054c845af2ca8d553c"}, + {file = "msgpack-1.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:33bbf47ea5a6ff20c23426106e81863cdbb5402de1825493026ce615039cc99d"}, + {file = "msgpack-1.0.6-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:04450e4b5e1e662e7c86b6aafb7c230af9334fd0becf5e6b80459a507884241c"}, + {file = "msgpack-1.0.6-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:b06a5095a79384760625b5de3f83f40b3053a385fb893be8a106fbbd84c14980"}, + {file = "msgpack-1.0.6-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:3910211b0ab20be3a38e0bb944ed45bd4265d8d9f11a3d1674b95b298e08dd5c"}, + {file = "msgpack-1.0.6-cp310-cp310-win32.whl", hash = "sha256:1dc67b40fe81217b308ab12651adba05e7300b3a2ccf84d6b35a878e308dd8d4"}, + {file = "msgpack-1.0.6-cp310-cp310-win_amd64.whl", hash = "sha256:885de1ed5ea01c1bfe0a34c901152a264c3c1f8f1d382042b92ea354bd14bb0e"}, + {file = "msgpack-1.0.6-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:099c3d8a027367e1a6fc55d15336f04ff65c60c4f737b5739f7db4525c65fe9e"}, + {file = "msgpack-1.0.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9b88dc97ba86c96b964c3745a445d9a65f76fe21955a953064fe04adb63e9367"}, + {file = "msgpack-1.0.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:00ce5f827d4f26fc094043e6f08b6069c1b148efa2631c47615ae14fb6cafc89"}, + {file = "msgpack-1.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd6af61388be65a8701f5787362cb54adae20007e0cc67ca9221a4b95115583b"}, + {file = "msgpack-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:652e4b7497825b0af6259e2c54700e6dc33d2fc4ed92b8839435090d4c9cc911"}, + {file = "msgpack-1.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b08676a17e3f791daad34d5fcb18479e9c85e7200d5a17cbe8de798643a7e37"}, + {file = "msgpack-1.0.6-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:229ccb6713c8b941eaa5cf13dc7478eba117f21513b5893c35e44483e2f0c9c8"}, + {file = "msgpack-1.0.6-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:95ade0bd4cf69e04e8b8f8ec2d197d9c9c4a9b6902e048dc7456bf6d82e12a80"}, + {file = "msgpack-1.0.6-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5b16344032a27b2ccfd341f89dadf3e4ef6407d91e4b93563c14644a8abb3ad7"}, + {file = "msgpack-1.0.6-cp311-cp311-win32.whl", hash = "sha256:55bb4a1bf94e39447bc08238a2fb8a767460388a8192f67c103442eb36920887"}, + {file = "msgpack-1.0.6-cp311-cp311-win_amd64.whl", hash = "sha256:ae97504958d0bc58c1152045c170815d5c4f8af906561ce044b6358b43d0c97e"}, + {file = "msgpack-1.0.6-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7ecf431786019a7bfedc28281531d706627f603e3691d64eccdbce3ecd353823"}, + {file = "msgpack-1.0.6-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a635aecf1047255576dbb0927cbf9a7aa4a68e9d54110cc3c926652d18f144e0"}, + {file = "msgpack-1.0.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:102cfb54eaefa73e8ca1e784b9352c623524185c98e057e519545131a56fb0af"}, + {file = "msgpack-1.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c5e05e4f5756758c58a8088aa10dc70d851c89f842b611fdccfc0581c1846bc"}, + {file = "msgpack-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68569509dd015fcdd1e6b2b3ccc8c51fd27d9a97f461ccc909270e220ee09685"}, + {file = "msgpack-1.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bf652839d16de91fe1cfb253e0a88db9a548796939533894e07f45d4bdf90a5f"}, + {file = "msgpack-1.0.6-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14db7e1b7a7ed362b2f94897bf2486c899c8bb50f6e34b2db92fe534cdab306f"}, + {file = "msgpack-1.0.6-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:159cfec18a6e125dd4723e2b1de6f202b34b87c850fb9d509acfd054c01135e9"}, + {file = "msgpack-1.0.6-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:6a01a072b2219b65a6ff74df208f20b2cac9401c60adb676ee34e53b4c651077"}, + {file = "msgpack-1.0.6-cp312-cp312-win32.whl", hash = "sha256:e36560d001d4ba469d469b02037f2dd404421fd72277d9474efe9f03f83fced5"}, + {file = "msgpack-1.0.6-cp312-cp312-win_amd64.whl", hash = "sha256:5e7fae9ca93258a956551708cf60dc6c8145574e32ce8c8c4d894e63bcb04341"}, + {file = "msgpack-1.0.6-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:40b801b768f5a765e33c68f30665d3c6ee1c8623a2d2bb78e6e59f2db4e4ceb7"}, + {file = "msgpack-1.0.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:da057d3652e698b00746e47f06dbb513314f847421e857e32e1dc61c46f6c052"}, + {file = "msgpack-1.0.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f75114c05ec56566da6b55122791cf5bb53d5aada96a98c016d6231e03132f76"}, + {file = "msgpack-1.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:61213482b5a387ead9e250e9e3cb290292feca39dc83b41c3b1b7b8ffc8d8ecb"}, + {file = "msgpack-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bae6c561f11b444b258b1b4be2bdd1e1cf93cd1d80766b7e869a79db4543a8a8"}, + {file = "msgpack-1.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:619a63753ba9e792fe3c6c0fc2b9ee2cfbd92153dd91bee029a89a71eb2942cd"}, + {file = "msgpack-1.0.6-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:70843788c85ca385846a2d2f836efebe7bb2687ca0734648bf5c9dc6c55602d2"}, + {file = "msgpack-1.0.6-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:fb4571efe86545b772a4630fee578c213c91cbcfd20347806e47fd4e782a18fe"}, + {file = "msgpack-1.0.6-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:bbb4448a05d261fae423d5c0b0974ad899f60825bc77eabad5a0c518e78448c2"}, + {file = "msgpack-1.0.6-cp38-cp38-win32.whl", hash = "sha256:5cd67674db3c73026e0a2c729b909780e88bd9cbc8184256f9567640a5d299a8"}, + {file = "msgpack-1.0.6-cp38-cp38-win_amd64.whl", hash = "sha256:a1cf98afa7ad5e7012454ca3fde254499a13f9d92fd50cb46118118a249a1355"}, + {file = "msgpack-1.0.6-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d6d25b8a5c70e2334ed61a8da4c11cd9b97c6fbd980c406033f06e4463fda006"}, + {file = "msgpack-1.0.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:88cdb1da7fdb121dbb3116910722f5acab4d6e8bfcacab8fafe27e2e7744dc6a"}, + {file = "msgpack-1.0.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3b5658b1f9e486a2eec4c0c688f213a90085b9cf2fec76ef08f98fdf6c62f4b9"}, + {file = "msgpack-1.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76820f2ece3b0a7c948bbb6a599020e29574626d23a649476def023cbb026787"}, + {file = "msgpack-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c780d992f5d734432726b92a0c87bf1857c3d85082a8dea29cbf56e44a132b3"}, + {file = "msgpack-1.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e0ed35d6d6122d0baa9a1b59ebca4ee302139f4cfb57dab85e4c73ab793ae7ed"}, + {file = "msgpack-1.0.6-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:32c0aff31f33033f4961abc01f78497e5e07bac02a508632aef394b384d27428"}, + {file = "msgpack-1.0.6-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:35ad5aed9b52217d4cea739d0ea3a492a18dd86fecb4b132668a69f27fb0363b"}, + {file = "msgpack-1.0.6-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47275ff73005a3e5e146e50baa2378e1730cba6e292f0222bc496a8e4c4adfc8"}, + {file = "msgpack-1.0.6-cp39-cp39-win32.whl", hash = "sha256:7baf16fd8908a025c4a8d7b699103e72d41f967e2aee5a2065432bcdbd9fd06e"}, + {file = "msgpack-1.0.6-cp39-cp39-win_amd64.whl", hash = "sha256:fc97aa4b4fb928ff4d3b74da7c30b360d0cb3ede49a5a6e1fd9705f49aea1deb"}, + {file = "msgpack-1.0.6.tar.gz", hash = "sha256:25d3746da40f3c8c59c3b1d001e49fd2aa17904438f980d9a391370366df001e"}, +] + [[package]] name = "mypy" -version = "1.3.0" +version = "1.5.1" description = "Optional static typing for Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "mypy-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c1eb485cea53f4f5284e5baf92902cd0088b24984f4209e25981cc359d64448d"}, - {file = "mypy-1.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4c99c3ecf223cf2952638da9cd82793d8f3c0c5fa8b6ae2b2d9ed1e1ff51ba85"}, - {file = "mypy-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:550a8b3a19bb6589679a7c3c31f64312e7ff482a816c96e0cecec9ad3a7564dd"}, - {file = "mypy-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:cbc07246253b9e3d7d74c9ff948cd0fd7a71afcc2b77c7f0a59c26e9395cb152"}, - {file = "mypy-1.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:a22435632710a4fcf8acf86cbd0d69f68ac389a3892cb23fbad176d1cddaf228"}, - {file = "mypy-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6e33bb8b2613614a33dff70565f4c803f889ebd2f859466e42b46e1df76018dd"}, - {file = "mypy-1.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7d23370d2a6b7a71dc65d1266f9a34e4cde9e8e21511322415db4b26f46f6b8c"}, - {file = "mypy-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:658fe7b674769a0770d4b26cb4d6f005e88a442fe82446f020be8e5f5efb2fae"}, - {file = "mypy-1.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6e42d29e324cdda61daaec2336c42512e59c7c375340bd202efa1fe0f7b8f8ca"}, - {file = "mypy-1.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:d0b6c62206e04061e27009481cb0ec966f7d6172b5b936f3ead3d74f29fe3dcf"}, - {file = "mypy-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:76ec771e2342f1b558c36d49900dfe81d140361dd0d2df6cd71b3db1be155409"}, - {file = "mypy-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ebc95f8386314272bbc817026f8ce8f4f0d2ef7ae44f947c4664efac9adec929"}, - {file = "mypy-1.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:faff86aa10c1aa4a10e1a301de160f3d8fc8703b88c7e98de46b531ff1276a9a"}, - {file = "mypy-1.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:8c5979d0deb27e0f4479bee18ea0f83732a893e81b78e62e2dda3e7e518c92ee"}, - {file = "mypy-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c5d2cc54175bab47011b09688b418db71403aefad07cbcd62d44010543fc143f"}, - {file = "mypy-1.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:87df44954c31d86df96c8bd6e80dfcd773473e877ac6176a8e29898bfb3501cb"}, - {file = "mypy-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:473117e310febe632ddf10e745a355714e771ffe534f06db40702775056614c4"}, - {file = "mypy-1.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:74bc9b6e0e79808bf8678d7678b2ae3736ea72d56eede3820bd3849823e7f305"}, - {file = "mypy-1.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:44797d031a41516fcf5cbfa652265bb994e53e51994c1bd649ffcd0c3a7eccbf"}, - {file = "mypy-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ddae0f39ca146972ff6bb4399f3b2943884a774b8771ea0a8f50e971f5ea5ba8"}, - {file = "mypy-1.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1c4c42c60a8103ead4c1c060ac3cdd3ff01e18fddce6f1016e08939647a0e703"}, - {file = "mypy-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e86c2c6852f62f8f2b24cb7a613ebe8e0c7dc1402c61d36a609174f63e0ff017"}, - {file = "mypy-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:f9dca1e257d4cc129517779226753dbefb4f2266c4eaad610fc15c6a7e14283e"}, - {file = "mypy-1.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:95d8d31a7713510685b05fbb18d6ac287a56c8f6554d88c19e73f724a445448a"}, - {file = "mypy-1.3.0-py3-none-any.whl", hash = "sha256:a8763e72d5d9574d45ce5881962bc8e9046bf7b375b0abf031f3e6811732a897"}, - {file = "mypy-1.3.0.tar.gz", hash = "sha256:e1f4d16e296f5135624b34e8fb741eb0eadedca90862405b1f1fde2040b9bd11"}, + {file = "mypy-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f33592ddf9655a4894aef22d134de7393e95fcbdc2d15c1ab65828eee5c66c70"}, + {file = "mypy-1.5.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:258b22210a4a258ccd077426c7a181d789d1121aca6db73a83f79372f5569ae0"}, + {file = "mypy-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9ec1f695f0c25986e6f7f8778e5ce61659063268836a38c951200c57479cc12"}, + {file = "mypy-1.5.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:abed92d9c8f08643c7d831300b739562b0a6c9fcb028d211134fc9ab20ccad5d"}, + {file = "mypy-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:a156e6390944c265eb56afa67c74c0636f10283429171018446b732f1a05af25"}, + {file = "mypy-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6ac9c21bfe7bc9f7f1b6fae441746e6a106e48fc9de530dea29e8cd37a2c0cc4"}, + {file = "mypy-1.5.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:51cb1323064b1099e177098cb939eab2da42fea5d818d40113957ec954fc85f4"}, + {file = "mypy-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:596fae69f2bfcb7305808c75c00f81fe2829b6236eadda536f00610ac5ec2243"}, + {file = "mypy-1.5.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:32cb59609b0534f0bd67faebb6e022fe534bdb0e2ecab4290d683d248be1b275"}, + {file = "mypy-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:159aa9acb16086b79bbb0016145034a1a05360626046a929f84579ce1666b315"}, + {file = "mypy-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f6b0e77db9ff4fda74de7df13f30016a0a663928d669c9f2c057048ba44f09bb"}, + {file = "mypy-1.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:26f71b535dfc158a71264e6dc805a9f8d2e60b67215ca0bfa26e2e1aa4d4d373"}, + {file = "mypy-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fc3a600f749b1008cc75e02b6fb3d4db8dbcca2d733030fe7a3b3502902f161"}, + {file = "mypy-1.5.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:26fb32e4d4afa205b24bf645eddfbb36a1e17e995c5c99d6d00edb24b693406a"}, + {file = "mypy-1.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:82cb6193de9bbb3844bab4c7cf80e6227d5225cc7625b068a06d005d861ad5f1"}, + {file = "mypy-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4a465ea2ca12804d5b34bb056be3a29dc47aea5973b892d0417c6a10a40b2d65"}, + {file = "mypy-1.5.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9fece120dbb041771a63eb95e4896791386fe287fefb2837258925b8326d6160"}, + {file = "mypy-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d28ddc3e3dfeab553e743e532fb95b4e6afad51d4706dd22f28e1e5e664828d2"}, + {file = "mypy-1.5.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:57b10c56016adce71fba6bc6e9fd45d8083f74361f629390c556738565af8eeb"}, + {file = "mypy-1.5.1-cp38-cp38-win_amd64.whl", hash = "sha256:ff0cedc84184115202475bbb46dd99f8dcb87fe24d5d0ddfc0fe6b8575c88d2f"}, + {file = "mypy-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8f772942d372c8cbac575be99f9cc9d9fb3bd95c8bc2de6c01411e2c84ebca8a"}, + {file = "mypy-1.5.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5d627124700b92b6bbaa99f27cbe615c8ea7b3402960f6372ea7d65faf376c14"}, + {file = "mypy-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:361da43c4f5a96173220eb53340ace68cda81845cd88218f8862dfb0adc8cddb"}, + {file = "mypy-1.5.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:330857f9507c24de5c5724235e66858f8364a0693894342485e543f5b07c8693"}, + {file = "mypy-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:c543214ffdd422623e9fedd0869166c2f16affe4ba37463975043ef7d2ea8770"}, + {file = "mypy-1.5.1-py3-none-any.whl", hash = "sha256:f757063a83970d67c444f6e01d9550a7402322af3557ce7630d3c957386fa8f5"}, + {file = "mypy-1.5.1.tar.gz", hash = "sha256:b031b9601f1060bf1281feab89697324726ba0c0bae9d7cd7ab4b690940f0b92"}, ] [package.dependencies] mypy-extensions = ">=1.0.0" tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} -typed-ast = {version = ">=1.4.0,<2", markers = "python_version < \"3.8\""} -typing-extensions = ">=3.10" +typing-extensions = ">=4.1.0" [package.extras] dmypy = ["psutil (>=4.0)"] install-types = ["pip"] -python2 = ["typed-ast (>=1.4.0,<2)"] reports = ["lxml"] [[package]] @@ -467,96 +766,134 @@ signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] [[package]] name = "packaging" -version = "23.0" +version = "23.1" description = "Core utilities for Python packages" optional = false python-versions = ">=3.7" files = [ - {file = "packaging-23.0-py3-none-any.whl", hash = "sha256:714ac14496c3e68c99c29b00845f7a2b85f3bb6f1078fd9f72fd20f0570002b2"}, - {file = "packaging-23.0.tar.gz", hash = "sha256:b6ad297f8907de0fa2fe1ccbd26fdaf387f5f47c7275fedf8cce89f99446cf97"}, + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "partd" +version = "1.4.1" +description = "Appendable key-value storage" +optional = false +python-versions = ">=3.7" +files = [ + {file = "partd-1.4.1-py3-none-any.whl", hash = "sha256:27e766663d36c161e2827aa3e28541c992f0b9527d3cca047e13fb3acdb989e6"}, + {file = "partd-1.4.1.tar.gz", hash = "sha256:56c25dd49e6fea5727e731203c466c6e092f308d8f0024e199d02f6aa2167f67"}, ] +[package.dependencies] +locket = "*" +toolz = "*" + +[package.extras] +complete = ["blosc", "numpy (>=1.9.0)", "pandas (>=0.19.0)", "pyzmq"] + [[package]] name = "pathspec" -version = "0.11.0" +version = "0.11.2" description = "Utility library for gitignore style pattern matching of file paths." optional = false python-versions = ">=3.7" files = [ - {file = "pathspec-0.11.0-py3-none-any.whl", hash = "sha256:3a66eb970cbac598f9e5ccb5b2cf58930cd8e3ed86d393d541eaf2d8b1705229"}, - {file = "pathspec-0.11.0.tar.gz", hash = "sha256:64d338d4e0914e91c1792321e6907b5a593f1ab1851de7fc269557a21b30ebbc"}, + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, ] [[package]] name = "platformdirs" -version = "3.0.0" +version = "3.10.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." optional = false python-versions = ">=3.7" files = [ - {file = "platformdirs-3.0.0-py3-none-any.whl", hash = "sha256:b1d5eb14f221506f50d6604a561f4c5786d9e80355219694a1b244bcd96f4567"}, - {file = "platformdirs-3.0.0.tar.gz", hash = "sha256:8a1228abb1ef82d788f74139988b137e78692984ec7b08eaa6c65f1723af28f9"}, + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, ] -[package.dependencies] -typing-extensions = {version = ">=4.4", markers = "python_version < \"3.8\""} - [package.extras] -docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.22,!=1.23.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.2.2)", "pytest (>=7.2.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] [[package]] name = "pluggy" -version = "1.0.0" +version = "1.3.0" description = "plugin and hook calling mechanisms for python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, - {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, + {file = "pluggy-1.3.0-py3-none-any.whl", hash = "sha256:d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7"}, + {file = "pluggy-1.3.0.tar.gz", hash = "sha256:cf61ae8f126ac6f7c451172cf30e3e43d3ca77615509771b3a984a0730651e12"}, ] -[package.dependencies] -importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} - [package.extras] dev = ["pre-commit", "tox"] testing = ["pytest", "pytest-benchmark"] +[[package]] +name = "psutil" +version = "5.9.5" +description = "Cross-platform lib for process and system monitoring in Python." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "psutil-5.9.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:be8929ce4313f9f8146caad4272f6abb8bf99fc6cf59344a3167ecd74f4f203f"}, + {file = "psutil-5.9.5-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ab8ed1a1d77c95453db1ae00a3f9c50227ebd955437bcf2a574ba8adbf6a74d5"}, + {file = "psutil-5.9.5-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:4aef137f3345082a3d3232187aeb4ac4ef959ba3d7c10c33dd73763fbc063da4"}, + {file = "psutil-5.9.5-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ea8518d152174e1249c4f2a1c89e3e6065941df2fa13a1ab45327716a23c2b48"}, + {file = "psutil-5.9.5-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:acf2aef9391710afded549ff602b5887d7a2349831ae4c26be7c807c0a39fac4"}, + {file = "psutil-5.9.5-cp27-none-win32.whl", hash = "sha256:5b9b8cb93f507e8dbaf22af6a2fd0ccbe8244bf30b1baad6b3954e935157ae3f"}, + {file = "psutil-5.9.5-cp27-none-win_amd64.whl", hash = "sha256:8c5f7c5a052d1d567db4ddd231a9d27a74e8e4a9c3f44b1032762bd7b9fdcd42"}, + {file = "psutil-5.9.5-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:3c6f686f4225553615612f6d9bc21f1c0e305f75d7d8454f9b46e901778e7217"}, + {file = "psutil-5.9.5-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7a7dd9997128a0d928ed4fb2c2d57e5102bb6089027939f3b722f3a210f9a8da"}, + {file = "psutil-5.9.5-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89518112647f1276b03ca97b65cc7f64ca587b1eb0278383017c2a0dcc26cbe4"}, + {file = "psutil-5.9.5-cp36-abi3-win32.whl", hash = "sha256:104a5cc0e31baa2bcf67900be36acde157756b9c44017b86b2c049f11957887d"}, + {file = "psutil-5.9.5-cp36-abi3-win_amd64.whl", hash = "sha256:b258c0c1c9d145a1d5ceffab1134441c4c5113b2417fafff7315a917a026c3c9"}, + {file = "psutil-5.9.5-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:c607bb3b57dc779d55e1554846352b4e358c10fff3abf3514a7a6601beebdb30"}, + {file = "psutil-5.9.5.tar.gz", hash = "sha256:5410638e4df39c54d957fc51ce03048acd8e6d60abc0f5107af51e5fb566eb3c"}, +] + +[package.extras] +test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] + [[package]] name = "pyasn1" -version = "0.4.8" -description = "ASN.1 types and codecs" +version = "0.5.0" +description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" optional = false -python-versions = "*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "pyasn1-0.4.8-py2.py3-none-any.whl", hash = "sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d"}, - {file = "pyasn1-0.4.8.tar.gz", hash = "sha256:aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba"}, + {file = "pyasn1-0.5.0-py2.py3-none-any.whl", hash = "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57"}, + {file = "pyasn1-0.5.0.tar.gz", hash = "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"}, ] [[package]] name = "pyasn1-modules" -version = "0.2.8" -description = "A collection of ASN.1-based protocols modules." +version = "0.3.0" +description = "A collection of ASN.1-based protocols modules" optional = false -python-versions = "*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "pyasn1-modules-0.2.8.tar.gz", hash = "sha256:905f84c712230b2c592c19470d3ca8d552de726050d1d1716282a1f6146be65e"}, - {file = "pyasn1_modules-0.2.8-py2.py3-none-any.whl", hash = "sha256:a50b808ffeb97cb3601dd25981f6b016cbb3d31fbf57a8b8a87428e6158d0c74"}, + {file = "pyasn1_modules-0.3.0-py2.py3-none-any.whl", hash = "sha256:d3ccd6ed470d9ffbc716be08bd90efbd44d0734bc9303818f7336070984a162d"}, + {file = "pyasn1_modules-0.3.0.tar.gz", hash = "sha256:5bd01446b736eb9d31512a30d46c1ac3395d676c6f3cafa4c03eb54b9925631c"}, ] [package.dependencies] -pyasn1 = ">=0.4.6,<0.5.0" +pyasn1 = ">=0.4.6,<0.6.0" [[package]] name = "pygments" -version = "2.14.0" +version = "2.16.1" description = "Pygments is a syntax highlighting package written in Python." optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "Pygments-2.14.0-py3-none-any.whl", hash = "sha256:fa7bd7bd2771287c0de303af8bfdfc731f51bd2c6a47ab69d117138893b82717"}, - {file = "Pygments-2.14.0.tar.gz", hash = "sha256:b3ed06a9e8ac9a9aae5a6f5dbe78a8a58655d17b43b93c078f094ddc476ae297"}, + {file = "Pygments-2.16.1-py3-none-any.whl", hash = "sha256:13fc09fa63bc8d8671a6d247e1eb303c4b343eaee81d861f3404db2935653692"}, + {file = "Pygments-2.16.1.tar.gz", hash = "sha256:1daff0494820c69bc8941e407aa20f577374ee88364ee10a98fdbe0aece96e29"}, ] [package.extras] @@ -564,17 +901,17 @@ plugins = ["importlib-metadata"] [[package]] name = "pylint" -version = "2.16.2" +version = "2.17.6" description = "python code static checker" optional = false python-versions = ">=3.7.2" files = [ - {file = "pylint-2.16.2-py3-none-any.whl", hash = "sha256:ff22dde9c2128cd257c145cfd51adeff0be7df4d80d669055f24a962b351bbe4"}, - {file = "pylint-2.16.2.tar.gz", hash = "sha256:13b2c805a404a9bf57d002cd5f054ca4d40b0b87542bdaba5e05321ae8262c84"}, + {file = "pylint-2.17.6-py3-none-any.whl", hash = "sha256:18a1412e873caf8ffb56b760ce1b5643675af23e6173a247b502406b24c716af"}, + {file = "pylint-2.17.6.tar.gz", hash = "sha256:be928cce5c76bf9acdc65ad01447a1e0b1a7bccffc609fb7fc40f2513045bd05"}, ] [package.dependencies] -astroid = ">=2.14.2,<=2.16.0-dev0" +astroid = ">=2.15.7,<=2.17.0-dev0" colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} dill = [ {version = ">=0.2", markers = "python_version < \"3.11\""}, @@ -593,27 +930,25 @@ testutils = ["gitpython (>3)"] [[package]] name = "pytest" -version = "7.2.1" +version = "7.4.2" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.2.1-py3-none-any.whl", hash = "sha256:c7c6ca206e93355074ae32f7403e8ea12163b1163c976fee7d4d84027c162be5"}, - {file = "pytest-7.2.1.tar.gz", hash = "sha256:d45e0952f3727241918b8fd0f376f5ff6b301cc0777c6f9a556935c92d8a7d42"}, + {file = "pytest-7.4.2-py3-none-any.whl", hash = "sha256:1d881c6124e08ff0a1bb75ba3ec0bfd8b5354a01c194ddd5a0a870a48d99b002"}, + {file = "pytest-7.4.2.tar.gz", hash = "sha256:a766259cfab564a2ad52cb1aae1b881a75c3eb7e34ca3779697c23ed47c47069"}, ] [package.dependencies] -attrs = ">=19.2.0" colorama = {version = "*", markers = "sys_platform == \"win32\""} exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} -importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""} iniconfig = "*" packaging = "*" pluggy = ">=0.12,<2.0" tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} [package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"] +testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] [[package]] name = "python-dateutil" @@ -631,73 +966,73 @@ six = ">=1.5" [[package]] name = "pyyaml" -version = "6.0" +version = "6.0.1" description = "YAML parser and emitter for Python" optional = false python-versions = ">=3.6" files = [ - {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, - {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, - {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, - {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, - {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, - {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, - {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, - {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, - {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, - {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, - {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, - {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, - {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, - {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, - {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, - {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, - {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, - {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, - {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, - {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, - {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, - {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, ] [[package]] name = "requests" -version = "2.27.1" +version = "2.31.0" description = "Python HTTP for Humans." optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +python-versions = ">=3.7" files = [ - {file = "requests-2.27.1-py2.py3-none-any.whl", hash = "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d"}, - {file = "requests-2.27.1.tar.gz", hash = "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"}, + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, ] [package.dependencies] certifi = ">=2017.4.17" -charset-normalizer = {version = ">=2.0.0,<2.1.0", markers = "python_version >= \"3\""} -idna = {version = ">=2.5,<4", markers = "python_version >= \"3\""} -urllib3 = ">=1.21.1,<1.27" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" [package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<5)"] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "requests-oauthlib" @@ -730,22 +1065,6 @@ files = [ [package.dependencies] pyasn1 = ">=0.1.3" -[[package]] -name = "setuptools" -version = "67.3.2" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.7" -files = [ - {file = "setuptools-67.3.2-py3-none-any.whl", hash = "sha256:bb6d8e508de562768f2027902929f8523932fcd1fb784e6d573d2cafac995a48"}, - {file = "setuptools-67.3.2.tar.gz", hash = "sha256:95f00380ef2ffa41d9bba85d95b27689d923c93dfbafed4aecd7cf988a25e012"}, -] - -[package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] -testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] - [[package]] name = "six" version = "1.16.0" @@ -757,6 +1076,28 @@ files = [ {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, ] +[[package]] +name = "sortedcontainers" +version = "2.4.0" +description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" +optional = false +python-versions = "*" +files = [ + {file = "sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0"}, + {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, +] + +[[package]] +name = "tblib" +version = "2.0.0" +description = "Traceback serialization library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "tblib-2.0.0-py3-none-any.whl", hash = "sha256:9100bfa016b047d5b980d66e7efed952fbd20bd85b56110aaf473cb97d18709a"}, + {file = "tblib-2.0.0.tar.gz", hash = "sha256:a6df30f272c08bf8be66e0775fad862005d950a6b8449b94f7c788731d70ecd7"}, +] + [[package]] name = "tomli" version = "2.0.1" @@ -770,68 +1111,66 @@ files = [ [[package]] name = "tomlkit" -version = "0.11.6" +version = "0.12.1" description = "Style preserving TOML library" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "tomlkit-0.11.6-py3-none-any.whl", hash = "sha256:07de26b0d8cfc18f871aec595fda24d95b08fef89d147caa861939f37230bf4b"}, - {file = "tomlkit-0.11.6.tar.gz", hash = "sha256:71b952e5721688937fb02cf9d354dbcf0785066149d2855e44531ebdd2b65d73"}, + {file = "tomlkit-0.12.1-py3-none-any.whl", hash = "sha256:712cbd236609acc6a3e2e97253dfc52d4c2082982a88f61b640ecf0817eab899"}, + {file = "tomlkit-0.12.1.tar.gz", hash = "sha256:38e1ff8edb991273ec9f6181244a6a391ac30e9f5098e7535640ea6be97a7c86"}, ] [[package]] -name = "typed-ast" -version = "1.5.4" -description = "a fork of Python 2 and 3 ast modules with type comment support" +name = "toolz" +version = "0.12.0" +description = "List processing tools and functional utilities" optional = false -python-versions = ">=3.6" +python-versions = ">=3.5" +files = [ + {file = "toolz-0.12.0-py3-none-any.whl", hash = "sha256:2059bd4148deb1884bb0eb770a3cde70e7f954cfbbdc2285f1f2de01fd21eb6f"}, + {file = "toolz-0.12.0.tar.gz", hash = "sha256:88c570861c440ee3f2f6037c4654613228ff40c93a6c25e0eba70d17282c6194"}, +] + +[[package]] +name = "tornado" +version = "6.3.3" +description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." +optional = false +python-versions = ">= 3.8" files = [ - {file = "typed_ast-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:669dd0c4167f6f2cd9f57041e03c3c2ebf9063d0757dc89f79ba1daa2bfca9d4"}, - {file = "typed_ast-1.5.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:211260621ab1cd7324e0798d6be953d00b74e0428382991adfddb352252f1d62"}, - {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:267e3f78697a6c00c689c03db4876dd1efdfea2f251a5ad6555e82a26847b4ac"}, - {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c542eeda69212fa10a7ada75e668876fdec5f856cd3d06829e6aa64ad17c8dfe"}, - {file = "typed_ast-1.5.4-cp310-cp310-win_amd64.whl", hash = "sha256:a9916d2bb8865f973824fb47436fa45e1ebf2efd920f2b9f99342cb7fab93f72"}, - {file = "typed_ast-1.5.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79b1e0869db7c830ba6a981d58711c88b6677506e648496b1f64ac7d15633aec"}, - {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a94d55d142c9265f4ea46fab70977a1944ecae359ae867397757d836ea5a3f47"}, - {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:183afdf0ec5b1b211724dfef3d2cad2d767cbefac291f24d69b00546c1837fb6"}, - {file = "typed_ast-1.5.4-cp36-cp36m-win_amd64.whl", hash = "sha256:639c5f0b21776605dd6c9dbe592d5228f021404dafd377e2b7ac046b0349b1a1"}, - {file = "typed_ast-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cf4afcfac006ece570e32d6fa90ab74a17245b83dfd6655a6f68568098345ff6"}, - {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed855bbe3eb3715fca349c80174cfcfd699c2f9de574d40527b8429acae23a66"}, - {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6778e1b2f81dfc7bc58e4b259363b83d2e509a65198e85d5700dfae4c6c8ff1c"}, - {file = "typed_ast-1.5.4-cp37-cp37m-win_amd64.whl", hash = "sha256:0261195c2062caf107831e92a76764c81227dae162c4f75192c0d489faf751a2"}, - {file = "typed_ast-1.5.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2efae9db7a8c05ad5547d522e7dbe62c83d838d3906a3716d1478b6c1d61388d"}, - {file = "typed_ast-1.5.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7d5d014b7daa8b0bf2eaef684295acae12b036d79f54178b92a2b6a56f92278f"}, - {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:370788a63915e82fd6f212865a596a0fefcbb7d408bbbb13dea723d971ed8bdc"}, - {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4e964b4ff86550a7a7d56345c7864b18f403f5bd7380edf44a3c1fb4ee7ac6c6"}, - {file = "typed_ast-1.5.4-cp38-cp38-win_amd64.whl", hash = "sha256:683407d92dc953c8a7347119596f0b0e6c55eb98ebebd9b23437501b28dcbb8e"}, - {file = "typed_ast-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4879da6c9b73443f97e731b617184a596ac1235fe91f98d279a7af36c796da35"}, - {file = "typed_ast-1.5.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e123d878ba170397916557d31c8f589951e353cc95fb7f24f6bb69adc1a8a97"}, - {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebd9d7f80ccf7a82ac5f88c521115cc55d84e35bf8b446fcd7836eb6b98929a3"}, - {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98f80dee3c03455e92796b58b98ff6ca0b2a6f652120c263efdba4d6c5e58f72"}, - {file = "typed_ast-1.5.4-cp39-cp39-win_amd64.whl", hash = "sha256:0fdbcf2fef0ca421a3f5912555804296f0b0960f0418c440f5d6d3abb549f3e1"}, - {file = "typed_ast-1.5.4.tar.gz", hash = "sha256:39e21ceb7388e4bb37f4c679d72707ed46c2fbf2a5609b8b8ebc4b067d977df2"}, + {file = "tornado-6.3.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:502fba735c84450974fec147340016ad928d29f1e91f49be168c0a4c18181e1d"}, + {file = "tornado-6.3.3-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:805d507b1f588320c26f7f097108eb4023bbaa984d63176d1652e184ba24270a"}, + {file = "tornado-6.3.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bd19ca6c16882e4d37368e0152f99c099bad93e0950ce55e71daed74045908f"}, + {file = "tornado-6.3.3-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ac51f42808cca9b3613f51ffe2a965c8525cb1b00b7b2d56828b8045354f76a"}, + {file = "tornado-6.3.3-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:71a8db65160a3c55d61839b7302a9a400074c9c753040455494e2af74e2501f2"}, + {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:ceb917a50cd35882b57600709dd5421a418c29ddc852da8bcdab1f0db33406b0"}, + {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:7d01abc57ea0dbb51ddfed477dfe22719d376119844e33c661d873bf9c0e4a16"}, + {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:9dc4444c0defcd3929d5c1eb5706cbe1b116e762ff3e0deca8b715d14bf6ec17"}, + {file = "tornado-6.3.3-cp38-abi3-win32.whl", hash = "sha256:65ceca9500383fbdf33a98c0087cb975b2ef3bfb874cb35b8de8740cf7f41bd3"}, + {file = "tornado-6.3.3-cp38-abi3-win_amd64.whl", hash = "sha256:22d3c2fa10b5793da13c807e6fc38ff49a4f6e1e3868b0a6f4164768bb8e20f5"}, + {file = "tornado-6.3.3.tar.gz", hash = "sha256:e7d8db41c0181c80d76c982aacc442c0783a2c54d6400fe028954201a2e032fe"}, ] [[package]] name = "typing-extensions" -version = "4.5.0" -description = "Backported and Experimental Type Hints for Python 3.7+" +version = "4.8.0" +description = "Backported and Experimental Type Hints for Python 3.8+" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.5.0-py3-none-any.whl", hash = "sha256:fb33085c39dd998ac16d1431ebc293a8b3eedd00fd4a32de0ff79002c19511b4"}, - {file = "typing_extensions-4.5.0.tar.gz", hash = "sha256:5cb5f4a79139d699607b3ef622a1dedafa84e115ab0024e0d9c044a9479ca7cb"}, + {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, + {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, ] [[package]] name = "urllib3" -version = "1.26.14" +version = "1.26.16" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ - {file = "urllib3-1.26.14-py2.py3-none-any.whl", hash = "sha256:75edcdc2f7d85b137124a6c3c9fc3933cdeaa12ecb9a6a959f22797a0feca7e1"}, - {file = "urllib3-1.26.14.tar.gz", hash = "sha256:076907bf8fd355cde77728471316625a4d2f7e713c125f51953bb5b3eecf4f72"}, + {file = "urllib3-1.26.16-py2.py3-none-any.whl", hash = "sha256:8d36afa7616d8ab714608411b4a3b13e58f463aee519024578e062e141dce20f"}, + {file = "urllib3-1.26.16.tar.gz", hash = "sha256:8f135f6502756bde6b2a9b28989df5fbe87c9970cecaa69041edcce7f0589b14"}, ] [package.extras] @@ -841,109 +1180,131 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] name = "websocket-client" -version = "1.5.1" +version = "1.6.3" description = "WebSocket client for Python with low level API options" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "websocket-client-1.5.1.tar.gz", hash = "sha256:3f09e6d8230892547132177f575a4e3e73cfdf06526e20cc02aa1c3b47184d40"}, - {file = "websocket_client-1.5.1-py3-none-any.whl", hash = "sha256:cdf5877568b7e83aa7cf2244ab56a3213de587bbe0ce9d8b9600fc77b455d89e"}, + {file = "websocket-client-1.6.3.tar.gz", hash = "sha256:3aad25d31284266bcfcfd1fd8a743f63282305a364b8d0948a43bd606acc652f"}, + {file = "websocket_client-1.6.3-py3-none-any.whl", hash = "sha256:6cfc30d051ebabb73a5fa246efdcc14c8fbebbd0330f8984ac3bb6d9edd2ad03"}, ] [package.extras] -docs = ["Sphinx (>=3.4)", "sphinx-rtd-theme (>=0.5)"] +docs = ["Sphinx (>=6.0)", "sphinx-rtd-theme (>=1.1.0)"] optional = ["python-socks", "wsaccel"] test = ["websockets"] [[package]] name = "wrapt" -version = "1.14.1" +version = "1.15.0" description = "Module for decorators, wrappers and monkey patching." optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" files = [ - {file = "wrapt-1.14.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:1b376b3f4896e7930f1f772ac4b064ac12598d1c38d04907e696cc4d794b43d3"}, - {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:903500616422a40a98a5a3c4ff4ed9d0066f3b4c951fa286018ecdf0750194ef"}, - {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5a9a0d155deafd9448baff28c08e150d9b24ff010e899311ddd63c45c2445e28"}, - {file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ddaea91abf8b0d13443f6dac52e89051a5063c7d014710dcb4d4abb2ff811a59"}, - {file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:36f582d0c6bc99d5f39cd3ac2a9062e57f3cf606ade29a0a0d6b323462f4dd87"}, - {file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:7ef58fb89674095bfc57c4069e95d7a31cfdc0939e2a579882ac7d55aadfd2a1"}, - {file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:e2f83e18fe2f4c9e7db597e988f72712c0c3676d337d8b101f6758107c42425b"}, - {file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ee2b1b1769f6707a8a445162ea16dddf74285c3964f605877a20e38545c3c462"}, - {file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:833b58d5d0b7e5b9832869f039203389ac7cbf01765639c7309fd50ef619e0b1"}, - {file = "wrapt-1.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320"}, - {file = "wrapt-1.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2"}, - {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4"}, - {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069"}, - {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310"}, - {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f"}, - {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656"}, - {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c"}, - {file = "wrapt-1.14.1-cp310-cp310-win32.whl", hash = "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8"}, - {file = "wrapt-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164"}, - {file = "wrapt-1.14.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:43ca3bbbe97af00f49efb06e352eae40434ca9d915906f77def219b88e85d907"}, - {file = "wrapt-1.14.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:6b1a564e6cb69922c7fe3a678b9f9a3c54e72b469875aa8018f18b4d1dd1adf3"}, - {file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:00b6d4ea20a906c0ca56d84f93065b398ab74b927a7a3dbd470f6fc503f95dc3"}, - {file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:a85d2b46be66a71bedde836d9e41859879cc54a2a04fad1191eb50c2066f6e9d"}, - {file = "wrapt-1.14.1-cp35-cp35m-win32.whl", hash = "sha256:dbcda74c67263139358f4d188ae5faae95c30929281bc6866d00573783c422b7"}, - {file = "wrapt-1.14.1-cp35-cp35m-win_amd64.whl", hash = "sha256:b21bb4c09ffabfa0e85e3a6b623e19b80e7acd709b9f91452b8297ace2a8ab00"}, - {file = "wrapt-1.14.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:9e0fd32e0148dd5dea6af5fee42beb949098564cc23211a88d799e434255a1f4"}, - {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9736af4641846491aedb3c3f56b9bc5568d92b0692303b5a305301a95dfd38b1"}, - {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b02d65b9ccf0ef6c34cba6cf5bf2aab1bb2f49c6090bafeecc9cd81ad4ea1c1"}, - {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21ac0156c4b089b330b7666db40feee30a5d52634cc4560e1905d6529a3897ff"}, - {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:9f3e6f9e05148ff90002b884fbc2a86bd303ae847e472f44ecc06c2cd2fcdb2d"}, - {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:6e743de5e9c3d1b7185870f480587b75b1cb604832e380d64f9504a0535912d1"}, - {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d79d7d5dc8a32b7093e81e97dad755127ff77bcc899e845f41bf71747af0c569"}, - {file = "wrapt-1.14.1-cp36-cp36m-win32.whl", hash = "sha256:81b19725065dcb43df02b37e03278c011a09e49757287dca60c5aecdd5a0b8ed"}, - {file = "wrapt-1.14.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b014c23646a467558be7da3d6b9fa409b2c567d2110599b7cf9a0c5992b3b471"}, - {file = "wrapt-1.14.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:88bd7b6bd70a5b6803c1abf6bca012f7ed963e58c68d76ee20b9d751c74a3248"}, - {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5901a312f4d14c59918c221323068fad0540e34324925c8475263841dbdfe68"}, - {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d77c85fedff92cf788face9bfa3ebaa364448ebb1d765302e9af11bf449ca36d"}, - {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d649d616e5c6a678b26d15ece345354f7c2286acd6db868e65fcc5ff7c24a77"}, - {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7d2872609603cb35ca513d7404a94d6d608fc13211563571117046c9d2bcc3d7"}, - {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:ee6acae74a2b91865910eef5e7de37dc6895ad96fa23603d1d27ea69df545015"}, - {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:2b39d38039a1fdad98c87279b48bc5dce2c0ca0d73483b12cb72aa9609278e8a"}, - {file = "wrapt-1.14.1-cp37-cp37m-win32.whl", hash = "sha256:60db23fa423575eeb65ea430cee741acb7c26a1365d103f7b0f6ec412b893853"}, - {file = "wrapt-1.14.1-cp37-cp37m-win_amd64.whl", hash = "sha256:709fe01086a55cf79d20f741f39325018f4df051ef39fe921b1ebe780a66184c"}, - {file = "wrapt-1.14.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8c0ce1e99116d5ab21355d8ebe53d9460366704ea38ae4d9f6933188f327b456"}, - {file = "wrapt-1.14.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e3fb1677c720409d5f671e39bac6c9e0e422584e5f518bfd50aa4cbbea02433f"}, - {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:642c2e7a804fcf18c222e1060df25fc210b9c58db7c91416fb055897fc27e8cc"}, - {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b7c050ae976e286906dd3f26009e117eb000fb2cf3533398c5ad9ccc86867b1"}, - {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef3f72c9666bba2bab70d2a8b79f2c6d2c1a42a7f7e2b0ec83bb2f9e383950af"}, - {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:01c205616a89d09827986bc4e859bcabd64f5a0662a7fe95e0d359424e0e071b"}, - {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5a0f54ce2c092aaf439813735584b9537cad479575a09892b8352fea5e988dc0"}, - {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2cf71233a0ed05ccdabe209c606fe0bac7379fdcf687f39b944420d2a09fdb57"}, - {file = "wrapt-1.14.1-cp38-cp38-win32.whl", hash = "sha256:aa31fdcc33fef9eb2552cbcbfee7773d5a6792c137b359e82879c101e98584c5"}, - {file = "wrapt-1.14.1-cp38-cp38-win_amd64.whl", hash = "sha256:d1967f46ea8f2db647c786e78d8cc7e4313dbd1b0aca360592d8027b8508e24d"}, - {file = "wrapt-1.14.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383"}, - {file = "wrapt-1.14.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7"}, - {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86"}, - {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735"}, - {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b"}, - {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3"}, - {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3"}, - {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe"}, - {file = "wrapt-1.14.1-cp39-cp39-win32.whl", hash = "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5"}, - {file = "wrapt-1.14.1-cp39-cp39-win_amd64.whl", hash = "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb"}, - {file = "wrapt-1.14.1.tar.gz", hash = "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d"}, + {file = "wrapt-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ca1cccf838cd28d5a0883b342474c630ac48cac5df0ee6eacc9c7290f76b11c1"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e826aadda3cae59295b95343db8f3d965fb31059da7de01ee8d1c40a60398b29"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5fc8e02f5984a55d2c653f5fea93531e9836abbd84342c1d1e17abc4a15084c2"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:96e25c8603a155559231c19c0349245eeb4ac0096fe3c1d0be5c47e075bd4f46"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:40737a081d7497efea35ab9304b829b857f21558acfc7b3272f908d33b0d9d4c"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:f87ec75864c37c4c6cb908d282e1969e79763e0d9becdfe9fe5473b7bb1e5f09"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:1286eb30261894e4c70d124d44b7fd07825340869945c79d05bda53a40caa079"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:493d389a2b63c88ad56cdc35d0fa5752daac56ca755805b1b0c530f785767d5e"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:58d7a75d731e8c63614222bcb21dd992b4ab01a399f1f09dd82af17bbfc2368a"}, + {file = "wrapt-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:21f6d9a0d5b3a207cdf7acf8e58d7d13d463e639f0c7e01d82cdb671e6cb7923"}, + {file = "wrapt-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ce42618f67741d4697684e501ef02f29e758a123aa2d669e2d964ff734ee00ee"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41d07d029dd4157ae27beab04d22b8e261eddfc6ecd64ff7000b10dc8b3a5727"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54accd4b8bc202966bafafd16e69da9d5640ff92389d33d28555c5fd4f25ccb7"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fbfbca668dd15b744418265a9607baa970c347eefd0db6a518aaf0cfbd153c0"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:76e9c727a874b4856d11a32fb0b389afc61ce8aaf281ada613713ddeadd1cfec"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e20076a211cd6f9b44a6be58f7eeafa7ab5720eb796975d0c03f05b47d89eb90"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a74d56552ddbde46c246b5b89199cb3fd182f9c346c784e1a93e4dc3f5ec9975"}, + {file = "wrapt-1.15.0-cp310-cp310-win32.whl", hash = "sha256:26458da5653aa5b3d8dc8b24192f574a58984c749401f98fff994d41d3f08da1"}, + {file = "wrapt-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:75760a47c06b5974aa5e01949bf7e66d2af4d08cb8c1d6516af5e39595397f5e"}, + {file = "wrapt-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba1711cda2d30634a7e452fc79eabcadaffedf241ff206db2ee93dd2c89a60e7"}, + {file = "wrapt-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:56374914b132c702aa9aa9959c550004b8847148f95e1b824772d453ac204a72"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a89ce3fd220ff144bd9d54da333ec0de0399b52c9ac3d2ce34b569cf1a5748fb"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3bbe623731d03b186b3d6b0d6f51865bf598587c38d6f7b0be2e27414f7f214e"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3abbe948c3cbde2689370a262a8d04e32ec2dd4f27103669a45c6929bcdbfe7c"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b67b819628e3b748fd3c2192c15fb951f549d0f47c0449af0764d7647302fda3"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7eebcdbe3677e58dd4c0e03b4f2cfa346ed4049687d839adad68cc38bb559c92"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:74934ebd71950e3db69960a7da29204f89624dde411afbfb3b4858c1409b1e98"}, + {file = "wrapt-1.15.0-cp311-cp311-win32.whl", hash = "sha256:bd84395aab8e4d36263cd1b9308cd504f6cf713b7d6d3ce25ea55670baec5416"}, + {file = "wrapt-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:a487f72a25904e2b4bbc0817ce7a8de94363bd7e79890510174da9d901c38705"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:4ff0d20f2e670800d3ed2b220d40984162089a6e2c9646fdb09b85e6f9a8fc29"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9ed6aa0726b9b60911f4aed8ec5b8dd7bf3491476015819f56473ffaef8959bd"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:896689fddba4f23ef7c718279e42f8834041a21342d95e56922e1c10c0cc7afb"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:75669d77bb2c071333417617a235324a1618dba66f82a750362eccbe5b61d248"}, + {file = "wrapt-1.15.0-cp35-cp35m-win32.whl", hash = "sha256:fbec11614dba0424ca72f4e8ba3c420dba07b4a7c206c8c8e4e73f2e98f4c559"}, + {file = "wrapt-1.15.0-cp35-cp35m-win_amd64.whl", hash = "sha256:fd69666217b62fa5d7c6aa88e507493a34dec4fa20c5bd925e4bc12fce586639"}, + {file = "wrapt-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b0724f05c396b0a4c36a3226c31648385deb6a65d8992644c12a4963c70326ba"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bbeccb1aa40ab88cd29e6c7d8585582c99548f55f9b2581dfc5ba68c59a85752"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38adf7198f8f154502883242f9fe7333ab05a5b02de7d83aa2d88ea621f13364"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:578383d740457fa790fdf85e6d346fda1416a40549fe8db08e5e9bd281c6a475"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:a4cbb9ff5795cd66f0066bdf5947f170f5d63a9274f99bdbca02fd973adcf2a8"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:af5bd9ccb188f6a5fdda9f1f09d9f4c86cc8a539bd48a0bfdc97723970348418"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:b56d5519e470d3f2fe4aa7585f0632b060d532d0696c5bdfb5e8319e1d0f69a2"}, + {file = "wrapt-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:77d4c1b881076c3ba173484dfa53d3582c1c8ff1f914c6461ab70c8428b796c1"}, + {file = "wrapt-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:077ff0d1f9d9e4ce6476c1a924a3332452c1406e59d90a2cf24aeb29eeac9420"}, + {file = "wrapt-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5c5aa28df055697d7c37d2099a7bc09f559d5053c3349b1ad0c39000e611d317"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a8564f283394634a7a7054b7983e47dbf39c07712d7b177b37e03f2467a024e"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780c82a41dc493b62fc5884fb1d3a3b81106642c5c5c78d6a0d4cbe96d62ba7e"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e169e957c33576f47e21864cf3fc9ff47c223a4ebca8960079b8bd36cb014fd0"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b02f21c1e2074943312d03d243ac4388319f2456576b2c6023041c4d57cd7019"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f2e69b3ed24544b0d3dbe2c5c0ba5153ce50dcebb576fdc4696d52aa22db6034"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d787272ed958a05b2c86311d3a4135d3c2aeea4fc655705f074130aa57d71653"}, + {file = "wrapt-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:02fce1852f755f44f95af51f69d22e45080102e9d00258053b79367d07af39c0"}, + {file = "wrapt-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:abd52a09d03adf9c763d706df707c343293d5d106aea53483e0ec8d9e310ad5e"}, + {file = "wrapt-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cdb4f085756c96a3af04e6eca7f08b1345e94b53af8921b25c72f096e704e145"}, + {file = "wrapt-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:230ae493696a371f1dbffaad3dafbb742a4d27a0afd2b1aecebe52b740167e7f"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63424c681923b9f3bfbc5e3205aafe790904053d42ddcc08542181a30a7a51bd"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6bcbfc99f55655c3d93feb7ef3800bd5bbe963a755687cbf1f490a71fb7794b"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c99f4309f5145b93eca6e35ac1a988f0dc0a7ccf9ccdcd78d3c0adf57224e62f"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b130fe77361d6771ecf5a219d8e0817d61b236b7d8b37cc045172e574ed219e6"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:96177eb5645b1c6985f5c11d03fc2dbda9ad24ec0f3a46dcce91445747e15094"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5fe3e099cf07d0fb5a1e23d399e5d4d1ca3e6dfcbe5c8570ccff3e9208274f7"}, + {file = "wrapt-1.15.0-cp38-cp38-win32.whl", hash = "sha256:abd8f36c99512755b8456047b7be10372fca271bf1467a1caa88db991e7c421b"}, + {file = "wrapt-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:b06fa97478a5f478fb05e1980980a7cdf2712015493b44d0c87606c1513ed5b1"}, + {file = "wrapt-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2e51de54d4fb8fb50d6ee8327f9828306a959ae394d3e01a1ba8b2f937747d86"}, + {file = "wrapt-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0970ddb69bba00670e58955f8019bec4a42d1785db3faa043c33d81de2bf843c"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76407ab327158c510f44ded207e2f76b657303e17cb7a572ffe2f5a8a48aa04d"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd525e0e52a5ff16653a3fc9e3dd827981917d34996600bbc34c05d048ca35cc"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d37ac69edc5614b90516807de32d08cb8e7b12260a285ee330955604ed9dd29"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:078e2a1a86544e644a68422f881c48b84fef6d18f8c7a957ffd3f2e0a74a0d4a"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2cf56d0e237280baed46f0b5316661da892565ff58309d4d2ed7dba763d984b8"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7dc0713bf81287a00516ef43137273b23ee414fe41a3c14be10dd95ed98a2df9"}, + {file = "wrapt-1.15.0-cp39-cp39-win32.whl", hash = "sha256:46ed616d5fb42f98630ed70c3529541408166c22cdfd4540b88d5f21006b0eff"}, + {file = "wrapt-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:eef4d64c650f33347c1f9266fa5ae001440b232ad9b98f1f43dfe7a79435c0a6"}, + {file = "wrapt-1.15.0-py3-none-any.whl", hash = "sha256:64b1df0f83706b4ef4cfb4fb0e4c2669100fd7ecacfb59e091fad300d4e04640"}, + {file = "wrapt-1.15.0.tar.gz", hash = "sha256:d06730c6aed78cee4126234cf2d071e01b44b915e725a6cb439a879ec9754a3a"}, +] + +[[package]] +name = "zict" +version = "3.0.0" +description = "Mutable mapping tools" +optional = false +python-versions = ">=3.8" +files = [ + {file = "zict-3.0.0-py2.py3-none-any.whl", hash = "sha256:5796e36bd0e0cc8cf0fbc1ace6a68912611c1dbd74750a3f3026b9b9d6a327ae"}, + {file = "zict-3.0.0.tar.gz", hash = "sha256:e321e263b6a97aafc0790c3cfb3c04656b7066e6738c37fffcca95d803c9fba5"}, ] [[package]] name = "zipp" -version = "3.14.0" +version = "3.17.0" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "zipp-3.14.0-py3-none-any.whl", hash = "sha256:188834565033387710d046e3fe96acfc9b5e86cbca7f39ff69cf21a4128198b7"}, - {file = "zipp-3.14.0.tar.gz", hash = "sha256:9e5421e176ef5ab4c0ad896624e87a7b2f07aca746c9b2aa305952800cb8eecb"}, + {file = "zipp-3.17.0-py3-none-any.whl", hash = "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31"}, + {file = "zipp-3.17.0.tar.gz", hash = "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["flake8 (<5)", "func-timeout", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] [metadata] lock-version = "2.0" -python-versions = ">=3.7.2" -content-hash = "5629ed0095a2ec545f4110e3d8cab55ed4d339ae59e3653ec4259f049fd3981e" +python-versions = ">=3.8" +content-hash = "eaaba052531eb458aee9183aa513730b91810c66ad87fd49078013f5c99559e1" diff --git a/cluster_tools/pyproject.toml b/cluster_tools/pyproject.toml index dac8bd06c..abb4331cd 100644 --- a/cluster_tools/pyproject.toml +++ b/cluster_tools/pyproject.toml @@ -8,8 +8,9 @@ license = "MIT" repository = "https://github.com/scalableminds/webknossos-libs" [tool.poetry.dependencies] -python = ">=3.7.2" -kubernetes = "^23.3.0" +python = ">=3.8" +distributed = { version = "^2023.9.1", python = ">=3.9" } +kubernetes = "^27.2.0" typing-extensions = "^4.4.0" [tool.poetry.dev-dependencies] diff --git a/cluster_tools/tests/test_all.py b/cluster_tools/tests/test_all.py index 84962e757..79d3df652 100644 --- a/cluster_tools/tests/test_all.py +++ b/cluster_tools/tests/test_all.py @@ -6,11 +6,15 @@ from enum import Enum from functools import partial from pathlib import Path -from typing import List +from typing import TYPE_CHECKING, List, Optional import pytest +if TYPE_CHECKING: + from distributed import LocalCluster + import cluster_tools +from cluster_tools.executors.dask import DaskExecutor # "Worker" functions. @@ -25,6 +29,8 @@ def sleep(duration: float) -> float: logging.basicConfig() +_dask_cluster: Optional["LocalCluster"] = None + def raise_if(msg: str, _bool: bool) -> None: if _bool: @@ -32,9 +38,11 @@ def raise_if(msg: str, _bool: bool) -> None: def get_executors(with_debug_sequential: bool = False) -> List[cluster_tools.Executor]: + global _dask_cluster executor_keys = { "slurm", "kubernetes", + "dask", "multiprocessing", "sequential", "test_pickling", @@ -69,6 +77,12 @@ def get_executors(with_debug_sequential: bool = False) -> List[cluster_tools.Exe executors.append(cluster_tools.get_executor("multiprocessing", max_workers=5)) if "sequential" in executor_keys: executors.append(cluster_tools.get_executor("sequential")) + if "dask" in executor_keys: + if not _dask_cluster: + from distributed import LocalCluster + + _dask_cluster = LocalCluster() + executors.append(cluster_tools.get_executor("dask", address=_dask_cluster)) if "test_pickling" in executor_keys: executors.append(cluster_tools.get_executor("test_pickling")) if "pbs" in executor_keys: @@ -199,9 +213,7 @@ def test_unordered_sleep() -> None: futures = [exc.submit(sleep, n) for n in durations] if not isinstance(exc, cluster_tools.SequentialExecutor): durations.sort() - for duration, future in zip( - durations, concurrent.futures.as_completed(futures) - ): + for duration, future in zip(durations, exc.as_completed(futures)): assert future.result() == duration @@ -226,7 +238,7 @@ def test_map_to_futures() -> None: futures = exc.map_to_futures(sleep, durations) results = [] - for i, duration in enumerate(concurrent.futures.as_completed(futures)): + for i, duration in enumerate(exc.as_completed(futures)): results.append(duration.result()) if not isinstance(exc, cluster_tools.SequentialExecutor): @@ -262,7 +274,7 @@ def test_map_to_futures_with_pickle_paths() -> None: ) results = [] - for i, duration in enumerate(concurrent.futures.as_completed(futures)): + for i, duration in enumerate(exc.as_completed(futures)): results.append(duration.result()) assert 2 in results diff --git a/cluster_tools/tests/test_deref_main.py b/cluster_tools/tests/test_deref_main.py index 43583bf39..0014ad3db 100644 --- a/cluster_tools/tests/test_deref_main.py +++ b/cluster_tools/tests/test_deref_main.py @@ -1,6 +1,4 @@ -from typing import Tuple, Type - -from typing_extensions import Literal +from typing import Literal, Tuple, Type import cluster_tools diff --git a/requirements.txt b/requirements.txt index 721dbab25..6aab9d654 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -dunamai==1.17.0 -poetry==1.5.1 +dunamai==1.18.1 +poetry==1.6.1 diff --git a/webknossos/Changelog.md b/webknossos/Changelog.md index 1bd823547..707762673 100644 --- a/webknossos/Changelog.md +++ b/webknossos/Changelog.md @@ -13,10 +13,12 @@ For upgrade instructions, please check the respective _Breaking Changes_ section [Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.13.7...HEAD) ### Breaking Changes +- `wait_and_ensure_success` from `webknossos.utils` now requires an `executor` argument. [#943](https://github.com/scalableminds/webknossos-libs/pull/943) ### Added ### Changed +- Updates various dependencies. [#943](https://github.com/scalableminds/webknossos-libs/pull/943) ### Fixed diff --git a/webknossos/__generate_client.py b/webknossos/__generate_client.py index 4d45e8159..32cffda1f 100644 --- a/webknossos/__generate_client.py +++ b/webknossos/__generate_client.py @@ -37,6 +37,7 @@ def generate_client(openapi_schema: Dict) -> None: generator_config = Config( project_name_override="webknossos/client/_generated", package_name_override=".", + package_version_override=None, ) generator_project = _get_project_for_url_or_path( url=None, diff --git a/webknossos/examples/learned_segmenter.py b/webknossos/examples/learned_segmenter.py index 5b1d27d92..3283e9d80 100644 --- a/webknossos/examples/learned_segmenter.py +++ b/webknossos/examples/learned_segmenter.py @@ -5,7 +5,7 @@ import numpy as np from skimage import feature -from skimage.future import TrainableSegmenter +from skimage.future import TrainableSegmenter # pylint: disable=no-name-in-module import webknossos as wk @@ -37,7 +37,7 @@ def main() -> None: # Step 2: Initialize a machine learning model to segment our dataset features_func = partial( - feature.multiscale_basic_features, multichannel=True, edges=False + feature.multiscale_basic_features, channel_axis=2, edges=False ) segmenter = TrainableSegmenter(features_func=features_func) diff --git a/webknossos/examples/zarr_and_dask.py b/webknossos/examples/zarr_and_dask.py index b3226a1ce..f81b35fa1 100644 --- a/webknossos/examples/zarr_and_dask.py +++ b/webknossos/examples/zarr_and_dask.py @@ -16,7 +16,7 @@ def main() -> None: zarr_array = mag_view.get_zarr_array() dask_array = da.from_array(zarr_array, chunks=(1, 256, 256, 256))[ - (0,) + mag_view.bounding_box.in_mag(MAG).to_slices() + (slice(0, 1),) + mag_view.bounding_box.in_mag(MAG).to_slices() ] mean_value = dask_array.mean().compute() diff --git a/webknossos/poetry.lock b/webknossos/poetry.lock index f0714ad11..c136e82be 100644 --- a/webknossos/poetry.lock +++ b/webknossos/poetry.lock @@ -2,119 +2,119 @@ [[package]] name = "aiobotocore" -version = "2.4.2" +version = "2.5.4" description = "Async client for aws services using botocore and aiohttp" optional = false python-versions = ">=3.7" files = [ - {file = "aiobotocore-2.4.2-py3-none-any.whl", hash = "sha256:4acd1ebe2e44be4b100aa553910bda899f6dc090b3da2bc1cf3d5de2146ed208"}, - {file = "aiobotocore-2.4.2.tar.gz", hash = "sha256:0603b74a582dffa7511ce7548d07dc9b10ec87bc5fb657eb0b34f9bd490958bf"}, + {file = "aiobotocore-2.5.4-py3-none-any.whl", hash = "sha256:4b32218728ca3d0be83835b604603a0cd6c329066e884bb78149334267f92440"}, + {file = "aiobotocore-2.5.4.tar.gz", hash = "sha256:60341f19eda77e41e1ab11eef171b5a98b5dbdb90804f5334b6f90e560e31fae"}, ] [package.dependencies] -aiohttp = ">=3.3.1" -aioitertools = ">=0.5.1" -botocore = ">=1.27.59,<1.27.60" -wrapt = ">=1.10.10" +aiohttp = ">=3.3.1,<4.0.0" +aioitertools = ">=0.5.1,<1.0.0" +botocore = ">=1.31.17,<1.31.18" +wrapt = ">=1.10.10,<2.0.0" [package.extras] -awscli = ["awscli (>=1.25.60,<1.25.61)"] -boto3 = ["boto3 (>=1.24.59,<1.24.60)"] +awscli = ["awscli (>=1.29.17,<1.29.18)"] +boto3 = ["boto3 (>=1.28.17,<1.28.18)"] [[package]] name = "aiohttp" -version = "3.8.4" +version = "3.8.5" description = "Async http client/server framework (asyncio)" optional = false python-versions = ">=3.6" files = [ - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea"}, - {file = "aiohttp-3.8.4-cp310-cp310-win32.whl", hash = "sha256:59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1"}, - {file = "aiohttp-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24"}, - {file = "aiohttp-3.8.4-cp311-cp311-win32.whl", hash = "sha256:bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d"}, - {file = "aiohttp-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc"}, - {file = "aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win32.whl", hash = "sha256:5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win_amd64.whl", hash = "sha256:4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e"}, - {file = "aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win32.whl", hash = "sha256:aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win_amd64.whl", hash = "sha256:db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d"}, - {file = "aiohttp-3.8.4-cp38-cp38-win32.whl", hash = "sha256:33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54"}, - {file = "aiohttp-3.8.4-cp38-cp38-win_amd64.whl", hash = "sha256:e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4"}, - {file = "aiohttp-3.8.4-cp39-cp39-win32.whl", hash = "sha256:34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a"}, - {file = "aiohttp-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04"}, - {file = "aiohttp-3.8.4.tar.gz", hash = "sha256:bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, + {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, + {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, + {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, + {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, + {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, + {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, + {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, + {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, + {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, + {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"}, ] [package.dependencies] @@ -159,24 +159,24 @@ frozenlist = ">=1.1.0" [[package]] name = "anyio" -version = "3.7.0" +version = "4.0.0" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "anyio-3.7.0-py3-none-any.whl", hash = "sha256:eddca883c4175f14df8aedce21054bfca3adb70ffe76a9f607aef9d7fa2ea7f0"}, - {file = "anyio-3.7.0.tar.gz", hash = "sha256:275d9973793619a5374e1c89a4f4ad3f4b0a5510a2b5b939444bee8f4c4d37ce"}, + {file = "anyio-4.0.0-py3-none-any.whl", hash = "sha256:cfdb2b588b9fc25ede96d8db56ed50848b0b649dca3dd1df0b11f683bb9e0b5f"}, + {file = "anyio-4.0.0.tar.gz", hash = "sha256:f7ed51751b2c2add651e5747c891b47e26d2a21be5d32d9311dfe9692f3e5d7a"}, ] [package.dependencies] -exceptiongroup = {version = "*", markers = "python_version < \"3.11\""} +exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} idna = ">=2.8" sniffio = ">=1.1" [package.extras] -doc = ["Sphinx (>=6.1.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme", "sphinxcontrib-jquery"] -test = ["anyio[trio]", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] -trio = ["trio (<0.22)"] +doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] +trio = ["trio (>=0.22)"] [[package]] name = "asciitree" @@ -190,13 +190,13 @@ files = [ [[package]] name = "astroid" -version = "2.15.5" +version = "2.15.7" description = "An abstract syntax tree for Python with inference support." optional = false python-versions = ">=3.7.2" files = [ - {file = "astroid-2.15.5-py3-none-any.whl", hash = "sha256:078e5212f9885fa85fbb0cf0101978a336190aadea6e13305409d099f71b2324"}, - {file = "astroid-2.15.5.tar.gz", hash = "sha256:1039262575027b441137ab4a62a793a9b43defb42c32d5670f38686207cd780f"}, + {file = "astroid-2.15.7-py3-none-any.whl", hash = "sha256:958f280532e36ca84a13023f15cb1556fb6792d193acb87e1f3ca536b6fa6bd2"}, + {file = "astroid-2.15.7.tar.gz", hash = "sha256:c522f2832a900e27a7d284b9b6ef670d2495f760ede3c8c0b004a5641d3c5987"}, ] [package.dependencies] @@ -209,59 +209,59 @@ wrapt = [ [[package]] name = "asttokens" -version = "2.2.1" +version = "2.4.0" description = "Annotate AST trees with source code positions" optional = false python-versions = "*" files = [ - {file = "asttokens-2.2.1-py2.py3-none-any.whl", hash = "sha256:6b0ac9e93fb0335014d382b8fa9b3afa7df546984258005da0b9e7095b3deb1c"}, - {file = "asttokens-2.2.1.tar.gz", hash = "sha256:4622110b2a6f30b77e1473affaa97e711bc2f07d3f10848420ff1898edbe94f3"}, + {file = "asttokens-2.4.0-py2.py3-none-any.whl", hash = "sha256:cf8fc9e61a86461aa9fb161a14a0841a03c405fa829ac6b202670b3495d2ce69"}, + {file = "asttokens-2.4.0.tar.gz", hash = "sha256:2e0171b991b2c959acc6c49318049236844a5da1d65ba2672c4880c1c894834e"}, ] [package.dependencies] -six = "*" +six = ">=1.12.0" [package.extras] test = ["astroid", "pytest"] [[package]] name = "async-timeout" -version = "4.0.2" +version = "4.0.3" description = "Timeout context manager for asyncio programs" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "async-timeout-4.0.2.tar.gz", hash = "sha256:2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15"}, - {file = "async_timeout-4.0.2-py3-none-any.whl", hash = "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c"}, + {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, + {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, ] [[package]] name = "attrs" -version = "22.2.0" +version = "23.1.0" description = "Classes Without Boilerplate" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "attrs-22.2.0-py3-none-any.whl", hash = "sha256:29e95c7f6778868dbd49170f98f8818f78f3dc5e0e37c0b1f474e3561b240836"}, - {file = "attrs-22.2.0.tar.gz", hash = "sha256:c9227bfc2f01993c03f68db37d1d15c9690188323c067c641f1a35ca58185f99"}, + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, ] [package.extras] -cov = ["attrs[tests]", "coverage-enable-subprocess", "coverage[toml] (>=5.3)"] -dev = ["attrs[docs,tests]"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope.interface"] -tests = ["attrs[tests-no-zope]", "zope.interface"] -tests-no-zope = ["cloudpickle", "cloudpickle", "hypothesis", "hypothesis", "mypy (>=0.971,<0.990)", "mypy (>=0.971,<0.990)", "pympler", "pympler", "pytest (>=4.3.0)", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-mypy-plugins", "pytest-xdist[psutil]", "pytest-xdist[psutil]"] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] [[package]] name = "autoflake" -version = "2.1.1" +version = "2.2.1" description = "Removes unused imports and unused variables" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "autoflake-2.1.1-py3-none-any.whl", hash = "sha256:94e330a2bcf5ac01384fb2bf98bea60c6383eaa59ea62be486e376622deba985"}, - {file = "autoflake-2.1.1.tar.gz", hash = "sha256:75524b48d42d6537041d91f17573b8a98cb645642f9f05c7fcc68de10b1cade3"}, + {file = "autoflake-2.2.1-py3-none-any.whl", hash = "sha256:265cde0a43c1f44ecfb4f30d95b0437796759d07be7706a2f70e4719234c0f79"}, + {file = "autoflake-2.2.1.tar.gz", hash = "sha256:62b7b6449a692c3c9b0c916919bbc21648da7281e8506bcf8d3f8280e431ebc1"}, ] [package.dependencies] @@ -270,36 +270,33 @@ tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""} [[package]] name = "black" -version = "23.3.0" +version = "23.9.1" description = "The uncompromising code formatter." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "black-23.3.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:0945e13506be58bf7db93ee5853243eb368ace1c08a24c65ce108986eac65915"}, - {file = "black-23.3.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:67de8d0c209eb5b330cce2469503de11bca4085880d62f1628bd9972cc3366b9"}, - {file = "black-23.3.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:7c3eb7cea23904399866c55826b31c1f55bbcd3890ce22ff70466b907b6775c2"}, - {file = "black-23.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32daa9783106c28815d05b724238e30718f34155653d4d6e125dc7daec8e260c"}, - {file = "black-23.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:35d1381d7a22cc5b2be2f72c7dfdae4072a3336060635718cc7e1ede24221d6c"}, - {file = "black-23.3.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:a8a968125d0a6a404842fa1bf0b349a568634f856aa08ffaff40ae0dfa52e7c6"}, - {file = "black-23.3.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:c7ab5790333c448903c4b721b59c0d80b11fe5e9803d8703e84dcb8da56fec1b"}, - {file = "black-23.3.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:a6f6886c9869d4daae2d1715ce34a19bbc4b95006d20ed785ca00fa03cba312d"}, - {file = "black-23.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f3c333ea1dd6771b2d3777482429864f8e258899f6ff05826c3a4fcc5ce3f70"}, - {file = "black-23.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:11c410f71b876f961d1de77b9699ad19f939094c3a677323f43d7a29855fe326"}, - {file = "black-23.3.0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:1d06691f1eb8de91cd1b322f21e3bfc9efe0c7ca1f0e1eb1db44ea367dff656b"}, - {file = "black-23.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50cb33cac881766a5cd9913e10ff75b1e8eb71babf4c7104f2e9c52da1fb7de2"}, - {file = "black-23.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:e114420bf26b90d4b9daa597351337762b63039752bdf72bf361364c1aa05925"}, - {file = "black-23.3.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:48f9d345675bb7fbc3dd85821b12487e1b9a75242028adad0333ce36ed2a6d27"}, - {file = "black-23.3.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:714290490c18fb0126baa0fca0a54ee795f7502b44177e1ce7624ba1c00f2331"}, - {file = "black-23.3.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:064101748afa12ad2291c2b91c960be28b817c0c7eaa35bec09cc63aa56493c5"}, - {file = "black-23.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:562bd3a70495facf56814293149e51aa1be9931567474993c7942ff7d3533961"}, - {file = "black-23.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:e198cf27888ad6f4ff331ca1c48ffc038848ea9f031a3b40ba36aced7e22f2c8"}, - {file = "black-23.3.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:3238f2aacf827d18d26db07524e44741233ae09a584273aa059066d644ca7b30"}, - {file = "black-23.3.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:f0bd2f4a58d6666500542b26354978218a9babcdc972722f4bf90779524515f3"}, - {file = "black-23.3.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:92c543f6854c28a3c7f39f4d9b7694f9a6eb9d3c5e2ece488c327b6e7ea9b266"}, - {file = "black-23.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a150542a204124ed00683f0db1f5cf1c2aaaa9cc3495b7a3b5976fb136090ab"}, - {file = "black-23.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:6b39abdfb402002b8a7d030ccc85cf5afff64ee90fa4c5aebc531e3ad0175ddb"}, - {file = "black-23.3.0-py3-none-any.whl", hash = "sha256:ec751418022185b0c1bb7d7736e6933d40bbb14c14a0abcf9123d1b159f98dd4"}, - {file = "black-23.3.0.tar.gz", hash = "sha256:1c7b8d606e728a41ea1ccbd7264677e494e87cf630e399262ced92d4a8dac940"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71"}, + {file = "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7"}, + {file = "black-23.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186"}, + {file = "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f"}, + {file = "black-23.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204"}, + {file = "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377"}, + {file = "black-23.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393"}, + {file = "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9"}, + {file = "black-23.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f"}, + {file = "black-23.9.1-py3-none-any.whl", hash = "sha256:6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9"}, + {file = "black-23.9.1.tar.gz", hash = "sha256:24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d"}, ] [package.dependencies] @@ -309,7 +306,7 @@ packaging = ">=22.0" pathspec = ">=0.9.0" platformdirs = ">=2" tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} -typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""} +typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} [package.extras] colorama = ["colorama (>=0.4.3)"] @@ -330,13 +327,13 @@ files = [ [[package]] name = "botocore" -version = "1.27.59" +version = "1.31.17" description = "Low-level, data-driven core of boto 3." optional = false python-versions = ">= 3.7" files = [ - {file = "botocore-1.27.59-py3-none-any.whl", hash = "sha256:69d756791fc024bda54f6c53f71ae34e695ee41bbbc1743d9179c4837a4929da"}, - {file = "botocore-1.27.59.tar.gz", hash = "sha256:eda4aed6ee719a745d1288eaf1beb12f6f6448ad1fa12f159405db14ba9c92cf"}, + {file = "botocore-1.31.17-py3-none-any.whl", hash = "sha256:6ac34a1d34aa3750e78b77b8596617e2bab938964694d651939dba2cbde2c12b"}, + {file = "botocore-1.31.17.tar.gz", hash = "sha256:396459065dba4339eb4da4ec8b4e6599728eb89b7caaceea199e26f7d824a41c"}, ] [package.dependencies] @@ -345,7 +342,7 @@ python-dateutil = ">=2.1,<3.0.0" urllib3 = ">=1.25.4,<1.27" [package.extras] -crt = ["awscrt (==0.14.0)"] +crt = ["awscrt (==0.16.26)"] [[package]] name = "cachetools" @@ -360,28 +357,38 @@ files = [ [[package]] name = "cattrs" -version = "22.2.0" +version = "23.1.2" description = "Composable complex class support for attrs and dataclasses." optional = false python-versions = ">=3.7" files = [ - {file = "cattrs-22.2.0-py3-none-any.whl", hash = "sha256:bc12b1f0d000b9f9bee83335887d532a1d3e99a833d1bf0882151c97d3e68c21"}, - {file = "cattrs-22.2.0.tar.gz", hash = "sha256:f0eed5642399423cf656e7b66ce92cdc5b963ecafd041d1b24d136fdde7acf6d"}, + {file = "cattrs-23.1.2-py3-none-any.whl", hash = "sha256:b2bb14311ac17bed0d58785e5a60f022e5431aca3932e3fc5cc8ed8639de50a4"}, + {file = "cattrs-23.1.2.tar.gz", hash = "sha256:db1c821b8c537382b2c7c66678c3790091ca0275ac486c76f3c8f3920e83c657"}, ] [package.dependencies] attrs = ">=20" exceptiongroup = {version = "*", markers = "python_version < \"3.11\""} +typing_extensions = {version = ">=4.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +bson = ["pymongo (>=4.2.0,<5.0.0)"] +cbor2 = ["cbor2 (>=5.4.6,<6.0.0)"] +msgpack = ["msgpack (>=1.0.2,<2.0.0)"] +orjson = ["orjson (>=3.5.2,<4.0.0)"] +pyyaml = ["PyYAML (>=6.0,<7.0)"] +tomlkit = ["tomlkit (>=0.11.4,<0.12.0)"] +ujson = ["ujson (>=5.4.0,<6.0.0)"] [[package]] name = "certifi" -version = "2023.5.7" +version = "2023.7.22" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, - {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, ] [[package]] @@ -462,97 +469,97 @@ pycparser = "*" [[package]] name = "charset-normalizer" -version = "3.1.0" +version = "3.2.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, - {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, ] [[package]] name = "click" -version = "8.1.3" +version = "8.1.7" description = "Composable command line interface toolkit" optional = false python-versions = ">=3.7" files = [ - {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, - {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, ] [package.dependencies] @@ -574,12 +581,13 @@ name = "cluster-tools" version = "0.0.0" description = "Utility library for easily distributing code execution on clusters" optional = false -python-versions = ">=3.7.2" +python-versions = ">=3.8" files = [] develop = true [package.dependencies] -kubernetes = "^23.3.0" +distributed = {version = "^2023.9.1", markers = "python_version >= \"3.9\""} +kubernetes = "^27.2.0" typing-extensions = "^4.4.0" [package.source] @@ -588,28 +596,28 @@ url = "../cluster_tools" [[package]] name = "cmake" -version = "3.26.4" +version = "3.27.5" description = "CMake is an open-source, cross-platform family of tools designed to build, test and package software" optional = true python-versions = "*" files = [ - {file = "cmake-3.26.4-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:230227bf99f36614de84cdc92ffce3a50eb2803020e946f8da945a08fcf766bf"}, - {file = "cmake-3.26.4-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl", hash = "sha256:248a90816abfc10ff6e1109b54b8235c3e62f0ac92da16541753deb3b5ae063d"}, - {file = "cmake-3.26.4-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:1b92f9f59f48c803106dbdd6750b0f571a0500e25d3a62c42ba84bb7a9240d10"}, - {file = "cmake-3.26.4-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3175442985558d5415b97f264a6a1bb0af5ecfe10e3f7510257b1ea66bd33848"}, - {file = "cmake-3.26.4-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1d887be5f1a3f17559a78707a6bc0560f4f8cb93cebb9d823d90a63e68bae09b"}, - {file = "cmake-3.26.4-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:235d8eac93a28dcce5a1cd7130412885a2aa53d5735cb2230e0f26f589347b65"}, - {file = "cmake-3.26.4-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:05cfd76c637eb22058c95e2dc383cadd4e0615e2643e637bb498a6cc24825790"}, - {file = "cmake-3.26.4-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:93015da6f1c0e1e5f2debf752f1803ea52d742d915ad674043d36e471f937507"}, - {file = "cmake-3.26.4-py2.py3-none-musllinux_1_1_aarch64.whl", hash = "sha256:d726671ae7ae4aa6989e73d26b9f8f8e6af45163a26ea243949d72246566fdd8"}, - {file = "cmake-3.26.4-py2.py3-none-musllinux_1_1_i686.whl", hash = "sha256:432837364aa6cab2826a72e8a4cdd3586f5ac9ce495217ccd59aa70f2bba8120"}, - {file = "cmake-3.26.4-py2.py3-none-musllinux_1_1_ppc64le.whl", hash = "sha256:24110035aff586a04a6a6fcf4609270642e4f503c0620c962dff75b653f81414"}, - {file = "cmake-3.26.4-py2.py3-none-musllinux_1_1_s390x.whl", hash = "sha256:3e280e81713408987b7053f5b922c9f94e45668ca6efff1f02846309ca0b5b0f"}, - {file = "cmake-3.26.4-py2.py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:c3b0e72750c0f6c0373242c1299bc4ffdbebdd5004966ae6df0b2e9845aa6990"}, - {file = "cmake-3.26.4-py2.py3-none-win32.whl", hash = "sha256:e058e59154a1e490fb9425b420f87e28144292397607638d73e323509f7efae6"}, - {file = "cmake-3.26.4-py2.py3-none-win_amd64.whl", hash = "sha256:b7a6946c345497c14064e0c9585b30f5aaebbefdfc0b245b6bb5a978eb4fc85f"}, - {file = "cmake-3.26.4-py2.py3-none-win_arm64.whl", hash = "sha256:93a03bad17b9741acaff4a8651f8596496506602fa123e70fe67142f1b21ee2e"}, - {file = "cmake-3.26.4.tar.gz", hash = "sha256:d45b30b9ce7280829888c78650177ab525df2b6785e1a5b3d82b4c147d828c0e"}, + {file = "cmake-3.27.5-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:fc15d514587e6bae7c3b6616d1eb2792548d34e6910490e20065378b3cd1019e"}, + {file = "cmake-3.27.5-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl", hash = "sha256:bc784f6a0f07f517323e1fa2b005302ed8e90d3044a89a1b4b9b1962df2053ed"}, + {file = "cmake-3.27.5-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:49307970589b2202bd528317a7a4a52bb6e6debca4f4c28e192a6b4965f47687"}, + {file = "cmake-3.27.5-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:000efab194567cbd5c7f1cb0e839c57b44db01f218f4d318ee5eac0ec72dbd90"}, + {file = "cmake-3.27.5-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:9229170107c5bfadba32cd25c7c6ee5b936649a36c53247d41a39bcdfdcd55d6"}, + {file = "cmake-3.27.5-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:a941c9dc0fda65e2b7cf2657f87802702fd28e677991d629b58a00cced3bed08"}, + {file = "cmake-3.27.5-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:f47117376ccea3189628a911666a7e23e09efae26c124aebe8f0aa139000dc73"}, + {file = "cmake-3.27.5-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:14acb1954b1ec0b398fb5265bc9e9b8785dffc6c3686d031bd1758ca23293162"}, + {file = "cmake-3.27.5-py2.py3-none-musllinux_1_1_aarch64.whl", hash = "sha256:49385eda22f5b94ffb00c2251a76f4c1d5b5aedf737767e7c44f75b4a1fdd426"}, + {file = "cmake-3.27.5-py2.py3-none-musllinux_1_1_i686.whl", hash = "sha256:9ef2b45834e3777ddbb477d21784ffdbe4f09a3d0e0883b55fea0c4cadd6038e"}, + {file = "cmake-3.27.5-py2.py3-none-musllinux_1_1_ppc64le.whl", hash = "sha256:f510aa3bc6b2c0b8fb51f22209359a6da7544f668629b01544a5b991cdec82ee"}, + {file = "cmake-3.27.5-py2.py3-none-musllinux_1_1_s390x.whl", hash = "sha256:014badd3ad7b0bd55ed81d8b60bf435ef2a382e9ad0f03340fea2bb41620b9af"}, + {file = "cmake-3.27.5-py2.py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:256ba48b86bb63bcb61db6de27a5458d66857b10902d8f942e8d3432a58939b4"}, + {file = "cmake-3.27.5-py2.py3-none-win32.whl", hash = "sha256:ec338a489a80feaf8adfe9bb92eaba93318407ae6088a6dad7896aba0dd698cf"}, + {file = "cmake-3.27.5-py2.py3-none-win_amd64.whl", hash = "sha256:fa55547922e5dbe0f1edb6d4d23d78feab39366a0507e9eb5f9300f5d6010ab6"}, + {file = "cmake-3.27.5-py2.py3-none-win_arm64.whl", hash = "sha256:3c93abd817848f81f992cd2c53c9397a353625de2af27b14b23761e5cce99c5d"}, + {file = "cmake-3.27.5.tar.gz", hash = "sha256:101d4e56154658c974e9425acd31f0fedde3ce68b47263fd14f789b028f8a13a"}, ] [package.extras] @@ -729,45 +737,76 @@ files = [ [[package]] name = "dask" -version = "2022.2.0" +version = "2023.9.2" description = "Parallel PyData with Task Scheduling" optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "dask-2022.2.0-py3-none-any.whl", hash = "sha256:feaf838faa23150faadaeb2483e8612cfb8fed51f62e635a1a6dd55d1d793ba4"}, - {file = "dask-2022.2.0.tar.gz", hash = "sha256:cefb5c63d1e26f6dfa650ddd1eb1a53e0cef623141b838820c6b34e6534ea409"}, + {file = "dask-2023.9.2-py3-none-any.whl", hash = "sha256:5742bc3752a8caad1c8bbb24aa2986424c73c4c819d5ac5a9544c6f373d0094b"}, + {file = "dask-2023.9.2.tar.gz", hash = "sha256:34e04ed79870cd01119217562f417c6ce575b10fb8fdcd866e9c5cd10c088944"}, ] [package.dependencies] -cloudpickle = ">=1.1.1" -fsspec = ">=0.6.0" +click = ">=8.0" +cloudpickle = ">=1.5.0" +distributed = {version = "2023.9.2", optional = true, markers = "extra == \"distributed\""} +fsspec = ">=2021.09.0" +importlib-metadata = ">=4.13.0" packaging = ">=20.0" -partd = ">=0.3.10" +partd = ">=1.2.0" pyyaml = ">=5.3.1" -toolz = ">=0.8.2" +toolz = ">=0.10.0" [package.extras] -array = ["numpy (>=1.18)"] -complete = ["bokeh (>=2.1.1)", "distributed (==2022.02.0)", "jinja2", "numpy (>=1.18)", "pandas (>=1.0)"] -dataframe = ["numpy (>=1.18)", "pandas (>=1.0)"] -diagnostics = ["bokeh (>=2.1.1)", "jinja2"] -distributed = ["distributed (==2022.02.0)"] -test = ["pre-commit", "pytest", "pytest-rerunfailures", "pytest-xdist"] +array = ["numpy (>=1.21)"] +complete = ["dask[array,dataframe,diagnostics,distributed]", "lz4 (>=4.3.2)", "pyarrow (>=7.0)"] +dataframe = ["dask[array]", "pandas (>=1.3)"] +diagnostics = ["bokeh (>=2.4.2)", "jinja2 (>=2.10.3)"] +distributed = ["distributed (==2023.9.2)"] +test = ["pandas[test]", "pre-commit", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-timeout", "pytest-xdist"] [[package]] name = "dill" -version = "0.3.6" -description = "serialize all of python" +version = "0.3.7" +description = "serialize all of Python" optional = false python-versions = ">=3.7" files = [ - {file = "dill-0.3.6-py3-none-any.whl", hash = "sha256:a07ffd2351b8c678dfc4a856a3005f8067aea51d6ba6c700796a4d9e280f39f0"}, - {file = "dill-0.3.6.tar.gz", hash = "sha256:e5db55f3687856d8fbdab002ed78544e1c4559a130302693d839dfe8f93f2373"}, + {file = "dill-0.3.7-py3-none-any.whl", hash = "sha256:76b122c08ef4ce2eedcd4d1abd8e641114bfc6c2867f49f3c41facf65bf19f5e"}, + {file = "dill-0.3.7.tar.gz", hash = "sha256:cc1c8b182eb3013e24bd475ff2e9295af86c1a38eb1aff128dac8962a9ce3c03"}, ] [package.extras] graph = ["objgraph (>=1.7.2)"] +[[package]] +name = "distributed" +version = "2023.9.2" +description = "Distributed scheduler for Dask" +optional = false +python-versions = ">=3.9" +files = [ + {file = "distributed-2023.9.2-py3-none-any.whl", hash = "sha256:c2adf3b803599e8cff40034abf3dcd8470ef0678f6ae5a0d23c2ffd55fc0e0ca"}, + {file = "distributed-2023.9.2.tar.gz", hash = "sha256:b76b43be6a297c6cc6dc4eac7f5a05a8c6834aaf025ed37395d1d830448d540e"}, +] + +[package.dependencies] +click = ">=8.0" +cloudpickle = ">=1.5.0" +dask = "2023.9.2" +jinja2 = ">=2.10.3" +locket = ">=1.0.0" +msgpack = ">=1.0.0" +packaging = ">=20.0" +psutil = ">=5.7.2" +pyyaml = ">=5.3.1" +sortedcontainers = ">=2.0.5" +tblib = ">=1.6.0" +toolz = ">=0.10.0" +tornado = ">=6.0.4" +urllib3 = ">=1.24.3" +zict = ">=3.0.0" + [[package]] name = "entrypoints" version = "0.4" @@ -781,13 +820,13 @@ files = [ [[package]] name = "exceptiongroup" -version = "1.1.1" +version = "1.1.3" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.1.1-py3-none-any.whl", hash = "sha256:232c37c63e4f682982c8b6459f33a8981039e5fb8756b2074364e5055c498c9e"}, - {file = "exceptiongroup-1.1.1.tar.gz", hash = "sha256:d484c3090ba2889ae2928419117447a14daf3c1231d5e30d0aae34f354f01785"}, + {file = "exceptiongroup-1.1.3-py3-none-any.whl", hash = "sha256:343280667a4585d195ca1cf9cef84a4e178c4b6cf2274caef9859782b567d5e3"}, + {file = "exceptiongroup-1.1.3.tar.gz", hash = "sha256:097acd85d473d75af5bb98e41b61ff7fe35efe6675e4f9370ec6ec5126d160e9"}, ] [package.extras] @@ -809,57 +848,57 @@ tests = ["asttokens", "littleutils", "pytest", "rich"] [[package]] name = "fasteners" -version = "0.18" +version = "0.19" description = "A python package that provides useful locks" optional = false python-versions = ">=3.6" files = [ - {file = "fasteners-0.18-py3-none-any.whl", hash = "sha256:1d4caf5f8db57b0e4107d94fd5a1d02510a450dced6ca77d1839064c1bacf20c"}, - {file = "fasteners-0.18.tar.gz", hash = "sha256:cb7c13ef91e0c7e4fe4af38ecaf6b904ec3f5ce0dda06d34924b6b74b869d953"}, + {file = "fasteners-0.19-py3-none-any.whl", hash = "sha256:758819cb5d94cdedf4e836988b74de396ceacb8e2794d21f82d131fd9ee77237"}, + {file = "fasteners-0.19.tar.gz", hash = "sha256:b4f37c3ac52d8a445af3a66bce57b33b5e90b97c696b7b984f530cf8f0ded09c"}, ] [[package]] name = "fastremap" -version = "1.13.5" +version = "1.14.0" description = "Remap, mask, renumber, unique, and in-place transposition of 3D labeled images. Point cloud too." optional = false python-versions = ">=3.7,<4.0" files = [ - {file = "fastremap-1.13.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:800c64f39873902cd75ea7184ec9db63639267642a7981d3efa5a98b1b1bc990"}, - {file = "fastremap-1.13.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cb2aa67d62d69bb62262e19e11ffd57110839c382dea12dc98d7a1da078817c1"}, - {file = "fastremap-1.13.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b0ba490343abc1201fa2a93c74d5ed5894a710da087470fd61b3fb077fa88ab5"}, - {file = "fastremap-1.13.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f26665bde0fddb5c2212afcaa34ce58ca4a98aa5a6fa89369e9944d4a3522c5"}, - {file = "fastremap-1.13.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c107c2ebd10199eb7dfa90408f154544010f6665309a4fe9679aca917cee993e"}, - {file = "fastremap-1.13.5-cp310-cp310-win32.whl", hash = "sha256:3af860cb3474bf882b7b6905d8c2b0ae76d61e932e83e534e684fbb3be7bd9d8"}, - {file = "fastremap-1.13.5-cp310-cp310-win_amd64.whl", hash = "sha256:c2be6519c0f0acecd3f8ce782d37c2315c0fa2b7c22143fd35e9e6a7c5362a6d"}, - {file = "fastremap-1.13.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:98be6597c46318a65b0d2eac3110ae780f54c20d1053a8ba9488422faf946eb9"}, - {file = "fastremap-1.13.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:138198c81b1c5b2ef0f5c57c756bd7961ecfca9b2e979e8fa14264b1800d18cf"}, - {file = "fastremap-1.13.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9bbd2ee8173889878cdd41ce314503d9d66cacdc8125f192b6b25f748b819415"}, - {file = "fastremap-1.13.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:132ef393bd5bc5d5a2d056c31eab5a21ed5b84cd9c8502f950eeb6052eab9867"}, - {file = "fastremap-1.13.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4607aa470ac065b752ef937256cf96ca6b2837f4a4dc136dabd28adace4e450"}, - {file = "fastremap-1.13.5-cp311-cp311-win32.whl", hash = "sha256:f7a1c2005b5ff47d751f25bba63f5547805702822ecd0104809e6930a51b8311"}, - {file = "fastremap-1.13.5-cp311-cp311-win_amd64.whl", hash = "sha256:fa845a4f652917a231480839acbc9861d508e0495e638b26822e04dfe986dacd"}, - {file = "fastremap-1.13.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d450342ef47627ba2b6318cce91d851ebe61646ab54bb7e97415fea8ca032b54"}, - {file = "fastremap-1.13.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98ffbb54a35b4b6165ee4600a09d93de00e13e7d8a35bc2d87b8d306dc95f5ad"}, - {file = "fastremap-1.13.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:51970cacaf9f3e609f560dff8c45779c6698564777035e6a9535b9286fc3813a"}, - {file = "fastremap-1.13.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a79af07e8d521cfae216ceaf6197285063f52cfd33bca699462b292dee0c1341"}, - {file = "fastremap-1.13.5-cp37-cp37m-win32.whl", hash = "sha256:b0209dcef495419a77caadb960234fdfda6b0c1da79cc4a258ed9a3d403f3383"}, - {file = "fastremap-1.13.5-cp37-cp37m-win_amd64.whl", hash = "sha256:3e71b0368501616a11909d725661ec8ce9830b3942dc6a6cde6ad6b969e62675"}, - {file = "fastremap-1.13.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5898467ea644cd0b0885352e440952a359f6d317cb46323dfb61845fa24c7208"}, - {file = "fastremap-1.13.5-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:cedb2a16e3003c05f491ee294f4072e8f0f77c0f32a79c5f49fcb76df069e1ed"}, - {file = "fastremap-1.13.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eae5925bf295580bfd297203c83d1a2e36bf0a9d0a05fc4349a333c476dddadb"}, - {file = "fastremap-1.13.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1b989f69c257e33c4c35f246fd46677ba90cc7eb12c67e192c8259bdfcbd95f"}, - {file = "fastremap-1.13.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3861eb0b40514cbcd1e2664c00e748a0306f0a7f3d0e87714369e68ea3cbbf0"}, - {file = "fastremap-1.13.5-cp38-cp38-win32.whl", hash = "sha256:bd17bbc60e4a5c24204ab871a77d6518dfbef2260b8565929f15800fb614fc84"}, - {file = "fastremap-1.13.5-cp38-cp38-win_amd64.whl", hash = "sha256:d7922a6d5af1f552d445ff19cbd93c03309b507aadfdf8e774187eef1debe826"}, - {file = "fastremap-1.13.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:957186b9e1621db9939e8935659b74e32598fe321573ed4b3a7fa6d51eb14b73"}, - {file = "fastremap-1.13.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1d5263a7a440a11cae677b024c1980b086c318adb5c19cef5994fad2b111cb5d"}, - {file = "fastremap-1.13.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:844c706768dfdde1ca8adfe0351af6ae7299750d99cb6c7461e7c079c55e6e0f"}, - {file = "fastremap-1.13.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0f7b77854042846a29a09a1bc522dcf57bcc6ba4afcd41fdf130c2f8cfa5ed8c"}, - {file = "fastremap-1.13.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86e13c1898098d7c20e59c0068da13799f2999db6f244c7b8ad9ef96459c5b8d"}, - {file = "fastremap-1.13.5-cp39-cp39-win32.whl", hash = "sha256:9e21da1452df99c96956ace5e6c224f6105cc5685647b60c2a6fe53c7f4c91cf"}, - {file = "fastremap-1.13.5-cp39-cp39-win_amd64.whl", hash = "sha256:4429b0e022da62b3f8a2df85ab6bd6b7703476d0295655382cc7b78bb8a05561"}, - {file = "fastremap-1.13.5.tar.gz", hash = "sha256:c5bfad45426b7cf8edb4af2a28c03e3a6e1d9e378f5f2ea983c0ca8bdb2d1a7a"}, + {file = "fastremap-1.14.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:80b4a751e0c353dcea1a4b0fa9540dfd1f03e7af6d5e2e1acf9dff23fefebe6a"}, + {file = "fastremap-1.14.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c68a1a69d0c7f01459f64ec2aba1ba62a879520afb1a20960debab295aed2ab0"}, + {file = "fastremap-1.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f234f233fde6c7b5665264aa606a4dad3b1f04a34b62daec1ea6307b43a72fc"}, + {file = "fastremap-1.14.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65b2d3b367b370ed6d79a75ebf5c86357fb046e29e0d2b250bce29e55ab95c77"}, + {file = "fastremap-1.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2b82a6547558e66efe6b9a128e831b2f1719c806808a5af5783b74051f9ea5de"}, + {file = "fastremap-1.14.0-cp310-cp310-win32.whl", hash = "sha256:ec9fd4f63e4e1072282c5b3d07925337490c0f347bb4d295140d6a8abf27489a"}, + {file = "fastremap-1.14.0-cp310-cp310-win_amd64.whl", hash = "sha256:a94f8e5f9e4830956079ea73e9e7c13981b80060678e2070775f2c1f74b7461c"}, + {file = "fastremap-1.14.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de684a9e5b2f0f5efd0f4a629c0843748827ab8fe18c4e9c2c25bbec0ed60764"}, + {file = "fastremap-1.14.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d3bdb2be133ad3e5b8541860e2c07cb0c1e6076ced7446c79f7eae279b8bf12d"}, + {file = "fastremap-1.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:14d2919af16efdc36c352121c254bad9e1dc5218b7ca8663802385a3d4519a57"}, + {file = "fastremap-1.14.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9ded66350483c66715b8daea1f7c053d82b503a504b470f431878719497c9db0"}, + {file = "fastremap-1.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33f0aba7dfa1fe3d43debeb062f15953915b957640c2811c76d2fad14bc564d6"}, + {file = "fastremap-1.14.0-cp311-cp311-win32.whl", hash = "sha256:feacb94c7e87fb521fb749fc7fa3e62a92a2b62f7664c63250f949bdedca52ae"}, + {file = "fastremap-1.14.0-cp311-cp311-win_amd64.whl", hash = "sha256:55893d272f55ddca7349fdfc65e5aa2f734e8f7992cc0f294116108d00f29f1a"}, + {file = "fastremap-1.14.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d9bdfcb8455800fb21a574ef128663c8673aea924e051b2fed89ad8b54405b04"}, + {file = "fastremap-1.14.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94dd18d843366c850f68001d76d7b2dbb85549d19b4b23cde6e8f975062cdbd1"}, + {file = "fastremap-1.14.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a3d99f630c18c2bc8ee7caec420a6a61d90ff49ed437d6eea12455010697f96"}, + {file = "fastremap-1.14.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8e0ee68596651aa598f2a237ee2450da0280334c686b17bbe7c50bc8ed9971b"}, + {file = "fastremap-1.14.0-cp37-cp37m-win32.whl", hash = "sha256:fa3b5bda14643365e056d335f1718621c1ee091692a8cc3fa81481bb979eaef1"}, + {file = "fastremap-1.14.0-cp37-cp37m-win_amd64.whl", hash = "sha256:e6e9b40c231f81ffb9f4fa947e25aae44895ff1310e95546345e78091b61bdb7"}, + {file = "fastremap-1.14.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c736debfdbe3c3cf93c24955d920404914b103f1eadc7aea027a4c993e33d857"}, + {file = "fastremap-1.14.0-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:0e5c0194a1fc2e6a374276074245eef345ffd4d7cbbaf632c5d5309a39d7f690"}, + {file = "fastremap-1.14.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abc13168a7750fc717947837144e793e1fb775404370f2d1c38109559e62d800"}, + {file = "fastremap-1.14.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce6d1fabaa62a79223b71cb52b6ce35550f4078e829830e6b1c239d6707c4279"}, + {file = "fastremap-1.14.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f377f0c2690d6f274083a40c29195daeafda9ef8bb089eb17d3f49686803e85"}, + {file = "fastremap-1.14.0-cp38-cp38-win32.whl", hash = "sha256:54b4b16f13153f20b3b02e6200d5e5a6fdde64e1a8a0ccc516391cf965bbc9e7"}, + {file = "fastremap-1.14.0-cp38-cp38-win_amd64.whl", hash = "sha256:54d5d80ac7970cdb4f4e1028bad00ea86ee40e23f1416f55cfc148df813e92c4"}, + {file = "fastremap-1.14.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eb747e26259fffed8504e0ae403d8d57c652b7fe904efebbabb7053a5bcd30ad"}, + {file = "fastremap-1.14.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:55d728930780a5b63eb20de984d6e25064199f51674417c3b8a2807af0c764ba"}, + {file = "fastremap-1.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00094e33db4859dce0cc72f57514861051da229e7e9fc40087766b4a0b8f82ca"}, + {file = "fastremap-1.14.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92506c26e61c08f9897b8a055a006fc8df2bd0286862a999162945b74d77c1fa"}, + {file = "fastremap-1.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1933954af5fd8d4e54ccd1fe3bf03029c5c94dd3dc8e7585c7bb5bac3efb1ee8"}, + {file = "fastremap-1.14.0-cp39-cp39-win32.whl", hash = "sha256:e7aae25d97d4a8b79a0f73541f106ec12a7f5465a109c720be29222a4ea96396"}, + {file = "fastremap-1.14.0-cp39-cp39-win_amd64.whl", hash = "sha256:109763e0f4e06f4df33af464afd49f4af20867466e0579d5437af82f3a0920e4"}, + {file = "fastremap-1.14.0.tar.gz", hash = "sha256:189d329a60d741fcef8945ad79068e3165e80bc5aa69b8d8897c2d33e701e95c"}, ] [package.dependencies] @@ -867,96 +906,83 @@ numpy = "*" [[package]] name = "frozenlist" -version = "1.3.3" +version = "1.4.0" description = "A list-like structure which implements collections.abc.MutableSequence" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "frozenlist-1.3.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ff8bf625fe85e119553b5383ba0fb6aa3d0ec2ae980295aaefa552374926b3f4"}, - {file = "frozenlist-1.3.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dfbac4c2dfcc082fcf8d942d1e49b6aa0766c19d3358bd86e2000bf0fa4a9cf0"}, - {file = "frozenlist-1.3.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b1c63e8d377d039ac769cd0926558bb7068a1f7abb0f003e3717ee003ad85530"}, - {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7fdfc24dcfce5b48109867c13b4cb15e4660e7bd7661741a391f821f23dfdca7"}, - {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2c926450857408e42f0bbc295e84395722ce74bae69a3b2aa2a65fe22cb14b99"}, - {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1841e200fdafc3d51f974d9d377c079a0694a8f06de2e67b48150328d66d5483"}, - {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f470c92737afa7d4c3aacc001e335062d582053d4dbe73cda126f2d7031068dd"}, - {file = "frozenlist-1.3.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:783263a4eaad7c49983fe4b2e7b53fa9770c136c270d2d4bbb6d2192bf4d9caf"}, - {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:924620eef691990dfb56dc4709f280f40baee568c794b5c1885800c3ecc69816"}, - {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ae4dc05c465a08a866b7a1baf360747078b362e6a6dbeb0c57f234db0ef88ae0"}, - {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:bed331fe18f58d844d39ceb398b77d6ac0b010d571cba8267c2e7165806b00ce"}, - {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:02c9ac843e3390826a265e331105efeab489ffaf4dd86384595ee8ce6d35ae7f"}, - {file = "frozenlist-1.3.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9545a33965d0d377b0bc823dcabf26980e77f1b6a7caa368a365a9497fb09420"}, - {file = "frozenlist-1.3.3-cp310-cp310-win32.whl", hash = "sha256:d5cd3ab21acbdb414bb6c31958d7b06b85eeb40f66463c264a9b343a4e238642"}, - {file = "frozenlist-1.3.3-cp310-cp310-win_amd64.whl", hash = "sha256:b756072364347cb6aa5b60f9bc18e94b2f79632de3b0190253ad770c5df17db1"}, - {file = "frozenlist-1.3.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b4395e2f8d83fbe0c627b2b696acce67868793d7d9750e90e39592b3626691b7"}, - {file = "frozenlist-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:14143ae966a6229350021384870458e4777d1eae4c28d1a7aa47f24d030e6678"}, - {file = "frozenlist-1.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5d8860749e813a6f65bad8285a0520607c9500caa23fea6ee407e63debcdbef6"}, - {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23d16d9f477bb55b6154654e0e74557040575d9d19fe78a161bd33d7d76808e8"}, - {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb82dbba47a8318e75f679690190c10a5e1f447fbf9df41cbc4c3afd726d88cb"}, - {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9309869032abb23d196cb4e4db574232abe8b8be1339026f489eeb34a4acfd91"}, - {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a97b4fe50b5890d36300820abd305694cb865ddb7885049587a5678215782a6b"}, - {file = "frozenlist-1.3.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c188512b43542b1e91cadc3c6c915a82a5eb95929134faf7fd109f14f9892ce4"}, - {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:303e04d422e9b911a09ad499b0368dc551e8c3cd15293c99160c7f1f07b59a48"}, - {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0771aed7f596c7d73444c847a1c16288937ef988dc04fb9f7be4b2aa91db609d"}, - {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:66080ec69883597e4d026f2f71a231a1ee9887835902dbe6b6467d5a89216cf6"}, - {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:41fe21dc74ad3a779c3d73a2786bdf622ea81234bdd4faf90b8b03cad0c2c0b4"}, - {file = "frozenlist-1.3.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f20380df709d91525e4bee04746ba612a4df0972c1b8f8e1e8af997e678c7b81"}, - {file = "frozenlist-1.3.3-cp311-cp311-win32.whl", hash = "sha256:f30f1928162e189091cf4d9da2eac617bfe78ef907a761614ff577ef4edfb3c8"}, - {file = "frozenlist-1.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:a6394d7dadd3cfe3f4b3b186e54d5d8504d44f2d58dcc89d693698e8b7132b32"}, - {file = "frozenlist-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8df3de3a9ab8325f94f646609a66cbeeede263910c5c0de0101079ad541af332"}, - {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0693c609e9742c66ba4870bcee1ad5ff35462d5ffec18710b4ac89337ff16e27"}, - {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cd4210baef299717db0a600d7a3cac81d46ef0e007f88c9335db79f8979c0d3d"}, - {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:394c9c242113bfb4b9aa36e2b80a05ffa163a30691c7b5a29eba82e937895d5e"}, - {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6327eb8e419f7d9c38f333cde41b9ae348bec26d840927332f17e887a8dcb70d"}, - {file = "frozenlist-1.3.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e24900aa13212e75e5b366cb9065e78bbf3893d4baab6052d1aca10d46d944c"}, - {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:3843f84a6c465a36559161e6c59dce2f2ac10943040c2fd021cfb70d58c4ad56"}, - {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:84610c1502b2461255b4c9b7d5e9c48052601a8957cd0aea6ec7a7a1e1fb9420"}, - {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:c21b9aa40e08e4f63a2f92ff3748e6b6c84d717d033c7b3438dd3123ee18f70e"}, - {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:efce6ae830831ab6a22b9b4091d411698145cb9b8fc869e1397ccf4b4b6455cb"}, - {file = "frozenlist-1.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:40de71985e9042ca00b7953c4f41eabc3dc514a2d1ff534027f091bc74416401"}, - {file = "frozenlist-1.3.3-cp37-cp37m-win32.whl", hash = "sha256:180c00c66bde6146a860cbb81b54ee0df350d2daf13ca85b275123bbf85de18a"}, - {file = "frozenlist-1.3.3-cp37-cp37m-win_amd64.whl", hash = "sha256:9bbbcedd75acdfecf2159663b87f1bb5cfc80e7cd99f7ddd9d66eb98b14a8411"}, - {file = "frozenlist-1.3.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:034a5c08d36649591be1cbb10e09da9f531034acfe29275fc5454a3b101ce41a"}, - {file = "frozenlist-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ba64dc2b3b7b158c6660d49cdb1d872d1d0bf4e42043ad8d5006099479a194e5"}, - {file = "frozenlist-1.3.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:47df36a9fe24054b950bbc2db630d508cca3aa27ed0566c0baf661225e52c18e"}, - {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:008a054b75d77c995ea26629ab3a0c0d7281341f2fa7e1e85fa6153ae29ae99c"}, - {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:841ea19b43d438a80b4de62ac6ab21cfe6827bb8a9dc62b896acc88eaf9cecba"}, - {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e235688f42b36be2b6b06fc37ac2126a73b75fb8d6bc66dd632aa35286238703"}, - {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca713d4af15bae6e5d79b15c10c8522859a9a89d3b361a50b817c98c2fb402a2"}, - {file = "frozenlist-1.3.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ac5995f2b408017b0be26d4a1d7c61bce106ff3d9e3324374d66b5964325448"}, - {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a4ae8135b11652b08a8baf07631d3ebfe65a4c87909dbef5fa0cdde440444ee4"}, - {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4ea42116ceb6bb16dbb7d526e242cb6747b08b7710d9782aa3d6732bd8d27649"}, - {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:810860bb4bdce7557bc0febb84bbd88198b9dbc2022d8eebe5b3590b2ad6c842"}, - {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:ee78feb9d293c323b59a6f2dd441b63339a30edf35abcb51187d2fc26e696d13"}, - {file = "frozenlist-1.3.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0af2e7c87d35b38732e810befb9d797a99279cbb85374d42ea61c1e9d23094b3"}, - {file = "frozenlist-1.3.3-cp38-cp38-win32.whl", hash = "sha256:899c5e1928eec13fd6f6d8dc51be23f0d09c5281e40d9cf4273d188d9feeaf9b"}, - {file = "frozenlist-1.3.3-cp38-cp38-win_amd64.whl", hash = "sha256:7f44e24fa70f6fbc74aeec3e971f60a14dde85da364aa87f15d1be94ae75aeef"}, - {file = "frozenlist-1.3.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2b07ae0c1edaa0a36339ec6cce700f51b14a3fc6545fdd32930d2c83917332cf"}, - {file = "frozenlist-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ebb86518203e12e96af765ee89034a1dbb0c3c65052d1b0c19bbbd6af8a145e1"}, - {file = "frozenlist-1.3.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5cf820485f1b4c91e0417ea0afd41ce5cf5965011b3c22c400f6d144296ccbc0"}, - {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c11e43016b9024240212d2a65043b70ed8dfd3b52678a1271972702d990ac6d"}, - {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8fa3c6e3305aa1146b59a09b32b2e04074945ffcfb2f0931836d103a2c38f936"}, - {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:352bd4c8c72d508778cf05ab491f6ef36149f4d0cb3c56b1b4302852255d05d5"}, - {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65a5e4d3aa679610ac6e3569e865425b23b372277f89b5ef06cf2cdaf1ebf22b"}, - {file = "frozenlist-1.3.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e2c1185858d7e10ff045c496bbf90ae752c28b365fef2c09cf0fa309291669"}, - {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f163d2fd041c630fed01bc48d28c3ed4a3b003c00acd396900e11ee5316b56bb"}, - {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:05cdb16d09a0832eedf770cb7bd1fe57d8cf4eaf5aced29c4e41e3f20b30a784"}, - {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8bae29d60768bfa8fb92244b74502b18fae55a80eac13c88eb0b496d4268fd2d"}, - {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eedab4c310c0299961ac285591acd53dc6723a1ebd90a57207c71f6e0c2153ab"}, - {file = "frozenlist-1.3.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3bbdf44855ed8f0fbcd102ef05ec3012d6a4fd7c7562403f76ce6a52aeffb2b1"}, - {file = "frozenlist-1.3.3-cp39-cp39-win32.whl", hash = "sha256:efa568b885bca461f7c7b9e032655c0c143d305bf01c30caf6db2854a4532b38"}, - {file = "frozenlist-1.3.3-cp39-cp39-win_amd64.whl", hash = "sha256:cfe33efc9cb900a4c46f91a5ceba26d6df370ffddd9ca386eb1d4f0ad97b9ea9"}, - {file = "frozenlist-1.3.3.tar.gz", hash = "sha256:58bcc55721e8a90b88332d6cd441261ebb22342e238296bb330968952fbb3a6a"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:764226ceef3125e53ea2cb275000e309c0aa5464d43bd72abd661e27fffc26ab"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d6484756b12f40003c6128bfcc3fa9f0d49a687e171186c2d85ec82e3758c559"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9ac08e601308e41eb533f232dbf6b7e4cea762f9f84f6357136eed926c15d12c"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d081f13b095d74b67d550de04df1c756831f3b83dc9881c38985834387487f1b"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71932b597f9895f011f47f17d6428252fc728ba2ae6024e13c3398a087c2cdea"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:981b9ab5a0a3178ff413bca62526bb784249421c24ad7381e39d67981be2c326"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e41f3de4df3e80de75845d3e743b3f1c4c8613c3997a912dbf0229fc61a8b963"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6918d49b1f90821e93069682c06ffde41829c346c66b721e65a5c62b4bab0300"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e5c8764c7829343d919cc2dfc587a8db01c4f70a4ebbc49abde5d4b158b007b"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8d0edd6b1c7fb94922bf569c9b092ee187a83f03fb1a63076e7774b60f9481a8"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e29cda763f752553fa14c68fb2195150bfab22b352572cb36c43c47bedba70eb"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:0c7c1b47859ee2cac3846fde1c1dc0f15da6cec5a0e5c72d101e0f83dcb67ff9"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:901289d524fdd571be1c7be054f48b1f88ce8dddcbdf1ec698b27d4b8b9e5d62"}, + {file = "frozenlist-1.4.0-cp310-cp310-win32.whl", hash = "sha256:1a0848b52815006ea6596c395f87449f693dc419061cc21e970f139d466dc0a0"}, + {file = "frozenlist-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:b206646d176a007466358aa21d85cd8600a415c67c9bd15403336c331a10d956"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de343e75f40e972bae1ef6090267f8260c1446a1695e77096db6cfa25e759a95"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad2a9eb6d9839ae241701d0918f54c51365a51407fd80f6b8289e2dfca977cc3"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7bd3b3830247580de99c99ea2a01416dfc3c34471ca1298bccabf86d0ff4dc"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdf1847068c362f16b353163391210269e4f0569a3c166bc6a9f74ccbfc7e839"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38461d02d66de17455072c9ba981d35f1d2a73024bee7790ac2f9e361ef1cd0c"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5a32087d720c608f42caed0ef36d2b3ea61a9d09ee59a5142d6070da9041b8f"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd65632acaf0d47608190a71bfe46b209719bf2beb59507db08ccdbe712f969b"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261b9f5d17cac914531331ff1b1d452125bf5daa05faf73b71d935485b0c510b"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b89ac9768b82205936771f8d2eb3ce88503b1556324c9f903e7156669f521472"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:008eb8b31b3ea6896da16c38c1b136cb9fec9e249e77f6211d479db79a4eaf01"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e74b0506fa5aa5598ac6a975a12aa8928cbb58e1f5ac8360792ef15de1aa848f"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:490132667476f6781b4c9458298b0c1cddf237488abd228b0b3650e5ecba7467"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:76d4711f6f6d08551a7e9ef28c722f4a50dd0fc204c56b4bcd95c6cc05ce6fbb"}, + {file = "frozenlist-1.4.0-cp311-cp311-win32.whl", hash = "sha256:a02eb8ab2b8f200179b5f62b59757685ae9987996ae549ccf30f983f40602431"}, + {file = "frozenlist-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:515e1abc578dd3b275d6a5114030b1330ba044ffba03f94091842852f806f1c1"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0ed05f5079c708fe74bf9027e95125334b6978bf07fd5ab923e9e55e5fbb9d3"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ca265542ca427bf97aed183c1676e2a9c66942e822b14dc6e5f42e038f92a503"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:491e014f5c43656da08958808588cc6c016847b4360e327a62cb308c791bd2d9"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ae5cd0f333f94f2e03aaf140bb762c64783935cc764ff9c82dff626089bebf"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e78fb68cf9c1a6aa4a9a12e960a5c9dfbdb89b3695197aa7064705662515de2"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5655a942f5f5d2c9ed93d72148226d75369b4f6952680211972a33e59b1dfdc"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c11b0746f5d946fecf750428a95f3e9ebe792c1ee3b1e96eeba145dc631a9672"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e66d2a64d44d50d2543405fb183a21f76b3b5fd16f130f5c99187c3fb4e64919"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:88f7bc0fcca81f985f78dd0fa68d2c75abf8272b1f5c323ea4a01a4d7a614efc"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5833593c25ac59ede40ed4de6d67eb42928cca97f26feea219f21d0ed0959b79"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:fec520865f42e5c7f050c2a79038897b1c7d1595e907a9e08e3353293ffc948e"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:b826d97e4276750beca7c8f0f1a4938892697a6bcd8ec8217b3312dad6982781"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ceb6ec0a10c65540421e20ebd29083c50e6d1143278746a4ef6bcf6153171eb8"}, + {file = "frozenlist-1.4.0-cp38-cp38-win32.whl", hash = "sha256:2b8bcf994563466db019fab287ff390fffbfdb4f905fc77bc1c1d604b1c689cc"}, + {file = "frozenlist-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a6c8097e01886188e5be3e6b14e94ab365f384736aa1fca6a0b9e35bd4a30bc7"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6c38721585f285203e4b4132a352eb3daa19121a035f3182e08e437cface44bf"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0c6da9aee33ff0b1a451e867da0c1f47408112b3391dd43133838339e410963"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93ea75c050c5bb3d98016b4ba2497851eadf0ac154d88a67d7a6816206f6fa7f"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f61e2dc5ad442c52b4887f1fdc112f97caeff4d9e6ebe78879364ac59f1663e1"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa384489fefeb62321b238e64c07ef48398fe80f9e1e6afeff22e140e0850eef"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10ff5faaa22786315ef57097a279b833ecab1a0bfb07d604c9cbb1c4cdc2ed87"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:007df07a6e3eb3e33e9a1fe6a9db7af152bbd8a185f9aaa6ece10a3529e3e1c6"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4f399d28478d1f604c2ff9119907af9726aed73680e5ed1ca634d377abb087"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5374b80521d3d3f2ec5572e05adc94601985cc526fb276d0c8574a6d749f1b3"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ce31ae3e19f3c902de379cf1323d90c649425b86de7bbdf82871b8a2a0615f3d"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7211ef110a9194b6042449431e08c4d80c0481e5891e58d429df5899690511c2"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:556de4430ce324c836789fa4560ca62d1591d2538b8ceb0b4f68fb7b2384a27a"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7645a8e814a3ee34a89c4a372011dcd817964ce8cb273c8ed6119d706e9613e3"}, + {file = "frozenlist-1.4.0-cp39-cp39-win32.whl", hash = "sha256:19488c57c12d4e8095a922f328df3f179c820c212940a498623ed39160bc3c2f"}, + {file = "frozenlist-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:6221d84d463fb110bdd7619b69cb43878a11d51cbb9394ae3105d082d5199167"}, + {file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"}, ] [[package]] name = "fsspec" -version = "2022.11.0" +version = "2023.9.2" description = "File-system specification" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "fsspec-2022.11.0-py3-none-any.whl", hash = "sha256:d6e462003e3dcdcb8c7aa84c73a228f8227e72453cd22570e2363e8844edfe7b"}, - {file = "fsspec-2022.11.0.tar.gz", hash = "sha256:259d5fd5c8e756ff2ea72f42e7613c32667dc2049a4ac3d84364a7ca034acb8b"}, + {file = "fsspec-2023.9.2-py3-none-any.whl", hash = "sha256:603dbc52c75b84da501b9b2ec8c11e1f61c25984c4a0dda1f129ef391fbfc9b4"}, + {file = "fsspec-2023.9.2.tar.gz", hash = "sha256:80bfb8c70cc27b2178cc62a935ecf242fc6e8c3fb801f9c571fc01b1e715ba7d"}, ] [package.extras] @@ -964,8 +990,9 @@ abfs = ["adlfs"] adl = ["adlfs"] arrow = ["pyarrow (>=1)"] dask = ["dask", "distributed"] +devel = ["pytest", "pytest-cov"] dropbox = ["dropbox", "dropboxdrivefs", "requests"] -entrypoints = ["importlib-metadata"] +full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "dask", "distributed", "dropbox", "dropboxdrivefs", "fusepy", "gcsfs", "libarchive-c", "ocifs", "panel", "paramiko", "pyarrow (>=1)", "pygit2", "requests", "s3fs", "smbprotocol", "tqdm"] fuse = ["fusepy"] gcs = ["gcsfs"] git = ["pygit2"] @@ -984,20 +1011,19 @@ tqdm = ["tqdm"] [[package]] name = "google-auth" -version = "2.20.0" +version = "2.23.0" description = "Google Authentication Library" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "google-auth-2.20.0.tar.gz", hash = "sha256:030af34138909ccde0fbce611afc178f1d65d32fbff281f25738b1fe1c6f3eaa"}, - {file = "google_auth-2.20.0-py2.py3-none-any.whl", hash = "sha256:23b7b0950fcda519bfb6692bf0d5289d2ea49fc143717cc7188458ec620e63fa"}, + {file = "google-auth-2.23.0.tar.gz", hash = "sha256:753a26312e6f1eaeec20bc6f2644a10926697da93446e1f8e24d6d32d45a922a"}, + {file = "google_auth-2.23.0-py2.py3-none-any.whl", hash = "sha256:2cec41407bd1e207f5b802638e32bb837df968bb5c05f413d0fa526fac4cf7a7"}, ] [package.dependencies] cachetools = ">=2.0.0,<6.0" pyasn1-modules = ">=0.2.1" rsa = ">=3.1.4,<5" -six = ">=1.9.0" urllib3 = "<2.0" [package.extras] @@ -1064,13 +1090,13 @@ socks = ["socksio (==1.*)"] [[package]] name = "hypothesis" -version = "6.79.1" +version = "6.87.0" description = "A library for property-based testing" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "hypothesis-6.79.1-py3-none-any.whl", hash = "sha256:7a0b8ca178f16720e96f11e96b71b6139db0e30727e9cf8bd8e3059710393fc7"}, - {file = "hypothesis-6.79.1.tar.gz", hash = "sha256:de8fb599fc855d3006236ab58cd0edafd099d63837225aad848dac22e239475b"}, + {file = "hypothesis-6.87.0-py3-none-any.whl", hash = "sha256:a3fcf9e56fecfa1cc0c8e05eda18a76bdc1bbaf84784cce4aff0a5661dc7b11d"}, + {file = "hypothesis-6.87.0.tar.gz", hash = "sha256:2cc23c9bb1ee38f64ee19dda9acc6be9a1be947f6bd841d5efb9793a7ecf1415"}, ] [package.dependencies] @@ -1079,7 +1105,7 @@ exceptiongroup = {version = ">=1.0.0", markers = "python_version < \"3.11\""} sortedcontainers = ">=2.1.0,<3.0.0" [package.extras] -all = ["backports.zoneinfo (>=0.2.1)", "black (>=19.10b0)", "click (>=7.0)", "django (>=3.2)", "dpcontracts (>=0.4)", "importlib-metadata (>=3.6)", "lark (>=0.10.1)", "libcst (>=0.3.16)", "numpy (>=1.16.0)", "pandas (>=1.1)", "pytest (>=4.6)", "python-dateutil (>=1.4)", "pytz (>=2014.1)", "redis (>=3.0.0)", "rich (>=9.0.0)", "tzdata (>=2023.3)"] +all = ["backports.zoneinfo (>=0.2.1)", "black (>=19.10b0)", "click (>=7.0)", "django (>=3.2)", "dpcontracts (>=0.4)", "lark (>=0.10.1)", "libcst (>=0.3.16)", "numpy (>=1.17.3)", "pandas (>=1.1)", "pytest (>=4.6)", "python-dateutil (>=1.4)", "pytz (>=2014.1)", "redis (>=3.0.0)", "rich (>=9.0.0)", "tzdata (>=2023.3)"] cli = ["black (>=19.10b0)", "click (>=7.0)", "rich (>=9.0.0)"] codemods = ["libcst (>=0.3.16)"] dateutil = ["python-dateutil (>=1.4)"] @@ -1087,7 +1113,7 @@ django = ["django (>=3.2)"] dpcontracts = ["dpcontracts (>=0.4)"] ghostwriter = ["black (>=19.10b0)"] lark = ["lark (>=0.10.1)"] -numpy = ["numpy (>=1.16.0)"] +numpy = ["numpy (>=1.17.3)"] pandas = ["pandas (>=1.1)"] pytest = ["pytest (>=4.6)"] pytz = ["pytz (>=2014.1)"] @@ -1163,13 +1189,13 @@ all = ["matplotlib", "numcodecs", "tifffile"] [[package]] name = "imageio" -version = "2.31.1" +version = "2.31.4" description = "Library for reading and writing a wide range of image, video, scientific, and volumetric data formats." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "imageio-2.31.1-py3-none-any.whl", hash = "sha256:4106fb395ef7f8dc0262d6aa1bb03daba818445c381ca8b7d5dfc7a2089b04df"}, - {file = "imageio-2.31.1.tar.gz", hash = "sha256:f8436a02af02fd63f272dab50f7d623547a38f0e04a4a73e2b02ae1b8b180f27"}, + {file = "imageio-2.31.4-py3-none-any.whl", hash = "sha256:9a39577b482b9c9533b95b436b45540dc32fdf2868ba912d723d3490594fae22"}, + {file = "imageio-2.31.4.tar.gz", hash = "sha256:8c18323d0f9d1bfce672bd9dcb18e85aa398039431bc73f70bd8bfba23c005d1"}, ] [package.dependencies] @@ -1192,37 +1218,56 @@ pyav = ["av"] test = ["fsspec[github]", "pytest", "pytest-cov"] tifffile = ["tifffile"] +[[package]] +name = "importlib-metadata" +version = "6.8.0" +description = "Read metadata from Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "importlib_metadata-6.8.0-py3-none-any.whl", hash = "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb"}, + {file = "importlib_metadata-6.8.0.tar.gz", hash = "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743"}, +] + +[package.dependencies] +zipp = ">=0.5" + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +perf = ["ipython"] +testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"] + [[package]] name = "importlib-resources" -version = "5.12.0" +version = "5.13.0" description = "Read resources from Python packages" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "importlib_resources-5.12.0-py3-none-any.whl", hash = "sha256:7b1deeebbf351c7578e09bf2f63fa2ce8b5ffec296e0d349139d43cca061a81a"}, - {file = "importlib_resources-5.12.0.tar.gz", hash = "sha256:4be82589bf5c1d7999aedf2a45159d10cb3ca4f19b2271f8792bc8e6da7b22f6"}, + {file = "importlib_resources-5.13.0-py3-none-any.whl", hash = "sha256:9f7bd0c97b79972a6cce36a366356d16d5e13b09679c11a58f1014bfdf8e64b2"}, + {file = "importlib_resources-5.13.0.tar.gz", hash = "sha256:82d5c6cca930697dbbd86c93333bb2c2e72861d4789a11c2662b933e5ad2b528"}, ] [package.dependencies] zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["flake8 (<5)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-ruff"] [[package]] name = "inducoapi" -version = "2.0.2" +version = "2.1.1" description = "A simple python program to generate OpenApi documentation by supplying request/response bodies." optional = false -python-versions = ">=3.7.0,<4.0.0" +python-versions = ">=3.8.0,<4.0.0" files = [ - {file = "inducoapi-2.0.2-py3-none-any.whl", hash = "sha256:2f615763608a6642ae4c53e2f3f0420dccca05780a13ef8240d4f0011be272eb"}, - {file = "inducoapi-2.0.2.tar.gz", hash = "sha256:b5a671140b421a580b604003dd2b295887a9d1386bb5c1905229589857714620"}, + {file = "inducoapi-2.1.1-py3-none-any.whl", hash = "sha256:3b21c513a2de39ce44496b0a9477df3b53f902391fb3cea43012f820d251bd92"}, + {file = "inducoapi-2.1.1.tar.gz", hash = "sha256:4e4debebfc14d562381e7667ab0f731be4ed7d51f0e5fc26f5b31c9a929673a7"}, ] [package.dependencies] -openapi-spec-validator = ">=0.5,<0.6" +openapi-spec-validator = ">=0.6,<0.7" pyyaml = ">=6.0,<7.0" [[package]] @@ -1283,13 +1328,13 @@ files = [ [[package]] name = "joblib" -version = "1.2.0" +version = "1.3.2" description = "Lightweight pipelining with Python functions" optional = false python-versions = ">=3.7" files = [ - {file = "joblib-1.2.0-py3-none-any.whl", hash = "sha256:091138ed78f800342968c523bdde947e7a305b8594b910a0fea2ab83c3c6d385"}, - {file = "joblib-1.2.0.tar.gz", hash = "sha256:e1cee4a79e4af22881164f218d4311f60074197fb707e082e803b61f6d137018"}, + {file = "joblib-1.3.2-py3-none-any.whl", hash = "sha256:ef4331c65f239985f3f2220ecc87db222f08fd22097a3dd5698f693875f8cbb9"}, + {file = "joblib-1.3.2.tar.gz", hash = "sha256:92f865e621e17784e7955080b6d042489e3b8e294949cc44c6eac304f59772b1"}, ] [[package]] @@ -1331,20 +1376,22 @@ tests = ["pytest"] [[package]] name = "jsonschema" -version = "4.17.3" +version = "4.19.1" description = "An implementation of JSON Schema validation for Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, - {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, + {file = "jsonschema-4.19.1-py3-none-any.whl", hash = "sha256:cd5f1f9ed9444e554b38ba003af06c0a8c2868131e56bfbef0550fb450c0330e"}, + {file = "jsonschema-4.19.1.tar.gz", hash = "sha256:ec84cc37cfa703ef7cd4928db24f9cb31428a5d0fa77747b8b51a847458e0bbf"}, ] [package.dependencies] -attrs = ">=17.4.0" +attrs = ">=22.2.0" importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} +jsonschema-specifications = ">=2023.03.6" pkgutil-resolve-name = {version = ">=1.3.10", markers = "python_version < \"3.9\""} -pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" [package.extras] format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] @@ -1352,40 +1399,55 @@ format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339- [[package]] name = "jsonschema-spec" -version = "0.1.6" +version = "0.2.4" description = "JSONSchema Spec with object-oriented paths" optional = false -python-versions = ">=3.7.0,<4.0.0" +python-versions = ">=3.8.0,<4.0.0" files = [ - {file = "jsonschema_spec-0.1.6-py3-none-any.whl", hash = "sha256:f2206d18c89d1824c1f775ba14ed039743b41a9167bd2c5bdb774b66b3ca0bbf"}, - {file = "jsonschema_spec-0.1.6.tar.gz", hash = "sha256:90215863b56e212086641956b20127ccbf6d8a3a38343dad01d6a74d19482f76"}, + {file = "jsonschema_spec-0.2.4-py3-none-any.whl", hash = "sha256:e6dcf7056734ec6854f7888da6c08ce6c421f28aeeddce96bb90de0fb6d711ef"}, + {file = "jsonschema_spec-0.2.4.tar.gz", hash = "sha256:873e396ad1ba6edf9f52d6174c110d4fafb7b5f5894744246a53fe75e5251ec2"}, ] [package.dependencies] -jsonschema = ">=4.0.0,<4.18.0" pathable = ">=0.4.1,<0.5.0" PyYAML = ">=5.1" +referencing = ">=0.28.0,<0.31.0" requests = ">=2.31.0,<3.0.0" +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} +referencing = ">=0.28.0" + [[package]] name = "kubernetes" -version = "23.6.0" +version = "27.2.0" description = "Kubernetes python client" optional = false python-versions = ">=3.6" files = [ - {file = "kubernetes-23.6.0-py2.py3-none-any.whl", hash = "sha256:dd58e286a53071bc8e32041f07f3c2236b3ed8ca5b9f57794a5077358f7ccb06"}, - {file = "kubernetes-23.6.0.tar.gz", hash = "sha256:cadb1cd7c44eae5b39b50316313343c0f2aff94529f067ec2ba44d38411158e3"}, + {file = "kubernetes-27.2.0-py2.py3-none-any.whl", hash = "sha256:0f9376329c85cf07615ed6886bf9bf21eb1cbfc05e14ec7b0f74ed8153cd2815"}, + {file = "kubernetes-27.2.0.tar.gz", hash = "sha256:d479931c6f37561dbfdf28fc5f46384b1cb8b28f9db344ed4a232ce91990825a"}, ] [package.dependencies] certifi = ">=14.05.14" google-auth = ">=1.0.1" +oauthlib = ">=3.2.2" python-dateutil = ">=2.5.3" pyyaml = ">=5.4.1" requests = "*" requests-oauthlib = "*" -setuptools = ">=21.0.0" six = ">=1.9.0" urllib3 = ">=1.24.2" websocket-client = ">=0.32.0,<0.40.0 || >0.40.0,<0.41.dev0 || >=0.43.dev0" @@ -1393,6 +1455,21 @@ websocket-client = ">=0.32.0,<0.40.0 || >0.40.0,<0.41.dev0 || >=0.43.dev0" [package.extras] adal = ["adal (>=1.0.2)"] +[[package]] +name = "lazy-loader" +version = "0.3" +description = "lazy_loader" +optional = false +python-versions = ">=3.7" +files = [ + {file = "lazy_loader-0.3-py3-none-any.whl", hash = "sha256:1e9e76ee8631e264c62ce10006718e80b2cfc74340d17d1031e0f84af7478554"}, + {file = "lazy_loader-0.3.tar.gz", hash = "sha256:3b68898e34f5b2a29daaaac172c6555512d0f32074f147e2254e4a6d9d838f37"}, +] + +[package.extras] +lint = ["pre-commit (>=3.3)"] +test = ["pytest (>=7.4)", "pytest-cov (>=4.1)"] + [[package]] name = "lazy-object-proxy" version = "1.9.0" @@ -1529,6 +1606,71 @@ files = [ {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, ] +[[package]] +name = "msgpack" +version = "1.0.6" +description = "MessagePack serializer" +optional = false +python-versions = ">=3.8" +files = [ + {file = "msgpack-1.0.6-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f4321692e7f299277e55f322329b2c972d93bb612d85f3fda8741bec5c6285ce"}, + {file = "msgpack-1.0.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1f0e36a5fa7a182cde391a128a64f437657d2b9371dfa42eda3436245adccbf5"}, + {file = "msgpack-1.0.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b5c8dd9a386a66e50bd7fa22b7a49fb8ead2b3574d6bd69eb1caced6caea0803"}, + {file = "msgpack-1.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f85200ea102276afdd3749ca94747f057bbb868d1c52921ee2446730b508d0f"}, + {file = "msgpack-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a006c300e82402c0c8f1ded11352a3ba2a61b87e7abb3054c845af2ca8d553c"}, + {file = "msgpack-1.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:33bbf47ea5a6ff20c23426106e81863cdbb5402de1825493026ce615039cc99d"}, + {file = "msgpack-1.0.6-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:04450e4b5e1e662e7c86b6aafb7c230af9334fd0becf5e6b80459a507884241c"}, + {file = "msgpack-1.0.6-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:b06a5095a79384760625b5de3f83f40b3053a385fb893be8a106fbbd84c14980"}, + {file = "msgpack-1.0.6-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:3910211b0ab20be3a38e0bb944ed45bd4265d8d9f11a3d1674b95b298e08dd5c"}, + {file = "msgpack-1.0.6-cp310-cp310-win32.whl", hash = "sha256:1dc67b40fe81217b308ab12651adba05e7300b3a2ccf84d6b35a878e308dd8d4"}, + {file = "msgpack-1.0.6-cp310-cp310-win_amd64.whl", hash = "sha256:885de1ed5ea01c1bfe0a34c901152a264c3c1f8f1d382042b92ea354bd14bb0e"}, + {file = "msgpack-1.0.6-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:099c3d8a027367e1a6fc55d15336f04ff65c60c4f737b5739f7db4525c65fe9e"}, + {file = "msgpack-1.0.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9b88dc97ba86c96b964c3745a445d9a65f76fe21955a953064fe04adb63e9367"}, + {file = "msgpack-1.0.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:00ce5f827d4f26fc094043e6f08b6069c1b148efa2631c47615ae14fb6cafc89"}, + {file = "msgpack-1.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd6af61388be65a8701f5787362cb54adae20007e0cc67ca9221a4b95115583b"}, + {file = "msgpack-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:652e4b7497825b0af6259e2c54700e6dc33d2fc4ed92b8839435090d4c9cc911"}, + {file = "msgpack-1.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b08676a17e3f791daad34d5fcb18479e9c85e7200d5a17cbe8de798643a7e37"}, + {file = "msgpack-1.0.6-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:229ccb6713c8b941eaa5cf13dc7478eba117f21513b5893c35e44483e2f0c9c8"}, + {file = "msgpack-1.0.6-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:95ade0bd4cf69e04e8b8f8ec2d197d9c9c4a9b6902e048dc7456bf6d82e12a80"}, + {file = "msgpack-1.0.6-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5b16344032a27b2ccfd341f89dadf3e4ef6407d91e4b93563c14644a8abb3ad7"}, + {file = "msgpack-1.0.6-cp311-cp311-win32.whl", hash = "sha256:55bb4a1bf94e39447bc08238a2fb8a767460388a8192f67c103442eb36920887"}, + {file = "msgpack-1.0.6-cp311-cp311-win_amd64.whl", hash = "sha256:ae97504958d0bc58c1152045c170815d5c4f8af906561ce044b6358b43d0c97e"}, + {file = "msgpack-1.0.6-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7ecf431786019a7bfedc28281531d706627f603e3691d64eccdbce3ecd353823"}, + {file = "msgpack-1.0.6-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a635aecf1047255576dbb0927cbf9a7aa4a68e9d54110cc3c926652d18f144e0"}, + {file = "msgpack-1.0.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:102cfb54eaefa73e8ca1e784b9352c623524185c98e057e519545131a56fb0af"}, + {file = "msgpack-1.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c5e05e4f5756758c58a8088aa10dc70d851c89f842b611fdccfc0581c1846bc"}, + {file = "msgpack-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68569509dd015fcdd1e6b2b3ccc8c51fd27d9a97f461ccc909270e220ee09685"}, + {file = "msgpack-1.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bf652839d16de91fe1cfb253e0a88db9a548796939533894e07f45d4bdf90a5f"}, + {file = "msgpack-1.0.6-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14db7e1b7a7ed362b2f94897bf2486c899c8bb50f6e34b2db92fe534cdab306f"}, + {file = "msgpack-1.0.6-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:159cfec18a6e125dd4723e2b1de6f202b34b87c850fb9d509acfd054c01135e9"}, + {file = "msgpack-1.0.6-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:6a01a072b2219b65a6ff74df208f20b2cac9401c60adb676ee34e53b4c651077"}, + {file = "msgpack-1.0.6-cp312-cp312-win32.whl", hash = "sha256:e36560d001d4ba469d469b02037f2dd404421fd72277d9474efe9f03f83fced5"}, + {file = "msgpack-1.0.6-cp312-cp312-win_amd64.whl", hash = "sha256:5e7fae9ca93258a956551708cf60dc6c8145574e32ce8c8c4d894e63bcb04341"}, + {file = "msgpack-1.0.6-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:40b801b768f5a765e33c68f30665d3c6ee1c8623a2d2bb78e6e59f2db4e4ceb7"}, + {file = "msgpack-1.0.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:da057d3652e698b00746e47f06dbb513314f847421e857e32e1dc61c46f6c052"}, + {file = "msgpack-1.0.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f75114c05ec56566da6b55122791cf5bb53d5aada96a98c016d6231e03132f76"}, + {file = "msgpack-1.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:61213482b5a387ead9e250e9e3cb290292feca39dc83b41c3b1b7b8ffc8d8ecb"}, + {file = "msgpack-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bae6c561f11b444b258b1b4be2bdd1e1cf93cd1d80766b7e869a79db4543a8a8"}, + {file = "msgpack-1.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:619a63753ba9e792fe3c6c0fc2b9ee2cfbd92153dd91bee029a89a71eb2942cd"}, + {file = "msgpack-1.0.6-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:70843788c85ca385846a2d2f836efebe7bb2687ca0734648bf5c9dc6c55602d2"}, + {file = "msgpack-1.0.6-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:fb4571efe86545b772a4630fee578c213c91cbcfd20347806e47fd4e782a18fe"}, + {file = "msgpack-1.0.6-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:bbb4448a05d261fae423d5c0b0974ad899f60825bc77eabad5a0c518e78448c2"}, + {file = "msgpack-1.0.6-cp38-cp38-win32.whl", hash = "sha256:5cd67674db3c73026e0a2c729b909780e88bd9cbc8184256f9567640a5d299a8"}, + {file = "msgpack-1.0.6-cp38-cp38-win_amd64.whl", hash = "sha256:a1cf98afa7ad5e7012454ca3fde254499a13f9d92fd50cb46118118a249a1355"}, + {file = "msgpack-1.0.6-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d6d25b8a5c70e2334ed61a8da4c11cd9b97c6fbd980c406033f06e4463fda006"}, + {file = "msgpack-1.0.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:88cdb1da7fdb121dbb3116910722f5acab4d6e8bfcacab8fafe27e2e7744dc6a"}, + {file = "msgpack-1.0.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3b5658b1f9e486a2eec4c0c688f213a90085b9cf2fec76ef08f98fdf6c62f4b9"}, + {file = "msgpack-1.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76820f2ece3b0a7c948bbb6a599020e29574626d23a649476def023cbb026787"}, + {file = "msgpack-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c780d992f5d734432726b92a0c87bf1857c3d85082a8dea29cbf56e44a132b3"}, + {file = "msgpack-1.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e0ed35d6d6122d0baa9a1b59ebca4ee302139f4cfb57dab85e4c73ab793ae7ed"}, + {file = "msgpack-1.0.6-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:32c0aff31f33033f4961abc01f78497e5e07bac02a508632aef394b384d27428"}, + {file = "msgpack-1.0.6-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:35ad5aed9b52217d4cea739d0ea3a492a18dd86fecb4b132668a69f27fb0363b"}, + {file = "msgpack-1.0.6-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47275ff73005a3e5e146e50baa2378e1730cba6e292f0222bc496a8e4c4adfc8"}, + {file = "msgpack-1.0.6-cp39-cp39-win32.whl", hash = "sha256:7baf16fd8908a025c4a8d7b699103e72d41f967e2aee5a2065432bcdbd9fd06e"}, + {file = "msgpack-1.0.6-cp39-cp39-win_amd64.whl", hash = "sha256:fc97aa4b4fb928ff4d3b74da7c30b360d0cb3ede49a5a6e1fd9705f49aea1deb"}, + {file = "msgpack-1.0.6.tar.gz", hash = "sha256:25d3746da40f3c8c59c3b1d001e49fd2aa17904438f980d9a391370366df001e"}, +] + [[package]] name = "multidict" version = "6.0.4" @@ -1614,48 +1756,48 @@ files = [ [[package]] name = "mypy" -version = "1.0.0" +version = "1.5.1" description = "Optional static typing for Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "mypy-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0626db16705ab9f7fa6c249c017c887baf20738ce7f9129da162bb3075fc1af"}, - {file = "mypy-1.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1ace23f6bb4aec4604b86c4843276e8fa548d667dbbd0cb83a3ae14b18b2db6c"}, - {file = "mypy-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87edfaf344c9401942883fad030909116aa77b0fa7e6e8e1c5407e14549afe9a"}, - {file = "mypy-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0ab090d9240d6b4e99e1fa998c2d0aa5b29fc0fb06bd30e7ad6183c95fa07593"}, - {file = "mypy-1.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:7cc2c01dfc5a3cbddfa6c13f530ef3b95292f926329929001d45e124342cd6b7"}, - {file = "mypy-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:14d776869a3e6c89c17eb943100f7868f677703c8a4e00b3803918f86aafbc52"}, - {file = "mypy-1.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bb2782a036d9eb6b5a6efcdda0986774bf798beef86a62da86cb73e2a10b423d"}, - {file = "mypy-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5cfca124f0ac6707747544c127880893ad72a656e136adc935c8600740b21ff5"}, - {file = "mypy-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8845125d0b7c57838a10fd8925b0f5f709d0e08568ce587cc862aacce453e3dd"}, - {file = "mypy-1.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b1b9e1ed40544ef486fa8ac022232ccc57109f379611633ede8e71630d07d2"}, - {file = "mypy-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c7cf862aef988b5fbaa17764ad1d21b4831436701c7d2b653156a9497d92c83c"}, - {file = "mypy-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5cd187d92b6939617f1168a4fe68f68add749902c010e66fe574c165c742ed88"}, - {file = "mypy-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4e5175026618c178dfba6188228b845b64131034ab3ba52acaffa8f6c361f805"}, - {file = "mypy-1.0.0-cp37-cp37m-win_amd64.whl", hash = "sha256:2f6ac8c87e046dc18c7d1d7f6653a66787a4555085b056fe2d599f1f1a2a2d21"}, - {file = "mypy-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7306edca1c6f1b5fa0bc9aa645e6ac8393014fa82d0fa180d0ebc990ebe15964"}, - {file = "mypy-1.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3cfad08f16a9c6611e6143485a93de0e1e13f48cfb90bcad7d5fde1c0cec3d36"}, - {file = "mypy-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67cced7f15654710386e5c10b96608f1ee3d5c94ca1da5a2aad5889793a824c1"}, - {file = "mypy-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a86b794e8a56ada65c573183756eac8ac5b8d3d59daf9d5ebd72ecdbb7867a43"}, - {file = "mypy-1.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:50979d5efff8d4135d9db293c6cb2c42260e70fb010cbc697b1311a4d7a39ddb"}, - {file = "mypy-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3ae4c7a99e5153496243146a3baf33b9beff714464ca386b5f62daad601d87af"}, - {file = "mypy-1.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e398652d005a198a7f3c132426b33c6b85d98aa7dc852137a2a3be8890c4072"}, - {file = "mypy-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be78077064d016bc1b639c2cbcc5be945b47b4261a4f4b7d8923f6c69c5c9457"}, - {file = "mypy-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:92024447a339400ea00ac228369cd242e988dd775640755fa4ac0c126e49bb74"}, - {file = "mypy-1.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:fe523fcbd52c05040c7bee370d66fee8373c5972171e4fbc323153433198592d"}, - {file = "mypy-1.0.0-py3-none-any.whl", hash = "sha256:2efa963bdddb27cb4a0d42545cd137a8d2b883bd181bbc4525b568ef6eca258f"}, - {file = "mypy-1.0.0.tar.gz", hash = "sha256:f34495079c8d9da05b183f9f7daec2878280c2ad7cc81da686ef0b484cea2ecf"}, -] - -[package.dependencies] -mypy-extensions = ">=0.4.3" + {file = "mypy-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f33592ddf9655a4894aef22d134de7393e95fcbdc2d15c1ab65828eee5c66c70"}, + {file = "mypy-1.5.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:258b22210a4a258ccd077426c7a181d789d1121aca6db73a83f79372f5569ae0"}, + {file = "mypy-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9ec1f695f0c25986e6f7f8778e5ce61659063268836a38c951200c57479cc12"}, + {file = "mypy-1.5.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:abed92d9c8f08643c7d831300b739562b0a6c9fcb028d211134fc9ab20ccad5d"}, + {file = "mypy-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:a156e6390944c265eb56afa67c74c0636f10283429171018446b732f1a05af25"}, + {file = "mypy-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6ac9c21bfe7bc9f7f1b6fae441746e6a106e48fc9de530dea29e8cd37a2c0cc4"}, + {file = "mypy-1.5.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:51cb1323064b1099e177098cb939eab2da42fea5d818d40113957ec954fc85f4"}, + {file = "mypy-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:596fae69f2bfcb7305808c75c00f81fe2829b6236eadda536f00610ac5ec2243"}, + {file = "mypy-1.5.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:32cb59609b0534f0bd67faebb6e022fe534bdb0e2ecab4290d683d248be1b275"}, + {file = "mypy-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:159aa9acb16086b79bbb0016145034a1a05360626046a929f84579ce1666b315"}, + {file = "mypy-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f6b0e77db9ff4fda74de7df13f30016a0a663928d669c9f2c057048ba44f09bb"}, + {file = "mypy-1.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:26f71b535dfc158a71264e6dc805a9f8d2e60b67215ca0bfa26e2e1aa4d4d373"}, + {file = "mypy-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fc3a600f749b1008cc75e02b6fb3d4db8dbcca2d733030fe7a3b3502902f161"}, + {file = "mypy-1.5.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:26fb32e4d4afa205b24bf645eddfbb36a1e17e995c5c99d6d00edb24b693406a"}, + {file = "mypy-1.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:82cb6193de9bbb3844bab4c7cf80e6227d5225cc7625b068a06d005d861ad5f1"}, + {file = "mypy-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4a465ea2ca12804d5b34bb056be3a29dc47aea5973b892d0417c6a10a40b2d65"}, + {file = "mypy-1.5.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9fece120dbb041771a63eb95e4896791386fe287fefb2837258925b8326d6160"}, + {file = "mypy-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d28ddc3e3dfeab553e743e532fb95b4e6afad51d4706dd22f28e1e5e664828d2"}, + {file = "mypy-1.5.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:57b10c56016adce71fba6bc6e9fd45d8083f74361f629390c556738565af8eeb"}, + {file = "mypy-1.5.1-cp38-cp38-win_amd64.whl", hash = "sha256:ff0cedc84184115202475bbb46dd99f8dcb87fe24d5d0ddfc0fe6b8575c88d2f"}, + {file = "mypy-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8f772942d372c8cbac575be99f9cc9d9fb3bd95c8bc2de6c01411e2c84ebca8a"}, + {file = "mypy-1.5.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5d627124700b92b6bbaa99f27cbe615c8ea7b3402960f6372ea7d65faf376c14"}, + {file = "mypy-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:361da43c4f5a96173220eb53340ace68cda81845cd88218f8862dfb0adc8cddb"}, + {file = "mypy-1.5.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:330857f9507c24de5c5724235e66858f8364a0693894342485e543f5b07c8693"}, + {file = "mypy-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:c543214ffdd422623e9fedd0869166c2f16affe4ba37463975043ef7d2ea8770"}, + {file = "mypy-1.5.1-py3-none-any.whl", hash = "sha256:f757063a83970d67c444f6e01d9550a7402322af3557ce7630d3c957386fa8f5"}, + {file = "mypy-1.5.1.tar.gz", hash = "sha256:b031b9601f1060bf1281feab89697324726ba0c0bae9d7cd7ab4b690940f0b92"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} -typing-extensions = ">=3.10" +typing-extensions = ">=4.1.0" [package.extras] dmypy = ["psutil (>=4.0)"] install-types = ["pip"] -python2 = ["typed-ast (>=1.4.0,<2)"] reports = ["lxml"] [[package]] @@ -1766,39 +1908,39 @@ zfpy = ["zfpy (>=1.0.0)"] [[package]] name = "numpy" -version = "1.24.3" +version = "1.24.4" description = "Fundamental package for array computing in Python" optional = false python-versions = ">=3.8" files = [ - {file = "numpy-1.24.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3c1104d3c036fb81ab923f507536daedc718d0ad5a8707c6061cdfd6d184e570"}, - {file = "numpy-1.24.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:202de8f38fc4a45a3eea4b63e2f376e5f2dc64ef0fa692838e31a808520efaf7"}, - {file = "numpy-1.24.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8535303847b89aa6b0f00aa1dc62867b5a32923e4d1681a35b5eef2d9591a463"}, - {file = "numpy-1.24.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d926b52ba1367f9acb76b0df6ed21f0b16a1ad87c6720a1121674e5cf63e2b6"}, - {file = "numpy-1.24.3-cp310-cp310-win32.whl", hash = "sha256:f21c442fdd2805e91799fbe044a7b999b8571bb0ab0f7850d0cb9641a687092b"}, - {file = "numpy-1.24.3-cp310-cp310-win_amd64.whl", hash = "sha256:ab5f23af8c16022663a652d3b25dcdc272ac3f83c3af4c02eb8b824e6b3ab9d7"}, - {file = "numpy-1.24.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9a7721ec204d3a237225db3e194c25268faf92e19338a35f3a224469cb6039a3"}, - {file = "numpy-1.24.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d6cc757de514c00b24ae8cf5c876af2a7c3df189028d68c0cb4eaa9cd5afc2bf"}, - {file = "numpy-1.24.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76e3f4e85fc5d4fd311f6e9b794d0c00e7002ec122be271f2019d63376f1d385"}, - {file = "numpy-1.24.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1d3c026f57ceaad42f8231305d4653d5f05dc6332a730ae5c0bea3513de0950"}, - {file = "numpy-1.24.3-cp311-cp311-win32.whl", hash = "sha256:c91c4afd8abc3908e00a44b2672718905b8611503f7ff87390cc0ac3423fb096"}, - {file = "numpy-1.24.3-cp311-cp311-win_amd64.whl", hash = "sha256:5342cf6aad47943286afa6f1609cad9b4266a05e7f2ec408e2cf7aea7ff69d80"}, - {file = "numpy-1.24.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7776ea65423ca6a15255ba1872d82d207bd1e09f6d0894ee4a64678dd2204078"}, - {file = "numpy-1.24.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ae8d0be48d1b6ed82588934aaaa179875e7dc4f3d84da18d7eae6eb3f06c242c"}, - {file = "numpy-1.24.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ecde0f8adef7dfdec993fd54b0f78183051b6580f606111a6d789cd14c61ea0c"}, - {file = "numpy-1.24.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4749e053a29364d3452c034827102ee100986903263e89884922ef01a0a6fd2f"}, - {file = "numpy-1.24.3-cp38-cp38-win32.whl", hash = "sha256:d933fabd8f6a319e8530d0de4fcc2e6a61917e0b0c271fded460032db42a0fe4"}, - {file = "numpy-1.24.3-cp38-cp38-win_amd64.whl", hash = "sha256:56e48aec79ae238f6e4395886b5eaed058abb7231fb3361ddd7bfdf4eed54289"}, - {file = "numpy-1.24.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4719d5aefb5189f50887773699eaf94e7d1e02bf36c1a9d353d9f46703758ca4"}, - {file = "numpy-1.24.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0ec87a7084caa559c36e0a2309e4ecb1baa03b687201d0a847c8b0ed476a7187"}, - {file = "numpy-1.24.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea8282b9bcfe2b5e7d491d0bf7f3e2da29700cec05b49e64d6246923329f2b02"}, - {file = "numpy-1.24.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:210461d87fb02a84ef243cac5e814aad2b7f4be953b32cb53327bb49fd77fbb4"}, - {file = "numpy-1.24.3-cp39-cp39-win32.whl", hash = "sha256:784c6da1a07818491b0ffd63c6bbe5a33deaa0e25a20e1b3ea20cf0e43f8046c"}, - {file = "numpy-1.24.3-cp39-cp39-win_amd64.whl", hash = "sha256:d5036197ecae68d7f491fcdb4df90082b0d4960ca6599ba2659957aafced7c17"}, - {file = "numpy-1.24.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:352ee00c7f8387b44d19f4cada524586f07379c0d49270f87233983bc5087ca0"}, - {file = "numpy-1.24.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a7d6acc2e7524c9955e5c903160aa4ea083736fde7e91276b0e5d98e6332812"}, - {file = "numpy-1.24.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:35400e6a8d102fd07c71ed7dcadd9eb62ee9a6e84ec159bd48c28235bbb0f8e4"}, - {file = "numpy-1.24.3.tar.gz", hash = "sha256:ab344f1bf21f140adab8e47fdbc7c35a477dc01408791f8ba00d018dd0bc5155"}, + {file = "numpy-1.24.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c0bfb52d2169d58c1cdb8cc1f16989101639b34c7d3ce60ed70b19c63eba0b64"}, + {file = "numpy-1.24.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ed094d4f0c177b1b8e7aa9cba7d6ceed51c0e569a5318ac0ca9a090680a6a1b1"}, + {file = "numpy-1.24.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79fc682a374c4a8ed08b331bef9c5f582585d1048fa6d80bc6c35bc384eee9b4"}, + {file = "numpy-1.24.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ffe43c74893dbf38c2b0a1f5428760a1a9c98285553c89e12d70a96a7f3a4d6"}, + {file = "numpy-1.24.4-cp310-cp310-win32.whl", hash = "sha256:4c21decb6ea94057331e111a5bed9a79d335658c27ce2adb580fb4d54f2ad9bc"}, + {file = "numpy-1.24.4-cp310-cp310-win_amd64.whl", hash = "sha256:b4bea75e47d9586d31e892a7401f76e909712a0fd510f58f5337bea9572c571e"}, + {file = "numpy-1.24.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f136bab9c2cfd8da131132c2cf6cc27331dd6fae65f95f69dcd4ae3c3639c810"}, + {file = "numpy-1.24.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2926dac25b313635e4d6cf4dc4e51c8c0ebfed60b801c799ffc4c32bf3d1254"}, + {file = "numpy-1.24.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:222e40d0e2548690405b0b3c7b21d1169117391c2e82c378467ef9ab4c8f0da7"}, + {file = "numpy-1.24.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7215847ce88a85ce39baf9e89070cb860c98fdddacbaa6c0da3ffb31b3350bd5"}, + {file = "numpy-1.24.4-cp311-cp311-win32.whl", hash = "sha256:4979217d7de511a8d57f4b4b5b2b965f707768440c17cb70fbf254c4b225238d"}, + {file = "numpy-1.24.4-cp311-cp311-win_amd64.whl", hash = "sha256:b7b1fc9864d7d39e28f41d089bfd6353cb5f27ecd9905348c24187a768c79694"}, + {file = "numpy-1.24.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1452241c290f3e2a312c137a9999cdbf63f78864d63c79039bda65ee86943f61"}, + {file = "numpy-1.24.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:04640dab83f7c6c85abf9cd729c5b65f1ebd0ccf9de90b270cd61935eef0197f"}, + {file = "numpy-1.24.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5425b114831d1e77e4b5d812b69d11d962e104095a5b9c3b641a218abcc050e"}, + {file = "numpy-1.24.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd80e219fd4c71fc3699fc1dadac5dcf4fd882bfc6f7ec53d30fa197b8ee22dc"}, + {file = "numpy-1.24.4-cp38-cp38-win32.whl", hash = "sha256:4602244f345453db537be5314d3983dbf5834a9701b7723ec28923e2889e0bb2"}, + {file = "numpy-1.24.4-cp38-cp38-win_amd64.whl", hash = "sha256:692f2e0f55794943c5bfff12b3f56f99af76f902fc47487bdfe97856de51a706"}, + {file = "numpy-1.24.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2541312fbf09977f3b3ad449c4e5f4bb55d0dbf79226d7724211acc905049400"}, + {file = "numpy-1.24.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9667575fb6d13c95f1b36aca12c5ee3356bf001b714fc354eb5465ce1609e62f"}, + {file = "numpy-1.24.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3a86ed21e4f87050382c7bc96571755193c4c1392490744ac73d660e8f564a9"}, + {file = "numpy-1.24.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d11efb4dbecbdf22508d55e48d9c8384db795e1b7b51ea735289ff96613ff74d"}, + {file = "numpy-1.24.4-cp39-cp39-win32.whl", hash = "sha256:6620c0acd41dbcb368610bb2f4d83145674040025e5536954782467100aa8835"}, + {file = "numpy-1.24.4-cp39-cp39-win_amd64.whl", hash = "sha256:befe2bf740fd8373cf56149a5c23a0f601e82869598d41f8e188a0e9869926f8"}, + {file = "numpy-1.24.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:31f13e25b4e304632a4619d0e0777662c2ffea99fcae2029556b17d8ff958aef"}, + {file = "numpy-1.24.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95f7ac6540e95bc440ad77f56e520da5bf877f87dca58bd095288dce8940532a"}, + {file = "numpy-1.24.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:e98f220aa76ca2a977fe435f5b04d7b3470c0a2e6312907b37ba6068f26787f2"}, + {file = "numpy-1.24.4.tar.gz", hash = "sha256:80f5e3a4e498641401868df4208b74581206afbee7cf7b8329daae82676d9463"}, ] [[package]] @@ -1844,39 +1986,37 @@ typer = ">0.6,<0.10" [[package]] name = "openapi-schema-validator" -version = "0.4.4" +version = "0.6.1" description = "OpenAPI schema validation for Python" optional = false -python-versions = ">=3.7.0,<4.0.0" +python-versions = ">=3.8.0,<4.0.0" files = [ - {file = "openapi_schema_validator-0.4.4-py3-none-any.whl", hash = "sha256:79f37f38ef9fd5206b924ed7a6f382cea7b649b3b56383c47f1906082b7b9015"}, - {file = "openapi_schema_validator-0.4.4.tar.gz", hash = "sha256:c573e2be2c783abae56c5a1486ab716ca96e09d1c3eab56020d1dc680aa57bf8"}, + {file = "openapi_schema_validator-0.6.1-py3-none-any.whl", hash = "sha256:e39f2cc92a458a1b9971d8a0519fcc94a4c454d9accffab5189575716fe53bed"}, + {file = "openapi_schema_validator-0.6.1.tar.gz", hash = "sha256:b8b25e2cb600a0ed18452e675b5dd8cbb99009909c2641c973a4b02c93e33ca2"}, ] [package.dependencies] -jsonschema = ">=4.0.0,<4.18.0" +jsonschema = ">=4.19.1,<5.0.0" +jsonschema-specifications = ">=2023.5.2,<2024.0.0" rfc3339-validator = "*" -[package.extras] -docs = ["sphinx (>=5.3.0,<6.0.0)", "sphinx-immaterial (>=0.11.0,<0.12.0)"] - [[package]] name = "openapi-spec-validator" -version = "0.5.7" +version = "0.6.0" description = "OpenAPI 2.0 (aka Swagger) and OpenAPI 3 spec validator" optional = false -python-versions = ">=3.7.0,<4.0.0" +python-versions = ">=3.8.0,<4.0.0" files = [ - {file = "openapi_spec_validator-0.5.7-py3-none-any.whl", hash = "sha256:8712d2879db7692974ef89c47a3ebfc79436442921ec3a826ac0ce80cde8c549"}, - {file = "openapi_spec_validator-0.5.7.tar.gz", hash = "sha256:6c2d42180045a80fd6314de848b94310bdb0fa4949f4b099578b69f79d9fa5ac"}, + {file = "openapi_spec_validator-0.6.0-py3-none-any.whl", hash = "sha256:675f1a3c0d0d8eff9116694acde88bcd4613a95bf5240270724d9d78c78f26d6"}, + {file = "openapi_spec_validator-0.6.0.tar.gz", hash = "sha256:68c4c212c88ef14c6b1a591b895bf742c455783c7ebba2507abd7dbc1365a616"}, ] [package.dependencies] importlib-resources = {version = ">=5.8.0,<6.0.0", markers = "python_version < \"3.9\""} -jsonschema = ">=4.0.0,<4.18.0" -jsonschema-spec = ">=0.1.1,<0.2.0" +jsonschema = ">=4.18.0,<5.0.0" +jsonschema-spec = ">=0.2.3,<0.3.0" lazy-object-proxy = ">=1.7.1,<2.0.0" -openapi-schema-validator = ">=0.4.2,<0.5.0" +openapi-schema-validator = ">=0.6.0,<0.7.0" [[package]] name = "packaging" @@ -1939,13 +2079,13 @@ test = ["hypothesis (>=5.5.3)", "pytest (>=6.0)", "pytest-xdist (>=1.31)"] [[package]] name = "partd" -version = "1.4.0" +version = "1.4.1" description = "Appendable key-value storage" optional = false python-versions = ">=3.7" files = [ - {file = "partd-1.4.0-py3-none-any.whl", hash = "sha256:7a63529348cf0dff14b986db641cd1b83c16b5cb9fc647c2851779db03282ef8"}, - {file = "partd-1.4.0.tar.gz", hash = "sha256:aa0ff35dbbcc807ae374db56332f4c1b39b46f67bf2975f5151e0b4186aed0d5"}, + {file = "partd-1.4.1-py3-none-any.whl", hash = "sha256:27e766663d36c161e2827aa3e28541c992f0b9527d3cca047e13fb3acdb989e6"}, + {file = "partd-1.4.1.tar.gz", hash = "sha256:56c25dd49e6fea5727e731203c466c6e092f308d8f0024e199d02f6aa2167f67"}, ] [package.dependencies] @@ -1968,88 +2108,76 @@ files = [ [[package]] name = "pathspec" -version = "0.11.1" +version = "0.11.2" description = "Utility library for gitignore style pattern matching of file paths." optional = false python-versions = ">=3.7" files = [ - {file = "pathspec-0.11.1-py3-none-any.whl", hash = "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293"}, - {file = "pathspec-0.11.1.tar.gz", hash = "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687"}, + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, ] [[package]] name = "pillow" -version = "9.5.0" +version = "10.0.1" description = "Python Imaging Library (Fork)" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "Pillow-9.5.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:ace6ca218308447b9077c14ea4ef381ba0b67ee78d64046b3f19cf4e1139ad16"}, - {file = "Pillow-9.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d3d403753c9d5adc04d4694d35cf0391f0f3d57c8e0030aac09d7678fa8030aa"}, - {file = "Pillow-9.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ba1b81ee69573fe7124881762bb4cd2e4b6ed9dd28c9c60a632902fe8db8b38"}, - {file = "Pillow-9.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fe7e1c262d3392afcf5071df9afa574544f28eac825284596ac6db56e6d11062"}, - {file = "Pillow-9.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f36397bf3f7d7c6a3abdea815ecf6fd14e7fcd4418ab24bae01008d8d8ca15e"}, - {file = "Pillow-9.5.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:252a03f1bdddce077eff2354c3861bf437c892fb1832f75ce813ee94347aa9b5"}, - {file = "Pillow-9.5.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:85ec677246533e27770b0de5cf0f9d6e4ec0c212a1f89dfc941b64b21226009d"}, - {file = "Pillow-9.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b416f03d37d27290cb93597335a2f85ed446731200705b22bb927405320de903"}, - {file = "Pillow-9.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1781a624c229cb35a2ac31cc4a77e28cafc8900733a864870c49bfeedacd106a"}, - {file = "Pillow-9.5.0-cp310-cp310-win32.whl", hash = "sha256:8507eda3cd0608a1f94f58c64817e83ec12fa93a9436938b191b80d9e4c0fc44"}, - {file = "Pillow-9.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d3c6b54e304c60c4181da1c9dadf83e4a54fd266a99c70ba646a9baa626819eb"}, - {file = "Pillow-9.5.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:7ec6f6ce99dab90b52da21cf0dc519e21095e332ff3b399a357c187b1a5eee32"}, - {file = "Pillow-9.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:560737e70cb9c6255d6dcba3de6578a9e2ec4b573659943a5e7e4af13f298f5c"}, - {file = "Pillow-9.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96e88745a55b88a7c64fa49bceff363a1a27d9a64e04019c2281049444a571e3"}, - {file = "Pillow-9.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d9c206c29b46cfd343ea7cdfe1232443072bbb270d6a46f59c259460db76779a"}, - {file = "Pillow-9.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cfcc2c53c06f2ccb8976fb5c71d448bdd0a07d26d8e07e321c103416444c7ad1"}, - {file = "Pillow-9.5.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:a0f9bb6c80e6efcde93ffc51256d5cfb2155ff8f78292f074f60f9e70b942d99"}, - {file = "Pillow-9.5.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8d935f924bbab8f0a9a28404422da8af4904e36d5c33fc6f677e4c4485515625"}, - {file = "Pillow-9.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:fed1e1cf6a42577953abbe8e6cf2fe2f566daebde7c34724ec8803c4c0cda579"}, - {file = "Pillow-9.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c1170d6b195555644f0616fd6ed929dfcf6333b8675fcca044ae5ab110ded296"}, - {file = "Pillow-9.5.0-cp311-cp311-win32.whl", hash = "sha256:54f7102ad31a3de5666827526e248c3530b3a33539dbda27c6843d19d72644ec"}, - {file = "Pillow-9.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:cfa4561277f677ecf651e2b22dc43e8f5368b74a25a8f7d1d4a3a243e573f2d4"}, - {file = "Pillow-9.5.0-cp311-cp311-win_arm64.whl", hash = "sha256:965e4a05ef364e7b973dd17fc765f42233415974d773e82144c9bbaaaea5d089"}, - {file = "Pillow-9.5.0-cp312-cp312-win32.whl", hash = "sha256:22baf0c3cf0c7f26e82d6e1adf118027afb325e703922c8dfc1d5d0156bb2eeb"}, - {file = "Pillow-9.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:432b975c009cf649420615388561c0ce7cc31ce9b2e374db659ee4f7d57a1f8b"}, - {file = "Pillow-9.5.0-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:5d4ebf8e1db4441a55c509c4baa7a0587a0210f7cd25fcfe74dbbce7a4bd1906"}, - {file = "Pillow-9.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:375f6e5ee9620a271acb6820b3d1e94ffa8e741c0601db4c0c4d3cb0a9c224bf"}, - {file = "Pillow-9.5.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99eb6cafb6ba90e436684e08dad8be1637efb71c4f2180ee6b8f940739406e78"}, - {file = "Pillow-9.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2dfaaf10b6172697b9bceb9a3bd7b951819d1ca339a5ef294d1f1ac6d7f63270"}, - {file = "Pillow-9.5.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:763782b2e03e45e2c77d7779875f4432e25121ef002a41829d8868700d119392"}, - {file = "Pillow-9.5.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:35f6e77122a0c0762268216315bf239cf52b88865bba522999dc38f1c52b9b47"}, - {file = "Pillow-9.5.0-cp37-cp37m-win32.whl", hash = "sha256:aca1c196f407ec7cf04dcbb15d19a43c507a81f7ffc45b690899d6a76ac9fda7"}, - {file = "Pillow-9.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322724c0032af6692456cd6ed554bb85f8149214d97398bb80613b04e33769f6"}, - {file = "Pillow-9.5.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:a0aa9417994d91301056f3d0038af1199eb7adc86e646a36b9e050b06f526597"}, - {file = "Pillow-9.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f8286396b351785801a976b1e85ea88e937712ee2c3ac653710a4a57a8da5d9c"}, - {file = "Pillow-9.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c830a02caeb789633863b466b9de10c015bded434deb3ec87c768e53752ad22a"}, - {file = "Pillow-9.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fbd359831c1657d69bb81f0db962905ee05e5e9451913b18b831febfe0519082"}, - {file = "Pillow-9.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8fc330c3370a81bbf3f88557097d1ea26cd8b019d6433aa59f71195f5ddebbf"}, - {file = "Pillow-9.5.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:7002d0797a3e4193c7cdee3198d7c14f92c0836d6b4a3f3046a64bd1ce8df2bf"}, - {file = "Pillow-9.5.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:229e2c79c00e85989a34b5981a2b67aa079fd08c903f0aaead522a1d68d79e51"}, - {file = "Pillow-9.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:9adf58f5d64e474bed00d69bcd86ec4bcaa4123bfa70a65ce72e424bfb88ed96"}, - {file = "Pillow-9.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:662da1f3f89a302cc22faa9f14a262c2e3951f9dbc9617609a47521c69dd9f8f"}, - {file = "Pillow-9.5.0-cp38-cp38-win32.whl", hash = "sha256:6608ff3bf781eee0cd14d0901a2b9cc3d3834516532e3bd673a0a204dc8615fc"}, - {file = "Pillow-9.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:e49eb4e95ff6fd7c0c402508894b1ef0e01b99a44320ba7d8ecbabefddcc5569"}, - {file = "Pillow-9.5.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:482877592e927fd263028c105b36272398e3e1be3269efda09f6ba21fd83ec66"}, - {file = "Pillow-9.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3ded42b9ad70e5f1754fb7c2e2d6465a9c842e41d178f262e08b8c85ed8a1d8e"}, - {file = "Pillow-9.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c446d2245ba29820d405315083d55299a796695d747efceb5717a8b450324115"}, - {file = "Pillow-9.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8aca1152d93dcc27dc55395604dcfc55bed5f25ef4c98716a928bacba90d33a3"}, - {file = "Pillow-9.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:608488bdcbdb4ba7837461442b90ea6f3079397ddc968c31265c1e056964f1ef"}, - {file = "Pillow-9.5.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:60037a8db8750e474af7ffc9faa9b5859e6c6d0a50e55c45576bf28be7419705"}, - {file = "Pillow-9.5.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:07999f5834bdc404c442146942a2ecadd1cb6292f5229f4ed3b31e0a108746b1"}, - {file = "Pillow-9.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a127ae76092974abfbfa38ca2d12cbeddcdeac0fb71f9627cc1135bedaf9d51a"}, - {file = "Pillow-9.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:489f8389261e5ed43ac8ff7b453162af39c3e8abd730af8363587ba64bb2e865"}, - {file = "Pillow-9.5.0-cp39-cp39-win32.whl", hash = "sha256:9b1af95c3a967bf1da94f253e56b6286b50af23392a886720f563c547e48e964"}, - {file = "Pillow-9.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:77165c4a5e7d5a284f10a6efaa39a0ae8ba839da344f20b111d62cc932fa4e5d"}, - {file = "Pillow-9.5.0-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:833b86a98e0ede388fa29363159c9b1a294b0905b5128baf01db683672f230f5"}, - {file = "Pillow-9.5.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aaf305d6d40bd9632198c766fb64f0c1a83ca5b667f16c1e79e1661ab5060140"}, - {file = "Pillow-9.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0852ddb76d85f127c135b6dd1f0bb88dbb9ee990d2cd9aa9e28526c93e794fba"}, - {file = "Pillow-9.5.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:91ec6fe47b5eb5a9968c79ad9ed78c342b1f97a091677ba0e012701add857829"}, - {file = "Pillow-9.5.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:cb841572862f629b99725ebaec3287fc6d275be9b14443ea746c1dd325053cbd"}, - {file = "Pillow-9.5.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:c380b27d041209b849ed246b111b7c166ba36d7933ec6e41175fd15ab9eb1572"}, - {file = "Pillow-9.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c9af5a3b406a50e313467e3565fc99929717f780164fe6fbb7704edba0cebbe"}, - {file = "Pillow-9.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5671583eab84af046a397d6d0ba25343c00cd50bce03787948e0fff01d4fd9b1"}, - {file = "Pillow-9.5.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:84a6f19ce086c1bf894644b43cd129702f781ba5751ca8572f08aa40ef0ab7b7"}, - {file = "Pillow-9.5.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:1e7723bd90ef94eda669a3c2c19d549874dd5badaeefabefd26053304abe5799"}, - {file = "Pillow-9.5.0.tar.gz", hash = "sha256:bf548479d336726d7a0eceb6e767e179fbde37833ae42794602631a070d630f1"}, + {file = "Pillow-10.0.1-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:8f06be50669087250f319b706decf69ca71fdecd829091a37cc89398ca4dc17a"}, + {file = "Pillow-10.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:50bd5f1ebafe9362ad622072a1d2f5850ecfa44303531ff14353a4059113b12d"}, + {file = "Pillow-10.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e6a90167bcca1216606223a05e2cf991bb25b14695c518bc65639463d7db722d"}, + {file = "Pillow-10.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f11c9102c56ffb9ca87134bd025a43d2aba3f1155f508eff88f694b33a9c6d19"}, + {file = "Pillow-10.0.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:186f7e04248103482ea6354af6d5bcedb62941ee08f7f788a1c7707bc720c66f"}, + {file = "Pillow-10.0.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:0462b1496505a3462d0f35dc1c4d7b54069747d65d00ef48e736acda2c8cbdff"}, + {file = "Pillow-10.0.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d889b53ae2f030f756e61a7bff13684dcd77e9af8b10c6048fb2c559d6ed6eaf"}, + {file = "Pillow-10.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:552912dbca585b74d75279a7570dd29fa43b6d93594abb494ebb31ac19ace6bd"}, + {file = "Pillow-10.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:787bb0169d2385a798888e1122c980c6eff26bf941a8ea79747d35d8f9210ca0"}, + {file = "Pillow-10.0.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:fd2a5403a75b54661182b75ec6132437a181209b901446ee5724b589af8edef1"}, + {file = "Pillow-10.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2d7e91b4379f7a76b31c2dda84ab9e20c6220488e50f7822e59dac36b0cd92b1"}, + {file = "Pillow-10.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19e9adb3f22d4c416e7cd79b01375b17159d6990003633ff1d8377e21b7f1b21"}, + {file = "Pillow-10.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93139acd8109edcdeffd85e3af8ae7d88b258b3a1e13a038f542b79b6d255c54"}, + {file = "Pillow-10.0.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:92a23b0431941a33242b1f0ce6c88a952e09feeea9af4e8be48236a68ffe2205"}, + {file = "Pillow-10.0.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:cbe68deb8580462ca0d9eb56a81912f59eb4542e1ef8f987405e35a0179f4ea2"}, + {file = "Pillow-10.0.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:522ff4ac3aaf839242c6f4e5b406634bfea002469656ae8358644fc6c4856a3b"}, + {file = "Pillow-10.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:84efb46e8d881bb06b35d1d541aa87f574b58e87f781cbba8d200daa835b42e1"}, + {file = "Pillow-10.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:898f1d306298ff40dc1b9ca24824f0488f6f039bc0e25cfb549d3195ffa17088"}, + {file = "Pillow-10.0.1-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:bcf1207e2f2385a576832af02702de104be71301c2696d0012b1b93fe34aaa5b"}, + {file = "Pillow-10.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5d6c9049c6274c1bb565021367431ad04481ebb54872edecfcd6088d27edd6ed"}, + {file = "Pillow-10.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28444cb6ad49726127d6b340217f0627abc8732f1194fd5352dec5e6a0105635"}, + {file = "Pillow-10.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de596695a75496deb3b499c8c4f8e60376e0516e1a774e7bc046f0f48cd620ad"}, + {file = "Pillow-10.0.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:2872f2d7846cf39b3dbff64bc1104cc48c76145854256451d33c5faa55c04d1a"}, + {file = "Pillow-10.0.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:4ce90f8a24e1c15465048959f1e94309dfef93af272633e8f37361b824532e91"}, + {file = "Pillow-10.0.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ee7810cf7c83fa227ba9125de6084e5e8b08c59038a7b2c9045ef4dde61663b4"}, + {file = "Pillow-10.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b1be1c872b9b5fcc229adeadbeb51422a9633abd847c0ff87dc4ef9bb184ae08"}, + {file = "Pillow-10.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:98533fd7fa764e5f85eebe56c8e4094db912ccbe6fbf3a58778d543cadd0db08"}, + {file = "Pillow-10.0.1-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:764d2c0daf9c4d40ad12fbc0abd5da3af7f8aa11daf87e4fa1b834000f4b6b0a"}, + {file = "Pillow-10.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:fcb59711009b0168d6ee0bd8fb5eb259c4ab1717b2f538bbf36bacf207ef7a68"}, + {file = "Pillow-10.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:697a06bdcedd473b35e50a7e7506b1d8ceb832dc238a336bd6f4f5aa91a4b500"}, + {file = "Pillow-10.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f665d1e6474af9f9da5e86c2a3a2d2d6204e04d5af9c06b9d42afa6ebde3f21"}, + {file = "Pillow-10.0.1-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:2fa6dd2661838c66f1a5473f3b49ab610c98a128fc08afbe81b91a1f0bf8c51d"}, + {file = "Pillow-10.0.1-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:3a04359f308ebee571a3127fdb1bd01f88ba6f6fb6d087f8dd2e0d9bff43f2a7"}, + {file = "Pillow-10.0.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:723bd25051454cea9990203405fa6b74e043ea76d4968166dfd2569b0210886a"}, + {file = "Pillow-10.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:71671503e3015da1b50bd18951e2f9daf5b6ffe36d16f1eb2c45711a301521a7"}, + {file = "Pillow-10.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:44e7e4587392953e5e251190a964675f61e4dae88d1e6edbe9f36d6243547ff3"}, + {file = "Pillow-10.0.1-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:3855447d98cced8670aaa63683808df905e956f00348732448b5a6df67ee5849"}, + {file = "Pillow-10.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ed2d9c0704f2dc4fa980b99d565c0c9a543fe5101c25b3d60488b8ba80f0cce1"}, + {file = "Pillow-10.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5bb289bb835f9fe1a1e9300d011eef4d69661bb9b34d5e196e5e82c4cb09b37"}, + {file = "Pillow-10.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a0d3e54ab1df9df51b914b2233cf779a5a10dfd1ce339d0421748232cea9876"}, + {file = "Pillow-10.0.1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:2cc6b86ece42a11f16f55fe8903595eff2b25e0358dec635d0a701ac9586588f"}, + {file = "Pillow-10.0.1-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:ca26ba5767888c84bf5a0c1a32f069e8204ce8c21d00a49c90dabeba00ce0145"}, + {file = "Pillow-10.0.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f0b4b06da13275bc02adfeb82643c4a6385bd08d26f03068c2796f60d125f6f2"}, + {file = "Pillow-10.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bc2e3069569ea9dbe88d6b8ea38f439a6aad8f6e7a6283a38edf61ddefb3a9bf"}, + {file = "Pillow-10.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:8b451d6ead6e3500b6ce5c7916a43d8d8d25ad74b9102a629baccc0808c54971"}, + {file = "Pillow-10.0.1-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:32bec7423cdf25c9038fef614a853c9d25c07590e1a870ed471f47fb80b244db"}, + {file = "Pillow-10.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7cf63d2c6928b51d35dfdbda6f2c1fddbe51a6bc4a9d4ee6ea0e11670dd981e"}, + {file = "Pillow-10.0.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f6d3d4c905e26354e8f9d82548475c46d8e0889538cb0657aa9c6f0872a37aa4"}, + {file = "Pillow-10.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:847e8d1017c741c735d3cd1883fa7b03ded4f825a6e5fcb9378fd813edee995f"}, + {file = "Pillow-10.0.1-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:7f771e7219ff04b79e231d099c0a28ed83aa82af91fd5fa9fdb28f5b8d5addaf"}, + {file = "Pillow-10.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:459307cacdd4138edee3875bbe22a2492519e060660eaf378ba3b405d1c66317"}, + {file = "Pillow-10.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b059ac2c4c7a97daafa7dc850b43b2d3667def858a4f112d1aa082e5c3d6cf7d"}, + {file = "Pillow-10.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:d6caf3cd38449ec3cd8a68b375e0c6fe4b6fd04edb6c9766b55ef84a6e8ddf2d"}, + {file = "Pillow-10.0.1.tar.gz", hash = "sha256:d72967b06be9300fed5cfbc8b5bafceec48bf7cdc7dab66b1d2549035287191d"}, ] [package.extras] @@ -2084,28 +2212,28 @@ files = [ [[package]] name = "platformdirs" -version = "3.6.0" +version = "3.10.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." optional = false python-versions = ">=3.7" files = [ - {file = "platformdirs-3.6.0-py3-none-any.whl", hash = "sha256:ffa199e3fbab8365778c4a10e1fbf1b9cd50707de826eb304b50e57ec0cc8d38"}, - {file = "platformdirs-3.6.0.tar.gz", hash = "sha256:57e28820ca8094678b807ff529196506d7a21e17156cb1cddb3e74cebce54640"}, + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, ] [package.extras] -docs = ["furo (>=2023.5.20)", "proselint (>=0.13)", "sphinx (>=7.0.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4.1)", "pytest-mock (>=3.10)"] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] [[package]] name = "pluggy" -version = "1.0.0" +version = "1.3.0" description = "plugin and hook calling mechanisms for python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, - {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, + {file = "pluggy-1.3.0-py3-none-any.whl", hash = "sha256:d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7"}, + {file = "pluggy-1.3.0.tar.gz", hash = "sha256:cf61ae8f126ac6f7c451172cf30e3e43d3ca77615509771b3a984a0730651e12"}, ] [package.extras] @@ -2197,47 +2325,47 @@ files = [ [[package]] name = "pydantic" -version = "1.10.9" +version = "1.10.12" description = "Data validation and settings management using python type hints" optional = false python-versions = ">=3.7" files = [ - {file = "pydantic-1.10.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e692dec4a40bfb40ca530e07805b1208c1de071a18d26af4a2a0d79015b352ca"}, - {file = "pydantic-1.10.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3c52eb595db83e189419bf337b59154bdcca642ee4b2a09e5d7797e41ace783f"}, - {file = "pydantic-1.10.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:939328fd539b8d0edf244327398a667b6b140afd3bf7e347cf9813c736211896"}, - {file = "pydantic-1.10.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b48d3d634bca23b172f47f2335c617d3fcb4b3ba18481c96b7943a4c634f5c8d"}, - {file = "pydantic-1.10.9-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f0b7628fb8efe60fe66fd4adadd7ad2304014770cdc1f4934db41fe46cc8825f"}, - {file = "pydantic-1.10.9-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e1aa5c2410769ca28aa9a7841b80d9d9a1c5f223928ca8bec7e7c9a34d26b1d4"}, - {file = "pydantic-1.10.9-cp310-cp310-win_amd64.whl", hash = "sha256:eec39224b2b2e861259d6f3c8b6290d4e0fbdce147adb797484a42278a1a486f"}, - {file = "pydantic-1.10.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d111a21bbbfd85c17248130deac02bbd9b5e20b303338e0dbe0faa78330e37e0"}, - {file = "pydantic-1.10.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e9aec8627a1a6823fc62fb96480abe3eb10168fd0d859ee3d3b395105ae19a7"}, - {file = "pydantic-1.10.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07293ab08e7b4d3c9d7de4949a0ea571f11e4557d19ea24dd3ae0c524c0c334d"}, - {file = "pydantic-1.10.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ee829b86ce984261d99ff2fd6e88f2230068d96c2a582f29583ed602ef3fc2c"}, - {file = "pydantic-1.10.9-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4b466a23009ff5cdd7076eb56aca537c745ca491293cc38e72bf1e0e00de5b91"}, - {file = "pydantic-1.10.9-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7847ca62e581e6088d9000f3c497267868ca2fa89432714e21a4fb33a04d52e8"}, - {file = "pydantic-1.10.9-cp311-cp311-win_amd64.whl", hash = "sha256:7845b31959468bc5b78d7b95ec52fe5be32b55d0d09983a877cca6aedc51068f"}, - {file = "pydantic-1.10.9-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:517a681919bf880ce1dac7e5bc0c3af1e58ba118fd774da2ffcd93c5f96eaece"}, - {file = "pydantic-1.10.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67195274fd27780f15c4c372f4ba9a5c02dad6d50647b917b6a92bf00b3d301a"}, - {file = "pydantic-1.10.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2196c06484da2b3fded1ab6dbe182bdabeb09f6318b7fdc412609ee2b564c49a"}, - {file = "pydantic-1.10.9-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:6257bb45ad78abacda13f15bde5886efd6bf549dd71085e64b8dcf9919c38b60"}, - {file = "pydantic-1.10.9-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:3283b574b01e8dbc982080d8287c968489d25329a463b29a90d4157de4f2baaf"}, - {file = "pydantic-1.10.9-cp37-cp37m-win_amd64.whl", hash = "sha256:5f8bbaf4013b9a50e8100333cc4e3fa2f81214033e05ac5aa44fa24a98670a29"}, - {file = "pydantic-1.10.9-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b9cd67fb763248cbe38f0593cd8611bfe4b8ad82acb3bdf2b0898c23415a1f82"}, - {file = "pydantic-1.10.9-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f50e1764ce9353be67267e7fd0da08349397c7db17a562ad036aa7c8f4adfdb6"}, - {file = "pydantic-1.10.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73ef93e5e1d3c8e83f1ff2e7fdd026d9e063c7e089394869a6e2985696693766"}, - {file = "pydantic-1.10.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:128d9453d92e6e81e881dd7e2484e08d8b164da5507f62d06ceecf84bf2e21d3"}, - {file = "pydantic-1.10.9-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ad428e92ab68798d9326bb3e5515bc927444a3d71a93b4a2ca02a8a5d795c572"}, - {file = "pydantic-1.10.9-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fab81a92f42d6d525dd47ced310b0c3e10c416bbfae5d59523e63ea22f82b31e"}, - {file = "pydantic-1.10.9-cp38-cp38-win_amd64.whl", hash = "sha256:963671eda0b6ba6926d8fc759e3e10335e1dc1b71ff2a43ed2efd6996634dafb"}, - {file = "pydantic-1.10.9-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:970b1bdc6243ef663ba5c7e36ac9ab1f2bfecb8ad297c9824b542d41a750b298"}, - {file = "pydantic-1.10.9-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7e1d5290044f620f80cf1c969c542a5468f3656de47b41aa78100c5baa2b8276"}, - {file = "pydantic-1.10.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83fcff3c7df7adff880622a98022626f4f6dbce6639a88a15a3ce0f96466cb60"}, - {file = "pydantic-1.10.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0da48717dc9495d3a8f215e0d012599db6b8092db02acac5e0d58a65248ec5bc"}, - {file = "pydantic-1.10.9-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:0a2aabdc73c2a5960e87c3ffebca6ccde88665616d1fd6d3db3178ef427b267a"}, - {file = "pydantic-1.10.9-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9863b9420d99dfa9c064042304868e8ba08e89081428a1c471858aa2af6f57c4"}, - {file = "pydantic-1.10.9-cp39-cp39-win_amd64.whl", hash = "sha256:e7c9900b43ac14110efa977be3da28931ffc74c27e96ee89fbcaaf0b0fe338e1"}, - {file = "pydantic-1.10.9-py3-none-any.whl", hash = "sha256:6cafde02f6699ce4ff643417d1a9223716ec25e228ddc3b436fe7e2d25a1f305"}, - {file = "pydantic-1.10.9.tar.gz", hash = "sha256:95c70da2cd3b6ddf3b9645ecaa8d98f3d80c606624b6d245558d202cd23ea3be"}, + {file = "pydantic-1.10.12-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a1fcb59f2f355ec350073af41d927bf83a63b50e640f4dbaa01053a28b7a7718"}, + {file = "pydantic-1.10.12-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b7ccf02d7eb340b216ec33e53a3a629856afe1c6e0ef91d84a4e6f2fb2ca70fe"}, + {file = "pydantic-1.10.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8fb2aa3ab3728d950bcc885a2e9eff6c8fc40bc0b7bb434e555c215491bcf48b"}, + {file = "pydantic-1.10.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:771735dc43cf8383959dc9b90aa281f0b6092321ca98677c5fb6125a6f56d58d"}, + {file = "pydantic-1.10.12-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ca48477862372ac3770969b9d75f1bf66131d386dba79506c46d75e6b48c1e09"}, + {file = "pydantic-1.10.12-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a5e7add47a5b5a40c49b3036d464e3c7802f8ae0d1e66035ea16aa5b7a3923ed"}, + {file = "pydantic-1.10.12-cp310-cp310-win_amd64.whl", hash = "sha256:e4129b528c6baa99a429f97ce733fff478ec955513630e61b49804b6cf9b224a"}, + {file = "pydantic-1.10.12-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b0d191db0f92dfcb1dec210ca244fdae5cbe918c6050b342d619c09d31eea0cc"}, + {file = "pydantic-1.10.12-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:795e34e6cc065f8f498c89b894a3c6da294a936ee71e644e4bd44de048af1405"}, + {file = "pydantic-1.10.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69328e15cfda2c392da4e713443c7dbffa1505bc9d566e71e55abe14c97ddc62"}, + {file = "pydantic-1.10.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2031de0967c279df0d8a1c72b4ffc411ecd06bac607a212892757db7462fc494"}, + {file = "pydantic-1.10.12-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:ba5b2e6fe6ca2b7e013398bc7d7b170e21cce322d266ffcd57cca313e54fb246"}, + {file = "pydantic-1.10.12-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2a7bac939fa326db1ab741c9d7f44c565a1d1e80908b3797f7f81a4f86bc8d33"}, + {file = "pydantic-1.10.12-cp311-cp311-win_amd64.whl", hash = "sha256:87afda5539d5140cb8ba9e8b8c8865cb5b1463924d38490d73d3ccfd80896b3f"}, + {file = "pydantic-1.10.12-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:549a8e3d81df0a85226963611950b12d2d334f214436a19537b2efed61b7639a"}, + {file = "pydantic-1.10.12-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:598da88dfa127b666852bef6d0d796573a8cf5009ffd62104094a4fe39599565"}, + {file = "pydantic-1.10.12-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba5c4a8552bff16c61882db58544116d021d0b31ee7c66958d14cf386a5b5350"}, + {file = "pydantic-1.10.12-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c79e6a11a07da7374f46970410b41d5e266f7f38f6a17a9c4823db80dadf4303"}, + {file = "pydantic-1.10.12-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ab26038b8375581dc832a63c948f261ae0aa21f1d34c1293469f135fa92972a5"}, + {file = "pydantic-1.10.12-cp37-cp37m-win_amd64.whl", hash = "sha256:e0a16d274b588767602b7646fa05af2782576a6cf1022f4ba74cbb4db66f6ca8"}, + {file = "pydantic-1.10.12-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6a9dfa722316f4acf4460afdf5d41d5246a80e249c7ff475c43a3a1e9d75cf62"}, + {file = "pydantic-1.10.12-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a73f489aebd0c2121ed974054cb2759af8a9f747de120acd2c3394cf84176ccb"}, + {file = "pydantic-1.10.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b30bcb8cbfccfcf02acb8f1a261143fab622831d9c0989707e0e659f77a18e0"}, + {file = "pydantic-1.10.12-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fcfb5296d7877af406ba1547dfde9943b1256d8928732267e2653c26938cd9c"}, + {file = "pydantic-1.10.12-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:2f9a6fab5f82ada41d56b0602606a5506aab165ca54e52bc4545028382ef1c5d"}, + {file = "pydantic-1.10.12-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:dea7adcc33d5d105896401a1f37d56b47d443a2b2605ff8a969a0ed5543f7e33"}, + {file = "pydantic-1.10.12-cp38-cp38-win_amd64.whl", hash = "sha256:1eb2085c13bce1612da8537b2d90f549c8cbb05c67e8f22854e201bde5d98a47"}, + {file = "pydantic-1.10.12-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ef6c96b2baa2100ec91a4b428f80d8f28a3c9e53568219b6c298c1125572ebc6"}, + {file = "pydantic-1.10.12-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6c076be61cd0177a8433c0adcb03475baf4ee91edf5a4e550161ad57fc90f523"}, + {file = "pydantic-1.10.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d5a58feb9a39f481eda4d5ca220aa8b9d4f21a41274760b9bc66bfd72595b86"}, + {file = "pydantic-1.10.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5f805d2d5d0a41633651a73fa4ecdd0b3d7a49de4ec3fadf062fe16501ddbf1"}, + {file = "pydantic-1.10.12-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:1289c180abd4bd4555bb927c42ee42abc3aee02b0fb2d1223fb7c6e5bef87dbe"}, + {file = "pydantic-1.10.12-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5d1197e462e0364906cbc19681605cb7c036f2475c899b6f296104ad42b9f5fb"}, + {file = "pydantic-1.10.12-cp39-cp39-win_amd64.whl", hash = "sha256:fdbdd1d630195689f325c9ef1a12900524dceb503b00a987663ff4f58669b93d"}, + {file = "pydantic-1.10.12-py3-none-any.whl", hash = "sha256:b749a43aa51e32839c9d71dc67eb1e4221bb04af1033a32e3923d46f9effa942"}, + {file = "pydantic-1.10.12.tar.gz", hash = "sha256:0fe8a415cea8f340e7a9af9c54fc71a649b43e8ca3cc732986116b3cb135d303"}, ] [package.dependencies] @@ -2249,24 +2377,24 @@ email = ["email-validator (>=1.0.3)"] [[package]] name = "pyflakes" -version = "3.0.1" +version = "3.1.0" description = "passive checker of Python programs" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pyflakes-3.0.1-py2.py3-none-any.whl", hash = "sha256:ec55bf7fe21fff7f1ad2f7da62363d749e2a470500eab1b555334b67aa1ef8cf"}, - {file = "pyflakes-3.0.1.tar.gz", hash = "sha256:ec8b276a6b60bd80defed25add7e439881c19e64850afd9b346283d4165fd0fd"}, + {file = "pyflakes-3.1.0-py2.py3-none-any.whl", hash = "sha256:4132f6d49cb4dae6819e5379898f2b8cce3c5f23994194c24b77d5da2e36f774"}, + {file = "pyflakes-3.1.0.tar.gz", hash = "sha256:a0aae034c444db0071aa077972ba4768d40c830d9539fd45bf4cd3f8f6992efc"}, ] [[package]] name = "pygments" -version = "2.15.1" +version = "2.16.1" description = "Pygments is a syntax highlighting package written in Python." optional = false python-versions = ">=3.7" files = [ - {file = "Pygments-2.15.1-py3-none-any.whl", hash = "sha256:db2db3deb4b4179f399a09054b023b6a586b76499d36965813c71aa8ed7b5fd1"}, - {file = "Pygments-2.15.1.tar.gz", hash = "sha256:8ace4d3c1dd481894b2005f560ead0f9f19ee64fe983366be1a21e171d12775c"}, + {file = "Pygments-2.16.1-py3-none-any.whl", hash = "sha256:13fc09fa63bc8d8671a6d247e1eb303c4b343eaee81d861f3404db2935653692"}, + {file = "Pygments-2.16.1.tar.gz", hash = "sha256:1daff0494820c69bc8941e407aa20f577374ee88364ee10a98fdbe0aece96e29"}, ] [package.extras] @@ -2305,17 +2433,17 @@ reference = "scm" [[package]] name = "pylint" -version = "2.17.4" +version = "2.17.6" description = "python code static checker" optional = false python-versions = ">=3.7.2" files = [ - {file = "pylint-2.17.4-py3-none-any.whl", hash = "sha256:7a1145fb08c251bdb5cca11739722ce64a63db479283d10ce718b2460e54123c"}, - {file = "pylint-2.17.4.tar.gz", hash = "sha256:5dcf1d9e19f41f38e4e85d10f511e5b9c35e1aa74251bf95cdd8cb23584e2db1"}, + {file = "pylint-2.17.6-py3-none-any.whl", hash = "sha256:18a1412e873caf8ffb56b760ce1b5643675af23e6173a247b502406b24c716af"}, + {file = "pylint-2.17.6.tar.gz", hash = "sha256:be928cce5c76bf9acdc65ad01447a1e0b1a7bccffc609fb7fc40f2513045bd05"}, ] [package.dependencies] -astroid = ">=2.15.4,<=2.17.0-dev0" +astroid = ">=2.15.7,<=2.17.0-dev0" colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} dill = [ {version = ">=0.2", markers = "python_version < \"3.11\""}, @@ -2332,51 +2460,15 @@ typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\"" spelling = ["pyenchant (>=3.2,<4.0)"] testutils = ["gitpython (>3)"] -[[package]] -name = "pyrsistent" -version = "0.19.3" -description = "Persistent/Functional/Immutable data structures" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, - {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, - {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, - {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, - {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, - {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, - {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, - {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, - {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, - {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, - {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, - {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, - {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, - {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, - {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, - {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, - {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, - {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, - {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, - {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, - {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, - {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, -] - [[package]] name = "pytest" -version = "7.3.2" +version = "7.4.2" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.7" files = [ - {file = "pytest-7.3.2-py3-none-any.whl", hash = "sha256:cdcbd012c9312258922f8cd3f1b62a6580fdced17db6014896053d47cddf9295"}, - {file = "pytest-7.3.2.tar.gz", hash = "sha256:ee990a3cc55ba808b80795a79944756f315c67c12b56abd3ac993a7b8c17030b"}, + {file = "pytest-7.4.2-py3-none-any.whl", hash = "sha256:1d881c6124e08ff0a1bb75ba3ec0bfd8b5354a01c194ddd5a0a870a48d99b002"}, + {file = "pytest-7.4.2.tar.gz", hash = "sha256:a766259cfab564a2ad52cb1aae1b881a75c3eb7e34ca3779697c23ed47c47069"}, ] [package.dependencies] @@ -2406,20 +2498,23 @@ pytest = ">=4.0.2" [[package]] name = "pytest-recording" -version = "0.12.2" +version = "0.13.0" description = "A pytest plugin that allows you recording of network interactions via VCR.py" optional = false -python-versions = ">=3.5" +python-versions = ">=3.7" files = [ - {file = "pytest-recording-0.12.2.tar.gz", hash = "sha256:7c8949c24e5546a699f8fbbff0c5d6896cd09463378ac3d3f1ebb110d2186847"}, - {file = "pytest_recording-0.12.2-py3-none-any.whl", hash = "sha256:f055f97eb98bbefd0453a7796aa3a6833502c173421928b9d878cf1420b36406"}, + {file = "pytest_recording-0.13.0-py3-none-any.whl", hash = "sha256:679b0ae6eb3337b981f6a4d590a30c28c43855bfac5b9ad87070ad6d08b05dbc"}, + {file = "pytest_recording-0.13.0.tar.gz", hash = "sha256:b24b707af843341457d9d340328f361eceb0efe980e388341941b4fada3745ca"}, ] [package.dependencies] -attrs = "*" pytest = ">=3.5.0" vcrpy = ">=2.0.1" +[package.extras] +dev = ["pytest-recording[tests]"] +tests = ["pytest-httpbin", "pytest-mock", "requests", "werkzeug (==2.3.6)"] + [[package]] name = "pytest-split" version = "0.8.1" @@ -2497,13 +2592,13 @@ cli = ["click (>=5.0)"] [[package]] name = "pytz" -version = "2023.3" +version = "2023.3.post1" description = "World timezone definitions, modern and historical" optional = false python-versions = "*" files = [ - {file = "pytz-2023.3-py2.py3-none-any.whl", hash = "sha256:a151b3abb88eda1d4e34a9814df37de2a80e301e68ba0fd856fb9b46bfbbbffb"}, - {file = "pytz-2023.3.tar.gz", hash = "sha256:1d8ce29db189191fb55338ee6d0387d82ab59f3d00eac103412d64e0ebd0c588"}, + {file = "pytz-2023.3.post1-py2.py3-none-any.whl", hash = "sha256:ce42d816b81b68506614c11e8937d3aa9e41007ceb50bfdcb0749b921bf646c7"}, + {file = "pytz-2023.3.post1.tar.gz", hash = "sha256:7b4fddbeb94a1eba4b557da24f19fdf9db575192544270a9101d8509f9f43d7b"}, ] [[package]] @@ -2545,53 +2640,68 @@ numpy = ">=1.17.3" [[package]] name = "pyyaml" -version = "6.0" +version = "6.0.1" description = "YAML parser and emitter for Python" optional = false python-versions = ">=3.6" files = [ - {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, - {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, - {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, - {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, - {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, - {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, - {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, - {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, - {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, - {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, - {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, - {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, - {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, - {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, - {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, - {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, - {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, - {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, - {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, - {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, - {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, - {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, ] +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + [[package]] name = "requests" version = "2.31.0" @@ -2664,6 +2774,112 @@ pygments = ">=2.6.0,<3.0.0" [package.extras] jupyter = ["ipywidgets (>=7.5.1,<8.0.0)"] +[[package]] +name = "rpds-py" +version = "0.10.3" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.10.3-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:485747ee62da83366a44fbba963c5fe017860ad408ccd6cd99aa66ea80d32b2e"}, + {file = "rpds_py-0.10.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c55f9821f88e8bee4b7a72c82cfb5ecd22b6aad04033334f33c329b29bfa4da0"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d3b52a67ac66a3a64a7e710ba629f62d1e26ca0504c29ee8cbd99b97df7079a8"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3aed39db2f0ace76faa94f465d4234aac72e2f32b009f15da6492a561b3bbebd"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:271c360fdc464fe6a75f13ea0c08ddf71a321f4c55fc20a3fe62ea3ef09df7d9"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef5fddfb264e89c435be4adb3953cef5d2936fdeb4463b4161a6ba2f22e7b740"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a771417c9c06c56c9d53d11a5b084d1de75de82978e23c544270ab25e7c066ff"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:52b5cbc0469328e58180021138207e6ec91d7ca2e037d3549cc9e34e2187330a"}, + {file = "rpds_py-0.10.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6ac3fefb0d168c7c6cab24fdfc80ec62cd2b4dfd9e65b84bdceb1cb01d385c33"}, + {file = "rpds_py-0.10.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:8d54bbdf5d56e2c8cf81a1857250f3ea132de77af543d0ba5dce667183b61fec"}, + {file = "rpds_py-0.10.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cd2163f42868865597d89399a01aa33b7594ce8e2c4a28503127c81a2f17784e"}, + {file = "rpds_py-0.10.3-cp310-none-win32.whl", hash = "sha256:ea93163472db26ac6043e8f7f93a05d9b59e0505c760da2a3cd22c7dd7111391"}, + {file = "rpds_py-0.10.3-cp310-none-win_amd64.whl", hash = "sha256:7cd020b1fb41e3ab7716d4d2c3972d4588fdfbab9bfbbb64acc7078eccef8860"}, + {file = "rpds_py-0.10.3-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:1d9b5ee46dcb498fa3e46d4dfabcb531e1f2e76b477e0d99ef114f17bbd38453"}, + {file = "rpds_py-0.10.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:563646d74a4b4456d0cf3b714ca522e725243c603e8254ad85c3b59b7c0c4bf0"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e626b864725680cd3904414d72e7b0bd81c0e5b2b53a5b30b4273034253bb41f"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:485301ee56ce87a51ccb182a4b180d852c5cb2b3cb3a82f7d4714b4141119d8c"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:42f712b4668831c0cd85e0a5b5a308700fe068e37dcd24c0062904c4e372b093"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6c9141af27a4e5819d74d67d227d5047a20fa3c7d4d9df43037a955b4c748ec5"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef750a20de1b65657a1425f77c525b0183eac63fe7b8f5ac0dd16f3668d3e64f"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e1a0ffc39f51aa5f5c22114a8f1906b3c17eba68c5babb86c5f77d8b1bba14d1"}, + {file = "rpds_py-0.10.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f4c179a7aeae10ddf44c6bac87938134c1379c49c884529f090f9bf05566c836"}, + {file = "rpds_py-0.10.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:176287bb998fd1e9846a9b666e240e58f8d3373e3bf87e7642f15af5405187b8"}, + {file = "rpds_py-0.10.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6446002739ca29249f0beaaf067fcbc2b5aab4bc7ee8fb941bd194947ce19aff"}, + {file = "rpds_py-0.10.3-cp311-none-win32.whl", hash = "sha256:c7aed97f2e676561416c927b063802c8a6285e9b55e1b83213dfd99a8f4f9e48"}, + {file = "rpds_py-0.10.3-cp311-none-win_amd64.whl", hash = "sha256:8bd01ff4032abaed03f2db702fa9a61078bee37add0bd884a6190b05e63b028c"}, + {file = "rpds_py-0.10.3-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:4cf0855a842c5b5c391dd32ca273b09e86abf8367572073bd1edfc52bc44446b"}, + {file = "rpds_py-0.10.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:69b857a7d8bd4f5d6e0db4086da8c46309a26e8cefdfc778c0c5cc17d4b11e08"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:975382d9aa90dc59253d6a83a5ca72e07f4ada3ae3d6c0575ced513db322b8ec"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:35fbd23c1c8732cde7a94abe7fb071ec173c2f58c0bd0d7e5b669fdfc80a2c7b"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:106af1653007cc569d5fbb5f08c6648a49fe4de74c2df814e234e282ebc06957"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ce5e7504db95b76fc89055c7f41e367eaadef5b1d059e27e1d6eabf2b55ca314"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5aca759ada6b1967fcfd4336dcf460d02a8a23e6abe06e90ea7881e5c22c4de6"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b5d4bdd697195f3876d134101c40c7d06d46c6ab25159ed5cbd44105c715278a"}, + {file = "rpds_py-0.10.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a657250807b6efd19b28f5922520ae002a54cb43c2401e6f3d0230c352564d25"}, + {file = "rpds_py-0.10.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:177c9dd834cdf4dc39c27436ade6fdf9fe81484758885f2d616d5d03c0a83bd2"}, + {file = "rpds_py-0.10.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e22491d25f97199fc3581ad8dd8ce198d8c8fdb8dae80dea3512e1ce6d5fa99f"}, + {file = "rpds_py-0.10.3-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:2f3e1867dd574014253b4b8f01ba443b9c914e61d45f3674e452a915d6e929a3"}, + {file = "rpds_py-0.10.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c22211c165166de6683de8136229721f3d5c8606cc2c3d1562da9a3a5058049c"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40bc802a696887b14c002edd43c18082cb7b6f9ee8b838239b03b56574d97f71"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5e271dd97c7bb8eefda5cca38cd0b0373a1fea50f71e8071376b46968582af9b"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:95cde244e7195b2c07ec9b73fa4c5026d4a27233451485caa1cd0c1b55f26dbd"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08a80cf4884920863623a9ee9a285ee04cef57ebedc1cc87b3e3e0f24c8acfe5"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:763ad59e105fca09705d9f9b29ecffb95ecdc3b0363be3bb56081b2c6de7977a"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:187700668c018a7e76e89424b7c1042f317c8df9161f00c0c903c82b0a8cac5c"}, + {file = "rpds_py-0.10.3-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5267cfda873ad62591b9332fd9472d2409f7cf02a34a9c9cb367e2c0255994bf"}, + {file = "rpds_py-0.10.3-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:2ed83d53a8c5902ec48b90b2ac045e28e1698c0bea9441af9409fc844dc79496"}, + {file = "rpds_py-0.10.3-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:255f1a10ae39b52122cce26ce0781f7a616f502feecce9e616976f6a87992d6b"}, + {file = "rpds_py-0.10.3-cp38-none-win32.whl", hash = "sha256:a019a344312d0b1f429c00d49c3be62fa273d4a1094e1b224f403716b6d03be1"}, + {file = "rpds_py-0.10.3-cp38-none-win_amd64.whl", hash = "sha256:efb9ece97e696bb56e31166a9dd7919f8f0c6b31967b454718c6509f29ef6fee"}, + {file = "rpds_py-0.10.3-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:570cc326e78ff23dec7f41487aa9c3dffd02e5ee9ab43a8f6ccc3df8f9327623"}, + {file = "rpds_py-0.10.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cff7351c251c7546407827b6a37bcef6416304fc54d12d44dbfecbb717064717"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:177914f81f66c86c012311f8c7f46887ec375cfcfd2a2f28233a3053ac93a569"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:448a66b8266de0b581246ca7cd6a73b8d98d15100fb7165974535fa3b577340e"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bbac1953c17252f9cc675bb19372444aadf0179b5df575ac4b56faaec9f6294"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9dd9d9d9e898b9d30683bdd2b6c1849449158647d1049a125879cb397ee9cd12"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8c71ea77536149e36c4c784f6d420ffd20bea041e3ba21ed021cb40ce58e2c9"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:16a472300bc6c83fe4c2072cc22b3972f90d718d56f241adabc7ae509f53f154"}, + {file = "rpds_py-0.10.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:b9255e7165083de7c1d605e818025e8860636348f34a79d84ec533546064f07e"}, + {file = "rpds_py-0.10.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:53d7a3cd46cdc1689296348cb05ffd4f4280035770aee0c8ead3bbd4d6529acc"}, + {file = "rpds_py-0.10.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22da15b902f9f8e267020d1c8bcfc4831ca646fecb60254f7bc71763569f56b1"}, + {file = "rpds_py-0.10.3-cp39-none-win32.whl", hash = "sha256:850c272e0e0d1a5c5d73b1b7871b0a7c2446b304cec55ccdb3eaac0d792bb065"}, + {file = "rpds_py-0.10.3-cp39-none-win_amd64.whl", hash = "sha256:de61e424062173b4f70eec07e12469edde7e17fa180019a2a0d75c13a5c5dc57"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:af247fd4f12cca4129c1b82090244ea5a9d5bb089e9a82feb5a2f7c6a9fe181d"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:3ad59efe24a4d54c2742929001f2d02803aafc15d6d781c21379e3f7f66ec842"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:642ed0a209ced4be3a46f8cb094f2d76f1f479e2a1ceca6de6346a096cd3409d"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:37d0c59548ae56fae01c14998918d04ee0d5d3277363c10208eef8c4e2b68ed6"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aad6ed9e70ddfb34d849b761fb243be58c735be6a9265b9060d6ddb77751e3e8"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8f94fdd756ba1f79f988855d948ae0bad9ddf44df296770d9a58c774cfbcca72"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77076bdc8776a2b029e1e6ffbe6d7056e35f56f5e80d9dc0bad26ad4a024a762"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:87d9b206b1bd7a0523375dc2020a6ce88bca5330682ae2fe25e86fd5d45cea9c"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:8efaeb08ede95066da3a3e3c420fcc0a21693fcd0c4396d0585b019613d28515"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:a4d9bfda3f84fc563868fe25ca160c8ff0e69bc4443c5647f960d59400ce6557"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:d27aa6bbc1f33be920bb7adbb95581452cdf23005d5611b29a12bb6a3468cc95"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:ed8313809571a5463fd7db43aaca68ecb43ca7a58f5b23b6e6c6c5d02bdc7882"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:e10e6a1ed2b8661201e79dff5531f8ad4cdd83548a0f81c95cf79b3184b20c33"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:015de2ce2af1586ff5dc873e804434185199a15f7d96920ce67e50604592cae9"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ae87137951bb3dc08c7d8bfb8988d8c119f3230731b08a71146e84aaa919a7a9"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0bb4f48bd0dd18eebe826395e6a48b7331291078a879295bae4e5d053be50d4c"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:09362f86ec201288d5687d1dc476b07bf39c08478cde837cb710b302864e7ec9"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:821392559d37759caa67d622d0d2994c7a3f2fb29274948ac799d496d92bca73"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7170cbde4070dc3c77dec82abf86f3b210633d4f89550fa0ad2d4b549a05572a"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:5de11c041486681ce854c814844f4ce3282b6ea1656faae19208ebe09d31c5b8"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:4ed172d0c79f156c1b954e99c03bc2e3033c17efce8dd1a7c781bc4d5793dfac"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:11fdd1192240dda8d6c5d18a06146e9045cb7e3ba7c06de6973000ff035df7c6"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:f602881d80ee4228a2355c68da6b296a296cd22bbb91e5418d54577bbf17fa7c"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:691d50c99a937709ac4c4cd570d959a006bd6a6d970a484c84cc99543d4a5bbb"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24cd91a03543a0f8d09cb18d1cb27df80a84b5553d2bd94cba5979ef6af5c6e7"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fc2200e79d75b5238c8d69f6a30f8284290c777039d331e7340b6c17cad24a5a"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea65b59882d5fa8c74a23f8960db579e5e341534934f43f3b18ec1839b893e41"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:829e91f3a8574888b73e7a3feb3b1af698e717513597e23136ff4eba0bc8387a"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eab75a8569a095f2ad470b342f2751d9902f7944704f0571c8af46bede438475"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:061c3ff1f51ecec256e916cf71cc01f9975af8fb3af9b94d3c0cc8702cfea637"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:39d05e65f23a0fe897b6ac395f2a8d48c56ac0f583f5d663e0afec1da89b95da"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:4eca20917a06d2fca7628ef3c8b94a8c358f6b43f1a621c9815243462dcccf97"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e8d0f0eca087630d58b8c662085529781fd5dc80f0a54eda42d5c9029f812599"}, + {file = "rpds_py-0.10.3.tar.gz", hash = "sha256:fcc1ebb7561a3e24a6588f7c6ded15d80aec22c66a070c757559b57b17ffd1cb"}, +] + [[package]] name = "rsa" version = "4.9" @@ -2680,116 +2896,115 @@ pyasn1 = ">=0.1.3" [[package]] name = "s3fs" -version = "2022.11.0" +version = "2023.9.2" description = "Convenient Filesystem interface over S3" optional = false -python-versions = ">= 3.7" +python-versions = ">= 3.8" files = [ - {file = "s3fs-2022.11.0-py3-none-any.whl", hash = "sha256:42d57a3ceedb478b18ee53e34bbe3305a3f07f6381ca1ab76135efe076c6a07d"}, - {file = "s3fs-2022.11.0.tar.gz", hash = "sha256:10c5ac283a4f5b67ffad6d1f25ff7ee026142750c5c5dc868746cd904f617c33"}, + {file = "s3fs-2023.9.2-py3-none-any.whl", hash = "sha256:d0e0ad0267820f4e9ff16556e004e6759010e92378aebe2ac5d71419a6ff5387"}, + {file = "s3fs-2023.9.2.tar.gz", hash = "sha256:64cccead32a816422dd9ae1d693c5d6354d99f64ae26c56388f1d8e1c7858321"}, ] [package.dependencies] -aiobotocore = ">=2.4.0,<2.5.0" +aiobotocore = ">=2.5.4,<2.6.0" aiohttp = "<4.0.0a0 || >4.0.0a0,<4.0.0a1 || >4.0.0a1" -fsspec = "2022.11.0" +fsspec = "2023.9.2" [package.extras] -awscli = ["aiobotocore[awscli] (>=2.4.0,<2.5.0)"] -boto3 = ["aiobotocore[boto3] (>=2.4.0,<2.5.0)"] +awscli = ["aiobotocore[awscli] (>=2.5.4,<2.6.0)"] +boto3 = ["aiobotocore[boto3] (>=2.5.4,<2.6.0)"] [[package]] name = "scikit-image" -version = "0.19.3" +version = "0.21.0" description = "Image processing in Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "scikit-image-0.19.3.tar.gz", hash = "sha256:24b5367de1762da6ee126dd8f30cc4e7efda474e0d7d70685433f0e3aa2ec450"}, - {file = "scikit_image-0.19.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:3a01372ae4bca223873304b0bff79b9d92446ac6d6177f73d89b45561e2d09d8"}, - {file = "scikit_image-0.19.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:fdf48d9b1f13af69e4e2c78e05067e322e9c8c97463c315cd0ecb47a94e259fc"}, - {file = "scikit_image-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b6a8f98f2ac9bb73706461fd1dec875f6a5141759ed526850a5a49e90003d19"}, - {file = "scikit_image-0.19.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cfbb073f23deb48e0e60c47f8741d8089121d89cc78629ea8c5b51096efc5be7"}, - {file = "scikit_image-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:cc24177de3fdceca5d04807ad9c87d665f0bf01032ed94a9055cd1ed2b3f33e9"}, - {file = "scikit_image-0.19.3-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:fd9dd3994bb6f9f7a35f228323f3c4dc44b3cf2ff15fd72d895216e9333550c6"}, - {file = "scikit_image-0.19.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ad5d8000207a264d1a55681a9276e6a739d3f05cf4429004ad00d61d1892235f"}, - {file = "scikit_image-0.19.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:84baa3179f3ae983c3a5d81c1e404bc92dcf7daeb41bfe9369badcda3fb22b92"}, - {file = "scikit_image-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f9f8a1387afc6c70f2bed007c3854a2d7489f9f7713c242f16f32ee05934bc2"}, - {file = "scikit_image-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:9fb0923a3bfa99457c5e17888f27b3b8a83a3600b4fef317992e7b7234764732"}, - {file = "scikit_image-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:ce3d2207f253b8eb2c824e30d145a9f07a34a14212d57f3beca9f7e03c383cbe"}, - {file = "scikit_image-0.19.3-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:2a02d1bd0e2b53e36b952bd5fd6118d9ccc3ee51de35705d63d8eb1f2e86adef"}, - {file = "scikit_image-0.19.3-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:03779a7e1736fdf89d83c0ba67d44110496edd736a3bfce61a2b5177a1c8a099"}, - {file = "scikit_image-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19a21a101a20c587a3b611a2cf6f86c35aae9f8d9563279b987e83ee1c9a9790"}, - {file = "scikit_image-0.19.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2f50b923f8099c1045fcde7418d86b206c87e333e43da980f41d8577b9605245"}, - {file = "scikit_image-0.19.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e207c6ce5ce121d7d9b9d2b61b9adca57d1abed112c902d8ffbfdc20fb42c12b"}, - {file = "scikit_image-0.19.3-cp38-cp38-win32.whl", hash = "sha256:a7c3985c68bfe05f7571167ee021d14f5b8d1a4a250c91f0b13be7fb07e6af34"}, - {file = "scikit_image-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:651de1c2ce1fbee834753b46b8e7d81cb12a5594898babba63ac82b30ddad49d"}, - {file = "scikit_image-0.19.3-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:8d8917fcf85b987b1f287f823f3a1a7dac38b70aaca759bc0200f3bc292d5ced"}, - {file = "scikit_image-0.19.3-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:0b0a199157ce8487c77de4fde0edc0b42d6d42818881c11f459262351d678b2d"}, - {file = "scikit_image-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33dfd463ee6cc509defa279b963829f2230c9e0639ccd3931045be055878eea6"}, - {file = "scikit_image-0.19.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a8714348ddd671f819457a797c97d4c672166f093def66d66c3254cbd1d43f83"}, - {file = "scikit_image-0.19.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff3b1025356508d41f4fe48528e509d95f9e4015e90cf158cd58c56dc63e0ac5"}, - {file = "scikit_image-0.19.3-cp39-cp39-win32.whl", hash = "sha256:9439e5294de3f18d6e82ec8eee2c46590231cf9c690da80545e83a0733b7a69e"}, - {file = "scikit_image-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:32fb88cc36203b99c9672fb972c9ef98635deaa5fc889fe969f3e11c44f22919"}, -] - -[package.dependencies] -imageio = ">=2.4.1" -networkx = ">=2.2" -numpy = ">=1.17.0" -packaging = ">=20.0" -pillow = ">=6.1.0,<7.1.0 || >7.1.0,<7.1.1 || >7.1.1,<8.3.0 || >8.3.0" + {file = "scikit_image-0.21.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:978ac3302252155a8556cdfe067bad2d18d5ccef4e91c2f727bc564ed75566bc"}, + {file = "scikit_image-0.21.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:82c22e008527e5ee26ab08e3ce919998ef164d538ff30b9e5764b223cfda06b1"}, + {file = "scikit_image-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd29d2631d3e975c377066acfc1f4cb2cc95e2257cf70e7fedfcb96441096e88"}, + {file = "scikit_image-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c6c12925ceb9f3aede555921e26642d601b2d37d1617002a2636f2cb5178ae2f"}, + {file = "scikit_image-0.21.0-cp310-cp310-win_amd64.whl", hash = "sha256:1f538d4de77e4f3225d068d9ea2965bed3f7dda7f457a8f89634fa22ffb9ad8c"}, + {file = "scikit_image-0.21.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ec9bab6920ac43037d7434058b67b5778d42c60f67b8679239f48a471e7ed6f8"}, + {file = "scikit_image-0.21.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:a54720430dba833ffbb6dedd93d9f0938c5dd47d20ab9ba3e4e61c19d95f6f19"}, + {file = "scikit_image-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7e40dd102da14cdadc09210f930b4556c90ff8f99cd9d8bcccf9f73a86c44245"}, + {file = "scikit_image-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff5719c7eb99596a39c3e1d9b564025bae78ecf1da3ee6842d34f6965b5f1474"}, + {file = "scikit_image-0.21.0-cp311-cp311-win_amd64.whl", hash = "sha256:146c3824253eee9ff346c4ad10cb58376f91aefaf4a4bb2fe11aa21691f7de76"}, + {file = "scikit_image-0.21.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4e1b09f81a99c9c390215929194847b3cd358550b4b65bb6e42c5393d69cb74a"}, + {file = "scikit_image-0.21.0-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:9f7b5fb4a22f0d5ae0fa13beeb887c925280590145cd6d8b2630794d120ff7c7"}, + {file = "scikit_image-0.21.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4814033717f0b6491fee252facb9df92058d6a72ab78dd6408a50f3915a88b8"}, + {file = "scikit_image-0.21.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2b0d6ed6502cca0c9719c444caafa0b8cda0f9e29e01ca42f621a240073284be"}, + {file = "scikit_image-0.21.0-cp38-cp38-win_amd64.whl", hash = "sha256:9194cb7bc21215fde6c1b1e9685d312d2aa8f65ea9736bc6311126a91c860032"}, + {file = "scikit_image-0.21.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54df1ddc854f37a912d42bc724e456e86858107e94048a81a27720bc588f9937"}, + {file = "scikit_image-0.21.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:c01e3ab0a1fabfd8ce30686d4401b7ed36e6126c9d4d05cb94abf6bdc46f7ac9"}, + {file = "scikit_image-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8ef5d8d1099317b7b315b530348cbfa68ab8ce32459de3c074d204166951025c"}, + {file = "scikit_image-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78b1e96c59cab640ca5c5b22c501524cfaf34cbe0cb51ba73bd9a9ede3fb6e1d"}, + {file = "scikit_image-0.21.0-cp39-cp39-win_amd64.whl", hash = "sha256:9cffcddd2a5594c0a06de2ae3e1e25d662745a26f94fda31520593669677c010"}, + {file = "scikit_image-0.21.0.tar.gz", hash = "sha256:b33e823c54e6f11873ea390ee49ef832b82b9f70752c8759efd09d5a4e3d87f0"}, +] + +[package.dependencies] +imageio = ">=2.27" +lazy_loader = ">=0.2" +networkx = ">=2.8" +numpy = ">=1.21.1" +packaging = ">=21" +pillow = ">=9.0.1" PyWavelets = ">=1.1.1" -scipy = ">=1.4.1" -tifffile = ">=2019.7.26" +scipy = ">=1.8" +tifffile = ">=2022.8.12" [package.extras] -data = ["pooch (>=1.3.0)"] -docs = ["cloudpickle (>=0.2.1)", "dask[array] (>=0.15.0,!=2.17.0)", "ipywidgets", "kaleido", "matplotlib (>=3.3)", "myst-parser", "numpydoc (>=1.0)", "pandas (>=0.23.0)", "plotly (>=4.14.0)", "pooch (>=1.3.0)", "pytest-runner", "scikit-learn", "seaborn (>=0.7.1)", "sphinx (>=1.8)", "sphinx-copybutton", "sphinx-gallery (>=0.10.1)", "tifffile (>=2020.5.30)"] -optional = ["SimpleITK", "astropy (>=3.1.2)", "cloudpickle (>=0.2.1)", "dask[array] (>=1.0.0,!=2.17.0)", "matplotlib (>=3.0.3)", "pooch (>=1.3.0)", "pyamg", "qtpy"] -test = ["asv", "codecov", "flake8", "matplotlib (>=3.0.3)", "pooch (>=1.3.0)", "pytest (>=5.2.0)", "pytest-cov (>=2.7.0)", "pytest-faulthandler", "pytest-localserver"] +build = ["Cython (>=0.29.32)", "build", "meson-python (>=0.13)", "ninja", "numpy (>=1.21.1)", "packaging (>=21)", "pythran", "setuptools (>=67)", "spin (==0.3)", "wheel"] +data = ["pooch (>=1.6.0)"] +default = ["PyWavelets (>=1.1.1)", "imageio (>=2.27)", "lazy_loader (>=0.2)", "networkx (>=2.8)", "numpy (>=1.21.1)", "packaging (>=21)", "pillow (>=9.0.1)", "scipy (>=1.8)", "tifffile (>=2022.8.12)"] +developer = ["pre-commit", "rtoml"] +docs = ["dask[array] (>=2022.9.2)", "ipykernel", "ipywidgets", "kaleido", "matplotlib (>=3.5)", "myst-parser", "numpydoc (>=1.5)", "pandas (>=1.5)", "plotly (>=5.10)", "pooch (>=1.6)", "pydata-sphinx-theme (>=0.13)", "pytest-runner", "scikit-learn (>=0.24.0)", "seaborn (>=0.11)", "sphinx (>=5.0)", "sphinx-copybutton", "sphinx-gallery (>=0.11)", "sphinx_design (>=0.3)", "tifffile (>=2022.8.12)"] +optional = ["SimpleITK", "astropy (>=5.0)", "cloudpickle (>=0.2.1)", "dask[array] (>=2021.1.0)", "matplotlib (>=3.5)", "pooch (>=1.6.0)", "pyamg", "scikit-learn (>=0.24.0)"] +test = ["asv", "matplotlib (>=3.5)", "pooch (>=1.6.0)", "pytest (>=7.0)", "pytest-cov (>=2.11.0)", "pytest-faulthandler", "pytest-localserver"] [[package]] name = "scikit-learn" -version = "1.2.2" +version = "1.3.1" description = "A set of python modules for machine learning and data mining" optional = false python-versions = ">=3.8" files = [ - {file = "scikit-learn-1.2.2.tar.gz", hash = "sha256:8429aea30ec24e7a8c7ed8a3fa6213adf3814a6efbea09e16e0a0c71e1a1a3d7"}, - {file = "scikit_learn-1.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:99cc01184e347de485bf253d19fcb3b1a3fb0ee4cea5ee3c43ec0cc429b6d29f"}, - {file = "scikit_learn-1.2.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:e6e574db9914afcb4e11ade84fab084536a895ca60aadea3041e85b8ac963edb"}, - {file = "scikit_learn-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fe83b676f407f00afa388dd1fdd49e5c6612e551ed84f3b1b182858f09e987d"}, - {file = "scikit_learn-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e2642baa0ad1e8f8188917423dd73994bf25429f8893ddbe115be3ca3183584"}, - {file = "scikit_learn-1.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ad66c3848c0a1ec13464b2a95d0a484fd5b02ce74268eaa7e0c697b904f31d6c"}, - {file = "scikit_learn-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dfeaf8be72117eb61a164ea6fc8afb6dfe08c6f90365bde2dc16456e4bc8e45f"}, - {file = "scikit_learn-1.2.2-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:fe0aa1a7029ed3e1dcbf4a5bc675aa3b1bc468d9012ecf6c6f081251ca47f590"}, - {file = "scikit_learn-1.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:065e9673e24e0dc5113e2dd2b4ca30c9d8aa2fa90f4c0597241c93b63130d233"}, - {file = "scikit_learn-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf036ea7ef66115e0d49655f16febfa547886deba20149555a41d28f56fd6d3c"}, - {file = "scikit_learn-1.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:8b0670d4224a3c2d596fd572fb4fa673b2a0ccfb07152688ebd2ea0b8c61025c"}, - {file = "scikit_learn-1.2.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9c710ff9f9936ba8a3b74a455ccf0dcf59b230caa1e9ba0223773c490cab1e51"}, - {file = "scikit_learn-1.2.2-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:2dd3ffd3950e3d6c0c0ef9033a9b9b32d910c61bd06cb8206303fb4514b88a49"}, - {file = "scikit_learn-1.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44b47a305190c28dd8dd73fc9445f802b6ea716669cfc22ab1eb97b335d238b1"}, - {file = "scikit_learn-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:953236889928d104c2ef14027539f5f2609a47ebf716b8cbe4437e85dce42744"}, - {file = "scikit_learn-1.2.2-cp38-cp38-win_amd64.whl", hash = "sha256:7f69313884e8eb311460cc2f28676d5e400bd929841a2c8eb8742ae78ebf7c20"}, - {file = "scikit_learn-1.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8156db41e1c39c69aa2d8599ab7577af53e9e5e7a57b0504e116cc73c39138dd"}, - {file = "scikit_learn-1.2.2-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:fe175ee1dab589d2e1033657c5b6bec92a8a3b69103e3dd361b58014729975c3"}, - {file = "scikit_learn-1.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d5312d9674bed14f73773d2acf15a3272639b981e60b72c9b190a0cffed5bad"}, - {file = "scikit_learn-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea061bf0283bf9a9f36ea3c5d3231ba2176221bbd430abd2603b1c3b2ed85c89"}, - {file = "scikit_learn-1.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:6477eed40dbce190f9f9e9d0d37e020815825b300121307942ec2110302b66a3"}, + {file = "scikit-learn-1.3.1.tar.gz", hash = "sha256:1a231cced3ee3fa04756b4a7ab532dc9417acd581a330adff5f2c01ac2831fcf"}, + {file = "scikit_learn-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3153612ff8d36fa4e35ef8b897167119213698ea78f3fd130b4068e6f8d2da5a"}, + {file = "scikit_learn-1.3.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:6bb9490fdb8e7e00f1354621689187bef3cab289c9b869688f805bf724434755"}, + {file = "scikit_learn-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a7135a03af71138669f19bc96e7d0cc8081aed4b3565cc3b131135d65fc642ba"}, + {file = "scikit_learn-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d8dee8c1f40eeba49a85fe378bdf70a07bb64aba1a08fda1e0f48d27edfc3e6"}, + {file = "scikit_learn-1.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:4d379f2b34096105a96bd857b88601dffe7389bd55750f6f29aaa37bc6272eb5"}, + {file = "scikit_learn-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:14e8775eba072ab10866a7e0596bc9906873e22c4c370a651223372eb62de180"}, + {file = "scikit_learn-1.3.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:58b0c2490eff8355dc26e884487bf8edaccf2ba48d09b194fb2f3a026dd64f9d"}, + {file = "scikit_learn-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f66eddfda9d45dd6cadcd706b65669ce1df84b8549875691b1f403730bdef217"}, + {file = "scikit_learn-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c6448c37741145b241eeac617028ba6ec2119e1339b1385c9720dae31367f2be"}, + {file = "scikit_learn-1.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:c413c2c850241998168bbb3bd1bb59ff03b1195a53864f0b80ab092071af6028"}, + {file = "scikit_learn-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:52b77cc08bd555969ec5150788ed50276f5ef83abb72e6f469c5b91a0009bbca"}, + {file = "scikit_learn-1.3.1-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:a683394bc3f80b7c312c27f9b14ebea7766b1f0a34faf1a2e9158d80e860ec26"}, + {file = "scikit_learn-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a15d964d9eb181c79c190d3dbc2fff7338786bf017e9039571418a1d53dab236"}, + {file = "scikit_learn-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ce9233cdf0cdcf0858a5849d306490bf6de71fa7603a3835124e386e62f2311"}, + {file = "scikit_learn-1.3.1-cp38-cp38-win_amd64.whl", hash = "sha256:1ec668ce003a5b3d12d020d2cde0abd64b262ac5f098b5c84cf9657deb9996a8"}, + {file = "scikit_learn-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ccbbedae99325628c1d1cbe3916b7ef58a1ce949672d8d39c8b190e10219fd32"}, + {file = "scikit_learn-1.3.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:845f81c7ceb4ea6bac64ab1c9f2ce8bef0a84d0f21f3bece2126adcc213dfecd"}, + {file = "scikit_learn-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8454d57a22d856f1fbf3091bd86f9ebd4bff89088819886dc0c72f47a6c30652"}, + {file = "scikit_learn-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d993fb70a1d78c9798b8f2f28705bfbfcd546b661f9e2e67aa85f81052b9c53"}, + {file = "scikit_learn-1.3.1-cp39-cp39-win_amd64.whl", hash = "sha256:66f7bb1fec37d65f4ef85953e1df5d3c98a0f0141d394dcdaead5a6de9170347"}, ] [package.dependencies] joblib = ">=1.1.1" -numpy = ">=1.17.3" -scipy = ">=1.3.2" +numpy = ">=1.17.3,<2.0" +scipy = ">=1.5.0" threadpoolctl = ">=2.0.0" [package.extras] benchmark = ["matplotlib (>=3.1.3)", "memory-profiler (>=0.57.0)", "pandas (>=1.0.5)"] -docs = ["Pillow (>=7.1.2)", "matplotlib (>=3.1.3)", "memory-profiler (>=0.57.0)", "numpydoc (>=1.2.0)", "pandas (>=1.0.5)", "plotly (>=5.10.0)", "pooch (>=1.6.0)", "scikit-image (>=0.16.2)", "seaborn (>=0.9.0)", "sphinx (>=4.0.1)", "sphinx-gallery (>=0.7.0)", "sphinx-prompt (>=1.3.0)", "sphinxext-opengraph (>=0.4.2)"] -examples = ["matplotlib (>=3.1.3)", "pandas (>=1.0.5)", "plotly (>=5.10.0)", "pooch (>=1.6.0)", "scikit-image (>=0.16.2)", "seaborn (>=0.9.0)"] -tests = ["black (>=22.3.0)", "flake8 (>=3.8.2)", "matplotlib (>=3.1.3)", "mypy (>=0.961)", "numpydoc (>=1.2.0)", "pandas (>=1.0.5)", "pooch (>=1.6.0)", "pyamg (>=4.0.0)", "pytest (>=5.3.1)", "pytest-cov (>=2.9.0)", "scikit-image (>=0.16.2)"] +docs = ["Pillow (>=7.1.2)", "matplotlib (>=3.1.3)", "memory-profiler (>=0.57.0)", "numpydoc (>=1.2.0)", "pandas (>=1.0.5)", "plotly (>=5.14.0)", "pooch (>=1.6.0)", "scikit-image (>=0.16.2)", "seaborn (>=0.9.0)", "sphinx (>=6.0.0)", "sphinx-copybutton (>=0.5.2)", "sphinx-gallery (>=0.10.1)", "sphinx-prompt (>=1.3.0)", "sphinxext-opengraph (>=0.4.2)"] +examples = ["matplotlib (>=3.1.3)", "pandas (>=1.0.5)", "plotly (>=5.14.0)", "pooch (>=1.6.0)", "scikit-image (>=0.16.2)", "seaborn (>=0.9.0)"] +tests = ["black (>=23.3.0)", "matplotlib (>=3.1.3)", "mypy (>=1.3)", "numpydoc (>=1.2.0)", "pandas (>=1.0.5)", "pooch (>=1.6.0)", "pyamg (>=4.0.0)", "pytest (>=7.1.2)", "pytest-cov (>=2.9.0)", "ruff (>=0.0.272)", "scikit-image (>=0.16.2)"] [[package]] name = "scipy" @@ -2829,31 +3044,15 @@ dev = ["click", "doit (>=0.36.0)", "flake8", "mypy", "pycodestyle", "pydevtool", doc = ["matplotlib (>2)", "numpydoc", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] test = ["asv", "gmpy2", "mpmath", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] -[[package]] -name = "setuptools" -version = "68.0.0" -description = "Easily download, build, install, upgrade, and uninstall Python packages" -optional = false -python-versions = ">=3.7" -files = [ - {file = "setuptools-68.0.0-py3-none-any.whl", hash = "sha256:11e52c67415a381d10d6b462ced9cfb97066179f0e871399e006c4ab101fc85f"}, - {file = "setuptools-68.0.0.tar.gz", hash = "sha256:baf1fdb41c6da4cd2eae722e135500da913332ab3f2f5c7d33af9b492acb5235"}, -] - -[package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] -testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] - [[package]] name = "shellingham" -version = "1.5.0.post1" +version = "1.5.3" description = "Tool to Detect Surrounding Shell" optional = false python-versions = ">=3.7" files = [ - {file = "shellingham-1.5.0.post1-py2.py3-none-any.whl", hash = "sha256:368bf8c00754fd4f55afb7bbb86e272df77e4dc76ac29dbcbb81a59e9fc15744"}, - {file = "shellingham-1.5.0.post1.tar.gz", hash = "sha256:823bc5fb5c34d60f285b624e7264f4dda254bc803a3774a147bf99c0e3004a28"}, + {file = "shellingham-1.5.3-py2.py3-none-any.whl", hash = "sha256:419c6a164770c9c7cfcaeddfacb3d31ac7a8db0b0f3e9c1287679359734107e9"}, + {file = "shellingham-1.5.3.tar.gz", hash = "sha256:cb4a6fec583535bc6da17b647dd2330cf7ef30239e05d547d99ae3705fd0f7f8"}, ] [[package]] @@ -2914,6 +3113,17 @@ files = [ [package.extras] widechars = ["wcwidth"] +[[package]] +name = "tblib" +version = "2.0.0" +description = "Traceback serialization library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "tblib-2.0.0-py3-none-any.whl", hash = "sha256:9100bfa016b047d5b980d66e7efed952fbd20bd85b56110aaf473cb97d18709a"}, + {file = "tblib-2.0.0.tar.gz", hash = "sha256:a6df30f272c08bf8be66e0775fad862005d950a6b8449b94f7c788731d70ecd7"}, +] + [[package]] name = "termcolor" version = "2.3.0" @@ -2930,24 +3140,24 @@ tests = ["pytest", "pytest-cov"] [[package]] name = "threadpoolctl" -version = "3.1.0" +version = "3.2.0" description = "threadpoolctl" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "threadpoolctl-3.1.0-py3-none-any.whl", hash = "sha256:8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b"}, - {file = "threadpoolctl-3.1.0.tar.gz", hash = "sha256:a335baacfaa4400ae1f0d8e3a58d6674d2f8828e3716bb2802c44955ad391380"}, + {file = "threadpoolctl-3.2.0-py3-none-any.whl", hash = "sha256:2b7818516e423bdaebb97c723f86a7c6b0a83d3f3b0970328d66f4d9104dc032"}, + {file = "threadpoolctl-3.2.0.tar.gz", hash = "sha256:c96a0ba3bdddeaca37dc4cc7344aafad41cdb8c313f74fdfe387a867bba93355"}, ] [[package]] name = "tifffile" -version = "2023.4.12" +version = "2023.7.10" description = "Read and write TIFF files" optional = false python-versions = ">=3.8" files = [ - {file = "tifffile-2023.4.12-py3-none-any.whl", hash = "sha256:3161954746fe32c4f4244d0fb2eb0a272f3a3760b78882a42faa83ac5e6e0b74"}, - {file = "tifffile-2023.4.12.tar.gz", hash = "sha256:2fa99f9890caab919d932a0acaa9d0f5843dc2ef3594e212963932e20713badd"}, + {file = "tifffile-2023.7.10-py3-none-any.whl", hash = "sha256:94dfdec321ace96abbfe872a66cfd824800c099a2db558443453eebc2c11b304"}, + {file = "tifffile-2023.7.10.tar.gz", hash = "sha256:c06ec460926d16796eeee249a560bcdddf243daae36ac62af3c84a953cd60b4a"}, ] [package.dependencies] @@ -2969,13 +3179,13 @@ files = [ [[package]] name = "tomlkit" -version = "0.11.8" +version = "0.12.1" description = "Style preserving TOML library" optional = false python-versions = ">=3.7" files = [ - {file = "tomlkit-0.11.8-py3-none-any.whl", hash = "sha256:8c726c4c202bdb148667835f68d68780b9a003a9ec34167b6c673b38eff2a171"}, - {file = "tomlkit-0.11.8.tar.gz", hash = "sha256:9330fc7faa1db67b541b28e62018c17d20be733177d290a13b24c62d1614e0c3"}, + {file = "tomlkit-0.12.1-py3-none-any.whl", hash = "sha256:712cbd236609acc6a3e2e97253dfc52d4c2082982a88f61b640ecf0817eab899"}, + {file = "tomlkit-0.12.1.tar.gz", hash = "sha256:38e1ff8edb991273ec9f6181244a6a391ac30e9f5098e7535640ea6be97a7c86"}, ] [[package]] @@ -2989,6 +3199,26 @@ files = [ {file = "toolz-0.12.0.tar.gz", hash = "sha256:88c570861c440ee3f2f6037c4654613228ff40c93a6c25e0eba70d17282c6194"}, ] +[[package]] +name = "tornado" +version = "6.3.3" +description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." +optional = false +python-versions = ">= 3.8" +files = [ + {file = "tornado-6.3.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:502fba735c84450974fec147340016ad928d29f1e91f49be168c0a4c18181e1d"}, + {file = "tornado-6.3.3-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:805d507b1f588320c26f7f097108eb4023bbaa984d63176d1652e184ba24270a"}, + {file = "tornado-6.3.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bd19ca6c16882e4d37368e0152f99c099bad93e0950ce55e71daed74045908f"}, + {file = "tornado-6.3.3-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ac51f42808cca9b3613f51ffe2a965c8525cb1b00b7b2d56828b8045354f76a"}, + {file = "tornado-6.3.3-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:71a8db65160a3c55d61839b7302a9a400074c9c753040455494e2af74e2501f2"}, + {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:ceb917a50cd35882b57600709dd5421a418c29ddc852da8bcdab1f0db33406b0"}, + {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:7d01abc57ea0dbb51ddfed477dfe22719d376119844e33c661d873bf9c0e4a16"}, + {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:9dc4444c0defcd3929d5c1eb5706cbe1b116e762ff3e0deca8b715d14bf6ec17"}, + {file = "tornado-6.3.3-cp38-abi3-win32.whl", hash = "sha256:65ceca9500383fbdf33a98c0087cb975b2ef3bfb874cb35b8de8740cf7f41bd3"}, + {file = "tornado-6.3.3-cp38-abi3-win_amd64.whl", hash = "sha256:22d3c2fa10b5793da13c807e6fc38ff49a4f6e1e3868b0a6f4164768bb8e20f5"}, + {file = "tornado-6.3.3.tar.gz", hash = "sha256:e7d8db41c0181c80d76c982aacc442c0783a2c54d6400fe028954201a2e032fe"}, +] + [[package]] name = "typer" version = "0.9.0" @@ -3026,13 +3256,13 @@ files = [ [[package]] name = "typing-extensions" -version = "4.6.3" -description = "Backported and Experimental Type Hints for Python 3.7+" +version = "4.8.0" +description = "Backported and Experimental Type Hints for Python 3.8+" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.6.3-py3-none-any.whl", hash = "sha256:88a4153d8505aabbb4e13aacb7c486c2b4a33ca3b3f807914a9b4c844c471c26"}, - {file = "typing_extensions-4.6.3.tar.gz", hash = "sha256:d91d5919357fe7f681a9f2b5b4cb2a5f1ef0a1e9f59c4d8ff0d3491e05c0ffd5"}, + {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, + {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, ] [[package]] @@ -3071,35 +3301,34 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] name = "vcrpy" -version = "4.3.1" +version = "5.1.0" description = "Automatically mock your HTTP interactions to simplify and speed up testing" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "vcrpy-4.3.1-py2.py3-none-any.whl", hash = "sha256:35398f1b373f32340f39d735ea45f40d679ace316f3dddf8cbcbc2f120e6d1d0"}, - {file = "vcrpy-4.3.1.tar.gz", hash = "sha256:24e2d450bf1c2f9f9b4246ee91beb7d58f862a9f2f030514b14783b83c5146ec"}, + {file = "vcrpy-5.1.0-py2.py3-none-any.whl", hash = "sha256:605e7b7a63dcd940db1df3ab2697ca7faf0e835c0852882142bafb19649d599e"}, + {file = "vcrpy-5.1.0.tar.gz", hash = "sha256:bbf1532f2618a04f11bce2a99af3a9647a32c880957293ff91e0a5f187b6b3d2"}, ] [package.dependencies] PyYAML = "*" -six = ">=1.5" urllib3 = {version = "<2", markers = "python_version < \"3.10\""} wrapt = "*" yarl = "*" [[package]] name = "websocket-client" -version = "1.6.0" +version = "1.6.3" description = "WebSocket client for Python with low level API options" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "websocket-client-1.6.0.tar.gz", hash = "sha256:e84c7eafc66aade6d1967a51dfd219aabdf81d15b9705196e11fd81f48666b78"}, - {file = "websocket_client-1.6.0-py3-none-any.whl", hash = "sha256:72d7802608745b0a212f79b478642473bd825777d8637b6c8c421bf167790d4f"}, + {file = "websocket-client-1.6.3.tar.gz", hash = "sha256:3aad25d31284266bcfcfd1fd8a743f63282305a364b8d0948a43bd606acc652f"}, + {file = "websocket_client-1.6.3-py3-none-any.whl", hash = "sha256:6cfc30d051ebabb73a5fa246efdcc14c8fbebbd0330f8984ac3bb6d9edd2ad03"}, ] [package.extras] -docs = ["Sphinx (>=3.4)", "sphinx-rtd-theme (>=0.5)"] +docs = ["Sphinx (>=6.0)", "sphinx-rtd-theme (>=1.1.0)"] optional = ["python-socks", "wsaccel"] test = ["websockets"] @@ -3304,33 +3533,34 @@ multidict = ">=4.0" [[package]] name = "zarr" -version = "2.15.0" +version = "2.16.1" description = "An implementation of chunked, compressed, N-dimensional arrays for Python" optional = false python-versions = ">=3.8" files = [ - {file = "zarr-2.15.0-py3-none-any.whl", hash = "sha256:7296b9f42cdc9096c5349527e71492c1b05ed5464027bfa5d008339796d00b9f"}, - {file = "zarr-2.15.0.tar.gz", hash = "sha256:3894001c0bb5d68d3d21a0562cc49e6ba14fee7d17ad2be8d088ab301665a4c6"}, + {file = "zarr-2.16.1-py3-none-any.whl", hash = "sha256:de4882433ccb5b42cc1ec9872b95e64ca3a13581424666b28ed265ad76c7056f"}, + {file = "zarr-2.16.1.tar.gz", hash = "sha256:4276cf4b4a653431042cd53ff2282bc4d292a6842411e88529964504fb073286"}, ] [package.dependencies] asciitree = "*" fasteners = "*" numcodecs = ">=0.10.0" -numpy = ">=1.20" +numpy = ">=1.20,<1.21.0 || >1.21.0" [package.extras] +docs = ["numcodecs[msgpack]", "numpydoc", "pydata-sphinx-theme", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinx-issues", "sphinx-rtd-theme"] jupyter = ["ipytree (>=0.2.2)", "ipywidgets (>=8.0.0)", "notebook"] [[package]] name = "zarrita" -version = "0.1.0a21" +version = "0.2.1" description = "" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "zarrita-0.1.0a21-py3-none-any.whl", hash = "sha256:2802c5053aa7bc4dd7a2dd8cabbc97ef329174c45ceb5705cdd73a43735ee52b"}, - {file = "zarrita-0.1.0a21.tar.gz", hash = "sha256:f3916ba46677bf0eb11b2012f0854ee9fe3ad9e0cbbb1514fe60183410171e2e"}, + {file = "zarrita-0.2.1-py3-none-any.whl", hash = "sha256:144a650e9bb5aec5b659d19991ed4d5270a1ce2b2fed9d54603585dd5b305f5a"}, + {file = "zarrita-0.2.1.tar.gz", hash = "sha256:b9f1d0d85a2ff0542e037930a7a58e8978ba1e3aa55e04174f50b9c70ac303a0"}, ] [package.dependencies] @@ -3342,20 +3572,31 @@ numcodecs = ">=0.11.0,<0.12.0" numpy = ">=1.22,<2.0" zstandard = ">=0.21.0,<0.22.0" +[[package]] +name = "zict" +version = "3.0.0" +description = "Mutable mapping tools" +optional = false +python-versions = ">=3.8" +files = [ + {file = "zict-3.0.0-py2.py3-none-any.whl", hash = "sha256:5796e36bd0e0cc8cf0fbc1ace6a68912611c1dbd74750a3f3026b9b9d6a327ae"}, + {file = "zict-3.0.0.tar.gz", hash = "sha256:e321e263b6a97aafc0790c3cfb3c04656b7066e6738c37fffcca95d803c9fba5"}, +] + [[package]] name = "zipp" -version = "3.15.0" +version = "3.17.0" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "zipp-3.15.0-py3-none-any.whl", hash = "sha256:48904fc76a60e542af151aded95726c1a5c34ed43ab4134b597665c86d7ad556"}, - {file = "zipp-3.15.0.tar.gz", hash = "sha256:112929ad649da941c23de50f356a2b5570c954b65150642bccdd66bf194d224b"}, + {file = "zipp-3.17.0-py3-none-any.whl", hash = "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31"}, + {file = "zipp-3.17.0.tar.gz", hash = "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] [[package]] name = "zstandard" @@ -3426,4 +3667,4 @@ tifffile = ["pims", "tifffile"] [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.12" -content-hash = "62cf8f57c12898c1fb91e23fafc022426e6f7040c9c7bf1fd9ffbf57ba4694cd" +content-hash = "a59ed18ce55c4fe7970fea028c54557540687cd1c6aee565d4fa2e779e43f9fc" diff --git a/webknossos/pyproject.toml b/webknossos/pyproject.toml index e261ad1dd..0bc64a6f6 100644 --- a/webknossos/pyproject.toml +++ b/webknossos/pyproject.toml @@ -30,11 +30,11 @@ include = ["webknossos/version.py"] # included explicitly since it's in .gitign [tool.poetry.dependencies] python = ">=3.8,<3.12" aiohttp = "^3.8.1" -attrs = "^22.1.0" +attrs = ">=22.0.0" boltons = "~21.0.0" -cattrs = "^22.2.0" +cattrs = ">=22.0.0" cluster_tools = { path = "../cluster_tools/", develop = true } -fsspec = "^2022.2.0" +fsspec = "^2023.9.0" httpx = ">=0.20.0,<=0.24.1" loxun = "^2.0" natsort = "^6.2.0" @@ -46,14 +46,14 @@ psutil = "^5.6.7" python-dateutil = "^2.8.0" python-dotenv = "^0.19.0" rich = "^10.9.0" -scikit-image = "^0.19.3" +scikit-image = "^0.21.0" scikit-learn = "^1.0.1" scipy = "^1.9.0" typer = {extras = ["all"], version = "^0.9.0"} typing-extensions = "^4.0" universal-pathlib = "0.1.3" wkw = "1.1.22" -zarr = "^2.14.0" +zarr = "^2.16.0" zipp = "^3.5.0" # A list of all of the optional dependencies, some of which are included in the @@ -63,7 +63,7 @@ JPype1 = { version = "^1.3.0", optional = true } pims = { version = "^0.6.0", optional = true } tifffile = { version = ">=2021.11.2", optional = true } pylibCZIrw = { version = "3.5.1", source = "scm", optional = true } -zarrita = "0.1.0a21" +zarrita = "0.2.1" [tool.poetry.extras] pims = ["pims"] @@ -76,18 +76,18 @@ all = ["pims","tifffile","imagecodecs","JPype1","pylibCZIrw","zarrita"] [tool.poetry.dev-dependencies] # autoflake black = "^23.1.0" -dask = "2022.02.0" +dask = { version = "^2023.9.1", python = ">=3.9", extras = ["distributed"] } hypothesis = "^6.35.0" icecream = "^2.1.1" inducoapi = "^2.0.2" isort = "^5.9.3" jsonschema = "^4.6.0" -mypy = "1.0.0" +mypy = "^1.0.0" openapi-python-client = "0.14.1" pylint = "^2.16.2" pytest = "^7.2.1" pytest-custom-exit-code = "^0.3.0" -pytest-recording = "^0.12.0" +pytest-recording = "^0.13.0" pytest-split = "^0.8.0" pytest-sugar = "^0.9.4" pytest-timeout = "^2.1.0" @@ -96,8 +96,7 @@ types-python-dateutil = "^0.1.6" fastremap = "^1.13.3" pandas = "^1.3.4" pooch = "^1.5.2" -s3fs = "^2022.2.0" -scikit-learn = "^1.0.1" +s3fs = "^2023.9.0" tabulate = "^0.8.9" [[tool.poetry.source]] diff --git a/webknossos/tests/cassettes/test_annotation/test_annotation_from_url[61c20205010000cc004a6356].yaml b/webknossos/tests/cassettes/test_annotation/test_annotation_from_url[61c20205010000cc004a6356].yaml index eb7929e1b..a62b59b11 100644 --- a/webknossos/tests/cassettes/test_annotation/test_annotation_from_url[61c20205010000cc004a6356].yaml +++ b/webknossos/tests/cassettes/test_annotation/test_annotation_from_url[61c20205010000cc004a6356].yaml @@ -11,7 +11,7 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/annotations/61c20205010000cc004a6356/download?skipVolumeData=true response: @@ -19,7 +19,7 @@ interactions: zip: l4dense_motta_et_al_demo_v2__explorational__potto__4a6356.nml: "\n \ \n \n \n \n \n \n \n \ \n \ \n \n \n \n \n \n \n \ \n\n \ \n \n \n \n \n + color.a=\"1.0\" color.b=\"0.2082978145272727\" color.g=\"0.7444549757253628\" + color.r=\"0.6561881187065289\" groupId=\"1\" id=\"2\" name=\"a tree\">\n \ \n \n \n \ \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n - \ \n \n

This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17\u201D + \ \n \n

This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29\u201D folder.

\n

The following are the contents of the folder:

\n
    \n \ \n
  • datasource-properties.json
  • \n \ \n
  • .zgroup
  • \n \n
  • \n - \ \n \n

    This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17\u201D + \ \n \n

    This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29\u201D folder.

    \n

    The following are the contents of the folder:

    \n
      \n \ \n
    • datasource-properties.json
    • \n \ \n
    • .zgroup
    • \n \n
    • \n - \ \n \n

      This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17\u201D + \ \n \n

      This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29\u201D folder.

      \n

      The following are the contents of the folder:

      \n
        \n \ \n
      • datasource-properties.json
      • \n \ \n
      • .zgroup
      • \n \n
      • \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17/segmentation/1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29/segmentation/1\u201D folder.

        \n

        The following are the contents of the folder:

        \n
        \n \ \n\n" @@ -1624,12 +1565,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/1 - request: body: null headers: {} @@ -1655,20 +1593,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1280,960,1],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -1677,7 +1613,7 @@ interactions: cache-control: - no-cache content-length: - - '162' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1685,21 +1621,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1280,960,1],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -1708,7 +1640,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '162' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1716,12 +1648,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/1/.zattrs + code: 200 + message: OK - request: body: null headers: {} @@ -1747,12 +1676,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/1/zarr.json - request: body: null headers: {} @@ -1778,12 +1704,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/1/.zattrs - request: body: null headers: {} @@ -1808,12 +1731,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/1/.zarray - request: body: null headers: {} @@ -1834,7 +1754,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17/segmentation/1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29/segmentation/1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -1854,12 +1774,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/1 - request: body: null headers: {} @@ -1880,7 +1797,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17/segmentation/2-2-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29/segmentation/2-2-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -1900,12 +1817,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/2-2-1 - request: body: null headers: {} @@ -1931,20 +1845,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/2-2-1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,640,480,1],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -1953,7 +1865,7 @@ interactions: cache-control: - no-cache content-length: - - '161' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1961,21 +1873,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/2-2-1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,640,480,1],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -1984,7 +1892,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '161' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1992,12 +1900,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} @@ -2023,12 +1928,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/2-2-1/zarr.json - request: body: null headers: {} @@ -2054,12 +1956,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/2-2-1/.zattrs - request: body: null headers: {} @@ -2084,12 +1983,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/2-2-1/.zarray - request: body: null headers: {} @@ -2110,7 +2006,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17/segmentation/2-2-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29/segmentation/2-2-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2130,12 +2026,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/2-2-1 - request: body: null headers: {} @@ -2156,7 +2049,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17/segmentation/4-4-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29/segmentation/4-4-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2176,12 +2069,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/4-4-1 - request: body: null headers: {} @@ -2207,12 +2097,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/4-4-1/zarr.json - request: body: null headers: {} @@ -2237,12 +2124,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/4-4-1/.zarray - request: body: null headers: {} @@ -2268,12 +2152,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/4-4-1/.zattrs - request: body: null headers: {} @@ -2299,21 +2180,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/4-4-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/4-4-1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/4-4-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,320,240,1],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2322,7 +2199,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '161' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2330,20 +2207,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/4-4-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/4-4-1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/4-4-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,320,240,1],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2352,7 +2227,7 @@ interactions: cache-control: - no-cache content-length: - - '161' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2360,12 +2235,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/4-4-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -2386,7 +2258,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17/segmentation/4-4-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29/segmentation/4-4-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2406,12 +2278,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/4-4-1 - request: body: null headers: {} @@ -2432,7 +2301,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17/segmentation/8-8-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29/segmentation/8-8-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2452,12 +2321,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/8-8-1 - request: body: null headers: {} @@ -2483,12 +2349,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/8-8-1/zarr.json - request: body: null headers: {} @@ -2514,12 +2377,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/8-8-1/.zattrs - request: body: null headers: {} @@ -2544,12 +2404,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/8-8-1/.zarray - request: body: null headers: {} @@ -2575,20 +2432,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/8-8-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/8-8-1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/8-8-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,160,120,1],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2597,7 +2452,7 @@ interactions: cache-control: - no-cache content-length: - - '161' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2605,21 +2460,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/8-8-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/8-8-1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/8-8-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,160,120,1],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2628,7 +2479,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '161' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2636,12 +2487,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/8-8-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} @@ -2662,7 +2510,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17/segmentation/8-8-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29/segmentation/8-8-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2682,12 +2530,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/8-8-1 - request: body: null headers: {} @@ -2708,7 +2553,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17/segmentation/16-16-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29/segmentation/16-16-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2728,12 +2573,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/16-16-1 - request: body: null headers: {} @@ -2759,12 +2601,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/16-16-1/zarr.json - request: body: null headers: {} @@ -2790,12 +2629,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/16-16-1/.zattrs - request: body: null headers: {} @@ -2820,12 +2656,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/16-16-1/.zarray - request: body: null headers: {} @@ -2851,21 +2684,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/16-16-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/16-16-1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/16-16-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,80,60,1],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2874,7 +2703,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '159' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2882,20 +2711,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/16-16-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/16-16-1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2000-01-01_00-00-00/segmentation/16-16-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,80,60,1],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2904,7 +2731,7 @@ interactions: cache-control: - no-cache content-length: - - '159' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2912,12 +2739,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/16-16-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -2938,7 +2762,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-06-20_07-52-17/segmentation/16-16-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2023-09-26_12-16-29/segmentation/16-16-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2958,10 +2782,7 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/skin_segmented_2023-06-20_07-52-17/segmentation/16-16-1 version: 1 diff --git a/webknossos/tests/cassettes/test_examples/test_remote_datasets.yaml b/webknossos/tests/cassettes/test_examples/test_remote_datasets.yaml index 7d30d6f66..834305c62 100644 --- a/webknossos/tests/cassettes/test_examples/test_remote_datasets.yaml +++ b/webknossos/tests/cassettes/test_examples/test_remote_datasets.yaml @@ -11,11 +11,11 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/datasets/scalable_minds/l4dense_motta_et_al_demo response: - content: '{"name":"l4dense_motta_et_al_demo","dataSource":{"id":{"name":"l4dense_motta_et_al_demo","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint8","adminViewConfiguration":{"intensityRange":[80,180]}},{"name":"predictions","category":"color","boundingBox":{"topLeft":[0,0,0],"width":5632,"height":8704,"depth":3584},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint24","adminViewConfiguration":{"isDisabled":true}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint32","largestSegmentId":2504697,"adminViewConfiguration":{}}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":"Segmentation + content: '{"name":"l4dense_motta_et_al_demo","dataSource":{"id":{"name":"l4dense_motta_et_al_demo","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint8","adminViewConfiguration":{"alpha":100,"gammaCorrectionValue":1,"min":0,"color":[255,255,255],"max":255,"isInverted":false,"isInEditMode":false,"isDisabled":false,"intensityRange":[80,180]}},{"name":"predictions","category":"color","boundingBox":{"topLeft":[0,0,0],"width":5632,"height":8704,"depth":3584},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint24","adminViewConfiguration":{"alpha":100,"gammaCorrectionValue":1,"min":0,"color":[255,255,255],"max":255,"isInverted":false,"isInEditMode":false,"isDisabled":false,"intensityRange":[0,255]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint32","largestSegmentId":2504697,"adminViewConfiguration":{"alpha":20,"gammaCorrectionValue":1,"color":[255,255,255],"isInverted":false,"isInEditMode":false,"isDisabled":false}}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":"Segmentation created with [Voxelytics](https://scalableminds.com/voxelytics) by [scalable minds](https://scalableminds.com).\n\n \n\nRaw SBEM data and segmentation ground truth by Max Planck Institute for Brain Research. As published in *Dense connectomic @@ -29,7 +29,7 @@ interactions: connection: - keep-alive content-length: - - '2310' + - '2705' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -39,8 +39,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -97,7 +95,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo - request: body: null headers: {} @@ -152,7 +149,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo - request: body: null headers: {} @@ -207,7 +203,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo - request: body: null headers: {} @@ -243,7 +238,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/datasource-properties.json - request: body: null headers: {} @@ -279,7 +273,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/datasource-properties.json - request: body: null headers: @@ -317,7 +310,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/datasource-properties.json - request: body: null headers: @@ -355,7 +347,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/datasource-properties.json - request: body: null headers: {} @@ -407,7 +398,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1 - request: body: null headers: {} @@ -444,7 +434,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1/zarr.json - request: body: null headers: {} @@ -480,7 +469,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1/.zarray - request: body: null headers: {} @@ -517,7 +505,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1/.zattrs - request: body: null headers: {} @@ -554,7 +541,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1/zarr.json - request: body: null headers: {} @@ -590,7 +576,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1/.zarray - request: body: null headers: {} @@ -627,7 +612,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1/.zattrs - request: body: null headers: {} @@ -679,7 +663,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1 - request: body: null headers: {} @@ -731,7 +714,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/2-2-1 - request: body: null headers: {} @@ -768,7 +750,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/2-2-1/zarr.json - request: body: null headers: {} @@ -804,7 +785,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/2-2-1/.zarray - request: body: null headers: {} @@ -841,7 +821,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/2-2-1/.zattrs - request: body: null headers: {} @@ -878,16 +857,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/2-2-1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2786,4254,3413],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -898,7 +875,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -913,17 +890,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/2-2-1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2786,4254,3413],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -934,7 +911,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -949,9 +926,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -1003,7 +979,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/2-2-1 - request: body: null headers: {} @@ -1055,7 +1030,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/4-4-2 - request: body: null headers: {} @@ -1092,16 +1066,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/4-4-2/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/4-4-2/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/4-4-2/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1393,2127,1706],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -1112,7 +1084,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1127,17 +1099,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/4-4-2/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/4-4-2/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/4-4-2/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1393,2127,1706],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -1148,7 +1120,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1163,9 +1135,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/4-4-2/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -1202,7 +1173,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/4-4-2/zarr.json - request: body: null headers: {} @@ -1238,7 +1208,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/4-4-2/.zarray - request: body: null headers: {} @@ -1275,7 +1244,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/4-4-2/.zattrs - request: body: null headers: {} @@ -1327,7 +1295,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/4-4-2 - request: body: null headers: {} @@ -1379,7 +1346,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/8-8-4 - request: body: null headers: {} @@ -1416,7 +1382,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/8-8-4/zarr.json - request: body: null headers: {} @@ -1452,7 +1417,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/8-8-4/.zarray - request: body: null headers: {} @@ -1489,7 +1453,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/8-8-4/.zattrs - request: body: null headers: {} @@ -1526,7 +1489,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/8-8-4/zarr.json - request: body: null headers: {} @@ -1562,7 +1524,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/8-8-4/.zarray - request: body: null headers: {} @@ -1599,7 +1560,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/8-8-4/.zattrs - request: body: null headers: {} @@ -1651,7 +1611,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/8-8-4 - request: body: null headers: {} @@ -1703,7 +1662,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/16-16-8 - request: body: null headers: {} @@ -1740,7 +1698,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/16-16-8/zarr.json - request: body: null headers: {} @@ -1776,7 +1733,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/16-16-8/.zarray - request: body: null headers: {} @@ -1813,7 +1769,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/16-16-8/.zattrs - request: body: null headers: {} @@ -1850,7 +1805,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/16-16-8/zarr.json - request: body: null headers: {} @@ -1886,7 +1840,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/16-16-8/.zarray - request: body: null headers: {} @@ -1923,7 +1876,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/16-16-8/.zattrs - request: body: null headers: {} @@ -1975,7 +1927,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/16-16-8 - request: body: null headers: {} @@ -2027,7 +1978,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/32-32-16 - request: body: null headers: {} @@ -2064,7 +2014,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/32-32-16/zarr.json - request: body: null headers: {} @@ -2100,7 +2049,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/32-32-16/.zarray - request: body: null headers: {} @@ -2137,7 +2085,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/32-32-16/.zattrs - request: body: null headers: {} @@ -2174,7 +2121,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/32-32-16/zarr.json - request: body: null headers: {} @@ -2210,7 +2156,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/32-32-16/.zarray - request: body: null headers: {} @@ -2247,7 +2192,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/32-32-16/.zattrs - request: body: null headers: {} @@ -2299,7 +2243,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/32-32-16 - request: body: null headers: {} @@ -2351,7 +2294,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/64-64-32 - request: body: null headers: {} @@ -2388,7 +2330,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/64-64-32/zarr.json - request: body: null headers: {} @@ -2424,7 +2365,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/64-64-32/.zarray - request: body: null headers: {} @@ -2461,7 +2401,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/64-64-32/.zattrs - request: body: null headers: {} @@ -2498,7 +2437,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/64-64-32/zarr.json - request: body: null headers: {} @@ -2534,7 +2472,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/64-64-32/.zarray - request: body: null headers: {} @@ -2571,7 +2508,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/64-64-32/.zattrs - request: body: null headers: {} @@ -2623,7 +2559,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/64-64-32 - request: body: null headers: {} @@ -2675,7 +2610,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/128-128-64 - request: body: null headers: {} @@ -2712,7 +2646,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/128-128-64/zarr.json - request: body: null headers: {} @@ -2748,7 +2681,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/128-128-64/.zarray - request: body: null headers: {} @@ -2785,7 +2717,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/128-128-64/.zattrs - request: body: null headers: {} @@ -2822,7 +2753,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/128-128-64/zarr.json - request: body: null headers: {} @@ -2858,7 +2788,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/128-128-64/.zarray - request: body: null headers: {} @@ -2895,7 +2824,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/128-128-64/.zattrs - request: body: null headers: {} @@ -2947,7 +2875,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/128-128-64 - request: body: null headers: {} @@ -2999,7 +2926,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/256-256-128 - request: body: null headers: {} @@ -3036,7 +2962,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/256-256-128/zarr.json - request: body: null headers: {} @@ -3072,7 +2997,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/256-256-128/.zarray - request: body: null headers: {} @@ -3109,7 +3033,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/256-256-128/.zattrs - request: body: null headers: {} @@ -3146,7 +3069,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/256-256-128/zarr.json - request: body: null headers: {} @@ -3182,7 +3104,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/256-256-128/.zarray - request: body: null headers: {} @@ -3219,7 +3140,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/256-256-128/.zattrs - request: body: null headers: {} @@ -3271,7 +3191,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/256-256-128 - request: body: null headers: {} @@ -3323,7 +3242,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/512-512-256 - request: body: null headers: {} @@ -3360,7 +3278,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/512-512-256/zarr.json - request: body: null headers: {} @@ -3396,7 +3313,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/512-512-256/.zarray - request: body: null headers: {} @@ -3433,7 +3349,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/512-512-256/.zattrs - request: body: null headers: {} @@ -3470,7 +3385,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/512-512-256/zarr.json - request: body: null headers: {} @@ -3506,7 +3420,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/512-512-256/.zarray - request: body: null headers: {} @@ -3543,7 +3456,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/512-512-256/.zattrs - request: body: null headers: {} @@ -3595,7 +3507,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/512-512-256 - request: body: null headers: {} @@ -3647,7 +3558,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1024-1024-512 - request: body: null headers: {} @@ -3684,7 +3594,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1024-1024-512/zarr.json - request: body: null headers: {} @@ -3720,7 +3629,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1024-1024-512/.zarray - request: body: null headers: {} @@ -3757,7 +3665,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1024-1024-512/.zattrs - request: body: null headers: {} @@ -3794,7 +3701,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1024-1024-512/zarr.json - request: body: null headers: {} @@ -3830,7 +3736,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1024-1024-512/.zarray - request: body: null headers: {} @@ -3867,7 +3772,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1024-1024-512/.zattrs - request: body: null headers: {} @@ -3919,7 +3823,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/color/1024-1024-512 - request: body: null headers: {} @@ -3971,7 +3874,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1 - request: body: null headers: {} @@ -4008,7 +3910,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1/zarr.json - request: body: null headers: {} @@ -4044,7 +3945,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1/.zarray - request: body: null headers: {} @@ -4081,7 +3981,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1/.zattrs - request: body: null headers: {} @@ -4118,7 +4017,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1/zarr.json - request: body: null headers: {} @@ -4154,7 +4052,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1/.zarray - request: body: null headers: {} @@ -4191,7 +4088,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1/.zattrs - request: body: null headers: {} @@ -4243,7 +4139,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1 - request: body: null headers: {} @@ -4295,7 +4190,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/2-2-1 - request: body: null headers: {} @@ -4332,7 +4226,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/2-2-1/zarr.json - request: body: null headers: {} @@ -4368,7 +4261,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/2-2-1/.zarray - request: body: null headers: {} @@ -4405,7 +4297,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/2-2-1/.zattrs - request: body: null headers: {} @@ -4442,7 +4333,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/2-2-1/zarr.json - request: body: null headers: {} @@ -4478,7 +4368,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/2-2-1/.zarray - request: body: null headers: {} @@ -4515,7 +4404,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/2-2-1/.zattrs - request: body: null headers: {} @@ -4567,7 +4455,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/2-2-1 - request: body: null headers: {} @@ -4619,7 +4506,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/4-4-2 - request: body: null headers: {} @@ -4656,7 +4542,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/4-4-2/zarr.json - request: body: null headers: {} @@ -4692,7 +4577,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/4-4-2/.zarray - request: body: null headers: {} @@ -4729,7 +4613,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/4-4-2/.zattrs - request: body: null headers: {} @@ -4766,7 +4649,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/4-4-2/zarr.json - request: body: null headers: {} @@ -4802,7 +4684,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/4-4-2/.zarray - request: body: null headers: {} @@ -4839,7 +4720,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/4-4-2/.zattrs - request: body: null headers: {} @@ -4891,7 +4771,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/4-4-2 - request: body: null headers: {} @@ -4943,7 +4822,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/8-8-4 - request: body: null headers: {} @@ -4980,7 +4858,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/8-8-4/zarr.json - request: body: null headers: {} @@ -5016,7 +4893,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/8-8-4/.zarray - request: body: null headers: {} @@ -5053,7 +4929,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/8-8-4/.zattrs - request: body: null headers: {} @@ -5090,7 +4965,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/8-8-4/zarr.json - request: body: null headers: {} @@ -5126,7 +5000,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/8-8-4/.zarray - request: body: null headers: {} @@ -5163,7 +5036,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/8-8-4/.zattrs - request: body: null headers: {} @@ -5215,7 +5087,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/8-8-4 - request: body: null headers: {} @@ -5267,7 +5138,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/16-16-8 - request: body: null headers: {} @@ -5304,7 +5174,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/16-16-8/zarr.json - request: body: null headers: {} @@ -5340,7 +5209,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/16-16-8/.zarray - request: body: null headers: {} @@ -5377,7 +5245,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/16-16-8/.zattrs - request: body: null headers: {} @@ -5414,7 +5281,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/16-16-8/zarr.json - request: body: null headers: {} @@ -5450,7 +5316,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/16-16-8/.zarray - request: body: null headers: {} @@ -5487,7 +5352,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/16-16-8/.zattrs - request: body: null headers: {} @@ -5539,7 +5403,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/16-16-8 - request: body: null headers: {} @@ -5591,7 +5454,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/32-32-16 - request: body: null headers: {} @@ -5628,7 +5490,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/32-32-16/zarr.json - request: body: null headers: {} @@ -5664,7 +5525,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/32-32-16/.zarray - request: body: null headers: {} @@ -5701,7 +5561,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/32-32-16/.zattrs - request: body: null headers: {} @@ -5738,7 +5597,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/32-32-16/zarr.json - request: body: null headers: {} @@ -5774,7 +5632,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/32-32-16/.zarray - request: body: null headers: {} @@ -5811,7 +5668,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/32-32-16/.zattrs - request: body: null headers: {} @@ -5863,7 +5719,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/32-32-16 - request: body: null headers: {} @@ -5915,7 +5770,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/64-64-32 - request: body: null headers: {} @@ -5952,7 +5806,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/64-64-32/zarr.json - request: body: null headers: {} @@ -5988,7 +5841,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/64-64-32/.zarray - request: body: null headers: {} @@ -6025,7 +5877,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/64-64-32/.zattrs - request: body: null headers: {} @@ -6062,7 +5913,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/64-64-32/zarr.json - request: body: null headers: {} @@ -6098,7 +5948,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/64-64-32/.zarray - request: body: null headers: {} @@ -6135,7 +5984,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/64-64-32/.zattrs - request: body: null headers: {} @@ -6187,7 +6035,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/64-64-32 - request: body: null headers: {} @@ -6239,7 +6086,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/128-128-64 - request: body: null headers: {} @@ -6276,7 +6122,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/128-128-64/zarr.json - request: body: null headers: {} @@ -6312,7 +6157,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/128-128-64/.zarray - request: body: null headers: {} @@ -6349,7 +6193,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/128-128-64/.zattrs - request: body: null headers: {} @@ -6386,7 +6229,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/128-128-64/zarr.json - request: body: null headers: {} @@ -6422,7 +6264,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/128-128-64/.zarray - request: body: null headers: {} @@ -6459,7 +6300,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/128-128-64/.zattrs - request: body: null headers: {} @@ -6511,7 +6351,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/128-128-64 - request: body: null headers: {} @@ -6563,7 +6402,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/256-256-128 - request: body: null headers: {} @@ -6600,7 +6438,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/256-256-128/zarr.json - request: body: null headers: {} @@ -6636,7 +6473,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/256-256-128/.zarray - request: body: null headers: {} @@ -6673,7 +6509,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/256-256-128/.zattrs - request: body: null headers: {} @@ -6710,7 +6545,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/256-256-128/zarr.json - request: body: null headers: {} @@ -6746,7 +6580,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/256-256-128/.zarray - request: body: null headers: {} @@ -6783,7 +6616,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/256-256-128/.zattrs - request: body: null headers: {} @@ -6835,7 +6667,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/256-256-128 - request: body: null headers: {} @@ -6887,7 +6718,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/512-512-256 - request: body: null headers: {} @@ -6924,7 +6754,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/512-512-256/zarr.json - request: body: null headers: {} @@ -6960,7 +6789,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/512-512-256/.zarray - request: body: null headers: {} @@ -6997,7 +6825,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/512-512-256/.zattrs - request: body: null headers: {} @@ -7034,7 +6861,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/512-512-256/zarr.json - request: body: null headers: {} @@ -7070,7 +6896,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/512-512-256/.zarray - request: body: null headers: {} @@ -7107,7 +6932,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/512-512-256/.zattrs - request: body: null headers: {} @@ -7159,7 +6983,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/512-512-256 - request: body: null headers: {} @@ -7211,7 +7034,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1024-1024-512 - request: body: null headers: {} @@ -7248,7 +7070,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1024-1024-512/zarr.json - request: body: null headers: {} @@ -7284,7 +7105,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1024-1024-512/.zarray - request: body: null headers: {} @@ -7321,7 +7141,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1024-1024-512/.zattrs - request: body: null headers: {} @@ -7358,7 +7177,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1024-1024-512/zarr.json - request: body: null headers: {} @@ -7394,7 +7212,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1024-1024-512/.zarray - request: body: null headers: {} @@ -7431,7 +7248,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1024-1024-512/.zattrs - request: body: null headers: {} @@ -7483,7 +7299,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/predictions/1024-1024-512 - request: body: null headers: {} @@ -7535,7 +7350,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1 - request: body: null headers: {} @@ -7572,7 +7386,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1/zarr.json - request: body: null headers: {} @@ -7608,7 +7421,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1/.zarray - request: body: null headers: {} @@ -7645,7 +7457,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1/.zattrs - request: body: null headers: {} @@ -7682,7 +7493,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1/zarr.json - request: body: null headers: {} @@ -7718,7 +7528,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1/.zarray - request: body: null headers: {} @@ -7755,7 +7564,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1/.zattrs - request: body: null headers: {} @@ -7807,7 +7615,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1 - request: body: null headers: {} @@ -7859,7 +7666,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/2-2-1 - request: body: null headers: {} @@ -7896,7 +7702,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/2-2-1/zarr.json - request: body: null headers: {} @@ -7932,7 +7737,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/2-2-1/.zarray - request: body: null headers: {} @@ -7969,7 +7773,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/2-2-1/.zattrs - request: body: null headers: {} @@ -8006,7 +7809,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/2-2-1/zarr.json - request: body: null headers: {} @@ -8042,7 +7844,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/2-2-1/.zarray - request: body: null headers: {} @@ -8079,7 +7880,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/2-2-1/.zattrs - request: body: null headers: {} @@ -8131,7 +7931,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/2-2-1 - request: body: null headers: {} @@ -8183,7 +7982,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/4-4-2 - request: body: null headers: {} @@ -8220,7 +8018,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/4-4-2/zarr.json - request: body: null headers: {} @@ -8256,7 +8053,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/4-4-2/.zarray - request: body: null headers: {} @@ -8293,7 +8089,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/4-4-2/.zattrs - request: body: null headers: {} @@ -8330,7 +8125,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/4-4-2/zarr.json - request: body: null headers: {} @@ -8366,7 +8160,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/4-4-2/.zarray - request: body: null headers: {} @@ -8403,7 +8196,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/4-4-2/.zattrs - request: body: null headers: {} @@ -8455,7 +8247,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/4-4-2 - request: body: null headers: {} @@ -8507,7 +8298,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/8-8-4 - request: body: null headers: {} @@ -8544,7 +8334,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/8-8-4/zarr.json - request: body: null headers: {} @@ -8580,7 +8369,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/8-8-4/.zarray - request: body: null headers: {} @@ -8617,7 +8405,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/8-8-4/.zattrs - request: body: null headers: {} @@ -8654,7 +8441,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/8-8-4/zarr.json - request: body: null headers: {} @@ -8690,7 +8476,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/8-8-4/.zarray - request: body: null headers: {} @@ -8727,7 +8512,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/8-8-4/.zattrs - request: body: null headers: {} @@ -8779,7 +8563,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/8-8-4 - request: body: null headers: {} @@ -8831,7 +8614,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/16-16-8 - request: body: null headers: {} @@ -8868,7 +8650,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/16-16-8/zarr.json - request: body: null headers: {} @@ -8904,7 +8685,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/16-16-8/.zarray - request: body: null headers: {} @@ -8941,7 +8721,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/16-16-8/.zattrs - request: body: null headers: {} @@ -8978,7 +8757,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/16-16-8/zarr.json - request: body: null headers: {} @@ -9014,7 +8792,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/16-16-8/.zarray - request: body: null headers: {} @@ -9051,7 +8828,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/16-16-8/.zattrs - request: body: null headers: {} @@ -9103,7 +8879,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/16-16-8 - request: body: null headers: {} @@ -9155,7 +8930,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/32-32-16 - request: body: null headers: {} @@ -9192,7 +8966,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/32-32-16/zarr.json - request: body: null headers: {} @@ -9228,7 +9001,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/32-32-16/.zarray - request: body: null headers: {} @@ -9265,7 +9037,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/32-32-16/.zattrs - request: body: null headers: {} @@ -9302,7 +9073,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/32-32-16/zarr.json - request: body: null headers: {} @@ -9338,7 +9108,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/32-32-16/.zarray - request: body: null headers: {} @@ -9375,7 +9144,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/32-32-16/.zattrs - request: body: null headers: {} @@ -9427,7 +9195,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/32-32-16 - request: body: null headers: {} @@ -9479,7 +9246,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/64-64-32 - request: body: null headers: {} @@ -9516,7 +9282,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/64-64-32/zarr.json - request: body: null headers: {} @@ -9552,7 +9317,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/64-64-32/.zarray - request: body: null headers: {} @@ -9589,7 +9353,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/64-64-32/.zattrs - request: body: null headers: {} @@ -9626,7 +9389,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/64-64-32/zarr.json - request: body: null headers: {} @@ -9662,7 +9424,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/64-64-32/.zarray - request: body: null headers: {} @@ -9699,7 +9460,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/64-64-32/.zattrs - request: body: null headers: {} @@ -9751,7 +9511,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/64-64-32 - request: body: null headers: {} @@ -9803,7 +9562,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/128-128-64 - request: body: null headers: {} @@ -9840,7 +9598,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/128-128-64/zarr.json - request: body: null headers: {} @@ -9876,7 +9633,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/128-128-64/.zarray - request: body: null headers: {} @@ -9913,7 +9669,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/128-128-64/.zattrs - request: body: null headers: {} @@ -9950,7 +9705,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/128-128-64/zarr.json - request: body: null headers: {} @@ -9986,7 +9740,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/128-128-64/.zarray - request: body: null headers: {} @@ -10023,7 +9776,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/128-128-64/.zattrs - request: body: null headers: {} @@ -10075,7 +9827,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/128-128-64 - request: body: null headers: {} @@ -10127,7 +9878,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/256-256-128 - request: body: null headers: {} @@ -10164,7 +9914,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/256-256-128/zarr.json - request: body: null headers: {} @@ -10200,7 +9949,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/256-256-128/.zarray - request: body: null headers: {} @@ -10237,7 +9985,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/256-256-128/.zattrs - request: body: null headers: {} @@ -10274,7 +10021,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/256-256-128/zarr.json - request: body: null headers: {} @@ -10310,7 +10056,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/256-256-128/.zarray - request: body: null headers: {} @@ -10347,7 +10092,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/256-256-128/.zattrs - request: body: null headers: {} @@ -10399,7 +10143,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/256-256-128 - request: body: null headers: {} @@ -10451,7 +10194,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/512-512-256 - request: body: null headers: {} @@ -10488,7 +10230,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/512-512-256/zarr.json - request: body: null headers: {} @@ -10524,7 +10265,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/512-512-256/.zarray - request: body: null headers: {} @@ -10561,7 +10301,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/512-512-256/.zattrs - request: body: null headers: {} @@ -10598,7 +10337,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/512-512-256/zarr.json - request: body: null headers: {} @@ -10634,7 +10372,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/512-512-256/.zarray - request: body: null headers: {} @@ -10671,7 +10408,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/512-512-256/.zattrs - request: body: null headers: {} @@ -10723,7 +10459,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/512-512-256 - request: body: null headers: {} @@ -10775,7 +10510,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1024-1024-512 - request: body: null headers: {} @@ -10812,7 +10546,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1024-1024-512/zarr.json - request: body: null headers: {} @@ -10848,7 +10581,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1024-1024-512/.zarray - request: body: null headers: {} @@ -10885,7 +10617,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1024-1024-512/.zattrs - request: body: null headers: {} @@ -10922,7 +10653,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1024-1024-512/zarr.json - request: body: null headers: {} @@ -10938,6 +10668,8 @@ interactions: - '600' cache-control: - no-cache + connection: + - keep-alive content-length: - '157' content-type: @@ -10956,7 +10688,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1024-1024-512/.zarray - request: body: null headers: {} @@ -10993,7 +10724,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1024-1024-512/.zattrs - request: body: null headers: {} @@ -11045,7 +10775,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4dense_motta_et_al_demo/segmentation/1024-1024-512 - request: body: '' headers: @@ -11058,11 +10787,11 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/datasets/scalable_minds/l4dense_motta_et_al_demo response: - content: '{"name":"l4dense_motta_et_al_demo","dataSource":{"id":{"name":"l4dense_motta_et_al_demo","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint8","adminViewConfiguration":{"intensityRange":[80,180]}},{"name":"predictions","category":"color","boundingBox":{"topLeft":[0,0,0],"width":5632,"height":8704,"depth":3584},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint24","adminViewConfiguration":{"isDisabled":true}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint32","largestSegmentId":2504697,"adminViewConfiguration":{}}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":"Segmentation + content: '{"name":"l4dense_motta_et_al_demo","dataSource":{"id":{"name":"l4dense_motta_et_al_demo","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint8","adminViewConfiguration":{"alpha":100,"gammaCorrectionValue":1,"min":0,"color":[255,255,255],"max":255,"isInverted":false,"isInEditMode":false,"isDisabled":false,"intensityRange":[80,180]}},{"name":"predictions","category":"color","boundingBox":{"topLeft":[0,0,0],"width":5632,"height":8704,"depth":3584},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint24","adminViewConfiguration":{"alpha":100,"gammaCorrectionValue":1,"min":0,"color":[255,255,255],"max":255,"isInverted":false,"isInEditMode":false,"isDisabled":false,"intensityRange":[0,255]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint32","largestSegmentId":2504697,"adminViewConfiguration":{"alpha":20,"gammaCorrectionValue":1,"color":[255,255,255],"isInverted":false,"isInEditMode":false,"isDisabled":false}}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":"Segmentation created with [Voxelytics](https://scalableminds.com/voxelytics) by [scalable minds](https://scalableminds.com).\n\n \n\nRaw SBEM data and segmentation ground truth by Max Planck Institute for Brain Research. As published in *Dense connectomic @@ -11076,7 +10805,7 @@ interactions: connection: - keep-alive content-length: - - '2310' + - '2705' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -11086,8 +10815,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -11102,11 +10829,11 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/datasets/scalable_minds/l4dense_motta_et_al_demo response: - content: '{"name":"l4dense_motta_et_al_demo","dataSource":{"id":{"name":"l4dense_motta_et_al_demo","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint8","adminViewConfiguration":{"intensityRange":[80,180]}},{"name":"predictions","category":"color","boundingBox":{"topLeft":[0,0,0],"width":5632,"height":8704,"depth":3584},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint24","adminViewConfiguration":{"isDisabled":true}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint32","largestSegmentId":2504697,"adminViewConfiguration":{}}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":"Segmentation + content: '{"name":"l4dense_motta_et_al_demo","dataSource":{"id":{"name":"l4dense_motta_et_al_demo","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint8","adminViewConfiguration":{"alpha":100,"gammaCorrectionValue":1,"min":0,"color":[255,255,255],"max":255,"isInverted":false,"isInEditMode":false,"isDisabled":false,"intensityRange":[80,180]}},{"name":"predictions","category":"color","boundingBox":{"topLeft":[0,0,0],"width":5632,"height":8704,"depth":3584},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint24","adminViewConfiguration":{"alpha":100,"gammaCorrectionValue":1,"min":0,"color":[255,255,255],"max":255,"isInverted":false,"isInEditMode":false,"isDisabled":false,"intensityRange":[0,255]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint32","largestSegmentId":2504697,"adminViewConfiguration":{"alpha":20,"gammaCorrectionValue":1,"color":[255,255,255],"isInverted":false,"isInEditMode":false,"isDisabled":false}}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":"Segmentation created with [Voxelytics](https://scalableminds.com/voxelytics) by [scalable minds](https://scalableminds.com).\n\n \n\nRaw SBEM data and segmentation ground truth by Max Planck Institute for Brain Research. As published in *Dense connectomic @@ -11120,7 +10847,7 @@ interactions: connection: - keep-alive content-length: - - '2310' + - '2705' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -11130,8 +10857,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -11146,16 +10871,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/user response: - content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1460379469053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true}' + content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1695729342146,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: cache-control: - no-cache content-length: - - '657' + - '680' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -11163,8 +10888,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -11179,34 +10902,38 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets?isActive=true&organizationName=Organization_X response: - content: '[{"name":"tiff_dataset_2023-05-31_12-32-03","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_12-32-03","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419367,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419367,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-05-31_09-22-34","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_09-22-34","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419451,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419451,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_14-49-09","dataSource":{"id":{"name":"skin_segmented_2023-05-31_14-49-09","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419468,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419468,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-13_07-44-18","dataSource":{"id":{"name":"test_remote_metadata_2023-06-13_07-44-18","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419492,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419492,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-12_13-06-51","dataSource":{"id":{"name":"tiff_dataset_2023-06-12_13-06-51","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419532,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419532,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_12-32-42","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_12-32-42","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419547,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419547,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_09-57-40","dataSource":{"id":{"name":"skin_segmented_2023-05-31_09-57-40","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419566,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419566,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_09-59-16","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_09-59-16","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419578,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419578,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-12_13-07-50","dataSource":{"id":{"name":"test_remote_metadata_2023-06-12_13-07-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419597,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419597,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_12-22-50","dataSource":{"id":{"name":"cell_2023-05-31_12-22-50","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419613,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419613,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-05-31_12-39-20","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_12-39-20","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419638,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419638,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_09-57-33","dataSource":{"id":{"name":"cell_2023-05-31_09-57-33","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419649,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419649,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_14-51-00","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_14-51-00","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419685,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419685,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_12-38-10","dataSource":{"id":{"name":"cell_2023-05-31_12-38-10","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419706,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419706,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-13_07-39-39","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-13_07-39-39","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419720,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419720,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_09-54-23","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_09-54-23","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419738,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419738,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_09-19-20","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_09-19-20","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419757,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419757,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-02-14_15-34-33","dataSource":{"id":{"name":"test_remote_metadata_2023-02-14_15-34-33","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419776,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419776,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_12-24-31","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_12-24-31","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419791,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419791,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-13_19-31-29","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-13_19-31-29","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419814,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419814,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"e2006_knossos","dataSource":{"id":{"name":"e2006_knossos","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[3072,3072,512],"width":1024,"height":1024,"depth":1024},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,2],[16,16,4]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,0,0]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[3072,3072,512],"width":1024,"height":1024,"depth":1024},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,2],[16,16,4]],"elementClass":"uint32","largestSegmentId":2504697}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419837,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419837,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-01_09-54-59","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-01_09-54-59","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419858,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419858,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_09-52-34","dataSource":{"id":{"name":"cell_2023-05-31_09-52-34","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419874,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419874,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_12-39-57","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_12-39-57","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419888,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419888,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_14-43-09","dataSource":{"id":{"name":"skin_segmented_2023-05-31_14-43-09","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419905,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419905,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_09-17-53","dataSource":{"id":{"name":"skin_segmented_2023-05-31_09-17-53","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419924,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419924,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"l4_sample","dataSource":{"id":{"name":"l4_sample","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[3072,3072,512],"width":1024,"height":1024,"depth":1024},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,2],[16,16,4]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,0,0]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[3072,3072,512],"width":1024,"height":1024,"depth":1024},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,2],[16,16,4]],"elementClass":"uint32","largestSegmentId":2504697}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1508495293789,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1508495293789,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_09-59-20","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_09-59-20","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419967,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419967,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-02-14_13-54-26","dataSource":{"id":{"name":"test_remote_metadata_2023-02-14_13-54-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419990,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419990,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-05-31_12-23-45","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_12-23-45","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420004,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420004,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-12_13-07-57","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-12_13-07-57","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420015,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420015,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-12_13-04-54","dataSource":{"id":{"name":"cell_2023-06-12_13-04-54","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420029,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420029,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_14-42-43","dataSource":{"id":{"name":"cell_2023-05-31_14-42-43","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420048,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420048,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_14-50-54","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_14-50-54","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420074,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420074,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-02-14_15-30-30","dataSource":{"id":{"name":"skin_segmented_2023-02-14_15-30-30","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420090,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420090,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_09-21-27","dataSource":{"id":{"name":"skin_segmented_2023-05-31_09-21-27","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420099,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420099,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-12_13-01-00","dataSource":{"id":{"name":"cell_2023-06-12_13-01-00","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420105,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420105,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-13_19-30-29","dataSource":{"id":{"name":"tiff_dataset_2023-06-13_19-30-29","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420114,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420114,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-13_19-28-59","dataSource":{"id":{"name":"skin_segmented_2023-06-13_19-28-59","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420121,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420121,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-05-31_09-53-44","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_09-53-44","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420131,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420131,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_09-23-18","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_09-23-18","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420139,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420139,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-13_19-24-45","dataSource":{"id":{"name":"cell_2023-06-13_19-24-45","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420148,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420148,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-12_13-40-38","dataSource":{"id":{"name":"cell_2023-06-12_13-40-38","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420156,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420156,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-13_07-42-32","dataSource":{"id":{"name":"cell_2023-06-13_07-42-32","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420173,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420173,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-12_13-21-35","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-12_13-21-35","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420183,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420183,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-12_13-42-31","dataSource":{"id":{"name":"test_remote_metadata_2023-06-12_13-42-31","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420196,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420196,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_09-21-20","dataSource":{"id":{"name":"cell_2023-05-31_09-21-20","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420209,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420209,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-02-14_15-30-08","dataSource":{"id":{"name":"cell_2023-02-14_15-30-08","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420221,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420221,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-01_09-52-22","dataSource":{"id":{"name":"skin_segmented_2023-06-01_09-52-22","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420232,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420232,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_12-24-28","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_12-24-28","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420240,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420240,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_08-28-06","dataSource":{"id":{"name":"cell_2023-05-31_08-28-06","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420252,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420252,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-13_19-28-50","dataSource":{"id":{"name":"cell_2023-06-13_19-28-50","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420261,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420261,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_08-15-04","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_08-15-04","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420275,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420275,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_12-40-02","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_12-40-02","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420288,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420288,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-13_07-42-40","dataSource":{"id":{"name":"skin_segmented_2023-06-13_07-42-40","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420296,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420296,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_09-14-29","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_09-14-29","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420306,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420306,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_09-14-34","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_09-14-34","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420316,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420316,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_09-23-22","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_09-23-22","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420330,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420330,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_12-32-38","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_12-32-38","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420341,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420341,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_08-15-11","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_08-15-11","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420358,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420358,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_09-13-30","dataSource":{"id":{"name":"cell_2023-05-31_09-13-30","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420374,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420374,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_09-52-43","dataSource":{"id":{"name":"skin_segmented_2023-05-31_09-52-43","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420387,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420387,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-05-31_14-50-11","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_14-50-11","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420399,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420399,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_08-28-25","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_08-28-25","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420408,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420408,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-13_07-43-42","dataSource":{"id":{"name":"tiff_dataset_2023-06-13_07-43-42","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420419,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420419,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-12_13-20-51","dataSource":{"id":{"name":"cell_2023-06-12_13-20-51","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420433,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420433,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-13_07-44-24","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-13_07-44-24","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420443,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420443,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-01_09-53-45","dataSource":{"id":{"name":"tiff_dataset_2023-06-01_09-53-45","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420455,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420455,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_12-38-18","dataSource":{"id":{"name":"skin_segmented_2023-05-31_12-38-18","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420462,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420462,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-12_13-21-33","dataSource":{"id":{"name":"test_remote_metadata_2023-06-12_13-21-33","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420472,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420472,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-12_13-41-50","dataSource":{"id":{"name":"tiff_dataset_2023-06-12_13-41-50","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420488,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420488,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-12_13-42-37","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-12_13-42-37","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420497,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420497,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_09-17-46","dataSource":{"id":{"name":"cell_2023-05-31_09-17-46","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420511,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420511,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_08-28-30","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_08-28-30","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420522,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420522,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-13_19-24-56","dataSource":{"id":{"name":"skin_segmented_2023-06-13_19-24-56","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420534,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420534,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-13_19-31-22","dataSource":{"id":{"name":"test_remote_metadata_2023-06-13_19-31-22","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420547,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420547,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-13_07-37-54","dataSource":{"id":{"name":"skin_segmented_2023-06-13_07-37-54","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420578,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420578,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-13_07-37-45","dataSource":{"id":{"name":"cell_2023-06-13_07-37-45","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420592,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420592,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_12-31-02","dataSource":{"id":{"name":"cell_2023-05-31_12-31-02","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420609,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420609,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-01_09-54-52","dataSource":{"id":{"name":"test_remote_metadata_2023-06-01_09-54-52","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420620,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420620,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-13_07-39-33","dataSource":{"id":{"name":"test_remote_metadata_2023-06-13_07-39-33","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420629,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420629,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_09-19-24","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_09-19-24","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420647,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420647,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-01_09-52-11","dataSource":{"id":{"name":"cell_2023-06-01_09-52-11","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420659,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420659,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-02-14_15-34-37","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-02-14_15-34-37","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420669,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420669,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-12_13-40-46","dataSource":{"id":{"name":"skin_segmented_2023-06-12_13-40-46","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420678,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420678,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-12_13-21-04","dataSource":{"id":{"name":"tiff_dataset_2023-06-12_13-21-04","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420687,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420687,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_14-49-01","dataSource":{"id":{"name":"cell_2023-05-31_14-49-01","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420696,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420696,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_08-14-19","dataSource":{"id":{"name":"cell_2023-05-31_08-14-19","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420716,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420716,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-05-31_09-58-36","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_09-58-36","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420732,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420732,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-13_07-38-57","dataSource":{"id":{"name":"tiff_dataset_2023-06-13_07-38-57","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420742,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420742,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_09-54-28","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_09-54-28","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420749,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420749,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-12_13-05-14","dataSource":{"id":{"name":"skin_segmented_2023-06-12_13-05-14","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247420756,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247420756,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-20_07-51-59","dataSource":{"id":{"name":"cell_2023-06-20_07-51-59","team":"Organization_X"},"dataLayers":[{"name":"cell - membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247522890,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247522890,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-20_07-52-17","dataSource":{"id":{"name":"skin_segmented_2023-06-20_07-52-17","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247559739,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247559739,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}]' + content: '[{"name":"tiff_dataset_2023-05-31_12-32-03","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_12-32-03","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722538728,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722538728,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-20_15-58-58","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_15-58-58","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722538811,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722538811,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-05-31_09-22-34","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_09-22-34","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722538859,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722538859,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_14-49-09","dataSource":{"id":{"name":"skin_segmented_2023-05-31_14-49-09","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722538879,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722538879,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-13_07-44-18","dataSource":{"id":{"name":"test_remote_metadata_2023-06-13_07-44-18","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722538897,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722538897,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-12_13-06-51","dataSource":{"id":{"name":"tiff_dataset_2023-06-12_13-06-51","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722538915,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722538915,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_12-32-42","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_12-32-42","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722538939,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722538939,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_09-57-40","dataSource":{"id":{"name":"skin_segmented_2023-05-31_09-57-40","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722538954,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722538954,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_09-59-16","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_09-59-16","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722538966,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722538966,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-12_13-07-50","dataSource":{"id":{"name":"test_remote_metadata_2023-06-12_13-07-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722538979,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722538979,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_12-22-50","dataSource":{"id":{"name":"cell_2023-05-31_12-22-50","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722538996,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722538996,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-05-31_12-39-20","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_12-39-20","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539014,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539014,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_09-57-33","dataSource":{"id":{"name":"cell_2023-05-31_09-57-33","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539028,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539028,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-20_07-51-59","dataSource":{"id":{"name":"cell_2023-06-20_07-51-59","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539044,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539044,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_14-51-00","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_14-51-00","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539065,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539065,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_12-38-10","dataSource":{"id":{"name":"cell_2023-05-31_12-38-10","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539087,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539087,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-13_07-39-39","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-13_07-39-39","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539113,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539113,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-20_15-58-04","dataSource":{"id":{"name":"tiff_dataset_2023-06-20_15-58-04","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539130,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539130,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_09-54-23","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_09-54-23","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539143,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539143,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_09-19-20","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_09-19-20","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539165,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539165,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-02-14_15-34-33","dataSource":{"id":{"name":"test_remote_metadata_2023-02-14_15-34-33","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539182,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539182,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_12-24-31","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_12-24-31","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539195,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539195,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-20_07-54-18","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-20_07-54-18","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539211,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539211,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-13_19-31-29","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-13_19-31-29","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539226,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539226,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-01_09-54-59","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-01_09-54-59","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539300,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539300,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"e2006_knossos","dataSource":{"id":{"name":"e2006_knossos","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[3072,3072,512],"width":1024,"height":1024,"depth":1024},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,2],[16,16,4]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,0,0]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[3072,3072,512],"width":1024,"height":1024,"depth":1024},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,2],[16,16,4]],"elementClass":"uint32","largestSegmentId":2504697}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539247,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539247,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["test"],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_09-52-34","dataSource":{"id":{"name":"cell_2023-05-31_09-52-34","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539328,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539328,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_12-39-57","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_12-39-57","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539355,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539355,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_14-43-09","dataSource":{"id":{"name":"skin_segmented_2023-05-31_14-43-09","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539382,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539382,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_09-17-53","dataSource":{"id":{"name":"skin_segmented_2023-05-31_09-17-53","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539399,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539399,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"l4_sample","dataSource":{"id":{"name":"l4_sample","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[3072,3072,512],"width":1024,"height":1024,"depth":1024},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,2],[16,16,4]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,0,0]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[3072,3072,512],"width":1024,"height":1024,"depth":1024},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,2],[16,16,4]],"elementClass":"uint32","largestSegmentId":2504697}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1508495293789,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1508495293789,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_09-59-20","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_09-59-20","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539488,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539488,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-02-14_13-54-26","dataSource":{"id":{"name":"test_remote_metadata_2023-02-14_13-54-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539509,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539509,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-05-31_12-23-45","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_12-23-45","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539522,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539522,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-12_13-07-57","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-12_13-07-57","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539535,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539535,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-12_13-04-54","dataSource":{"id":{"name":"cell_2023-06-12_13-04-54","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539554,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539554,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_14-42-43","dataSource":{"id":{"name":"cell_2023-05-31_14-42-43","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539568,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539568,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_14-50-54","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_14-50-54","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539580,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539580,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-20_07-52-17","dataSource":{"id":{"name":"skin_segmented_2023-06-20_07-52-17","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539597,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539597,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539609,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539609,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-02-14_15-30-30","dataSource":{"id":{"name":"skin_segmented_2023-02-14_15-30-30","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539628,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539628,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_09-21-27","dataSource":{"id":{"name":"skin_segmented_2023-05-31_09-21-27","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539687,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539687,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-12_13-01-00","dataSource":{"id":{"name":"cell_2023-06-12_13-01-00","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539702,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539702,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-13_19-30-29","dataSource":{"id":{"name":"tiff_dataset_2023-06-13_19-30-29","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539728,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539728,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-13_19-28-59","dataSource":{"id":{"name":"skin_segmented_2023-06-13_19-28-59","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539740,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539740,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-05-31_09-53-44","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_09-53-44","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539751,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539751,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_09-23-18","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_09-23-18","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539763,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539763,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-20_15-56-47","dataSource":{"id":{"name":"skin_segmented_2023-06-20_15-56-47","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539772,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539772,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-20_15-59-05","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-20_15-59-05","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539779,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539779,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-13_19-24-45","dataSource":{"id":{"name":"cell_2023-06-13_19-24-45","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539790,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539790,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-12_13-40-38","dataSource":{"id":{"name":"cell_2023-06-12_13-40-38","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539800,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539800,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-13_07-42-32","dataSource":{"id":{"name":"cell_2023-06-13_07-42-32","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539810,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539810,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-12_13-21-35","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-12_13-21-35","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539821,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539821,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-12_13-42-31","dataSource":{"id":{"name":"test_remote_metadata_2023-06-12_13-42-31","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539837,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539837,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_09-21-20","dataSource":{"id":{"name":"cell_2023-05-31_09-21-20","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539852,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539852,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-02-14_15-30-08","dataSource":{"id":{"name":"cell_2023-02-14_15-30-08","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539864,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539864,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-01_09-52-22","dataSource":{"id":{"name":"skin_segmented_2023-06-01_09-52-22","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539877,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539877,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_12-24-28","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_12-24-28","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539890,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539890,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_08-28-06","dataSource":{"id":{"name":"cell_2023-05-31_08-28-06","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539906,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539906,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-13_19-28-50","dataSource":{"id":{"name":"cell_2023-06-13_19-28-50","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539919,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539919,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_08-15-04","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_08-15-04","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_12-40-02","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_12-40-02","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539968,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539968,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-13_07-42-40","dataSource":{"id":{"name":"skin_segmented_2023-06-13_07-42-40","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539987,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539987,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_09-14-29","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_09-14-29","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540000,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540000,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-20_07-53-28","dataSource":{"id":{"name":"tiff_dataset_2023-06-20_07-53-28","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540059,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540059,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_09-14-34","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_09-14-34","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540069,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540069,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_09-23-22","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_09-23-22","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540085,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540085,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_12-32-38","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_12-32-38","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540102,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540102,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_08-15-11","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_08-15-11","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540115,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540115,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_09-13-30","dataSource":{"id":{"name":"cell_2023-05-31_09-13-30","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540127,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540127,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_09-52-43","dataSource":{"id":{"name":"skin_segmented_2023-05-31_09-52-43","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540138,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540138,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-05-31_14-50-11","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_14-50-11","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540149,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540149,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-05-31_08-28-25","dataSource":{"id":{"name":"test_remote_metadata_2023-05-31_08-28-25","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540157,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540157,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-13_07-43-42","dataSource":{"id":{"name":"tiff_dataset_2023-06-13_07-43-42","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540167,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540167,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-12_13-20-51","dataSource":{"id":{"name":"cell_2023-06-12_13-20-51","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540178,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540178,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-13_07-44-24","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-13_07-44-24","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540188,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540188,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-01_09-53-45","dataSource":{"id":{"name":"tiff_dataset_2023-06-01_09-53-45","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540200,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540200,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-05-31_12-38-18","dataSource":{"id":{"name":"skin_segmented_2023-05-31_12-38-18","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540211,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540211,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-12_13-21-33","dataSource":{"id":{"name":"test_remote_metadata_2023-06-12_13-21-33","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540222,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540222,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-12_13-41-50","dataSource":{"id":{"name":"tiff_dataset_2023-06-12_13-41-50","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540234,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540234,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-06-12_13-42-37","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-12_13-42-37","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540246,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540246,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_09-17-46","dataSource":{"id":{"name":"cell_2023-05-31_09-17-46","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540261,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540261,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_08-28-30","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_08-28-30","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540272,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540272,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-13_19-24-56","dataSource":{"id":{"name":"skin_segmented_2023-06-13_19-24-56","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540286,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540286,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-13_19-31-22","dataSource":{"id":{"name":"test_remote_metadata_2023-06-13_19-31-22","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540302,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540302,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-13_07-37-54","dataSource":{"id":{"name":"skin_segmented_2023-06-13_07-37-54","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540313,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540313,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-20_15-56-38","dataSource":{"id":{"name":"cell_2023-06-20_15-56-38","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540324,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540324,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-13_07-37-45","dataSource":{"id":{"name":"cell_2023-06-13_07-37-45","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540345,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540345,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_12-31-02","dataSource":{"id":{"name":"cell_2023-05-31_12-31-02","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540357,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540357,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-01_09-54-52","dataSource":{"id":{"name":"test_remote_metadata_2023-06-01_09-54-52","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540394,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540394,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-06-13_07-39-33","dataSource":{"id":{"name":"test_remote_metadata_2023-06-13_07-39-33","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540405,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540405,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_09-19-24","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_09-19-24","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540417,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540417,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-06-01_09-52-11","dataSource":{"id":{"name":"cell_2023-06-01_09-52-11","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540425,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540425,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-02-14_15-34-37","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-02-14_15-34-37","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540434,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540434,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-12_13-40-46","dataSource":{"id":{"name":"skin_segmented_2023-06-12_13-40-46","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540457,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540457,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-12_13-21-04","dataSource":{"id":{"name":"tiff_dataset_2023-06-12_13-21-04","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540465,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540465,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_14-49-01","dataSource":{"id":{"name":"cell_2023-05-31_14-49-01","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540476,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540476,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-05-31_08-14-19","dataSource":{"id":{"name":"cell_2023-05-31_08-14-19","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540490,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540490,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-05-31_09-58-36","dataSource":{"id":{"name":"tiff_dataset_2023-05-31_09-58-36","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540500,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540500,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-06-13_07-38-57","dataSource":{"id":{"name":"tiff_dataset_2023-06-13_07-38-57","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540509,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540509,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-05-31_09-54-28","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-05-31_09-54-28","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540532,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540532,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-06-12_13-05-14","dataSource":{"id":{"name":"skin_segmented_2023-06-12_13-05-14","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722540551,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722540551,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"skin_segmented_2023-09-26_12-16-29","dataSource":{"id":{"name":"skin_segmented_2023-09-26_12-16-29","team":"Organization_X"},"dataLayers":[{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":1280,"height":960,"depth":1},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,1],[16,16,1]],"elementClass":"uint8","largestSegmentId":4}],"scale":[550,550,550]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730613528,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730613528,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"cell_2023-09-26_11-54-17","dataSource":{"id":{"name":"cell_2023-09-26_11-54-17","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695729260763,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695729260763,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_upload_download_roundtrip_2023-09-26_11-55-40","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-09-26_11-55-40","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695729341080,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695729341080,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"tiff_dataset_2023-09-26_11-55-01","dataSource":{"id":{"name":"tiff_dataset_2023-09-26_11-55-01","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695729312812,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695729312812,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null},{"name":"test_remote_metadata_2023-09-26_11-55-37","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_11-55-37","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695729337348,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695729337348,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + 0","category 1","category 2"],"folderId":"570b9f4e4bb848d08880712a","publication":null},{"name":"cell_2023-09-26_12-16-23","dataSource":{"id":{"name":"cell_2023-09-26_12-16-23","team":"Organization_X"},"dataLayers":[{"name":"cell + membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730586941,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730586941,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}]' headers: access-control-allow-origin: - '*' @@ -11215,7 +10942,7 @@ interactions: cache-control: - no-cache content-length: - - '101742' + - '116952' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -11223,8 +10950,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -11239,7 +10964,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets?isActive=true&organizationName=scalable_minds response: @@ -11256,8 +10981,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 404 - request: @@ -11272,16 +10995,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/e2006_knossos response: - content: '{"name":"e2006_knossos","dataSource":{"id":{"name":"e2006_knossos","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[3072,3072,512],"width":1024,"height":1024,"depth":1024},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,2],[16,16,4]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,0,0]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[3072,3072,512],"width":1024,"height":1024,"depth":1024},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,2],[16,16,4]],"elementClass":"uint32","largestSegmentId":2504697}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247419837,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247419837,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"e2006_knossos","dataSource":{"id":{"name":"e2006_knossos","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[3072,3072,512],"width":1024,"height":1024,"depth":1024},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,2],[16,16,4]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,0,0]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[3072,3072,512],"width":1024,"height":1024,"depth":1024},"resolutions":[[1,1,1],[2,2,1],[4,4,1],[8,8,2],[16,16,4]],"elementClass":"uint32","largestSegmentId":2504697}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695722539247,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695722539247,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["test"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache content-length: - - '1166' + - '1172' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -11289,8 +11012,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -11307,7 +11028,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/api/userToken/generate response: @@ -11324,8 +11045,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -11370,12 +11089,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos - request: body: null headers: {} @@ -11418,12 +11134,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos - request: body: null headers: {} @@ -11466,12 +11179,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos - request: body: null headers: {} @@ -11496,12 +11206,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/datasource-properties.json - request: body: null headers: {} @@ -11526,12 +11233,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/datasource-properties.json - request: body: null headers: @@ -11558,12 +11262,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/datasource-properties.json - request: body: null headers: @@ -11590,12 +11291,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/datasource-properties.json - request: body: null headers: {} @@ -11636,12 +11334,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1 - request: body: null headers: {} @@ -11667,20 +11362,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,4096,4096,1536],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -11689,7 +11382,7 @@ interactions: cache-control: - no-cache content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -11697,21 +11390,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,4096,4096,1536],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -11720,7 +11409,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -11728,12 +11417,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/.zattrs + code: 200 + message: OK - request: body: null headers: {} @@ -11759,21 +11445,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,4096,4096,1536],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -11782,7 +11464,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -11790,20 +11472,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,4096,4096,1536],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -11812,7 +11492,7 @@ interactions: cache-control: - no-cache content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -11820,12 +11500,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -11866,12 +11543,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/1 - request: body: null headers: {} @@ -11912,12 +11586,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1 - request: body: null headers: {} @@ -11943,20 +11614,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2048,2048,1536],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -11965,7 +11634,7 @@ interactions: cache-control: - no-cache content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -11973,21 +11642,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2048,2048,1536],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -11996,7 +11661,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -12004,12 +11669,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} @@ -12035,20 +11697,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2048,2048,1536],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -12057,7 +11717,7 @@ interactions: cache-control: - no-cache content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -12065,21 +11725,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2048,2048,1536],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -12088,7 +11744,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -12096,12 +11752,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} @@ -12142,12 +11795,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/2-2-1 - request: body: null headers: {} @@ -12188,12 +11838,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1 - request: body: null headers: {} @@ -12219,21 +11866,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1024,1024,1536],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -12242,7 +11885,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -12250,20 +11893,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1024,1024,1536],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -12272,7 +11913,7 @@ interactions: cache-control: - no-cache content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -12280,12 +11921,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -12311,20 +11949,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1024,1024,1536],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -12333,7 +11969,7 @@ interactions: cache-control: - no-cache content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -12341,21 +11977,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1024,1024,1536],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -12364,7 +11996,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -12372,12 +12004,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} @@ -12418,12 +12047,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/4-4-1 - request: body: null headers: {} @@ -12464,12 +12090,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2 - request: body: null headers: {} @@ -12495,20 +12118,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,512,512,768],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -12517,7 +12138,7 @@ interactions: cache-control: - no-cache content-length: - - '163' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -12525,21 +12146,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,512,512,768],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -12548,7 +12165,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '163' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -12556,12 +12173,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/.zattrs + code: 200 + message: OK - request: body: null headers: {} @@ -12587,21 +12201,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,512,512,768],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -12610,7 +12220,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '163' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -12618,20 +12228,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,512,512,768],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -12640,7 +12248,7 @@ interactions: cache-control: - no-cache content-length: - - '163' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -12648,12 +12256,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -12694,12 +12299,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/8-8-2 - request: body: null headers: {} @@ -12740,12 +12342,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/16-16-4 - request: body: null headers: {} @@ -12771,12 +12370,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/16-16-4/zarr.json - request: body: null headers: {} @@ -12802,12 +12398,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/16-16-4/.zattrs - request: body: null headers: {} @@ -12832,12 +12425,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/16-16-4/.zarray - request: body: null headers: {} @@ -12863,12 +12453,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/16-16-4/zarr.json - request: body: null headers: {} @@ -12894,12 +12481,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/16-16-4/.zattrs - request: body: null headers: {} @@ -12924,12 +12508,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/16-16-4/.zarray - request: body: null headers: {} @@ -12970,12 +12551,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/color/16-16-4 - request: body: null headers: {} @@ -13016,12 +12594,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/segmentation/1 - request: body: null headers: {} @@ -13047,20 +12622,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/segmentation/1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/segmentation/1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/e2006_knossos/segmentation/1/.zattrs response: body: - string: '{"dtype":"\n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-06-20_07-51-59\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-09-26_12-16-23\u201D folder.

        \n

        The following are the contents of the folder:

        \n
          \n \ \n
        • datasource-properties.json
        • \n \ \n
        • .zgroup
        • \n \n
        • \n - \ \n \n

          This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-06-20_07-51-59\u201D + \ \n \n

          This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-09-26_12-16-23\u201D folder.

          \n

          The following are the contents of the folder:

          \n
            \n \ \n
          • datasource-properties.json
          • \n \ \n
          • .zgroup
          • \n \n
          • \n - \ \n \n

            This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-06-20_07-51-59\u201D + \ \n \n

            This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-09-26_12-16-23\u201D folder.

            \n

            The following are the contents of the folder:

            \n
              \n \ \n
            • datasource-properties.json
            • \n \ \n
            • .zgroup
            • \n \n
            • \n - \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-06-20_07-51-59/cell + \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-09-26_12-16-23/cell membranes/1\u201D folder.

              \n

              The following are the contents of the folder:

              \n
              \n \n\n" @@ -986,12 +941,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/cell_2023-06-20_07-51-59/cell%20membranes/1 - request: body: null headers: {} @@ -1017,20 +969,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/cell_2023-06-20_07-51-59/cell%20membranes/1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/cell_2000-01-01_00-00-00/cell%20membranes/1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/cell_2000-01-01_00-00-00/cell%20membranes/1/.zattrs response: body: - string: '{"dtype":"\n - \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-06-20_07-51-59/cell + \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-09-26_12-16-23/cell membranes/1\u201D folder.

              \n

              The following are the contents of the folder:

              \n \n \n\n" @@ -1216,12 +1150,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/cell_2023-06-20_07-51-59/cell%20membranes/1 - request: body: null headers: {} @@ -1242,7 +1173,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-06-20_07-51-59/nuclei/1\u201D + \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-09-26_12-16-23/nuclei/1\u201D folder.

              \n

              The following are the contents of the folder:

              \n \n \ \n\n" @@ -1262,12 +1193,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/cell_2023-06-20_07-51-59/nuclei/1 - request: body: null headers: {} @@ -1293,21 +1221,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/cell_2023-06-20_07-51-59/nuclei/1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/cell_2000-01-01_00-00-00/nuclei/1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/cell_2000-01-01_00-00-00/nuclei/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"\n - \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-06-20_07-51-59/nuclei/1\u201D + \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2023-09-26_12-16-23/nuclei/1\u201D folder.

              \n

              The following are the contents of the folder:

              \n \n \ \n\n" @@ -1492,10 +1402,7 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/cell_2023-06-20_07-51-59/nuclei/1 version: 1 diff --git a/webknossos/tests/cassettes/test_examples/test_upload_tiff_stack.yaml b/webknossos/tests/cassettes/test_examples/test_upload_tiff_stack.yaml index a1ad81bbe..33b2597f6 100644 --- a/webknossos/tests/cassettes/test_examples/test_upload_tiff_stack.yaml +++ b/webknossos/tests/cassettes/test_examples/test_upload_tiff_stack.yaml @@ -13,7 +13,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/api/userToken/generate response: @@ -30,8 +30,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -46,7 +44,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datastores response: @@ -63,8 +61,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -79,16 +75,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/user response: - content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1687247593863,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true}' + content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1695729342146,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: cache-control: - no-cache content-length: - - '657' + - '680' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -96,8 +92,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -112,7 +106,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/tiff_dataset_2000-01-01_00-00-00/isValidNewName response: @@ -127,8 +121,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -149,7 +141,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets/reserveUpload response: @@ -168,8 +160,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -215,7 +205,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -234,8 +224,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -341,7 +329,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -360,8 +348,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -390,7 +376,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -409,8 +395,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -516,7 +500,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -535,8 +519,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -565,7 +547,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -584,8 +566,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -691,7 +671,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -710,8 +690,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -740,7 +718,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -759,8 +737,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -781,7 +757,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets/finishUpload response: @@ -800,8 +776,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -816,11 +790,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/tiff_dataset_2000-01-01_00-00-00 response: - content: '{"name":"tiff_dataset_2023-06-20_07-53-28","dataSource":{"id":{"name":"tiff_dataset_2023-06-20_07-53-28","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247618907,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247618907,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"tiff_dataset_2023-09-26_12-17-13","dataSource":{"id":{"name":"tiff_dataset_2023-09-26_12-17-13","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730645081,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730645081,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -833,8 +807,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -857,7 +829,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-06-20_07-53-28\u201D + \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-09-26_12-17-13\u201D folder.

              \n

              The following are the contents of the folder:

              \n
                \n \ \n
              • datasource-properties.json
              • \n \ \n
              • .zgroup
              • \n \n
              • \n - \ \n \n

                This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-06-20_07-53-28\u201D + \ \n \n

                This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-09-26_12-17-13\u201D folder.

                \n

                The following are the contents of the folder:

                \n
                  \n \ \n
                • datasource-properties.json
                • \n \ \n
                • .zgroup
                • \n \n
                • \n - \ \n \n

                  This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-06-20_07-53-28\u201D + \ \n \n

                  This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-09-26_12-17-13\u201D folder.

                  \n

                  The following are the contents of the folder:

                  \n
                    \n \ \n
                  • datasource-properties.json
                  • \n \ \n
                  • .zgroup
                  • \n \n
                  • \n - \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-06-20_07-53-28/tiff/1\u201D + \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-09-26_12-17-13/tiff/1\u201D folder.

                    \n

                    The following are the contents of the folder:

                    \n
                    \n \ \n\n" @@ -1142,12 +1093,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/1 - request: body: null headers: {} @@ -1173,20 +1121,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2000-01-01_00-00-00/tiff/1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2000-01-01_00-00-00/tiff/1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,265,265,257],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -1195,7 +1141,7 @@ interactions: cache-control: - no-cache content-length: - - '163' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1203,21 +1149,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2000-01-01_00-00-00/tiff/1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2000-01-01_00-00-00/tiff/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,265,265,257],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -1226,7 +1168,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '163' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1234,12 +1176,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/1/.zattrs + code: 200 + message: OK - request: body: null headers: {} @@ -1265,12 +1204,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/1/zarr.json - request: body: null headers: {} @@ -1296,12 +1232,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/1/.zattrs - request: body: null headers: {} @@ -1326,12 +1259,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/1/.zarray - request: body: null headers: {} @@ -1352,7 +1282,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-06-20_07-53-28/tiff/1\u201D + \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-09-26_12-17-13/tiff/1\u201D folder.

                    \n

                    The following are the contents of the folder:

                    \n \n \ \n\n" @@ -1372,12 +1302,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/1 - request: body: null headers: {} @@ -1398,7 +1325,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-06-20_07-53-28/tiff/2\u201D + \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-09-26_12-17-13/tiff/2\u201D folder.

                    \n

                    The following are the contents of the folder:

                    \n \n \ \n\n" @@ -1418,12 +1345,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/2 - request: body: null headers: {} @@ -1449,21 +1373,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/2/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2000-01-01_00-00-00/tiff/2/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2000-01-01_00-00-00/tiff/2/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,132,132,128],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -1472,7 +1392,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '163' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1480,20 +1400,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/2/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2000-01-01_00-00-00/tiff/2/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2000-01-01_00-00-00/tiff/2/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,132,132,128],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -1502,7 +1420,7 @@ interactions: cache-control: - no-cache content-length: - - '163' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1510,12 +1428,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/2/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -1541,12 +1456,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/2/zarr.json - request: body: null headers: {} @@ -1571,12 +1483,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/2/.zarray - request: body: null headers: {} @@ -1602,12 +1511,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/2/.zattrs - request: body: null headers: {} @@ -1628,7 +1534,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-06-20_07-53-28/tiff/2\u201D + \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-09-26_12-17-13/tiff/2\u201D folder.

                    \n

                    The following are the contents of the folder:

                    \n \n \ \n\n" @@ -1648,12 +1554,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/2 - request: body: null headers: {} @@ -1674,7 +1577,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-06-20_07-53-28/tiff/4\u201D + \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-09-26_12-17-13/tiff/4\u201D folder.

                    \n

                    The following are the contents of the folder:

                    \n \n \ \n\n" @@ -1694,12 +1597,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/4 - request: body: null headers: {} @@ -1725,12 +1625,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/4/zarr.json - request: body: null headers: {} @@ -1756,12 +1653,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/4/.zattrs - request: body: null headers: {} @@ -1786,12 +1680,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/4/.zarray - request: body: null headers: {} @@ -1817,21 +1708,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/4/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2000-01-01_00-00-00/tiff/4/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2000-01-01_00-00-00/tiff/4/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,66,66,64],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -1840,7 +1727,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '160' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1848,20 +1735,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/4/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2000-01-01_00-00-00/tiff/4/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2000-01-01_00-00-00/tiff/4/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,66,66,64],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -1870,7 +1755,7 @@ interactions: cache-control: - no-cache content-length: - - '160' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1878,12 +1763,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/4/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -1904,7 +1786,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-06-20_07-53-28/tiff/4\u201D + \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2023-09-26_12-17-13/tiff/4\u201D folder.

                    \n

                    The following are the contents of the folder:

                    \n \n \ \n\n" @@ -1924,10 +1806,7 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/tiff_dataset_2023-06-20_07-53-28/tiff/4 version: 1 diff --git a/webknossos/tests/cassettes/test_examples/test_user_times.yaml b/webknossos/tests/cassettes/test_examples/test_user_times.yaml index fb6dc33da..64b4df411 100644 --- a/webknossos/tests/cassettes/test_examples/test_user_times.yaml +++ b/webknossos/tests/cassettes/test_examples/test_user_times.yaml @@ -11,16 +11,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/users response: - content: '[{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1687247561155,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true},{"id":"670b9f4d2a7c0e4d008da6ef","email":"user_B@scalableminds.com","firstName":"user_B","lastName":"BoyB","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true}],"experiences":{},"lastActivity":1460465869053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true},{"id":"770b9f4d2a7c0e4d008da6ef","email":"user_C@scalableminds.com","firstName":"user_C","lastName":"BoyC","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":false}],"experiences":{},"lastActivity":1460552269053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true},{"id":"870b9f4d2a7c0e4d008da6ef","email":"user_D@scalableminds.com","firstName":"user_D","lastName":"BoyD","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"69882b370d889b84020efd4f","name":"team_X2","isTeamManager":true}],"experiences":{},"lastActivity":1460638669053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"light","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true}]' + content: '[{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1695730614716,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"670b9f4d2a7c0e4d008da6ef","email":"user_B@scalableminds.com","firstName":"user_B","lastName":"BoyB","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true}],"experiences":{},"lastActivity":1460465869053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"770b9f4d2a7c0e4d008da6ef","email":"user_C@scalableminds.com","firstName":"user_C","lastName":"BoyC","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":false}],"experiences":{},"lastActivity":1460552269053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"870b9f4d2a7c0e4d008da6ef","email":"user_D@scalableminds.com","firstName":"user_D","lastName":"BoyD","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"69882b370d889b84020efd4f","name":"team_X2","isTeamManager":true}],"experiences":{},"lastActivity":1460638669053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"light","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}]' headers: cache-control: - no-cache content-length: - - '2187' + - '2279' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -28,8 +28,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -44,7 +42,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/users/570b9f4d2a7c0e4d008da6ef/loggedTime response: @@ -59,7 +57,7 @@ interactions: cache-control: - no-cache content-length: - - '489' + - '555' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -67,8 +65,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -83,7 +79,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/users/670b9f4d2a7c0e4d008da6ef/loggedTime response: @@ -100,8 +96,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -116,7 +110,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/users/770b9f4d2a7c0e4d008da6ef/loggedTime response: @@ -135,8 +129,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -151,7 +143,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/users/870b9f4d2a7c0e4d008da6ef/loggedTime response: @@ -168,8 +160,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/cassettes/test_generated_client/test_annotation_info.yaml b/webknossos/tests/cassettes/test_generated_client/test_annotation_info.yaml index 42dec7682..b3840a6d0 100644 --- a/webknossos/tests/cassettes/test_generated_client/test_annotation_info.yaml +++ b/webknossos/tests/cassettes/test_generated_client/test_annotation_info.yaml @@ -11,16 +11,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/annotations/570ba0092a7c0e980056fe9b/info response: - content: '{"modified":0,"state":"Active","id":"570ba0092a7c0e980056fe9b","name":"","description":"","viewConfiguration":null,"typ":"Explorational","task":null,"stats":{"edgeCount":28965,"nodeCount":28967,"treeCount":2,"branchPointCount":0},"restrictions":{"allowAccess":true,"allowUpdate":true,"allowFinish":true,"allowDownload":true},"formattedHash":"56fe9b","annotationLayers":[{"tracingId":"ae417175-f7bb-4a34-8187-d9c3b50143ae","typ":"Skeleton","name":"Skeleton"}],"dataSetName":"2012-06-28_Cortex","organization":"Organization_X","dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"tracingStore":{"name":"localhost","url":"http://localhost:9000"},"visibility":"Internal","settings":{"allowedModes":["orthogonal","oblique","flight"],"branchPointsAllowed":true,"somaClickingAllowed":true,"volumeInterpolationAllowed":true,"mergerMode":false,"resolutionRestrictions":{}},"tracingTime":null,"teams":[],"tags":["2012-06-28_Cortex","skeleton"],"user":{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isDatasetManager":true,"isAnonymous":false,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}]},"owner":{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isDatasetManager":true,"isAnonymous":false,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}]},"contributors":[],"othersMayEdit":false}' + content: '{"modified":0,"state":"Active","id":"570ba0092a7c0e980056fe9b","name":"","description":"","viewConfiguration":null,"typ":"Explorational","task":null,"stats":{"edgeCount":28965,"nodeCount":28967,"treeCount":2,"branchPointCount":0},"restrictions":{"allowAccess":true,"allowUpdate":true,"allowFinish":true,"allowDownload":true},"formattedHash":"56fe9b","annotationLayers":[{"tracingId":"ae417175-f7bb-4a34-8187-d9c3b50143ae","typ":"Skeleton","name":"Skeleton"}],"dataSetName":"2012-06-28_Cortex","organization":"Organization_X","dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"tracingStore":{"name":"localhost","url":"http://localhost:9000"},"visibility":"Internal","settings":{"allowedModes":["orthogonal","oblique","flight"],"branchPointsAllowed":true,"somaClickingAllowed":true,"volumeInterpolationAllowed":true,"mergerMode":false,"resolutionRestrictions":{}},"tracingTime":0,"teams":[],"tags":["2012-06-28_Cortex","skeleton"],"user":{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isDatasetManager":true,"isAnonymous":false,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}]},"owner":{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isDatasetManager":true,"isAnonymous":false,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}]},"contributors":[],"othersMayEdit":false}' headers: cache-control: - no-cache content-length: - - '1826' + - '1823' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -28,8 +28,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/cassettes/test_generated_client/test_build_info.yaml b/webknossos/tests/cassettes/test_generated_client/test_build_info.yaml index fdc08eb7d..ff21805ca 100644 --- a/webknossos/tests/cassettes/test_generated_client/test_build_info.yaml +++ b/webknossos/tests/cassettes/test_generated_client/test_build_info.yaml @@ -11,13 +11,13 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/buildinfo response: - content: '{"webknossos":{"name":"webknossos","ciTag":"","commitHash":"5a4efc45509f2ddf0f695701e1a4ba2ec4921a1c","ciBuild":"","scalaVersion":"2.12.15","version":"dev","sbtVersion":"1.6.2","datastoreApiVersion":"2.0","commitDate":"Mon - Jun 19 15:29:56 2023 +0200"},"webknossos-wrap":{"builtAtMillis":"1640035836569","name":"webknossos-wrap","commitHash":"8b842648702f469a3ffd90dc8a68c4310e64b351","scalaVersion":"2.12.7","version":"1.1.15","sbtVersion":"1.4.1","builtAtString":"2021-12-20 - 21:30:36.569"},"schemaVersion":102,"localDataStoreEnabled":true,"localTracingStoreEnabled":true}' + content: '{"webknossos":{"name":"webknossos","ciTag":"","commitHash":"43d88dd943673e54ff7daf43da86a86c8eec6530","ciBuild":"","scalaVersion":"2.12.15","version":"dev","sbtVersion":"1.6.2","datastoreApiVersion":"2.0","commitDate":"Tue + Sep 26 10:46:20 2023 +0200"},"webknossos-wrap":{"builtAtMillis":"1640035836569","name":"webknossos-wrap","commitHash":"8b842648702f469a3ffd90dc8a68c4310e64b351","scalaVersion":"2.12.7","version":"1.1.15","sbtVersion":"1.4.1","builtAtString":"2021-12-20 + 21:30:36.569"},"schemaVersion":109,"localDataStoreEnabled":true,"localTracingStoreEnabled":true}' headers: access-control-allow-origin: - '*' @@ -32,8 +32,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/cassettes/test_generated_client/test_current_user_info_and_user_logged_time.yaml b/webknossos/tests/cassettes/test_generated_client/test_current_user_info_and_user_logged_time.yaml index 53084fb42..27ff7ff17 100644 --- a/webknossos/tests/cassettes/test_generated_client/test_current_user_info_and_user_logged_time.yaml +++ b/webknossos/tests/cassettes/test_generated_client/test_current_user_info_and_user_logged_time.yaml @@ -11,16 +11,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/user response: - content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1687247593863,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true}' + content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1695729342146,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: cache-control: - no-cache content-length: - - '657' + - '680' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -28,8 +28,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -44,7 +42,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/users/570b9f4d2a7c0e4d008da6ef/loggedTime response: @@ -67,8 +65,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/cassettes/test_generated_client/test_dataset_info.yaml b/webknossos/tests/cassettes/test_generated_client/test_dataset_info.yaml index c77f04583..1234cb4e4 100644 --- a/webknossos/tests/cassettes/test_generated_client/test_dataset_info.yaml +++ b/webknossos/tests/cassettes/test_generated_client/test_dataset_info.yaml @@ -11,11 +11,11 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/datasets/scalable_minds/l4dense_motta_et_al_demo response: - content: '{"name":"l4dense_motta_et_al_demo","dataSource":{"id":{"name":"l4dense_motta_et_al_demo","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint8","adminViewConfiguration":{"intensityRange":[80,180]}},{"name":"predictions","category":"color","boundingBox":{"topLeft":[0,0,0],"width":5632,"height":8704,"depth":3584},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint24","adminViewConfiguration":{"isDisabled":true}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint32","largestSegmentId":2504697,"adminViewConfiguration":{}}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":"Segmentation + content: '{"name":"l4dense_motta_et_al_demo","dataSource":{"id":{"name":"l4dense_motta_et_al_demo","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint8","adminViewConfiguration":{"alpha":100,"gammaCorrectionValue":1,"min":0,"color":[255,255,255],"max":255,"isInverted":false,"isInEditMode":false,"isDisabled":false,"intensityRange":[80,180]}},{"name":"predictions","category":"color","boundingBox":{"topLeft":[0,0,0],"width":5632,"height":8704,"depth":3584},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint24","adminViewConfiguration":{"alpha":100,"gammaCorrectionValue":1,"min":0,"color":[255,255,255],"max":255,"isInverted":false,"isInEditMode":false,"isDisabled":false,"intensityRange":[0,255]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint32","largestSegmentId":2504697,"adminViewConfiguration":{"alpha":20,"gammaCorrectionValue":1,"color":[255,255,255],"isInverted":false,"isInEditMode":false,"isDisabled":false}}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":"Segmentation created with [Voxelytics](https://scalableminds.com/voxelytics) by [scalable minds](https://scalableminds.com).\n\n \n\nRaw SBEM data and segmentation ground truth by Max Planck Institute for Brain Research. As published in *Dense connectomic @@ -29,7 +29,7 @@ interactions: connection: - keep-alive content-length: - - '2310' + - '2705' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -39,8 +39,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/cassettes/test_generated_client/test_datastore_list.yaml b/webknossos/tests/cassettes/test_generated_client/test_datastore_list.yaml index af45b9bb8..b7cb23d10 100644 --- a/webknossos/tests/cassettes/test_generated_client/test_datastore_list.yaml +++ b/webknossos/tests/cassettes/test_generated_client/test_datastore_list.yaml @@ -11,7 +11,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datastores response: @@ -28,8 +28,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/cassettes/test_generated_client/test_generate_token_for_data_store.yaml b/webknossos/tests/cassettes/test_generated_client/test_generate_token_for_data_store.yaml index 1418743ca..4f7496722 100644 --- a/webknossos/tests/cassettes/test_generated_client/test_generate_token_for_data_store.yaml +++ b/webknossos/tests/cassettes/test_generated_client/test_generate_token_for_data_store.yaml @@ -13,7 +13,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/api/userToken/generate response: @@ -30,8 +30,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/cassettes/test_generated_client/test_health.yaml b/webknossos/tests/cassettes/test_generated_client/test_health.yaml index 0623fbbdc..00afda0a7 100644 --- a/webknossos/tests/cassettes/test_generated_client/test_health.yaml +++ b/webknossos/tests/cassettes/test_generated_client/test_health.yaml @@ -11,7 +11,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/health response: @@ -28,8 +28,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/cassettes/test_generated_client/test_user_list.yaml b/webknossos/tests/cassettes/test_generated_client/test_user_list.yaml index 9a1d38617..c3828c4ec 100644 --- a/webknossos/tests/cassettes/test_generated_client/test_user_list.yaml +++ b/webknossos/tests/cassettes/test_generated_client/test_user_list.yaml @@ -11,16 +11,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/users response: - content: '[{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1687247632481,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true},{"id":"670b9f4d2a7c0e4d008da6ef","email":"user_B@scalableminds.com","firstName":"user_B","lastName":"BoyB","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true}],"experiences":{},"lastActivity":1460465869053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true},{"id":"770b9f4d2a7c0e4d008da6ef","email":"user_C@scalableminds.com","firstName":"user_C","lastName":"BoyC","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":false}],"experiences":{},"lastActivity":1460552269053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true},{"id":"870b9f4d2a7c0e4d008da6ef","email":"user_D@scalableminds.com","firstName":"user_D","lastName":"BoyD","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"69882b370d889b84020efd4f","name":"team_X2","isTeamManager":true}],"experiences":{},"lastActivity":1460638669053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"light","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true}]' + content: '[{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1695730657075,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"670b9f4d2a7c0e4d008da6ef","email":"user_B@scalableminds.com","firstName":"user_B","lastName":"BoyB","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true}],"experiences":{},"lastActivity":1460465869053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"770b9f4d2a7c0e4d008da6ef","email":"user_C@scalableminds.com","firstName":"user_C","lastName":"BoyC","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":false}],"experiences":{},"lastActivity":1460552269053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"870b9f4d2a7c0e4d008da6ef","email":"user_D@scalableminds.com","firstName":"user_D","lastName":"BoyD","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"69882b370d889b84020efd4f","name":"team_X2","isTeamManager":true}],"experiences":{},"lastActivity":1460638669053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"light","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}]' headers: cache-control: - no-cache content-length: - - '2187' + - '2279' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -28,8 +28,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/client/cassettes/test_context/test_user_organization.yaml b/webknossos/tests/client/cassettes/test_context/test_user_organization.yaml index fba7b5277..90f1de3fd 100644 --- a/webknossos/tests/client/cassettes/test_context/test_user_organization.yaml +++ b/webknossos/tests/client/cassettes/test_context/test_user_organization.yaml @@ -11,16 +11,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/user response: - content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1687247593863,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true}' + content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1695729342146,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: cache-control: - no-cache content-length: - - '657' + - '680' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -28,8 +28,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/client/cassettes/test_user/test_get_all_managed_users.yaml b/webknossos/tests/client/cassettes/test_user/test_get_all_managed_users.yaml index 105f882b3..ba931df42 100644 --- a/webknossos/tests/client/cassettes/test_user/test_get_all_managed_users.yaml +++ b/webknossos/tests/client/cassettes/test_user/test_get_all_managed_users.yaml @@ -11,16 +11,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/users response: - content: '[{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1687247633546,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true},{"id":"670b9f4d2a7c0e4d008da6ef","email":"user_B@scalableminds.com","firstName":"user_B","lastName":"BoyB","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true}],"experiences":{},"lastActivity":1460465869053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true},{"id":"770b9f4d2a7c0e4d008da6ef","email":"user_C@scalableminds.com","firstName":"user_C","lastName":"BoyC","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":false}],"experiences":{},"lastActivity":1460552269053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true},{"id":"870b9f4d2a7c0e4d008da6ef","email":"user_D@scalableminds.com","firstName":"user_D","lastName":"BoyD","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"69882b370d889b84020efd4f","name":"team_X2","isTeamManager":true}],"experiences":{},"lastActivity":1460638669053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"light","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true}]' + content: '[{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1695730657964,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"670b9f4d2a7c0e4d008da6ef","email":"user_B@scalableminds.com","firstName":"user_B","lastName":"BoyB","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true}],"experiences":{},"lastActivity":1460465869053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"770b9f4d2a7c0e4d008da6ef","email":"user_C@scalableminds.com","firstName":"user_C","lastName":"BoyC","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":false}],"experiences":{},"lastActivity":1460552269053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"870b9f4d2a7c0e4d008da6ef","email":"user_D@scalableminds.com","firstName":"user_D","lastName":"BoyD","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"69882b370d889b84020efd4f","name":"team_X2","isTeamManager":true}],"experiences":{},"lastActivity":1460638669053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"light","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}]' headers: cache-control: - no-cache content-length: - - '2187' + - '2279' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -28,8 +28,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/client/cassettes/test_user/test_get_current_user.yaml b/webknossos/tests/client/cassettes/test_user/test_get_current_user.yaml index fba7b5277..90f1de3fd 100644 --- a/webknossos/tests/client/cassettes/test_user/test_get_current_user.yaml +++ b/webknossos/tests/client/cassettes/test_user/test_get_current_user.yaml @@ -11,16 +11,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/user response: - content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1687247593863,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true}' + content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1695729342146,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: cache-control: - no-cache content-length: - - '657' + - '680' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -28,8 +28,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/client/cassettes/test_user/test_get_logged_time.yaml b/webknossos/tests/client/cassettes/test_user/test_get_logged_time.yaml index 53084fb42..27ff7ff17 100644 --- a/webknossos/tests/client/cassettes/test_user/test_get_logged_time.yaml +++ b/webknossos/tests/client/cassettes/test_user/test_get_logged_time.yaml @@ -11,16 +11,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/user response: - content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1687247593863,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true}' + content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1695729342146,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: cache-control: - no-cache content-length: - - '657' + - '680' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -28,8 +28,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -44,7 +42,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/users/570b9f4d2a7c0e4d008da6ef/loggedTime response: @@ -67,8 +65,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_remote_dataset.yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_remote_dataset.yaml index 1b06ac5fd..7f9a9abb0 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_remote_dataset.yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_remote_dataset.yaml @@ -13,7 +13,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/api/userToken/generate response: @@ -30,8 +30,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -46,7 +44,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datastores response: @@ -63,8 +61,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -79,16 +75,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/user response: - content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1687247593863,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true}' + content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1695729342146,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: cache-control: - no-cache content-length: - - '657' + - '680' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -96,8 +92,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -112,7 +106,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00/isValidNewName response: @@ -127,8 +121,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -149,7 +141,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets/reserveUpload response: @@ -168,8 +160,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -275,7 +265,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -294,8 +284,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -324,7 +312,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -343,8 +331,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -450,7 +436,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -469,8 +455,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -499,7 +483,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -518,8 +502,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -625,7 +607,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -644,8 +626,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -674,7 +654,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -693,8 +673,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -800,7 +778,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -819,8 +797,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -849,7 +825,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -868,8 +844,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -975,7 +949,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -994,8 +968,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1024,7 +996,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -1043,8 +1015,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1150,7 +1120,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -1169,8 +1139,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1199,7 +1167,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -1218,8 +1186,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1284,7 +1250,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -1303,8 +1269,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1325,7 +1289,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets/finishUpload response: @@ -1344,8 +1308,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1360,11 +1322,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -1377,8 +1339,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1401,7 +1361,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10\u201D + \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50\u201D folder.

                    \n

                    The following are the contents of the folder:

                    \n
                      \n \ \n
                    • datasource-properties.json
                    • \n \ \n
                    • .zgroup
                    • \n \n
                    • \n - \ \n \n

                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10\u201D + \ \n \n

                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50\u201D folder.

                      \n

                      The following are the contents of the folder:

                      \n
                        \n \ \n
                      • datasource-properties.json
                      • \n \ \n
                      • .zgroup
                      • \n \n
                      • \n - \ \n \n

                        This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10\u201D + \ \n \n

                        This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50\u201D folder.

                        \n

                        The following are the contents of the folder:

                        \n
                          \n \ \n
                        • datasource-properties.json
                        • \n \ \n
                        • .zgroup
                        • \n \n
                        • \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10/color/1\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50/color/1\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n
                          \n \ \n\n" @@ -1689,12 +1628,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1 - request: body: null headers: {} @@ -1720,12 +1656,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1/zarr.json - request: body: null headers: {} @@ -1751,12 +1684,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1/.zattrs - request: body: null headers: {} @@ -1781,12 +1711,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1/.zarray - request: body: null headers: {} @@ -1812,12 +1739,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1/zarr.json - request: body: null headers: {} @@ -1843,12 +1767,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1/.zattrs - request: body: null headers: {} @@ -1873,12 +1794,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1/.zarray - request: body: null headers: {} @@ -1899,7 +1817,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10/color/1\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50/color/1\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -1919,12 +1837,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1 - request: body: null headers: {} @@ -1945,7 +1860,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10/color/2-2-1\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50/color/2-2-1\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -1965,12 +1880,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/2-2-1 - request: body: null headers: {} @@ -1996,12 +1908,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/2-2-1/zarr.json - request: body: null headers: {} @@ -2027,12 +1936,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/2-2-1/.zattrs - request: body: null headers: {} @@ -2057,12 +1963,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/2-2-1/.zarray - request: body: null headers: {} @@ -2088,20 +1991,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/2-2-1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1408,2181,1804],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2110,7 +2011,7 @@ interactions: cache-control: - no-cache content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2118,21 +2019,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/2-2-1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1408,2181,1804],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2141,7 +2038,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2149,12 +2046,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} @@ -2175,7 +2069,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10/color/2-2-1\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50/color/2-2-1\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -2195,12 +2089,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/2-2-1 - request: body: null headers: {} @@ -2221,7 +2112,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10/color/4-4-2\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50/color/4-4-2\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -2241,12 +2132,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/4-4-2 - request: body: null headers: {} @@ -2272,20 +2160,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/4-4-2/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/4-4-2/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/4-4-2/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,704,1090,902],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2294,7 +2180,7 @@ interactions: cache-control: - no-cache content-length: - - '164' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2302,21 +2188,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/4-4-2/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/4-4-2/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/4-4-2/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,704,1090,902],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2325,7 +2207,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '164' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2333,12 +2215,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/4-4-2/.zattrs + code: 200 + message: OK - request: body: null headers: {} @@ -2364,12 +2243,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/4-4-2/zarr.json - request: body: null headers: {} @@ -2395,12 +2271,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/4-4-2/.zattrs - request: body: null headers: {} @@ -2425,12 +2298,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/4-4-2/.zarray - request: body: null headers: {} @@ -2451,7 +2321,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10/color/4-4-2\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50/color/4-4-2\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -2471,12 +2341,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/4-4-2 - request: body: null headers: {} @@ -2497,7 +2364,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/1\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50/segmentation/1\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -2517,12 +2384,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/1 - request: body: null headers: {} @@ -2548,21 +2412,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/segmentation/1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/segmentation/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"\n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/1\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50/segmentation/1\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -2747,12 +2593,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/1 - request: body: null headers: {} @@ -2773,7 +2616,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/2-2-1\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50/segmentation/2-2-1\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -2793,12 +2636,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/2-2-1 - request: body: null headers: {} @@ -2824,21 +2664,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/segmentation/2-2-1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/segmentation/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"\n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/2-2-1\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50/segmentation/2-2-1\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -3023,12 +2845,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/2-2-1 - request: body: null headers: {} @@ -3049,7 +2868,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/4-4-2\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50/segmentation/4-4-2\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -3069,12 +2888,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/4-4-2 - request: body: null headers: {} @@ -3100,12 +2916,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/4-4-2/zarr.json - request: body: null headers: {} @@ -3131,12 +2944,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/4-4-2/.zattrs - request: body: null headers: {} @@ -3161,12 +2971,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/4-4-2/.zarray - request: body: null headers: {} @@ -3192,12 +2999,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/4-4-2/zarr.json - request: body: null headers: {} @@ -3222,12 +3026,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/4-4-2/.zarray - request: body: null headers: {} @@ -3253,12 +3054,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/4-4-2/.zattrs - request: body: null headers: {} @@ -3279,7 +3077,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/4-4-2\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2023-09-26_12-17-50/segmentation/4-4-2\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -3299,12 +3097,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/segmentation/4-4-2 - request: body: null headers: {} @@ -3330,21 +3125,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2817,4362,1804],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -3353,7 +3144,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -3361,20 +3152,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2817,4362,1804],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -3383,7 +3172,7 @@ interactions: cache-control: - no-cache content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -3391,17 +3180,14 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/1/0.88.136.56 + uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/1/0.87.136.56 response: body: string: !!binary | @@ -3440,13 +3226,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACXAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAB1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABh AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAIORk4aVk4uJfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjpSSkIqH + mH2TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACNmZGZepaTjn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AJOKjoOKhYCMhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAg4GRmpqQfZOEAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAACPjYaUkJyCc4kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH2Mg2mFlY1/eQAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAfHV+oYJ+jHZxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABucHhvcm5paWgA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAGNpa2JuXWFyaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -3458,13 +3244,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhgAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG8AAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAACTmpWVj4qXin8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIqQjIaLj5t1 + hgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgIiQi4+LipWJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACN + ipaOj32RlIUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI+JmKGKl4GHiwAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAkX6OjIuGhXt7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2foSGhnF7aWkAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAHpze22BamxqbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAX3BpbFloaXppAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAB1bHJta2RoY3EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -3476,13 +3262,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG8AAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABu - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAFsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIMAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAkIGPjJCEgoVxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZh5CHiIqNe3EA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAH+NhYKTlnSAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjJOG + f4yPfYJpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACLfYSLiY+RfW0AAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAH1tiYB7hntzbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdHhmfXR5gVJsAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAABjWXV1b3FYYm0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF9xYml3enRZegAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAf3BianBxg3iDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -3494,13 +3280,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAGsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAABtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHUAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACPAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAHmKbX9qZ210ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjYNxcnVnVWdiAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAB9i4F1cmJpYGsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiMd3Zx + VGBqbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeX6Ef291XmJmAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AABzZWlqalleaHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGFfUGFyWFhpYgAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAVnJdanBvdmxfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABxh2tlhIN6hIIAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAHd9eH+DhIGJjwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -3512,13 +3298,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAABzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHYAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkgAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAABjc2RgbW99d3wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHF2eGJpWG2BagAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAZV52Y1JhZG5rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmaGdmaGFb + a20AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHJmaWxhcmhnZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + V09obnlycH95AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhWmNpknFsgXgAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAIiCd5N/f3aLhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAh5KNh5KVjoeVAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAACcj5OThn+UjYMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -3530,13 +3316,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIkAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - ZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAal5ldGhsh9WRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoYlV5c2iFVIkAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAG5oZ21hZ22KcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWlJkXnBhcEli + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmZWJmRW9odGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFZ + cmuUb4J/ZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf3dudniGgIKKAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAACQko+JnpJ+iX4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKeSi5WOkoqAhAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAjZSPlYefiYuLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -3548,13 +3334,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACKAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAjQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAG9qgIKQhIKLjQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYmpxhnySkoqEAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAB0aG5ue4GLhYEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGJybGNga4N4dQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAYltqZmJhZmd9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6cW5+ + ZWl1YWsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKxyg4WMeIdzbwAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAdoiSkod6hZSDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC6nHyUhZyPkogAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAHt8j4aGf5KHlQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -3566,13 +3352,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAABqi4ePfpSHh3cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHZsfHt/i4mYjAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAYndzcXZojHh1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4aXRjcFlfb3MAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAHx+dHt7YWtnYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAioKDgHp8 + ZmRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACJjoWHgIJ9cHcAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AJKdiJaFhHV/egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmIGOlIeRgI6TAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAACJio+YkJWFi5MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -3584,13 +3370,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAIYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAACXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAZYCIdqGLhYWRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABtYmtqdnqLgYcAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAGlaZ3VhdICAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAamhzepRlcoV8AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAACGg4huaGBvXHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIuckIuXg3Vm + XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgIaQk4d1eXdzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACJ + kYSScoiKkncAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIaMhZSkjXB8iwAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAhH2Mg4SWlpKYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -3602,13 +3388,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACJAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAB/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABt - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AG9qaHF1iJGLkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaHBjZ3lqgYx6AAAAAAAAAAAAAAAAAAAA + AAAAAAAAAABmTmNecHd7hHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG9YbGRsaGV1dAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAenFjVk1zZ3VzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9g3NoV2toXk4A + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIN6kXptZ21wdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf3SH + hnx5b3dqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5f4+WfHqAcHUAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAHuJkIpzf3qGgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -3996,17 +3782,14 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1/0.88.136.56 - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/1/0.87.136.56 + uri: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2000-01-01_00-00-00/color/1/0.88.136.56 response: body: string: !!binary | @@ -4045,13 +3828,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACXAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAB1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABh AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAIORk4aVk4uJfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjpSSkIqH - mH2TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACNmZGZepaTjn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AJOKjoOKhYCMhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAg4GRmpqQfZOEAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAACPjYaUkJyCc4kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH2Mg2mFlY1/eQAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAfHV+oYJ+jHZxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABucHhvcm5paWgA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAGNpa2JuXWFyaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -4063,13 +3846,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhgAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG8AAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAACTmpWVj4qXin8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIqQjIaLj5t1 - hgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgIiQi4+LipWJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACN - ipaOj32RlIUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI+JmKGKl4GHiwAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAkX6OjIuGhXt7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2foSGhnF7aWkAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAHpze22BamxqbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAX3BpbFloaXppAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAB1bHJta2RoY3EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -4081,13 +3864,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG8AAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABu + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAFsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIMAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAkIGPjJCEgoVxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZh5CHiIqNe3EA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAH+NhYKTlnSAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjJOG - f4yPfYJpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACLfYSLiY+RfW0AAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAH1tiYB7hntzbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdHhmfXR5gVJsAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAABjWXV1b3FYYm0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF9xYml3enRZegAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAf3BianBxg3iDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -4099,13 +3882,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAGsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAABtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHUAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACPAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAHmKbX9qZ210ZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjYNxcnVnVWdiAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAB9i4F1cmJpYGsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiMd3Zx - VGBqbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeX6Ef291XmJmAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABzZWlqalleaHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGFfUGFyWFhpYgAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAVnJdanBvdmxfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABxh2tlhIN6hIIAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAHd9eH+DhIGJjwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -4117,13 +3900,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAABzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AABiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHYAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAJMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkgAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAABjc2RgbW99d3wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHF2eGJpWG2BagAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAZV52Y1JhZG5rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmaGdmaGFb - a20AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHJmaWxhcmhnZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - V09obnlycH95AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhWmNpknFsgXgAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAIiCd5N/f3aLhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAh5KNh5KVjoeVAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAACcj5OThn+UjYMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -4135,13 +3918,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIkAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + ZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAal5ldGhsh9WRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoYlV5c2iFVIkAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAG5oZ21hZ22KcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWlJkXnBhcEli - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmZWJmRW9odGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFZ - cmuUb4J/ZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf3dudniGgIKKAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAACQko+JnpJ+iX4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKeSi5WOkoqAhAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAjZSPlYefiYuLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -4153,13 +3936,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACKAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAjQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAG9qgIKQhIKLjQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYmpxhnySkoqEAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAB0aG5ue4GLhYEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGJybGNga4N4dQAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAYltqZmJhZmd9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6cW5+ - ZWl1YWsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKxyg4WMeIdzbwAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAdoiSkod6hZSDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC6nHyUhZyPkogAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAHt8j4aGf5KHlQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -4171,13 +3954,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAIkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAABqi4ePfpSHh3cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHZsfHt/i4mYjAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAYndzcXZojHh1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4aXRjcFlfb3MAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAHx+dHt7YWtnYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAioKDgHp8 - ZmRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACJjoWHgIJ9cHcAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AJKdiJaFhHV/egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmIGOlIeRgI6TAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAACJio+YkJWFi5MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -4189,13 +3972,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAhgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAIYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAACXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAZYCIdqGLhYWRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABtYmtqdnqLgYcAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAGlaZ3VhdICAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAamhzepRlcoV8AAAAAAAA - AAAAAAAAAAAAAAAAAAAAAACGg4huaGBvXHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIuckIuXg3Vm - XwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgIaQk4d1eXdzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACJ - kYSScoiKkncAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIaMhZSkjXB8iwAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAhH2Mg4SWlpKYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -4207,13 +3990,13 @@ interactions: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACJAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAIUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAB/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABt + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AG9qaHF1iJGLkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaHBjZ3lqgYx6AAAAAAAAAAAAAAAAAAAA - AAAAAAAAAABmTmNecHd7hHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG9YbGRsaGV1dAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAenFjVk1zZ3VzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9g3NoV2toXk4A - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIN6kXptZ21wdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf3SH - hnx5b3dqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5f4+WfHqAcHUAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAHuJkIpzf3qGgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -4601,12 +4384,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_remote_metadata_2023-06-20_07-54-10/color/1/0.87.136.56 - request: body: '' headers: @@ -4619,11 +4399,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -4636,8 +4416,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -4652,11 +4430,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -4669,8 +4447,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -4686,10 +4462,10 @@ interactions: 11.239999771118164, 28]}, "dataStore": {"name": "localhost", "url": "http://localhost:9000", "allowsUpload": true, "isScratch": false}, "allowedTeams": [], "isActive": true, "isPublic": false, "description": null, "displayName": "Test Remote Dataset", - "created": 1687247651362, "tags": [], "folderId": "570b9f4e4bb848d0885ea917", + "created": 1695730670943, "tags": [], "folderId": "570b9f4e4bb848d0885ea917", "owningOrganization": "Organization_X", "allowedTeamsCumulative": [], "isEditable": - true, "lastUsedByUser": 1687247654924, "logoUrl": "/assets/images/mpi-logos.svg", - "sortingKey": 1687247651362, "details": null, "isUnreported": false, "jobsEnabled": + true, "lastUsedByUser": 1695730672345, "logoUrl": "/assets/images/mpi-logos.svg", + "sortingKey": 1695730670943, "details": null, "isUnreported": false, "jobsEnabled": false, "publication": null}' headers: accept: @@ -4705,12 +4481,12 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: PATCH uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":"Test - Remote Dataset","created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":"Test + Remote Dataset","created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -4723,8 +4499,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -4739,12 +4513,12 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":"Test - Remote Dataset","created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":"Test + Remote Dataset","created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -4757,8 +4531,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -4773,12 +4545,12 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":"Test - Remote Dataset","created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":"Test + Remote Dataset","created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -4791,8 +4563,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -4807,10 +4577,10 @@ interactions: [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "elementClass": "uint32"}], "scale": [11.239999771118164, 11.239999771118164, 28]}, "dataStore": {"name": "localhost", "url": "http://localhost:9000", "allowsUpload": true, "isScratch": false}, "allowedTeams": [], "isActive": true, - "isPublic": false, "description": null, "displayName": null, "created": 1687247651362, + "isPublic": false, "description": null, "displayName": null, "created": 1695730670943, "tags": [], "folderId": "570b9f4e4bb848d0885ea917", "owningOrganization": "Organization_X", - "allowedTeamsCumulative": [], "isEditable": true, "lastUsedByUser": 1687247655186, - "logoUrl": "/assets/images/mpi-logos.svg", "sortingKey": 1687247651362, "details": + "allowedTeamsCumulative": [], "isEditable": true, "lastUsedByUser": 1695730672475, + "logoUrl": "/assets/images/mpi-logos.svg", "sortingKey": 1695730670943, "details": null, "isUnreported": false, "jobsEnabled": false, "publication": null}' headers: accept: @@ -4826,11 +4596,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: PATCH uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -4843,8 +4613,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -4859,11 +4627,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -4876,8 +4644,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -4892,11 +4658,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -4909,8 +4675,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -4925,11 +4689,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -4942,8 +4706,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -4959,10 +4721,10 @@ interactions: 11.239999771118164, 28]}, "dataStore": {"name": "localhost", "url": "http://localhost:9000", "allowsUpload": true, "isScratch": false}, "allowedTeams": [], "isActive": true, "isPublic": false, "description": "My awesome test description", "displayName": - null, "created": 1687247651362, "tags": [], "folderId": "570b9f4e4bb848d0885ea917", + null, "created": 1695730670943, "tags": [], "folderId": "570b9f4e4bb848d0885ea917", "owningOrganization": "Organization_X", "allowedTeamsCumulative": [], "isEditable": - true, "lastUsedByUser": 1687247655705, "logoUrl": "/assets/images/mpi-logos.svg", - "sortingKey": 1687247651362, "details": null, "isUnreported": false, "jobsEnabled": + true, "lastUsedByUser": 1695730672628, "logoUrl": "/assets/images/mpi-logos.svg", + "sortingKey": 1695730670943, "details": null, "isUnreported": false, "jobsEnabled": false, "publication": null}' headers: accept: @@ -4978,12 +4740,12 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: PATCH uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":"My - awesome test description","displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":"My + awesome test description","displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -4996,8 +4758,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5012,12 +4772,12 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":"My - awesome test description","displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":"My + awesome test description","displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -5030,8 +4790,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5046,12 +4804,12 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":"My - awesome test description","displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":"My + awesome test description","displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -5064,8 +4822,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5080,10 +4836,10 @@ interactions: [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "elementClass": "uint32"}], "scale": [11.239999771118164, 11.239999771118164, 28]}, "dataStore": {"name": "localhost", "url": "http://localhost:9000", "allowsUpload": true, "isScratch": false}, "allowedTeams": [], "isActive": true, - "isPublic": false, "description": null, "displayName": null, "created": 1687247651362, + "isPublic": false, "description": null, "displayName": null, "created": 1695730670943, "tags": [], "folderId": "570b9f4e4bb848d0885ea917", "owningOrganization": "Organization_X", - "allowedTeamsCumulative": [], "isEditable": true, "lastUsedByUser": 1687247656093, - "logoUrl": "/assets/images/mpi-logos.svg", "sortingKey": 1687247651362, "details": + "allowedTeamsCumulative": [], "isEditable": true, "lastUsedByUser": 1695730672757, + "logoUrl": "/assets/images/mpi-logos.svg", "sortingKey": 1695730670943, "details": null, "isUnreported": false, "jobsEnabled": false, "publication": null}' headers: accept: @@ -5099,11 +4855,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: PATCH uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -5116,8 +4872,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5132,11 +4886,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -5149,8 +4903,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5165,11 +4917,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -5182,8 +4934,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5198,11 +4948,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -5215,8 +4965,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5231,10 +4979,10 @@ interactions: [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "elementClass": "uint32"}], "scale": [11.239999771118164, 11.239999771118164, 28]}, "dataStore": {"name": "localhost", "url": "http://localhost:9000", "allowsUpload": true, "isScratch": false}, "allowedTeams": [], "isActive": true, - "isPublic": true, "description": null, "displayName": null, "created": 1687247651362, + "isPublic": true, "description": null, "displayName": null, "created": 1695730670943, "tags": [], "folderId": "570b9f4e4bb848d0885ea917", "owningOrganization": "Organization_X", - "allowedTeamsCumulative": [], "isEditable": true, "lastUsedByUser": 1687247656393, - "logoUrl": "/assets/images/mpi-logos.svg", "sortingKey": 1687247651362, "details": + "allowedTeamsCumulative": [], "isEditable": true, "lastUsedByUser": 1695730672977, + "logoUrl": "/assets/images/mpi-logos.svg", "sortingKey": 1695730670943, "details": null, "isUnreported": false, "jobsEnabled": false, "publication": null}' headers: accept: @@ -5250,11 +4998,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: PATCH uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -5267,8 +5015,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5283,11 +5029,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -5300,8 +5046,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5316,11 +5060,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -5333,8 +5077,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5349,11 +5091,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -5366,8 +5108,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5382,11 +5122,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -5399,8 +5139,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5415,10 +5153,10 @@ interactions: [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "elementClass": "uint32"}], "scale": [11.239999771118164, 11.239999771118164, 28]}, "dataStore": {"name": "localhost", "url": "http://localhost:9000", "allowsUpload": true, "isScratch": false}, "allowedTeams": [], "isActive": true, - "isPublic": true, "description": null, "displayName": null, "created": 1687247651362, + "isPublic": true, "description": null, "displayName": null, "created": 1695730670943, "tags": ["category 0"], "folderId": "570b9f4e4bb848d0885ea917", "owningOrganization": "Organization_X", "allowedTeamsCumulative": [], "isEditable": true, "lastUsedByUser": - 1687247656969, "logoUrl": "/assets/images/mpi-logos.svg", "sortingKey": 1687247651362, + 1695730673451, "logoUrl": "/assets/images/mpi-logos.svg", "sortingKey": 1695730670943, "details": null, "isUnreported": false, "jobsEnabled": false, "publication": null}' headers: @@ -5435,11 +5173,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: PATCH uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: @@ -5453,8 +5191,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5469,11 +5205,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: @@ -5487,8 +5223,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5503,11 +5237,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: @@ -5521,8 +5255,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5537,11 +5269,11 @@ interactions: [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "elementClass": "uint32"}], "scale": [11.239999771118164, 11.239999771118164, 28]}, "dataStore": {"name": "localhost", "url": "http://localhost:9000", "allowsUpload": true, "isScratch": false}, "allowedTeams": [], "isActive": true, - "isPublic": true, "description": null, "displayName": null, "created": 1687247651362, + "isPublic": true, "description": null, "displayName": null, "created": 1695730670943, "tags": ["category 0", "category 1"], "folderId": "570b9f4e4bb848d0885ea917", "owningOrganization": "Organization_X", "allowedTeamsCumulative": [], "isEditable": - true, "lastUsedByUser": 1687247657207, "logoUrl": "/assets/images/mpi-logos.svg", - "sortingKey": 1687247651362, "details": null, "isUnreported": false, "jobsEnabled": + true, "lastUsedByUser": 1695730673583, "logoUrl": "/assets/images/mpi-logos.svg", + "sortingKey": 1695730670943, "details": null, "isUnreported": false, "jobsEnabled": false, "publication": null}' headers: accept: @@ -5557,11 +5289,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: PATCH uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0","category 1"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: @@ -5575,8 +5307,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5591,11 +5321,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0","category 1"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: @@ -5609,8 +5339,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5625,11 +5353,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0","category 1"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: @@ -5643,8 +5371,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5659,11 +5385,11 @@ interactions: [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "elementClass": "uint32"}], "scale": [11.239999771118164, 11.239999771118164, 28]}, "dataStore": {"name": "localhost", "url": "http://localhost:9000", "allowsUpload": true, "isScratch": false}, "allowedTeams": [], "isActive": true, - "isPublic": true, "description": null, "displayName": null, "created": 1687247651362, + "isPublic": true, "description": null, "displayName": null, "created": 1695730670943, "tags": ["category 0", "category 1", "category 2"], "folderId": "570b9f4e4bb848d0885ea917", "owningOrganization": "Organization_X", "allowedTeamsCumulative": [], "isEditable": - true, "lastUsedByUser": 1687247657545, "logoUrl": "/assets/images/mpi-logos.svg", - "sortingKey": 1687247651362, "details": null, "isUnreported": false, "jobsEnabled": + true, "lastUsedByUser": 1695730673727, "logoUrl": "/assets/images/mpi-logos.svg", + "sortingKey": 1695730670943, "details": null, "isUnreported": false, "jobsEnabled": false, "publication": null}' headers: accept: @@ -5679,11 +5405,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: PATCH uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: @@ -5697,8 +5423,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5713,11 +5437,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: @@ -5731,8 +5455,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5747,11 +5469,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00/sharingToken response: - content: '{"sharingToken":"1MaicdaoJnhJDv-ICfkxcQ"}' + content: '{"sharingToken":"ekCpS_dCxkiC2Xuh9qYeOA"}' headers: cache-control: - no-cache @@ -5764,8 +5486,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5780,11 +5500,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: @@ -5798,8 +5518,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5814,7 +5532,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/teams response: @@ -5831,8 +5549,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5851,7 +5567,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: PATCH uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00/teams response: @@ -5868,8 +5584,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5884,11 +5598,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: @@ -5902,8 +5616,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5922,7 +5634,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: PATCH uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00/teams response: @@ -5939,8 +5651,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5955,11 +5665,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: @@ -5973,8 +5683,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -5989,7 +5697,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/folders/tree response: @@ -6007,8 +5715,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -6023,11 +5729,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: @@ -6041,8 +5747,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -6058,11 +5762,11 @@ interactions: 11.239999771118164, 28]}, "dataStore": {"name": "localhost", "url": "http://localhost:9000", "allowsUpload": true, "isScratch": false}, "allowedTeams": [{"id": "570b9f4b2a7c0e3b008da6ec", "name": "team_X1", "organization": "Organization_X"}], "isActive": true, "isPublic": - true, "description": null, "displayName": null, "created": 1687247651362, "tags": + true, "description": null, "displayName": null, "created": 1695730670943, "tags": ["category 0", "category 1", "category 2"], "folderId": "570b9f4e4bb848d08880712a", "owningOrganization": "Organization_X", "allowedTeamsCumulative": [{"id": "570b9f4b2a7c0e3b008da6ec", "name": "team_X1", "organization": "Organization_X"}], "isEditable": true, "lastUsedByUser": - 1687247658494, "logoUrl": "/assets/images/mpi-logos.svg", "sortingKey": 1687247651362, + 1695730674172, "logoUrl": "/assets/images/mpi-logos.svg", "sortingKey": 1695730670943, "details": null, "isUnreported": false, "jobsEnabled": false, "publication": null}' headers: @@ -6079,11 +5783,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: PATCH uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d08880712a","publication":null}' headers: cache-control: @@ -6097,8 +5801,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -6113,11 +5815,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2023-06-20_07-54-10","dataSource":{"id":{"name":"test_remote_metadata_2023-06-20_07-54-10","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1687247651362,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247651362,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category + content: '{"name":"test_remote_metadata_2023-09-26_12-17-50","dataSource":{"id":{"name":"test_remote_metadata_2023-09-26_12-17-50","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1695730670943,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730670943,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d08880712a","publication":null}' headers: cache-control: @@ -6131,8 +5833,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -6147,7 +5847,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/folders/tree response: @@ -6165,8 +5865,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_upload_download_roundtrip.yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_upload_download_roundtrip.yaml index d321a61c6..a60661519 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_upload_download_roundtrip.yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_upload_download_roundtrip.yaml @@ -13,7 +13,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/api/userToken/generate response: @@ -30,8 +30,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -46,7 +44,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datastores response: @@ -63,8 +61,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -79,16 +75,16 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/user response: - content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1687247593863,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true}' + content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1695729342146,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: cache-control: - no-cache content-length: - - '657' + - '680' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -96,8 +92,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -112,7 +106,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/isValidNewName response: @@ -127,8 +121,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -149,7 +141,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets/reserveUpload response: @@ -168,8 +160,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -275,7 +265,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -294,8 +284,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -324,7 +312,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -343,8 +331,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -450,7 +436,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -469,8 +455,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -499,7 +483,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -518,8 +502,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -625,7 +607,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -644,8 +626,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -674,7 +654,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -693,8 +673,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -800,7 +778,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -819,8 +797,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -849,7 +825,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -868,8 +844,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -975,7 +949,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -994,8 +968,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1024,7 +996,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -1043,8 +1015,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1150,7 +1120,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -1169,8 +1139,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1199,7 +1167,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -1218,8 +1186,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1284,7 +1250,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets response: @@ -1303,8 +1269,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1325,7 +1289,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: POST uri: http://localhost:9000/data/datasets/finishUpload response: @@ -1344,8 +1308,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1360,11 +1322,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00 response: - content: '{"name":"test_upload_download_roundtrip_2023-06-20_07-54-18","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-20_07-54-18","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247659093,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247659093,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_upload_download_roundtrip_2023-09-26_12-17-54","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-09-26_12-17-54","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730674573,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730674573,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -1377,8 +1339,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -1401,7 +1361,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n
                            \n \ \n
                          • datasource-properties.json
                          • \n \ \n
                          • .zgroup
                          • \n \n
                          • \n - \ \n \n

                            This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18\u201D + \ \n \n

                            This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54\u201D folder.

                            \n

                            The following are the contents of the folder:

                            \n
                              \n \ \n
                            • datasource-properties.json
                            • \n \ \n
                            • .zgroup
                            • \n \n
                            • \n - \ \n \n

                              This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18\u201D + \ \n \n

                              This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54\u201D folder.

                              \n

                              The following are the contents of the folder:

                              \n
                                \n \ \n
                              • datasource-properties.json
                              • \n \ \n
                              • .zgroup
                              • \n \n
                              • \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54/color/1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n
                                \n \ \n\n" @@ -1689,12 +1628,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/1 - request: body: null headers: {} @@ -1720,12 +1656,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/1/zarr.json - request: body: null headers: {} @@ -1751,12 +1684,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/1/.zattrs - request: body: null headers: {} @@ -1781,12 +1711,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/1/.zarray - request: body: null headers: {} @@ -1812,21 +1739,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2817,4362,1804],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -1835,7 +1758,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1843,20 +1766,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2817,4362,1804],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -1865,7 +1786,7 @@ interactions: cache-control: - no-cache content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1873,12 +1794,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -1899,7 +1817,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54/color/1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -1919,12 +1837,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/1 - request: body: null headers: {} @@ -1945,7 +1860,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/2-2-1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54/color/2-2-1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -1965,12 +1880,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/2-2-1 - request: body: null headers: {} @@ -1996,21 +1908,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/2-2-1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1408,2181,1804],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2019,7 +1927,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2027,20 +1935,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/2-2-1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1408,2181,1804],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2049,7 +1955,7 @@ interactions: cache-control: - no-cache content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2057,12 +1963,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -2088,20 +1991,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/2-2-1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1408,2181,1804],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2110,7 +2011,7 @@ interactions: cache-control: - no-cache content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2118,21 +2019,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/2-2-1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1408,2181,1804],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2141,7 +2038,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2149,12 +2046,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} @@ -2175,7 +2069,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/2-2-1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54/color/2-2-1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2195,12 +2089,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/2-2-1 - request: body: null headers: {} @@ -2221,7 +2112,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/4-4-2\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54/color/4-4-2\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2241,12 +2132,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/4-4-2 - request: body: null headers: {} @@ -2272,21 +2160,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/4-4-2/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/4-4-2/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/4-4-2/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,704,1090,902],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2295,7 +2179,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '164' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2303,20 +2187,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/4-4-2/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/4-4-2/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/4-4-2/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,704,1090,902],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2325,7 +2207,7 @@ interactions: cache-control: - no-cache content-length: - - '164' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2333,12 +2215,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/4-4-2/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -2364,21 +2243,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/4-4-2/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/4-4-2/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/4-4-2/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,704,1090,902],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2387,7 +2262,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '164' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2395,20 +2270,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 404 - message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/4-4-2/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/4-4-2/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/color/4-4-2/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,704,1090,902],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2417,7 +2290,7 @@ interactions: cache-control: - no-cache content-length: - - '164' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2425,12 +2298,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: - code: 200 - message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/4-4-2/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -2451,7 +2321,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/4-4-2\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54/color/4-4-2\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2471,12 +2341,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/color/4-4-2 - request: body: null headers: {} @@ -2497,7 +2364,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54/segmentation/1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2517,12 +2384,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/1 - request: body: null headers: {} @@ -2548,21 +2412,17 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/segmentation/1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/segmentation/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"\n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54/segmentation/1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2747,12 +2593,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/1 - request: body: null headers: {} @@ -2773,7 +2616,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/2-2-1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54/segmentation/2-2-1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2793,12 +2636,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/2-2-1 - request: body: null headers: {} @@ -2824,20 +2664,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/segmentation/2-2-1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/segmentation/2-2-1/.zattrs response: body: - string: '{"dtype":"\n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/2-2-1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54/segmentation/2-2-1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -3023,12 +2845,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/2-2-1 - request: body: null headers: {} @@ -3049,7 +2868,7 @@ interactions: Neue\", Helvetica, Arial,\n sans-serif;\n text-align: center\n \ }\n \n ul {\n list-style: none;\n }\n\n p#hint {\n color: #777;\n margin-top: 4em\n }\n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/4-4-2\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54/segmentation/4-4-2\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -3069,12 +2888,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/4-4-2 - request: body: null headers: {} @@ -3100,20 +2916,18 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 404 message: Not Found - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/4-4-2/zarr.json - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/segmentation/4-4-2/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/segmentation/4-4-2/.zattrs response: body: - string: '{"dtype":"\n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/4-4-2\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2023-09-26_12-17-54/segmentation/4-4-2\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -3299,12 +3097,9 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block status: code: 200 message: OK - url: http://localhost:9000/data/zarr/Organization_X/test_upload_download_roundtrip_2023-06-20_07-54-18/segmentation/4-4-2 - request: body: '' headers: @@ -3317,11 +3112,11 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/api/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00 response: - content: '{"name":"test_upload_download_roundtrip_2023-06-20_07-54-18","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-06-20_07-54-18","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1687247659093,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1687247659093,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' + content: '{"name":"test_upload_download_roundtrip_2023-09-26_12-17-54","dataSource":{"id":{"name":"test_upload_download_roundtrip_2023-09-26_12-17-54","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1695730674573,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1695730674573,"details":null,"isUnreported":false,"jobsEnabled":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null}' headers: cache-control: - no-cache @@ -3334,8 +3129,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -3350,7 +3143,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/data/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/layers/color/data?depth=10&halfByte=false&height=10&mag=1-1-1&width=10&x=2807&y=4352&z=1794 response: @@ -3393,8 +3186,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -3409,7 +3200,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/data/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/layers/color/data?depth=10&halfByte=false&height=5&mag=2-2-1&width=6&x=2806&y=4352&z=1794 response: @@ -3440,8 +3231,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -3456,7 +3245,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/data/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/layers/color/data?depth=5&halfByte=false&height=3&mag=4-4-2&width=4&x=2804&y=4352&z=1794 response: @@ -3483,8 +3272,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -3499,7 +3286,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/data/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/layers/segmentation/data?depth=10&halfByte=false&height=10&mag=1-1-1&width=10&x=2807&y=4352&z=1794 response: @@ -3595,8 +3382,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -3611,7 +3396,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/data/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/layers/segmentation/data?depth=10&halfByte=false&height=5&mag=2-2-1&width=6&x=2806&y=4352&z=1794 response: @@ -3658,8 +3443,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -3674,7 +3457,7 @@ interactions: host: - localhost:9000 user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: http://localhost:9000/data/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/layers/segmentation/data?depth=5&halfByte=false&height=3&mag=4-4-2&width=4&x=2804&y=4352&z=1794 response: @@ -3704,8 +3487,6 @@ interactions: - origin-when-cross-origin, strict-origin-when-cross-origin x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 version: 1 diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[93zLg9U9vJ3c_UWp].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[93zLg9U9vJ3c_UWp].yaml index 00243f035..cca439e9c 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[93zLg9U9vJ3c_UWp].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[93zLg9U9vJ3c_UWp].yaml @@ -11,7 +11,7 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/shortLinks/byKey/93zLg9U9vJ3c_UWp response: @@ -32,8 +32,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -48,7 +46,7 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/datasets/scalable_minds/l4_sample_dev_sharing?sharingToken=ilDXmfQa2G8e719vb1U9YQ response: @@ -69,8 +67,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -85,7 +81,7 @@ interactions: host: - data-humerus.webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://data-humerus.webknossos.org/data/datasets/scalable_minds/l4_sample_dev_sharing/layers/color/data?depth=10&halfByte=false&height=10&mag=1-1-1&width=10&x=2807&y=4352&z=1794 response: @@ -150,7 +146,7 @@ interactions: host: - data-humerus.webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://data-humerus.webknossos.org/data/datasets/scalable_minds/l4_sample_dev_sharing/layers/segmentation/data?depth=10&halfByte=false&height=10&mag=1-1-1&width=10&x=2807&y=4352&z=1794 response: diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev-view].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev-view].yaml index 0f5d7156a..1e85e0236 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev-view].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev-view].yaml @@ -11,7 +11,7 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/datasets/scalable_minds/l4_sample_dev response: @@ -32,8 +32,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -48,7 +46,7 @@ interactions: host: - data-humerus.webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://data-humerus.webknossos.org/data/datasets/scalable_minds/l4_sample_dev/layers/color/data?depth=10&halfByte=false&height=10&mag=1-1-1&width=10&x=2807&y=4352&z=1794 response: @@ -113,7 +111,7 @@ interactions: host: - data-humerus.webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://data-humerus.webknossos.org/data/datasets/scalable_minds/l4_sample_dev/layers/segmentation/data?depth=10&halfByte=false&height=10&mag=1-1-1&width=10&x=2807&y=4352&z=1794 response: diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev].yaml index 0f5d7156a..1e85e0236 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev].yaml @@ -11,7 +11,7 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/datasets/scalable_minds/l4_sample_dev response: @@ -32,8 +32,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -48,7 +46,7 @@ interactions: host: - data-humerus.webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://data-humerus.webknossos.org/data/datasets/scalable_minds/l4_sample_dev/layers/color/data?depth=10&halfByte=false&height=10&mag=1-1-1&width=10&x=2807&y=4352&z=1794 response: @@ -113,7 +111,7 @@ interactions: host: - data-humerus.webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://data-humerus.webknossos.org/data/datasets/scalable_minds/l4_sample_dev/layers/segmentation/data?depth=10&halfByte=false&height=10&mag=1-1-1&width=10&x=2807&y=4352&z=1794 response: diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev_sharing-view].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev_sharing-view].yaml index 0a20c30b0..75fb73542 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev_sharing-view].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev_sharing-view].yaml @@ -11,7 +11,7 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/datasets/scalable_minds/l4_sample_dev_sharing?sharingToken=ilDXmfQa2G8e719vb1U9YQ response: @@ -32,8 +32,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -48,7 +46,7 @@ interactions: host: - data-humerus.webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://data-humerus.webknossos.org/data/datasets/scalable_minds/l4_sample_dev_sharing/layers/color/data?depth=10&halfByte=false&height=10&mag=1-1-1&width=10&x=2807&y=4352&z=1794 response: @@ -113,7 +111,7 @@ interactions: host: - data-humerus.webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://data-humerus.webknossos.org/data/datasets/scalable_minds/l4_sample_dev_sharing/layers/segmentation/data?depth=10&halfByte=false&height=10&mag=1-1-1&width=10&x=2807&y=4352&z=1794 response: diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[93zLg9U9vJ3c_UWp].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[93zLg9U9vJ3c_UWp].yaml index d3b8dc5ad..bd89d7265 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[93zLg9U9vJ3c_UWp].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[93zLg9U9vJ3c_UWp].yaml @@ -11,7 +11,7 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/shortLinks/byKey/93zLg9U9vJ3c_UWp response: @@ -32,8 +32,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -48,7 +46,7 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/datasets/scalable_minds/l4_sample_dev_sharing?sharingToken=ilDXmfQa2G8e719vb1U9YQ response: @@ -69,8 +67,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -126,7 +122,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing - request: body: null headers: {} @@ -180,7 +175,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing - request: body: null headers: {} @@ -234,7 +228,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing - request: body: null headers: {} @@ -270,7 +263,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/datasource-properties.json - request: body: null headers: {} @@ -306,7 +298,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/datasource-properties.json - request: body: null headers: @@ -344,7 +335,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/datasource-properties.json - request: body: null headers: @@ -382,7 +372,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/datasource-properties.json - request: body: null headers: {} @@ -434,7 +423,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1 - request: body: null headers: {} @@ -471,7 +459,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/zarr.json - request: body: null headers: {} @@ -507,7 +494,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray - request: body: null headers: {} @@ -544,7 +530,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs - request: body: null headers: {} @@ -581,16 +566,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2935,4480,1869],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -601,7 +584,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -616,17 +599,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2935,4480,1869],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -637,7 +620,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -652,9 +635,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -706,7 +688,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1 - request: body: null headers: {} @@ -758,7 +739,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1 - request: body: null headers: {} @@ -795,16 +775,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1467,2240,1869],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -815,7 +793,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -830,17 +808,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1467,2240,1869],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -851,7 +829,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -866,9 +844,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -905,16 +882,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1467,2240,1869],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -925,7 +900,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -940,17 +915,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1467,2240,1869],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -961,7 +936,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -976,9 +951,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -1030,7 +1004,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1 - request: body: null headers: {} @@ -1082,7 +1055,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2 - request: body: null headers: {} @@ -1119,7 +1091,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2/zarr.json - request: body: null headers: {} @@ -1155,7 +1126,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2/.zarray - request: body: null headers: {} @@ -1192,7 +1162,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2/.zattrs - request: body: null headers: {} @@ -1229,7 +1198,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2/zarr.json - request: body: null headers: {} @@ -1265,7 +1233,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2/.zarray - request: body: null headers: {} @@ -1302,7 +1269,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2/.zattrs - request: body: null headers: {} @@ -1354,7 +1320,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2 - request: body: null headers: {} @@ -1406,7 +1371,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1 - request: body: null headers: {} @@ -1443,7 +1407,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1/zarr.json - request: body: null headers: {} @@ -1479,7 +1442,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1/.zarray - request: body: null headers: {} @@ -1516,7 +1478,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1/.zattrs - request: body: null headers: {} @@ -1553,7 +1514,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1/zarr.json - request: body: null headers: {} @@ -1589,7 +1549,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1/.zarray - request: body: null headers: {} @@ -1626,7 +1585,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1/.zattrs - request: body: null headers: {} @@ -1678,7 +1636,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1 - request: body: null headers: {} @@ -1730,7 +1687,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1 - request: body: null headers: {} @@ -1767,7 +1723,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1/zarr.json - request: body: null headers: {} @@ -1803,7 +1758,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1/.zarray - request: body: null headers: {} @@ -1840,7 +1794,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1/.zattrs - request: body: null headers: {} @@ -1877,7 +1830,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1/zarr.json - request: body: null headers: {} @@ -1913,7 +1865,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1/.zarray - request: body: null headers: {} @@ -1950,7 +1901,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1/.zattrs - request: body: null headers: {} @@ -2002,7 +1952,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1 - request: body: null headers: {} @@ -2054,7 +2003,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2 - request: body: null headers: {} @@ -2091,7 +2039,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2/zarr.json - request: body: null headers: {} @@ -2127,7 +2074,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2/.zarray - request: body: null headers: {} @@ -2164,7 +2110,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2/.zattrs - request: body: null headers: {} @@ -2201,7 +2146,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2/zarr.json - request: body: null headers: {} @@ -2237,7 +2181,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2/.zarray - request: body: null headers: {} @@ -2274,7 +2217,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2/.zattrs - request: body: null headers: {} @@ -2326,7 +2268,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2 - request: body: null headers: {} @@ -2363,16 +2304,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2935,4480,1869],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2383,7 +2322,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2398,17 +2337,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2935,4480,1869],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2419,7 +2358,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2434,9 +2373,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -3047,7 +2985,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/0.87.136.56 - request: body: null headers: {} @@ -3658,5 +3595,4 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/0.88.136.56 version: 1 diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[l4_sample_dev-view].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[l4_sample_dev-view].yaml index fecf386ea..e3076581a 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[l4_sample_dev-view].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[l4_sample_dev-view].yaml @@ -11,7 +11,7 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/datasets/scalable_minds/l4_sample_dev response: @@ -32,8 +32,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -89,7 +87,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev - request: body: null headers: {} @@ -143,7 +140,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev - request: body: null headers: {} @@ -197,7 +193,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev - request: body: null headers: {} @@ -233,7 +228,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/datasource-properties.json - request: body: null headers: {} @@ -269,7 +263,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/datasource-properties.json - request: body: null headers: @@ -307,7 +300,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/datasource-properties.json - request: body: null headers: @@ -345,7 +337,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/datasource-properties.json - request: body: null headers: {} @@ -397,7 +388,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1 - request: body: null headers: {} @@ -434,7 +424,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/zarr.json - request: body: null headers: {} @@ -470,7 +459,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zarray - request: body: null headers: {} @@ -507,7 +495,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zattrs - request: body: null headers: {} @@ -544,7 +531,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/zarr.json - request: body: null headers: {} @@ -580,7 +566,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zarray - request: body: null headers: {} @@ -617,7 +602,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zattrs - request: body: null headers: {} @@ -669,7 +653,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1 - request: body: null headers: {} @@ -721,7 +704,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1 - request: body: null headers: {} @@ -758,16 +740,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1467,2240,1869],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -778,7 +758,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -793,17 +773,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1467,2240,1869],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -814,7 +794,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -829,9 +809,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -868,16 +847,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1467,2240,1869],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -888,7 +865,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -903,17 +880,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1467,2240,1869],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -924,7 +901,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -939,9 +916,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -993,7 +969,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1 - request: body: null headers: {} @@ -1045,7 +1020,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2 - request: body: null headers: {} @@ -1082,7 +1056,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2/zarr.json - request: body: null headers: {} @@ -1118,7 +1091,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2/.zarray - request: body: null headers: {} @@ -1155,7 +1127,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2/.zattrs - request: body: null headers: {} @@ -1172,6 +1143,8 @@ interactions: - '600' cache-control: - no-cache + connection: + - keep-alive content-length: - '101' content-type: @@ -1190,7 +1163,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2/zarr.json - request: body: null headers: {} @@ -1226,7 +1198,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2/.zarray - request: body: null headers: {} @@ -1263,7 +1234,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2/.zattrs - request: body: null headers: {} @@ -1315,7 +1285,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2 - request: body: null headers: {} @@ -1367,7 +1336,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1 - request: body: null headers: {} @@ -1404,7 +1372,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1/zarr.json - request: body: null headers: {} @@ -1440,7 +1407,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1/.zarray - request: body: null headers: {} @@ -1477,7 +1443,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1/.zattrs - request: body: null headers: {} @@ -1514,7 +1479,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1/zarr.json - request: body: null headers: {} @@ -1550,7 +1514,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1/.zarray - request: body: null headers: {} @@ -1587,7 +1550,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1/.zattrs - request: body: null headers: {} @@ -1639,7 +1601,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1 - request: body: null headers: {} @@ -1691,7 +1652,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1 - request: body: null headers: {} @@ -1728,7 +1688,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1/zarr.json - request: body: null headers: {} @@ -1764,7 +1723,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1/.zarray - request: body: null headers: {} @@ -1801,7 +1759,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1/.zattrs - request: body: null headers: {} @@ -1838,7 +1795,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1/zarr.json - request: body: null headers: {} @@ -1874,7 +1830,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1/.zarray - request: body: null headers: {} @@ -1911,7 +1866,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1/.zattrs - request: body: null headers: {} @@ -1963,7 +1917,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1 - request: body: null headers: {} @@ -2015,7 +1968,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2 - request: body: null headers: {} @@ -2052,7 +2004,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2/zarr.json - request: body: null headers: {} @@ -2088,7 +2039,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2/.zarray - request: body: null headers: {} @@ -2125,7 +2075,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2/.zattrs - request: body: null headers: {} @@ -2162,7 +2111,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2/zarr.json - request: body: null headers: {} @@ -2198,7 +2146,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2/.zarray - request: body: null headers: {} @@ -2235,7 +2182,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2/.zattrs - request: body: null headers: {} @@ -2287,7 +2233,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2 - request: body: null headers: {} @@ -2324,16 +2269,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2935,4480,1869],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2344,7 +2287,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2359,17 +2302,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2935,4480,1869],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2380,7 +2323,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2395,9 +2338,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -3008,7 +2950,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/0.87.136.56 - request: body: null headers: {} @@ -3619,5 +3560,4 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/0.88.136.56 version: 1 diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[l4_sample_dev].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[l4_sample_dev].yaml index a9bf24df4..e3076581a 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[l4_sample_dev].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[l4_sample_dev].yaml @@ -11,7 +11,7 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/datasets/scalable_minds/l4_sample_dev response: @@ -32,8 +32,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -89,7 +87,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev - request: body: null headers: {} @@ -143,7 +140,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev - request: body: null headers: {} @@ -197,7 +193,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev - request: body: null headers: {} @@ -233,7 +228,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/datasource-properties.json - request: body: null headers: {} @@ -269,7 +263,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/datasource-properties.json - request: body: null headers: @@ -307,7 +300,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/datasource-properties.json - request: body: null headers: @@ -345,7 +337,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/datasource-properties.json - request: body: null headers: {} @@ -397,7 +388,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1 - request: body: null headers: {} @@ -434,7 +424,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/zarr.json - request: body: null headers: {} @@ -470,7 +459,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zarray - request: body: null headers: {} @@ -507,7 +495,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zattrs - request: body: null headers: {} @@ -544,7 +531,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/zarr.json - request: body: null headers: {} @@ -580,7 +566,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zarray - request: body: null headers: {} @@ -617,7 +602,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zattrs - request: body: null headers: {} @@ -669,7 +653,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1 - request: body: null headers: {} @@ -721,7 +704,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1 - request: body: null headers: {} @@ -758,7 +740,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/zarr.json - request: body: null headers: {} @@ -794,7 +775,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zarray - request: body: null headers: {} @@ -831,7 +811,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zattrs - request: body: null headers: {} @@ -868,7 +847,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/zarr.json - request: body: null headers: {} @@ -904,7 +882,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zarray - request: body: null headers: {} @@ -941,7 +918,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1/.zattrs - request: body: null headers: {} @@ -993,7 +969,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/2-2-1 - request: body: null headers: {} @@ -1045,7 +1020,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2 - request: body: null headers: {} @@ -1082,7 +1056,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2/zarr.json - request: body: null headers: {} @@ -1118,7 +1091,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2/.zarray - request: body: null headers: {} @@ -1155,7 +1127,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2/.zattrs - request: body: null headers: {} @@ -1192,7 +1163,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2/zarr.json - request: body: null headers: {} @@ -1228,7 +1198,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2/.zarray - request: body: null headers: {} @@ -1265,7 +1234,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2/.zattrs - request: body: null headers: {} @@ -1317,7 +1285,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/4-4-2 - request: body: null headers: {} @@ -1369,7 +1336,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1 - request: body: null headers: {} @@ -1406,7 +1372,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1/zarr.json - request: body: null headers: {} @@ -1442,7 +1407,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1/.zarray - request: body: null headers: {} @@ -1479,7 +1443,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1/.zattrs - request: body: null headers: {} @@ -1516,7 +1479,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1/zarr.json - request: body: null headers: {} @@ -1552,7 +1514,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1/.zarray - request: body: null headers: {} @@ -1589,7 +1550,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1/.zattrs - request: body: null headers: {} @@ -1621,6 +1581,8 @@ interactions: - '600' cache-control: - no-cache + connection: + - keep-alive content-length: - '1299' content-type: @@ -1639,7 +1601,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/1 - request: body: null headers: {} @@ -1691,7 +1652,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1 - request: body: null headers: {} @@ -1728,7 +1688,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1/zarr.json - request: body: null headers: {} @@ -1764,7 +1723,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1/.zarray - request: body: null headers: {} @@ -1801,7 +1759,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1/.zattrs - request: body: null headers: {} @@ -1838,7 +1795,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1/zarr.json - request: body: null headers: {} @@ -1874,7 +1830,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1/.zarray - request: body: null headers: {} @@ -1911,7 +1866,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1/.zattrs - request: body: null headers: {} @@ -1963,7 +1917,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/2-2-1 - request: body: null headers: {} @@ -2015,7 +1968,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2 - request: body: null headers: {} @@ -2052,7 +2004,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2/zarr.json - request: body: null headers: {} @@ -2088,7 +2039,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2/.zarray - request: body: null headers: {} @@ -2125,7 +2075,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2/.zattrs - request: body: null headers: {} @@ -2162,7 +2111,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2/zarr.json - request: body: null headers: {} @@ -2198,7 +2146,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2/.zarray - request: body: null headers: {} @@ -2235,7 +2182,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2/.zattrs - request: body: null headers: {} @@ -2287,7 +2233,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/segmentation/4-4-2 - request: body: null headers: {} @@ -2324,16 +2269,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2935,4480,1869],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2344,7 +2287,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2359,17 +2302,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2935,4480,1869],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2380,7 +2323,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2395,9 +2338,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -3008,7 +2950,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/0.87.136.56 - request: body: null headers: {} @@ -3619,5 +3560,4 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev/color/1/0.88.136.56 version: 1 diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[l4_sample_dev_sharing-view].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[l4_sample_dev_sharing-view].yaml index 9c2d7a8c9..aed360194 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[l4_sample_dev_sharing-view].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[l4_sample_dev_sharing-view].yaml @@ -11,7 +11,7 @@ interactions: host: - webknossos.org user-agent: - - python-httpx/0.18.2 + - python-httpx/0.24.1 method: GET uri: https://webknossos.org/api/datasets/scalable_minds/l4_sample_dev_sharing?sharingToken=ilDXmfQa2G8e719vb1U9YQ response: @@ -32,8 +32,6 @@ interactions: - max-age=15724800; includeSubDomains x-permitted-cross-domain-policies: - master-only - x-xss-protection: - - 1; mode=block http_version: HTTP/1.1 status_code: 200 - request: @@ -89,7 +87,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing - request: body: null headers: {} @@ -143,7 +140,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing - request: body: null headers: {} @@ -197,7 +193,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing - request: body: null headers: {} @@ -233,7 +228,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/datasource-properties.json - request: body: null headers: {} @@ -269,7 +263,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/datasource-properties.json - request: body: null headers: @@ -307,7 +300,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/datasource-properties.json - request: body: null headers: @@ -345,7 +337,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/datasource-properties.json - request: body: null headers: {} @@ -397,7 +388,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1 - request: body: null headers: {} @@ -434,7 +424,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/zarr.json - request: body: null headers: {} @@ -470,7 +459,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray - request: body: null headers: {} @@ -507,7 +495,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs - request: body: null headers: {} @@ -544,16 +531,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2935,4480,1869],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -564,7 +549,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -579,17 +564,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2935,4480,1869],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -600,7 +585,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -615,9 +600,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -669,7 +653,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1 - request: body: null headers: {} @@ -721,7 +704,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1 - request: body: null headers: {} @@ -758,16 +740,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1467,2240,1869],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -778,7 +758,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -793,17 +773,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1467,2240,1869],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -814,7 +794,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -829,9 +809,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -868,16 +847,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1467,2240,1869],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -888,7 +865,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -903,17 +880,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,1467,2240,1869],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -924,7 +901,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -939,9 +916,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -993,7 +969,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/2-2-1 - request: body: null headers: {} @@ -1045,7 +1020,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2 - request: body: null headers: {} @@ -1082,7 +1056,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2/zarr.json - request: body: null headers: {} @@ -1118,7 +1091,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2/.zarray - request: body: null headers: {} @@ -1155,7 +1127,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2/.zattrs - request: body: null headers: {} @@ -1192,7 +1163,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2/zarr.json - request: body: null headers: {} @@ -1228,7 +1198,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2/.zarray - request: body: null headers: {} @@ -1265,7 +1234,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2/.zattrs - request: body: null headers: {} @@ -1317,7 +1285,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/4-4-2 - request: body: null headers: {} @@ -1369,7 +1336,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1 - request: body: null headers: {} @@ -1406,7 +1372,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1/zarr.json - request: body: null headers: {} @@ -1442,7 +1407,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1/.zarray - request: body: null headers: {} @@ -1479,7 +1443,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1/.zattrs - request: body: null headers: {} @@ -1516,7 +1479,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1/zarr.json - request: body: null headers: {} @@ -1552,7 +1514,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1/.zarray - request: body: null headers: {} @@ -1589,7 +1550,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1/.zattrs - request: body: null headers: {} @@ -1641,7 +1601,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/1 - request: body: null headers: {} @@ -1693,7 +1652,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1 - request: body: null headers: {} @@ -1730,7 +1688,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1/zarr.json - request: body: null headers: {} @@ -1766,7 +1723,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1/.zarray - request: body: null headers: {} @@ -1803,7 +1759,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1/.zattrs - request: body: null headers: {} @@ -1840,7 +1795,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1/zarr.json - request: body: null headers: {} @@ -1876,7 +1830,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1/.zarray - request: body: null headers: {} @@ -1913,7 +1866,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1/.zattrs - request: body: null headers: {} @@ -1965,7 +1917,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/2-2-1 - request: body: null headers: {} @@ -2017,7 +1968,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2 - request: body: null headers: {} @@ -2054,7 +2004,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2/zarr.json - request: body: null headers: {} @@ -2090,7 +2039,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2/.zarray - request: body: null headers: {} @@ -2127,7 +2075,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2/.zattrs - request: body: null headers: {} @@ -2164,7 +2111,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2/zarr.json - request: body: null headers: {} @@ -2200,7 +2146,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2/.zarray - request: body: null headers: {} @@ -2237,7 +2182,6 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2/.zattrs - request: body: null headers: {} @@ -2289,7 +2233,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/segmentation/4-4-2 - request: body: null headers: {} @@ -2326,16 +2269,14 @@ interactions: status: code: 404 message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/zarr.json - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2935,4480,1869],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -2346,7 +2287,7 @@ interactions: connection: - keep-alive content-length: - - '101' + - '166' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2361,17 +2302,17 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 404 - message: Not Found - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray + uri: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zattrs response: body: - string: '{"dtype":"|u1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,2935,4480,1869],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -2382,7 +2323,7 @@ interactions: connection: - keep-alive content-length: - - '166' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2397,9 +2338,8 @@ interactions: x-xss-protection: - 1; mode=block status: - code: 200 - message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/.zarray + code: 404 + message: Not Found - request: body: null headers: {} @@ -3010,7 +2950,6 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/0.87.136.56 - request: body: null headers: {} @@ -3621,5 +3560,4 @@ interactions: status: code: 200 message: OK - url: https://data-humerus.webknossos.org/data/zarr/scalable_minds/l4_sample_dev_sharing/color/1/0.88.136.56 version: 1 diff --git a/webknossos/tests/test_examples.py b/webknossos/tests/test_examples.py index 07e3ae487..65a04696b 100644 --- a/webknossos/tests/test_examples.py +++ b/webknossos/tests/test_examples.py @@ -1,5 +1,6 @@ import inspect import os +import sys import warnings from contextlib import contextmanager, nullcontext from pathlib import Path @@ -275,6 +276,9 @@ def test_remote_datasets() -> None: @pytest.mark.block_network(allowed_hosts=[".*"]) @pytest.mark.vcr(ignore_hosts=["webknossos.org", "data-humerus.webknossos.org"]) +@pytest.mark.skipif( + sys.version_info <= (3, 9), reason="Dask only supports Python >= 3.9" +) def test_zarr_and_dask() -> None: import examples.zarr_and_dask as example diff --git a/webknossos/webknossos/annotation/annotation.py b/webknossos/webknossos/annotation/annotation.py index f494e8b98..1ac79991d 100644 --- a/webknossos/webknossos/annotation/annotation.py +++ b/webknossos/webknossos/annotation/annotation.py @@ -896,4 +896,4 @@ def _parse_filename_from_header(value: str) -> str: m = Message() m["content-type"] = value - return dict(m.get_params()).get("filename", "") + return dict(m.get_params() or []).get("filename", "") diff --git a/webknossos/webknossos/cli/convert_raw.py b/webknossos/webknossos/cli/convert_raw.py index d4566b2bc..a75b02a53 100644 --- a/webknossos/webknossos/cli/convert_raw.py +++ b/webknossos/webknossos/cli/convert_raw.py @@ -111,7 +111,8 @@ def convert_raw( flip_axes=flip_axes, ), wk_layer.bounding_box.chunk(chunk_shape=chunk_shape * chunks_per_shard), - ) + ), + executor=executor, ) time_stop(f"Conversion of {source_raw_path}") diff --git a/webknossos/webknossos/cli/convert_zarr.py b/webknossos/webknossos/cli/convert_zarr.py index cfbd70a9e..bdabbe36c 100644 --- a/webknossos/webknossos/cli/convert_zarr.py +++ b/webknossos/webknossos/cli/convert_zarr.py @@ -109,7 +109,8 @@ def convert_zarr( flip_axes=flip_axes, ), wk_layer.bounding_box.chunk(chunk_shape=chunk_shape * chunks_per_shard), - ) + ), + executor=executor, ) if is_segmentation_layer: diff --git a/webknossos/webknossos/cli/export_wkw_as_tiff.py b/webknossos/webknossos/cli/export_wkw_as_tiff.py index 5ed4282c0..4e907aec6 100644 --- a/webknossos/webknossos/cli/export_wkw_as_tiff.py +++ b/webknossos/webknossos/cli/export_wkw_as_tiff.py @@ -167,6 +167,7 @@ def export_tiff_stack( ), view_chunks, ), + executor=executor, progress_desc="Exporting tiff files", ) diff --git a/webknossos/webknossos/dataset/dataset.py b/webknossos/webknossos/dataset/dataset.py index bd0dfbc55..7a1d1409a 100644 --- a/webknossos/webknossos/dataset/dataset.py +++ b/webknossos/webknossos/dataset/dataset.py @@ -1232,6 +1232,7 @@ def add_layer_from_images( with get_executor_for_args(None, executor) as executor: shapes_and_max_ids = wait_and_ensure_success( executor.map_to_futures(func_per_chunk, args), + executor=executor, progress_desc="Creating layer from images", ) shapes, max_ids = zip(*shapes_and_max_ids) diff --git a/webknossos/webknossos/dataset/mag_view.py b/webknossos/webknossos/dataset/mag_view.py index 8cf65df03..f76b3fccd 100644 --- a/webknossos/webknossos/dataset/mag_view.py +++ b/webknossos/webknossos/dataset/mag_view.py @@ -370,7 +370,9 @@ def compress( job_args.append((source_view, target_view)) wait_and_ensure_success( - executor.map_to_futures(_compress_cube_job, job_args), "Compressing" + executor.map_to_futures(_compress_cube_job, job_args), + executor=executor, + progress_desc="Compressing", ) if target_path is None: diff --git a/webknossos/webknossos/dataset/view.py b/webknossos/webknossos/dataset/view.py index a055433fb..4de5bd391 100644 --- a/webknossos/webknossos/dataset/view.py +++ b/webknossos/webknossos/dataset/view.py @@ -845,7 +845,9 @@ def some_work(args: Tuple[View, int], some_parameter: int) -> None: ) else: wait_and_ensure_success( - executor.map_to_futures(func_per_chunk, job_args), progress_desc + executor.map_to_futures(func_per_chunk, job_args), + executor=executor, + progress_desc=progress_desc, ) def map_chunk( @@ -901,6 +903,7 @@ def some_work(view: View, some_parameter: int) -> None: with get_executor_for_args(None, executor) as executor: results = wait_and_ensure_success( executor.map_to_futures(func_per_chunk, job_args), + executor=executor, progress_desc=progress_desc, ) @@ -1013,7 +1016,9 @@ def for_zipped_chunks( progress.update(task, advance=args[0].bounding_box.volume()) else: wait_and_ensure_success( - executor.map_to_futures(func_per_chunk, job_args), progress_desc + executor.map_to_futures(func_per_chunk, job_args), + executor=executor, + progress_desc=progress_desc, ) def content_is_equal( diff --git a/webknossos/webknossos/utils.py b/webknossos/webknossos/utils.py index 2de33b715..2d7dd6ebb 100644 --- a/webknossos/webknossos/utils.py +++ b/webknossos/webknossos/utils.py @@ -6,8 +6,7 @@ import sys import time import warnings -from concurrent.futures import as_completed -from concurrent.futures._base import Future +from concurrent.futures import Future from contextlib import nullcontext from datetime import datetime from inspect import getframeinfo, stack @@ -121,19 +120,21 @@ def named_partial(func: F, *args: Any, **kwargs: Any) -> F: def wait_and_ensure_success( - futures: List[Future], progress_desc: Optional[str] = None + futures: List[Future], + executor: Executor, + progress_desc: Optional[str] = None, ) -> List[Any]: """Waits for all futures to complete and raises an exception as soon as a future resolves with an error.""" results = [] if progress_desc is None: - for fut in as_completed(futures): + for fut in executor.as_completed(futures): results.append(fut.result()) else: with get_rich_progress() as progress: task = progress.add_task(progress_desc, total=len(futures)) - for fut in as_completed(futures): + for fut in executor.as_completed(futures): results.append(fut.result()) progress.update(task, advance=1) return results From 2e989d6a2b455e60a2ed75c384e74411eab9b9f1 Mon Sep 17 00:00:00 2001 From: Automatic release <> Date: Wed, 11 Oct 2023 18:15:53 +0000 Subject: [PATCH 2/2] Release for v0.14.0 --- cluster_tools/Changelog.md | 16 +++++++++++++--- webknossos/Changelog.md | 14 +++++++++++--- 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/cluster_tools/Changelog.md b/cluster_tools/Changelog.md index a9ff6f226..1652f79b4 100644 --- a/cluster_tools/Changelog.md +++ b/cluster_tools/Changelog.md @@ -7,7 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/) `MAJOR.MIN For upgrade instructions, please check the respective *Breaking Changes* sections. ## Unreleased -[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.13.7...HEAD) +[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.14.0...HEAD) + +### Breaking Changes + +### Added + +### Changed + +### Fixed + + +## [0.14.0](https://github.com/scalableminds/webknossos-libs/releases/tag/v0.14.0) - 2023-10-11 +[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.13.7...v0.14.0) ### Breaking Changes - Dropped support for Python 3.7. [#943](https://github.com/scalableminds/webknossos-libs/pull/943) @@ -19,8 +31,6 @@ For upgrade instructions, please check the respective *Breaking Changes* section ### Changed - The exported `Executor` type is now implemented as a protocol. [#943](https://github.com/scalableminds/webknossos-libs/pull/943) -### Fixed - ## [0.13.7](https://github.com/scalableminds/webknossos-libs/releases/tag/v0.13.7) - 2023-10-07 [Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.13.6...v0.13.7) diff --git a/webknossos/Changelog.md b/webknossos/Changelog.md index 707762673..035750ad3 100644 --- a/webknossos/Changelog.md +++ b/webknossos/Changelog.md @@ -10,19 +10,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/) `MAJOR.MIN For upgrade instructions, please check the respective _Breaking Changes_ sections. ## Unreleased -[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.13.7...HEAD) +[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.14.0...HEAD) ### Breaking Changes -- `wait_and_ensure_success` from `webknossos.utils` now requires an `executor` argument. [#943](https://github.com/scalableminds/webknossos-libs/pull/943) ### Added ### Changed -- Updates various dependencies. [#943](https://github.com/scalableminds/webknossos-libs/pull/943) ### Fixed +## [0.14.0](https://github.com/scalableminds/webknossos-libs/releases/tag/v0.14.0) - 2023-10-11 +[Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.13.7...v0.14.0) + +### Breaking Changes +- `wait_and_ensure_success` from `webknossos.utils` now requires an `executor` argument. [#943](https://github.com/scalableminds/webknossos-libs/pull/943) + +### Changed +- Updates various dependencies. [#943](https://github.com/scalableminds/webknossos-libs/pull/943) + + ## [0.13.7](https://github.com/scalableminds/webknossos-libs/releases/tag/v0.13.7) - 2023-10-07 [Commits](https://github.com/scalableminds/webknossos-libs/compare/v0.13.6...v0.13.7)